diff --git a/src/components/alert/alert.tsx b/src/components/alert/alert.tsx index 3ca980d65..5b7559ad8 100644 --- a/src/components/alert/alert.tsx +++ b/src/components/alert/alert.tsx @@ -2,7 +2,7 @@ import { Component, Element, Event, EventEmitter, Host, Method, Prop, Watch, h } import { focusVisible } from '../../utilities/focus-visible'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The alert's content. diff --git a/src/components/avatar/avatar.tsx b/src/components/avatar/avatar.tsx index d0cb5eecf..7d07d2ae5 100644 --- a/src/components/avatar/avatar.tsx +++ b/src/components/avatar/avatar.tsx @@ -1,7 +1,7 @@ import { Component, Prop, State, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot icon - The default icon to use when no image or initials are present. diff --git a/src/components/badge/badge.tsx b/src/components/badge/badge.tsx index 6765c0f3f..9f9613b2b 100644 --- a/src/components/badge/badge.tsx +++ b/src/components/badge/badge.tsx @@ -1,7 +1,7 @@ import { Component, Prop, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status experimental * * @slot - The badge's content. diff --git a/src/components/button/button.tsx b/src/components/button/button.tsx index e841685e4..336ec9d46 100644 --- a/src/components/button/button.tsx +++ b/src/components/button/button.tsx @@ -1,7 +1,7 @@ import { Component, Event, EventEmitter, Method, Prop, State, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The button's label. diff --git a/src/components/checkbox/checkbox.tsx b/src/components/checkbox/checkbox.tsx index 035fff868..eed8236f8 100644 --- a/src/components/checkbox/checkbox.tsx +++ b/src/components/checkbox/checkbox.tsx @@ -3,7 +3,7 @@ import { Component, Event, EventEmitter, Method, Prop, State, Watch, h } from '@ let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The checkbox's label. diff --git a/src/components/color-picker/color-picker.tsx b/src/components/color-picker/color-picker.tsx index 0fe078713..503201e52 100644 --- a/src/components/color-picker/color-picker.tsx +++ b/src/components/color-picker/color-picker.tsx @@ -3,7 +3,7 @@ import color from 'color'; import { clamp } from '../../utilities/math'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @part base - The component's base wrapper. diff --git a/src/components/details/details.tsx b/src/components/details/details.tsx index 57be66b92..381f66b43 100644 --- a/src/components/details/details.tsx +++ b/src/components/details/details.tsx @@ -4,7 +4,7 @@ import { focusVisible } from '../../utilities/focus-visible'; let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The details' content. diff --git a/src/components/dialog/dialog.tsx b/src/components/dialog/dialog.tsx index dca89346b..0f7cc38d3 100644 --- a/src/components/dialog/dialog.tsx +++ b/src/components/dialog/dialog.tsx @@ -5,7 +5,7 @@ import { focusVisible } from '../../utilities/focus-visible'; let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The dialog's content. diff --git a/src/components/drawer/drawer.tsx b/src/components/drawer/drawer.tsx index 986a76397..e7d6ffe5a 100644 --- a/src/components/drawer/drawer.tsx +++ b/src/components/drawer/drawer.tsx @@ -5,7 +5,7 @@ import { focusVisible } from '../../utilities/focus-visible'; let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The drawer's content. diff --git a/src/components/dropdown/dropdown.tsx b/src/components/dropdown/dropdown.tsx index f809bba86..012a1398f 100644 --- a/src/components/dropdown/dropdown.tsx +++ b/src/components/dropdown/dropdown.tsx @@ -4,7 +4,7 @@ import Popover from '../../utilities/popover'; let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot trigger - The dropdown's trigger, usually a `` element. diff --git a/src/components/form/form.tsx b/src/components/form/form.tsx index 4bd29bde4..35d5ed30d 100644 --- a/src/components/form/form.tsx +++ b/src/components/form/form.tsx @@ -8,7 +8,7 @@ interface FormControl { } /** - * @since 1.0 + * @since 2.0 * @status experimental * * @slot - The form's content. diff --git a/src/components/icon/icon.tsx b/src/components/icon/icon.tsx index 0cd5610d5..517939ca0 100644 --- a/src/components/icon/icon.tsx +++ b/src/components/icon/icon.tsx @@ -5,7 +5,7 @@ import { requestIcon } from './request'; const parser = new DOMParser(); /** - * @since 1.0 + * @since 2.0 * @status stable * * @part base - The component's base wrapper. diff --git a/src/components/input/input.tsx b/src/components/input/input.tsx index 3cce5b932..c29d18667 100644 --- a/src/components/input/input.tsx +++ b/src/components/input/input.tsx @@ -3,7 +3,7 @@ import { Component, Element, Event, EventEmitter, Method, Prop, State, h } from let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot prefix - Used to prepend an icon or similar element to the input. diff --git a/src/components/menu-divider/menu-divider.tsx b/src/components/menu-divider/menu-divider.tsx index 3c0eccf78..fdc41dc0a 100644 --- a/src/components/menu-divider/menu-divider.tsx +++ b/src/components/menu-divider/menu-divider.tsx @@ -1,7 +1,7 @@ import { Component, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @part base - The component's base wrapper. diff --git a/src/components/menu-item/menu-item.tsx b/src/components/menu-item/menu-item.tsx index c3661779e..f8aa613e0 100644 --- a/src/components/menu-item/menu-item.tsx +++ b/src/components/menu-item/menu-item.tsx @@ -1,7 +1,7 @@ import { Component, Prop, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The menu item's label. diff --git a/src/components/menu-label/menu-label.tsx b/src/components/menu-label/menu-label.tsx index aa2824a32..cc2a20e64 100644 --- a/src/components/menu-label/menu-label.tsx +++ b/src/components/menu-label/menu-label.tsx @@ -1,7 +1,7 @@ import { Component, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The menu label's content. diff --git a/src/components/menu/menu.tsx b/src/components/menu/menu.tsx index 7a6021d44..198d3d27d 100644 --- a/src/components/menu/menu.tsx +++ b/src/components/menu/menu.tsx @@ -3,7 +3,7 @@ import { scrollIntoView } from '../../utilities/scroll'; import { getTextContent } from '../../utilities/slot'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The menu's content, including menu items, menu dividers, and menu labels. diff --git a/src/components/progress-bar/progress-bar.tsx b/src/components/progress-bar/progress-bar.tsx index 63c55f7c9..66ecca820 100644 --- a/src/components/progress-bar/progress-bar.tsx +++ b/src/components/progress-bar/progress-bar.tsx @@ -1,7 +1,7 @@ import { Component, Prop, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - A label to show inside the indicator. diff --git a/src/components/progress-ring/progress-ring.tsx b/src/components/progress-ring/progress-ring.tsx index 28976cddc..73728b062 100644 --- a/src/components/progress-ring/progress-ring.tsx +++ b/src/components/progress-ring/progress-ring.tsx @@ -1,7 +1,7 @@ import { Component, Prop, Watch, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - A label to show inside the ring. diff --git a/src/components/radio/radio.tsx b/src/components/radio/radio.tsx index aa4add603..0609c1bc1 100644 --- a/src/components/radio/radio.tsx +++ b/src/components/radio/radio.tsx @@ -3,7 +3,7 @@ import { Component, Element, Event, EventEmitter, Method, Prop, State, Watch, h let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The radio's label. diff --git a/src/components/range/range.tsx b/src/components/range/range.tsx index 4f6b802d4..0ee82e9b9 100644 --- a/src/components/range/range.tsx +++ b/src/components/range/range.tsx @@ -2,7 +2,7 @@ import { Component, Event, EventEmitter, Method, Prop, State, h } from '@stencil import ResizeObserver from 'resize-observer-polyfill'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @part base - The component's base wrapper. diff --git a/src/components/select/select.tsx b/src/components/select/select.tsx index bd5a4a71d..436fc27e8 100644 --- a/src/components/select/select.tsx +++ b/src/components/select/select.tsx @@ -5,7 +5,7 @@ import { getTextContent } from '../../utilities/slot'; let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The select's options in the form of menu items. diff --git a/src/components/spinner/spinner.tsx b/src/components/spinner/spinner.tsx index adffa2ae9..6e0ec13f3 100644 --- a/src/components/spinner/spinner.tsx +++ b/src/components/spinner/spinner.tsx @@ -1,7 +1,7 @@ import { Component, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @part base - The component's base wrapper. diff --git a/src/components/switch/switch.tsx b/src/components/switch/switch.tsx index 5c7474176..27ee7f885 100644 --- a/src/components/switch/switch.tsx +++ b/src/components/switch/switch.tsx @@ -3,7 +3,7 @@ import { Component, Event, EventEmitter, Method, Prop, State, Watch, h } from '@ let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The switch's label. diff --git a/src/components/tab-group/tab-group.tsx b/src/components/tab-group/tab-group.tsx index b4bdbad1c..204aab33b 100644 --- a/src/components/tab-group/tab-group.tsx +++ b/src/components/tab-group/tab-group.tsx @@ -4,7 +4,7 @@ import { scrollIntoView } from '../../utilities/scroll'; import { focusVisible } from '../../utilities/focus-visible'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot nav - Used for grouping tabs in the tab group. diff --git a/src/components/tab-panel/tab-panel.tsx b/src/components/tab-panel/tab-panel.tsx index 5c77efa88..09e9f4a55 100644 --- a/src/components/tab-panel/tab-panel.tsx +++ b/src/components/tab-panel/tab-panel.tsx @@ -3,7 +3,7 @@ import { Component, Element, Host, Prop, h } from '@stencil/core'; let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The tab panel's content. diff --git a/src/components/tab/tab.tsx b/src/components/tab/tab.tsx index d7ca4ecaf..bcd85d827 100644 --- a/src/components/tab/tab.tsx +++ b/src/components/tab/tab.tsx @@ -3,7 +3,7 @@ import { Component, Element, Host, Method, Prop, h } from '@stencil/core'; let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The tab's label. diff --git a/src/components/tag/tag.tsx b/src/components/tag/tag.tsx index 516ff0372..091c03eec 100644 --- a/src/components/tag/tag.tsx +++ b/src/components/tag/tag.tsx @@ -1,7 +1,7 @@ import { Component, Event, EventEmitter, Prop, h } from '@stencil/core'; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The tag's content. diff --git a/src/components/textarea/textarea.tsx b/src/components/textarea/textarea.tsx index a2ed75801..9a64f12c7 100644 --- a/src/components/textarea/textarea.tsx +++ b/src/components/textarea/textarea.tsx @@ -4,7 +4,7 @@ import ResizeObserver from 'resize-observer-polyfill'; let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot help-text - Help text that describes how to use the input. diff --git a/src/components/tooltip/tooltip.tsx b/src/components/tooltip/tooltip.tsx index 25b332539..a1d72cf2d 100644 --- a/src/components/tooltip/tooltip.tsx +++ b/src/components/tooltip/tooltip.tsx @@ -4,7 +4,7 @@ import Popover from '../../utilities/popover'; let id = 0; /** - * @since 1.0 + * @since 2.0 * @status stable * * @slot - The tooltip's target element. Only the first element will be used as the target.