svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
37 lines (36 loc) • 1.06 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { DateRange as DateRangeType } from '../utils/dateRange';
declare const __propDef: {
props: {
[x: string]: any;
value?: DateRangeType;
stepper?: boolean;
center?: boolean;
label?: string | null;
error?: string;
hint?: string;
disabled?: boolean;
clearable?: boolean;
base?: boolean;
rounded?: boolean;
filled?: boolean;
dense?: boolean;
icon?: string | null;
};
events: {
change: CustomEvent<any>;
clear: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
prepend: {};
append: {};
};
};
export type DateRangeFieldProps = typeof __propDef.props;
export type DateRangeFieldEvents = typeof __propDef.events;
export type DateRangeFieldSlots = typeof __propDef.slots;
export default class DateRangeField extends SvelteComponentTyped<DateRangeFieldProps, DateRangeFieldEvents, DateRangeFieldSlots> {
}
export {};