diff --git a/docs/resources/changelog.md b/docs/resources/changelog.md index ee76541e..3c71bbae 100644 --- a/docs/resources/changelog.md +++ b/docs/resources/changelog.md @@ -15,6 +15,7 @@ This release includes a complete rewrite of `` to improve accessibili - 🚨 BREAKING: removed the `suffix` slot from `` because it was confusing to users and its position made the clear button inaccessible - 🚨 BREAKING: removed the `multiple` attribute from `` because it was inaccessible and made the getting/setting the value inconsistent and confusing (see the docs for a suggested multiselect pattern) - Fixed a bug in `` where the checked/indeterminate states could get out of sync when using the `multiple` option [#1076](https://github.com/shoelace-style/shoelace/issues/1076) +- Updated the status of `` and `` from experimental to stable ## 2.0.0-beta.87 diff --git a/src/components/tree-item/tree-item.ts b/src/components/tree-item/tree-item.ts index d6cf03f5..af110eb8 100644 --- a/src/components/tree-item/tree-item.ts +++ b/src/components/tree-item/tree-item.ts @@ -18,7 +18,7 @@ import type { CSSResultGroup, PropertyValueMap } from 'lit'; * @summary A tree item serves as a hierarchical node that lives inside a [tree](/components/tree). * * @since 2.0 - * @status experimental + * @status stable * * @dependency sl-checkbox * @dependency sl-icon diff --git a/src/components/tree/tree.ts b/src/components/tree/tree.ts index 1ad39d60..dd271a9a 100644 --- a/src/components/tree/tree.ts +++ b/src/components/tree/tree.ts @@ -52,7 +52,7 @@ function syncCheckboxes(changedTreeItem: SlTreeItem, initialSync = false) { * @summary Trees allow you to display a hierarchical list of selectable [tree items](/components/tree-item). Items with children can be expanded and collapsed as desired by the user. * * @since 2.0 - * @status experimental + * @status stable * * @event {{ selection: TreeItem[] }} sl-selection-change - Emitted when a tree item is selected or deselected. *