diff --git a/src/components/alert/alert.ts b/src/components/alert/alert.ts index 3978248e..0a64cd6e 100644 --- a/src/components/alert/alert.ts +++ b/src/components/alert/alert.ts @@ -22,9 +22,9 @@ const toastStack = Object.assign(document.createElement('div'), { className: 'sl * @slot icon - An icon to show in the alert. * * @event sl-show - Emitted when the alert opens. - * @event sl-after-show - Emitted after the alert opens and all transitions are complete. + * @event sl-after-show - Emitted after the alert opens and all animations are complete. * @event sl-hide - Emitted when the alert closes. - * @event sl-after-hide - Emitted after the alert closes and all transitions are complete. + * @event sl-after-hide - Emitted after the alert closes and all animations are complete. * * @csspart base - The component's base wrapper. * @csspart icon - The container that wraps the alert icon. diff --git a/src/components/details/details.ts b/src/components/details/details.ts index 45d76de1..fbd05f12 100644 --- a/src/components/details/details.ts +++ b/src/components/details/details.ts @@ -22,9 +22,9 @@ let id = 0; * @slot summary - The details' summary. Alternatively, you can use the summary prop. * * @event sl-show - Emitted when the details opens. - * @event sl-after-show - Emitted after the details opens and all transitions are complete. + * @event sl-after-show - Emitted after the details opens and all animations are complete. * @event sl-hide - Emitted when the details closes. - * @event sl-after-hide - Emitted after the details closes and all transitions are complete. + * @event sl-after-hide - Emitted after the details closes and all animations are complete. * * @csspart base - The component's base wrapper. * @csspart header - The summary header. diff --git a/src/components/dialog/dialog.ts b/src/components/dialog/dialog.ts index 8c7445f3..430bc48b 100644 --- a/src/components/dialog/dialog.ts +++ b/src/components/dialog/dialog.ts @@ -30,9 +30,9 @@ let id = 0; * @slot footer - The dialog's footer, usually one or more buttons representing various options. * * @event sl-show - Emitted when the dialog opens. - * @event sl-after-show - Emitted after the dialog opens and all transitions are complete. + * @event sl-after-show - Emitted after the dialog opens and all animations are complete. * @event sl-hide - Emitted when the dialog closes. - * @event sl-after-hide - Emitted after the dialog closes and all transitions are complete. + * @event sl-after-hide - Emitted after the dialog closes and all animations are complete. * @event sl-initial-focus - Emitted when the dialog opens and the panel gains focus. Calling `event.preventDefault()` * will prevent focus and allow you to set it on a different element in the dialog, such as an input or button. * @event sl-request-close - Emitted when the user attempts to close the dialog by clicking the close button, clicking the diff --git a/src/components/drawer/drawer.ts b/src/components/drawer/drawer.ts index 9cc8e1b7..ee6a4075 100644 --- a/src/components/drawer/drawer.ts +++ b/src/components/drawer/drawer.ts @@ -31,9 +31,9 @@ let id = 0; * @slot footer - The drawer's footer, usually one or more buttons representing various options. * * @event sl-show - Emitted when the drawer opens. - * @event sl-after-show - Emitted after the drawer opens and all transitions are complete. + * @event sl-after-show - Emitted after the drawer opens and all animations are complete. * @event sl-hide - Emitted when the drawer closes. - * @event sl-after-hide - Emitted after the drawer closes and all transitions are complete. + * @event sl-after-hide - Emitted after the drawer closes and all animations are complete. * @event sl-initial-focus - Emitted when the drawer opens and the panel gains focus. Calling `event.preventDefault()` will * prevent focus and allow you to set it on a different element in the drawer, such as an input or button. * @event sl-request-close - Emitted when the user attempts to close the drawer by clicking the close button, clicking the diff --git a/src/components/tooltip/tooltip.ts b/src/components/tooltip/tooltip.ts index 76b21d97..1c272f69 100644 --- a/src/components/tooltip/tooltip.ts +++ b/src/components/tooltip/tooltip.ts @@ -18,9 +18,9 @@ let id = 0; * @slot content - The tooltip's content. Alternatively, you can use the content prop. * * @event sl-show - Emitted when the tooltip begins to show. - * @event sl-after-show - Emitted after the tooltip has shown and all transitions are complete. + * @event sl-after-show - Emitted after the tooltip has shown and all animations are complete. * @event sl-hide - Emitted when the tooltip begins to hide. - * @event sl-after-hide - Emitted after the tooltip has hidden and all transitions are complete. + * @event sl-after-hide - Emitted after the tooltip has hidden and all animations are complete. * * @csspart base - The component's base wrapper. *