Skip to content
This repository was archived by the owner on Feb 2, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
- [Accessible Icon](./primitives/utilities/accessible-icon.md)
- [Direction Provider](./primitives/utilities/direction-provider.md)
- [Portal](./primitives/utilities/portal.md)
- [Slot]
- [Slot]()
- [Visually Hidden](./primitives/utilities/visually-hidden.md)
- [Themes](./themes/README.md)
- [Overview](./themes/overview/README.md)
Expand Down
11 changes: 9 additions & 2 deletions book/src/primitives/components/avatar.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,20 @@ An image element with a fallback for representing the user.
{{#tabs global="framework" }}
{{#tab name="Leptos" }}

```toml,trunk
<div class="warning">

This component is not yet updated to Leptos 0.7+.

</div>

<!-- ```toml,trunk
package = "radix-leptos-book-primitives"
features = ["avatar"]
files = ["src/avatar.rs"]
```
``` -->

{{#endtab }}

{{#tab name="Yew" }}

```toml,trunk
Expand Down
10 changes: 8 additions & 2 deletions book/src/primitives/components/checkbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ A control that allows the user to toggle between checked and not checked.
{{#tabs global="framework" }}
{{#tab name="Leptos" }}

```toml,trunk
<div class="warning">

This component is not yet updated to Leptos 0.7+.

</div>

<!-- ```toml,trunk
package = "radix-leptos-book-primitives"
features = ["checkbox"]
files = ["src/checkbox.rs"]
```
``` -->

{{#endtab }}
{{#tab name="Yew" }}
Expand Down
10 changes: 8 additions & 2 deletions book/src/primitives/components/progress.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ Displays an indicator showing the completion progress of a task, typically displ
{{#tabs global="framework" }}
{{#tab name="Leptos" }}

```toml,trunk
<div class="warning">

This component is not yet updated to Leptos 0.7+.

</div>

<!-- ```toml,trunk
package = "radix-leptos-book-primitives"
features = ["progress"]
files = ["src/progress.rs"]
```
``` -->

{{#endtab }}
{{#endtabs }}
Expand Down
10 changes: 8 additions & 2 deletions book/src/primitives/components/switch.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ A control that allows the user to toggle between checked and not checked.
{{#tabs global="framework" }}
{{#tab name="Leptos" }}

```toml,trunk
<div class="warning">

This component is not yet updated to Leptos 0.7+.

</div>

<!-- ```toml,trunk
package = "radix-leptos-book-primitives"
features = ["switch"]
files = ["src/switch.rs"]
```
``` -->

{{#endtab }}
{{#tab name="Yew" }}
Expand Down
10 changes: 8 additions & 2 deletions book/src/primitives/components/toggle.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ A two-state button that can be either on or off.
{{#tabs global="framework" }}
{{#tab name="Leptos" }}

```toml,trunk
<div class="warning">

This component is not yet updated to Leptos 0.7+.

</div>

<!-- ```toml,trunk
package = "radix-leptos-book-primitives"
features = ["toggle"]
files = ["src/toggle.rs"]
```
``` -->

{{#endtab }}
{{#endtabs }}
Expand Down
Loading