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.
25 lines (24 loc) • 817 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import { PeriodType, type DisabledDate, type SelectedDate } from '@layerstack/utils';
declare const __propDef: {
props: {
selected?: SelectedDate;
periodType?: PeriodType;
activeDate?: "from" | "to";
/**
* Dates to disable (not selectable)
*/ disabledDates?: DisabledDate | undefined;
};
events: {
dateChange: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type DateSelectProps = typeof __propDef.props;
export type DateSelectEvents = typeof __propDef.events;
export type DateSelectSlots = typeof __propDef.slots;
export default class DateSelect extends SvelteComponentTyped<DateSelectProps, DateSelectEvents, DateSelectSlots> {
}
export {};