@snowball-tech/fractal
Version:
Fractal's (Snowball's design system) React component library based on RadixUI and TailwindCSS
21 lines • 868 B
TypeScript
//#region src/components/DateTimePicker/DateTimePicker.constants.d.ts
declare enum PickerVariants {
SideBySide = "side-by-side",
Tabs = "tabs"
}
declare const DEFAULT_PICKER_VARIANT = PickerVariants.Tabs;
declare enum TimeVariants {
Clock = "clock"
}
declare const DEFAULT_TIME_VARIANT = TimeVariants.Clock;
declare enum Orientations {
Horizontal = "horizontal",
Responsive = "responsive",
Vertical = "vertical"
}
declare const DEFAULT_ORIENTATION = Orientations.Responsive;
declare const DEFAULT_DESKTOP_ORIENTATION = Orientations.Horizontal;
declare const DEFAULT_MOBILE_ORIENTATION = Orientations.Vertical;
//#endregion
export { DEFAULT_DESKTOP_ORIENTATION, DEFAULT_MOBILE_ORIENTATION, DEFAULT_ORIENTATION, DEFAULT_PICKER_VARIANT, DEFAULT_TIME_VARIANT, Orientations, PickerVariants, TimeVariants };
//# sourceMappingURL=DateTimePicker.constants.d.ts.map