Skip to content

Commit 6485d21

Browse files
committed
docs: update badges
1 parent 65d065c commit 6485d21

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

docs/content/docs/1.getting-started/2.installation/1.nuxt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ export default defineNuxtConfig({
395395
})
396396
```
397397

398-
### `experimental.componentDetection` :badge{label="Soon"}
398+
### `experimental.componentDetection` :badge{label="4.1+"}
399399

400400
Use the `experimental.componentDetection` option to enable automatic component detection for tree-shaking. This feature scans your source code to detect which components are actually used and only generates the necessary CSS for those components (including their dependencies).
401401

docs/content/docs/2.components/command-palette.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ props:
889889
---
890890
::
891891

892-
### With virtualization :badge{label="Soon"}
892+
### With virtualization :badge{label="4.1+"}
893893

894894
Use the `virtualize` prop to enable virtualization for large lists as a boolean or an object with options like `{ estimateSize: 32, overscan: 12 }`.
895895

docs/content/docs/2.components/empty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ links:
66
- label: GitHub
77
icon: i-simple-icons-github
88
to: https://github.com/nuxt/ui/blob/v4/src/runtime/components/Empty.vue
9-
navigation.badge: Soon
9+
navigation.badge: New
1010
---
1111

1212
## Usage

docs/content/docs/2.components/input-menu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ name: 'input-menu-filter-fields-example'
782782
---
783783
::
784784

785-
### With virtualization :badge{label="Soon"}
785+
### With virtualization :badge{label="4.1+"}
786786

787787
Use the `virtualize` prop to enable virtualization for large lists as a boolean or an object with options like `{ estimateSize: 32, overscan: 12 }`.
788788

docs/content/docs/2.components/select-menu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -821,7 +821,7 @@ name: 'select-menu-filter-fields-example'
821821
---
822822
::
823823

824-
### With virtualization :badge{label="Soon"}
824+
### With virtualization :badge{label="4.1+"}
825825

826826
Use the `virtualize` prop to enable virtualization for large lists as a boolean or an object with options like `{ estimateSize: 32, overscan: 12 }`.
827827

docs/content/docs/2.components/table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ class: '!p-0'
595595
---
596596
::
597597

598-
### With virtualization :badge{label="Soon"}
598+
### With virtualization :badge{label="4.1+"}
599599

600600
Use the `virtualize` prop to enable virtualization for large datasets as a boolean or an object with options like `{ estimateSize: 65, overscan: 12 }`. You can also pass other [TanStack Virtual options](https://tanstack.com/virtual/latest/docs/api/virtualizer#optional-options) to customize the virtualization behavior.
601601

docs/content/docs/2.components/toast.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ name: 'toast-example'
260260
In this example, we use the `AppConfig` to configure the `duration` prop of the `Toaster` component globally.
261261
::
262262

263-
### Change global max :badge{label="Soon"}
263+
### Change global max :badge{label="4.1+"}
264264

265265
Change the `toaster.max` prop on the [App](/docs/components/app#props) component to change the max number of toasts displayed at once.
266266

docs/content/docs/2.components/tree.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ props:
148148
---
149149
::
150150

151-
### Nested :badge{label="Soon"}
151+
### Nested :badge{label="4.1+"}
152152

153153
Use the `nested` prop to control whether the Tree is rendered with nested structure or as a flat list. Defaults to `true`.
154154

@@ -501,7 +501,7 @@ props:
501501
This lets you select a parent item without expanding or collapsing its children.
502502
::
503503

504-
### With checkbox in items :badge{label="Soon"}
504+
### With checkbox in items :badge{label="4.1+"}
505505

506506
You can use the `item-leading` slot to add a [Checkbox](/docs/components/checkbox) to the items. Use the `multiple`, `propagate-select` and `bubble-select` props to enable multi-selection with parent-child relationship and the `select` and `toggle` events to control the selected and expanded state of the items.
507507

@@ -518,7 +518,7 @@ props:
518518
This example uses the `as` prop to change the items from `button` to `div` as the [`Checkbox`](/docs/components/checkbox) is also rendered as a `button`.
519519
::
520520

521-
### With drag and drop :badge{label="Soon"}
521+
### With drag and drop :badge{label="4.1+"}
522522

523523
Use the [`useSortable`](https://vueuse.org/integrations/useSortable/) composable from [`@vueuse/integrations`](https://vueuse.org/integrations/README.html) to enable drag and drop functionality on the Tree. This integration wraps [Sortable.js](https://sortablejs.github.io/Sortable/) to provide a seamless drag and drop experience.
524524

@@ -532,7 +532,7 @@ name: 'tree-drag-and-drop-example'
532532
This example sets the `nested` prop to `false` to have a flat list of items so that the items can be dragged and dropped.
533533
::
534534

535-
### With virtualization :badge{label="Soon"}
535+
### With virtualization :badge{label="4.1+"}
536536

537537
Use the `virtualize` prop to enable virtualization for large lists as a boolean or an object with options like `{ estimateSize: 32, overscan: 12 }`.
538538

0 commit comments

Comments
 (0)