File size: 1,611 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
import { SvelteComponent } from "svelte";
import type { DayEvents, DayProps } from "../types.js";
declare const __propDef: {
props: DayProps;
slots: {
default: {
builder: {
readonly role: "button";
readonly 'aria-label': string;
readonly 'aria-selected': true | undefined;
readonly 'aria-disabled': true | undefined;
readonly 'data-selected': true | undefined;
readonly 'data-value': string;
readonly 'data-disabled': "" | undefined;
readonly 'data-unavailable': "" | undefined;
readonly 'data-today': "" | undefined;
readonly 'data-outside-month': "" | undefined;
readonly 'data-outside-visible-months': "" | undefined;
readonly 'data-focused': "" | undefined;
readonly tabindex: 0 | -1 | undefined;
} & {
[x: `data-melt-${string}`]: "";
} & {
action: (node: HTMLElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"click">;
};
disabled: boolean;
unavailable: boolean | undefined;
selected: boolean;
};
};
events: DayEvents;
};
export type DatePickerDayProps = typeof __propDef.props;
export type DatePickerDayEvents = typeof __propDef.events;
export type DatePickerDaySlots = typeof __propDef.slots;
export default class DatePickerDay extends SvelteComponent<DatePickerDayProps, DatePickerDayEvents, DatePickerDaySlots> {
}
export {};
|