svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
28 lines (27 loc) • 937 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import { PeriodType, type CustomIntlDateTimeFormatOptions, type SelectedDate } from '@layerstack/utils';
declare const __propDef: {
props: {
date: Date;
periodType: PeriodType;
disabled?: boolean;
selected: SelectedDate;
hidden?: boolean;
fade?: boolean;
format?: CustomIntlDateTimeFormatOptions | undefined;
variant?: import("..").ButtonVariant | undefined;
class?: string | undefined;
};
events: {
dateChange: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type DateButtonProps = typeof __propDef.props;
export type DateButtonEvents = typeof __propDef.events;
export type DateButtonSlots = typeof __propDef.slots;
export default class DateButton extends SvelteComponentTyped<DateButtonProps, DateButtonEvents, DateButtonSlots> {
}
export {};