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.
27 lines (26 loc) • 911 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: {
year?: number | undefined;
selected?: SelectedDate;
format?: ComponentProps<DateButton>["format"];
/**
* Dates to disable (not selectable)
*/ disabledDates?: DisabledDate | undefined;
};
events: {
dateChange: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type MonthListProps = typeof __propDef.props;
export type MonthListEvents = typeof __propDef.events;
export type MonthListSlots = typeof __propDef.slots;
export default class MonthList extends SvelteComponentTyped<MonthListProps, MonthListEvents, MonthListSlots> {
}
export {};