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

@ -44,6 +44,8 @@ export interface ComposedModalProps
* @default null
*/
ref?: null | HTMLDivElement;
[key: `data-${string}`]: any;
}
export default class ComposedModal extends SvelteComponentTyped<

View file

@ -14,6 +14,8 @@ export interface ModalBodyProps
* @default false
*/
hasScrollingContent?: boolean;
[key: `data-${string}`]: any;
}
export default class ModalBody extends SvelteComponentTyped<

View file

@ -51,6 +51,8 @@ export interface ModalFooterProps
* @default false
*/
danger?: boolean;
[key: `data-${string}`]: any;
}
export default class ModalFooter extends SvelteComponentTyped<

View file

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