Run "yarn build:docs"

This commit is contained in:
Eric Liu 2023-06-04 09:49:14 -07:00
commit 34a1e2e55a
144 changed files with 304 additions and 16 deletions

View file

@ -62,6 +62,8 @@ export interface InlineNotificationProps
* @default "Close notification"
*/
closeButtonDescription?: string;
[key: `data-${string}`]: any;
}
export default class InlineNotification extends SvelteComponentTyped<

View file

@ -26,6 +26,8 @@ export interface NotificationButtonProps
* @default "Close icon"
*/
iconDescription?: string;
[key: `data-${string}`]: any;
}
export default class NotificationButton extends SvelteComponentTyped<

View file

@ -75,6 +75,8 @@ export interface ToastNotificationProps
* @default false
*/
fullWidth?: boolean;
[key: `data-${string}`]: any;
}
export default class ToastNotification extends SvelteComponentTyped<