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

@ -79,6 +79,8 @@ export interface DatePickerProps
* @default { static: true }
*/
flatpickrProps?: import("flatpickr/dist/types/options").Options;
[key: `data-${string}`]: any;
}
export default class DatePicker extends SvelteComponentTyped<

View file

@ -98,6 +98,8 @@ export interface DatePickerInputProps
* @default null
*/
ref?: null | HTMLInputElement;
[key: `data-${string}`]: any;
}
export default class DatePickerInput extends SvelteComponentTyped<

View file

@ -14,6 +14,8 @@ export interface DatePickerSkeletonProps
* @default "ccs-" + Math.random().toString(36)
*/
id?: string;
[key: `data-${string}`]: any;
}
export default class DatePickerSkeleton extends SvelteComponentTyped<