From f3eff6edf83d02efb0a028ace7615bcf60e923bd Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Fri, 17 Jul 2020 06:09:10 -0400 Subject: [PATCH] Update @since to 2.0 --- src/components/alert/alert.tsx | 2 +- src/components/avatar/avatar.tsx | 2 +- src/components/badge/badge.tsx | 2 +- src/components/button/button.tsx | 2 +- src/components/checkbox/checkbox.tsx | 2 +- src/components/color-picker/color-picker.tsx | 2 +- src/components/details/details.tsx | 2 +- src/components/dialog/dialog.tsx | 2 +- src/components/drawer/drawer.tsx | 2 +- src/components/dropdown/dropdown.tsx | 2 +- src/components/form/form.tsx | 2 +- src/components/icon/icon.tsx | 2 +- src/components/input/input.tsx | 2 +- src/components/menu-divider/menu-divider.tsx | 2 +- src/components/menu-item/menu-item.tsx | 2 +- src/components/menu-label/menu-label.tsx | 2 +- src/components/menu/menu.tsx | 2 +- src/components/progress-bar/progress-bar.tsx | 2 +- src/components/progress-ring/progress-ring.tsx | 2 +- src/components/radio/radio.tsx | 2 +- src/components/range/range.tsx | 2 +- src/components/select/select.tsx | 2 +- src/components/spinner/spinner.tsx | 2 +- src/components/switch/switch.tsx | 2 +- src/components/tab-group/tab-group.tsx | 2 +- src/components/tab-panel/tab-panel.tsx | 2 +- src/components/tab/tab.tsx | 2 +- src/components/tag/tag.tsx | 2 +- src/components/textarea/textarea.tsx | 2 +- src/components/tooltip/tooltip.tsx | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/src/components/alert/alert.tsx b/src/components/alert/alert.tsx index 3ca980d6..5b7559ad 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 d0cb5eec..7d07d2ae 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 6765c0f3..9f9613b2 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 e841685e..336ec9d4 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 035fff86..eed8236f 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 0fe07871..503201e5 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 57be66b9..381f66b4 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 dca89346..0f7cc38d 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 986a7639..e7d6ffe5 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 f809bba8..012a1398 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 4bd29bde..35d5ed30 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 0cd5610d..517939ca 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 3cce5b93..c29d1866 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 3c0eccf7..fdc41dc0 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 c3661779..f8aa613e 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 aa2824a3..cc2a20e6 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 7a6021d4..198d3d27 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 63c55f7c..66ecca82 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 28976cdd..73728b06 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 aa4add60..0609c1bc 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 4f6b802d..0ee82e9b 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 bd5a4a71..436fc27e 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 adffa2ae..6e0ec13f 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 5c747417..27ee7f88 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 b4bdbad1..204aab33 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 5c77efa8..09e9f4a5 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 d7ca4eca..bcd85d82 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 516ff037..091c03ee 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 a2ed7580..9a64f12c 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 25b33253..a1d72cf2 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.