Skip to content

Commit dae1e71

Browse files
authored
feat(dialog|tree|listbox): remove experimental state (#1580)
- Remove the experimental state of the ODialog, OTree and OListbox components.
1 parent 901dc92 commit dae1e71

File tree

6 files changed

+0
-6
lines changed

6 files changed

+0
-6
lines changed

packages/docs/components/Dialog.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Dialog
22

33
<section class="odocs-head">
4-
<Badge type="warning" text="experimental" />
54

65
The **Dialog** component is a flexible and extensible content container overlaid on either the primary window or another dialog. It is based on the [HTML \<dialog\> element](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/dialog) and can be used to create both modal and non-modal dialog boxes.
76
Modal dialog boxes interrupt interaction with the rest of the page being inert,

packages/docs/components/Listbox.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ sidebarDepth: 2
55
# Listbox
66

77
<section class="odocs-head">
8-
<Badge type="warning" text="experimental" />
98

109
The **Listbox** component presents a list of options and allows a user to select one or more of them.
1110
The component uses the [ARIA listbox role](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/listbox_role) and implements the W3C ARIA APG [Listbox Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/listbox/).

packages/docs/components/Tree.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ sidebarDepth: 2
55
# Tree
66

77
<section class="odocs-head">
8-
<Badge type="warning" text="experimental" />
98

109
The **Tree** component presents a hierarchical list of items. Any item in the hierarchy can have children. Items with children may be expanded or collapsed to show or hide the children.
1110
The component uses the [ARIA tree role](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/tree_role) and implements the W3C ARIA APG [Tree View Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/treeview/).

packages/oruga/src/components/dialog/Dialog.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import type { DialogProps } from "./props";
2727
2828
/**
2929
* Dialog is a container to display content in an overlay window.
30-
* @experimental
3130
* @displayName Dialog
3231
* @style _dialog.scss
3332
*/

packages/oruga/src/components/listbox/Listbox.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ import type { ListItem, ListboxComponent, ListItemComponent } from "./types";
4545
4646
/**
4747
* Listbox is used to select one or more values from a list of items.
48-
* @experimental
4948
* @displayName Listbox
5049
* @requires ./ListItem.vue
5150
* @style _listbox.scss

packages/oruga/src/components/tree/Tree.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ import type { TreeComponent, TreeItem, TreeItemComponent } from "./types";
4040
4141
/**
4242
* A simple tree view, for any type of hierarchical list.
43-
* @experimental
4443
* @displayName Tree
4544
* @requires ./TreeItem.vue
4645
* @style _tree.scss

0 commit comments

Comments
 (0)