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) • 941 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { ComponentProps } from 'svelte';
import { type DisabledDate, type SelectedDate } from '@layerstack/utils';
import DateButton from './DateButton.svelte';
declare const __propDef: {
props: {
selected?: SelectedDate;
minDate?: Date | undefined;
maxDate?: Date | undefined;
format?: ComponentProps<DateButton>["format"];
/**
* Dates to disable (not selectable)
*/ disabledDates?: DisabledDate | undefined;
};
events: {
dateChange: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type YearListProps = typeof __propDef.props;
export type YearListEvents = typeof __propDef.events;
export type YearListSlots = typeof __propDef.slots;
export default class YearList extends SvelteComponentTyped<YearListProps, YearListEvents, YearListSlots> {
}
export {};