@mesob/ui 0.4.6 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,15 +1,16 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
- import { ReactNode, ReactElement, ComponentType } from 'react';
3
+ import { ReactNode, ReactElement, ComponentType, RefObject, Ref, ComponentProps } from 'react';
4
4
  export { u as useEntityPagination, a as useEntityParams } from './use-entity-params-nqD69tdX.js';
5
5
  import * as react_hook_form from 'react-hook-form';
6
6
  import { Control, UseFormRegister, ControllerRenderProps, FieldError as FieldError$1, FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
7
7
  import { Locale } from './lib/locale.js';
8
+ import * as class_variance_authority_types from 'class-variance-authority/types';
9
+ import { VariantProps } from 'class-variance-authority';
10
+ import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
8
11
  import { Editor } from '@tiptap/react';
9
12
  import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
10
- import * as class_variance_authority_types from 'class-variance-authority/types';
11
13
  import { useRender } from '@base-ui/react/use-render';
12
- import { VariantProps } from 'class-variance-authority';
13
14
  import { ComponentColor, ComponentSize, ComponentRadius, InputWrapperOrder } from './lib/theme-schema.js';
14
15
  import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
15
16
  import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
@@ -24,7 +25,6 @@ import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
24
25
  import { ColorFormat } from './lib/color-utils.js';
25
26
  import { Combobox as Combobox$1 } from '@base-ui/react/combobox';
26
27
  import { Autocomplete } from '@base-ui/react/autocomplete';
27
- import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
28
28
  import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
29
29
  import { ColumnDef, SortingState, ColumnFiltersState, VisibilityState, Column, Table as Table$1 } from '@tanstack/react-table';
30
30
  export { DirectionProvider, useDirection } from '@base-ui/react/direction-provider';
@@ -52,6 +52,34 @@ import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
52
52
  import 'nuqs';
53
53
  import 'zod';
54
54
 
55
+ type ClarityProps = {
56
+ clarityId: string;
57
+ };
58
+ declare function Clarity({ clarityId }: ClarityProps): null;
59
+
60
+ type DisableDevtoolOptions = {
61
+ url?: string;
62
+ md5?: string;
63
+ tkName?: string;
64
+ disableMenu?: boolean;
65
+ };
66
+ type DisableDevtoolProps = {
67
+ /** When true, loads and runs disable-devtool (e.g. process.env.NEXT_PUBLIC_ENV === '1') */
68
+ enable: boolean;
69
+ options?: DisableDevtoolOptions;
70
+ };
71
+ declare function DisableDevtool({ enable, options }: DisableDevtoolProps): null;
72
+
73
+ type GoogleAnalyticsProps = {
74
+ gaId: string;
75
+ };
76
+ declare function GoogleAnalytics({ gaId }: GoogleAnalyticsProps): null;
77
+ declare global {
78
+ interface Window {
79
+ dataLayer?: unknown[];
80
+ }
81
+ }
82
+
55
83
  type BreadcrumbItemData = {
56
84
  label: string;
57
85
  href?: string;
@@ -804,6 +832,58 @@ type MesobLogoProps = {
804
832
  };
805
833
  declare function MesobLogo({ width, height, textColor, iconBackgroundColor, iconColor, className, }: MesobLogoProps): react_jsx_runtime.JSX.Element;
806
834
 
835
+ declare function Dialog({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
836
+ declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
837
+ declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
838
+ declare function DialogClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
839
+ declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Backdrop>): react_jsx_runtime.JSX.Element;
840
+ declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog$1.Popup> & {
841
+ showCloseButton?: boolean;
842
+ }): react_jsx_runtime.JSX.Element;
843
+ declare function DialogHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
844
+ declare function DialogFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
845
+ declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
846
+ declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
847
+
848
+ declare const modalContentVariants: (props?: ({
849
+ size?: "sm" | "md" | "lg" | "xl" | "full" | "2xl" | null | undefined;
850
+ placement?: "center" | "top" | null | undefined;
851
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
852
+ type ModalRootProps = React$1.ComponentProps<typeof Dialog>;
853
+ type ModalTriggerProps = React$1.ComponentProps<typeof DialogTrigger>;
854
+ type ModalCloseProps = React$1.ComponentProps<typeof DialogClose>;
855
+ type ModalContentProps = Omit<React$1.ComponentProps<typeof DialogContent>, 'children'> & VariantProps<typeof modalContentVariants> & {
856
+ children: React$1.ReactNode;
857
+ };
858
+ type ModalHeaderProps = React$1.ComponentProps<'div'>;
859
+ type ModalTitleProps = React$1.ComponentProps<typeof DialogTitle>;
860
+ type ModalSubtitleProps = React$1.ComponentProps<typeof DialogDescription>;
861
+ type ModalBodyProps = React$1.ComponentProps<'div'>;
862
+ type ModalFooterProps = React$1.ComponentProps<typeof DialogFooter>;
863
+ type ModalProps = ModalRootProps & VariantProps<typeof modalContentVariants> & {
864
+ closeOnInteractOutside?: boolean;
865
+ trigger?: ModalTriggerProps['render'];
866
+ triggerProps?: Omit<ModalTriggerProps, 'render'>;
867
+ title?: React$1.ReactNode;
868
+ subtitle?: React$1.ReactNode;
869
+ children?: React$1.ReactNode;
870
+ footer?: React$1.ReactNode;
871
+ contentProps?: Omit<React$1.ComponentProps<typeof DialogContent>, 'children' | 'showCloseButton'>;
872
+ headerProps?: ModalHeaderProps;
873
+ bodyProps?: ModalBodyProps;
874
+ footerProps?: ModalFooterProps;
875
+ };
876
+ declare function ModalRoot({ ...props }: ModalRootProps): react_jsx_runtime.JSX.Element;
877
+ declare function ModalTrigger(props: ModalTriggerProps): react_jsx_runtime.JSX.Element;
878
+ declare function ModalClose({ className, ...props }: ModalCloseProps): react_jsx_runtime.JSX.Element;
879
+ declare function ModalContent({ className, size, placement, ...props }: ModalContentProps): react_jsx_runtime.JSX.Element;
880
+ declare function ModalHeader({ className, children, ...props }: ModalHeaderProps): react_jsx_runtime.JSX.Element;
881
+ declare function ModalTitle({ className, ...props }: ModalTitleProps): react_jsx_runtime.JSX.Element;
882
+ declare function ModalSubtitle({ className, ...props }: ModalSubtitleProps): react_jsx_runtime.JSX.Element;
883
+ declare function ModalBody({ className, ...props }: ModalBodyProps): react_jsx_runtime.JSX.Element;
884
+ declare function ModalFooter({ className, ...props }: ModalFooterProps): react_jsx_runtime.JSX.Element;
885
+ declare function Modal({ open, defaultOpen, onOpenChange, closeOnInteractOutside, trigger, triggerProps, title, subtitle, children, footer, contentProps, headerProps, bodyProps, footerProps, size, placement, ...props }: ModalProps): react_jsx_runtime.JSX.Element;
886
+
807
887
  type PoweredByProps = {
808
888
  className?: string;
809
889
  };
@@ -879,6 +959,690 @@ type ThemeToggleProps = {
879
959
  };
880
960
  declare function ThemeToggle({ className }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
881
961
 
962
+ type DateTimePickerPreset = {
963
+ value: Date;
964
+ label: string;
965
+ };
966
+ interface DateTimePickerProps {
967
+ label?: string;
968
+ placeholder?: string;
969
+ value?: Date | null;
970
+ defaultValue?: Date | null;
971
+ onChange?: (value: Date | null) => void;
972
+ disabled?: boolean;
973
+ clearable?: boolean;
974
+ withSeconds?: boolean;
975
+ presets?: DateTimePickerPreset[];
976
+ valueFormat?: (date: Date) => string;
977
+ description?: string;
978
+ error?: string;
979
+ required?: boolean;
980
+ size?: 'sm' | 'md' | 'lg' | 'xl';
981
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
982
+ dropdownType?: 'popover' | 'modal';
983
+ 'aria-label'?: string;
984
+ className?: string;
985
+ }
986
+ type View = 'days' | 'months' | 'years';
987
+ type CalendarType = 'GC' | 'EC';
988
+ interface CalendarCell {
989
+ gcDate: Date;
990
+ day: number;
991
+ month: number;
992
+ year: number;
993
+ current: boolean;
994
+ weekend: boolean;
995
+ isToday: boolean;
996
+ isSelected: boolean;
997
+ }
998
+
999
+ type DatePickerType = 'default' | 'multiple' | 'range';
1000
+ type DatePickerPreset = {
1001
+ /** Single date or [start, end] tuple for range presets. */
1002
+ value: Date | [Date, Date];
1003
+ label: string;
1004
+ };
1005
+ /** Return value of `getDayProps` for custom day behavior and styling. */
1006
+ type DatePickerGetDayPropsResult = {
1007
+ onClick?: () => void;
1008
+ onMouseEnter?: () => void;
1009
+ onMouseLeave?: () => void;
1010
+ /** Override selected appearance (e.g. fully custom selection). */
1011
+ selected?: boolean;
1012
+ className?: string;
1013
+ /** Force-disabled day (in addition to min/max rules). */
1014
+ disabled?: boolean;
1015
+ };
1016
+ interface DatePickerBaseProps {
1017
+ /** Allow deselecting current date by clicking on it. Ignored for type="multiple" and type="range". */
1018
+ allowDeselect?: boolean;
1019
+ /** Hide dates outside the current month. @default false */
1020
+ hideOutsideDates?: boolean;
1021
+ /** Hide weekday header row (Mo, Tu, …). @default false */
1022
+ hideWeekdays?: boolean;
1023
+ /** First day of week: 0 = Sunday … 6 = Saturday. @default 1 (Monday) */
1024
+ firstDayOfWeek?: number;
1025
+ /** Show ISO week numbers in the first column. @default false */
1026
+ withWeekNumbers?: boolean;
1027
+ /** Weekend days as JS weekday indices (0 = Sunday … 6 = Saturday). @default [0, 6] */
1028
+ weekendDays?: number[];
1029
+ /** Inclusive minimum selectable date (time ignored). */
1030
+ minDate?: Date;
1031
+ /** Inclusive maximum selectable date (time ignored). */
1032
+ maxDate?: Date;
1033
+ /** Replace the default day cell content (day number). */
1034
+ renderDay?: (date: Date) => ReactNode;
1035
+ /** Initial calendar level. @default 'days' */
1036
+ defaultLevel?: View;
1037
+ /** Initial calendar system. @default 'GC' */
1038
+ defaultCalendarType?: CalendarType;
1039
+ /** Additional CSS class on root element */
1040
+ className?: string;
1041
+ /** Quick-select date presets displayed beside the calendar. */
1042
+ presets?: DatePickerPreset[];
1043
+ /** Date used to determine initial month/year shown. Ignored when `date` is set. */
1044
+ defaultDate?: Date;
1045
+ /** Controlled currently-displayed month/year. Only year and month are used. */
1046
+ date?: Date;
1047
+ /** Called when the displayed month/year changes. */
1048
+ onDateChange?: (date: Date) => void;
1049
+ /**
1050
+ * Display-only calendar: no day selection, presets, level changes, or GC/EC toggle.
1051
+ * Month navigation (prev/next) still works.
1052
+ */
1053
+ static?: boolean;
1054
+ /**
1055
+ * Custom per-day interaction and styles. If you pass `onClick`, the default
1056
+ * selection handler is not run for that click (build your own selection in state).
1057
+ */
1058
+ getDayProps?: (date: Date) => DatePickerGetDayPropsResult | undefined;
1059
+ }
1060
+ type DatePickerProps = (DatePickerBaseProps & {
1061
+ type?: 'default';
1062
+ value?: Date | null;
1063
+ defaultValue?: Date | null;
1064
+ onChange?: (value: Date | null) => void;
1065
+ }) | (DatePickerBaseProps & {
1066
+ type: 'multiple';
1067
+ value?: Date[];
1068
+ defaultValue?: Date[];
1069
+ onChange?: (value: Date[]) => void;
1070
+ }) | (DatePickerBaseProps & {
1071
+ type: 'range';
1072
+ value?: [Date | null, Date | null];
1073
+ defaultValue?: [Date | null, Date | null];
1074
+ onChange?: (value: [Date | null, Date | null]) => void;
1075
+ /** Allow start and end to be the same date. @default false */
1076
+ allowSingleDateInRange?: boolean;
1077
+ });
1078
+
1079
+ type DateParserResult = Date | string | null;
1080
+ /** Custom parser: return a `Date`, ISO `YYYY-MM-DD` string, or `null` if invalid. */
1081
+ type DateParserFn = (input: string) => DateParserResult;
1082
+ type DateInputSize = 'sm' | 'md' | 'lg' | 'xl';
1083
+ interface DateInputProps extends Omit<React.ComponentProps<'input'>, 'value' | 'defaultValue' | 'onChange' | 'size' | 'type'> {
1084
+ /** Controlled value as `YYYY-MM-DD`, or `null` when empty. */
1085
+ value?: string | null;
1086
+ defaultValue?: string | null;
1087
+ onChange?: (value: string | null) => void;
1088
+ /**
1089
+ * Display / edit format. Use a dayjs-like pattern (`YYYY MMM DD`, `MMMM D, YYYY`, …)
1090
+ * or a function `(date) => string`.
1091
+ * @default 'MMMM D, YYYY' (e.g. March 10, 2028)
1092
+ */
1093
+ valueFormat?: string | ((date: Date) => string);
1094
+ dateParser?: DateParserFn;
1095
+ label?: ReactNode;
1096
+ description?: ReactNode;
1097
+ error?: ReactNode;
1098
+ required?: boolean;
1099
+ withAsterisk?: boolean;
1100
+ clearable?: boolean;
1101
+ minDate?: Date;
1102
+ maxDate?: Date;
1103
+ /** @default 'md' */
1104
+ size?: DateInputSize;
1105
+ /** @default 'default' */
1106
+ variant?: 'default' | 'filled';
1107
+ /** @default 'md' */
1108
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1109
+ /** Allow deselecting by clicking the selected day in the calendar (when `clearable`). @default follows `clearable` */
1110
+ allowDeselect?: boolean;
1111
+ hideOutsideDates?: boolean;
1112
+ hideWeekdays?: boolean;
1113
+ firstDayOfWeek?: number;
1114
+ withWeekNumbers?: boolean;
1115
+ weekendDays?: number[];
1116
+ renderDay?: (date: Date) => ReactNode;
1117
+ defaultLevel?: View;
1118
+ defaultCalendarType?: CalendarType;
1119
+ presets?: DatePickerPreset[];
1120
+ defaultDate?: Date;
1121
+ date?: Date;
1122
+ onDateChange?: (date: Date) => void;
1123
+ className?: string;
1124
+ /** Extra class on the calendar popover surface. */
1125
+ popoverClassName?: string;
1126
+ }
1127
+
1128
+ declare const DateInput: React$1.ForwardRefExoticComponent<Omit<DateInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
1129
+
1130
+ /** Format a date using a small dayjs-like pattern subset. */
1131
+ declare function formatDateWithPattern(date: Date, pattern: string): string;
1132
+ /** Parse strings produced by common `valueFormat` patterns (and a few extras). */
1133
+ declare function parseDateWithPattern(str: string, pattern: string): Date | null;
1134
+ /** Loose parse: ISO date, `Date.parse`, then DD/MM/YYYY. */
1135
+ declare function parseLooseDateString(str: string): Date | null;
1136
+
1137
+ declare function stripTime(d: Date): Date;
1138
+ declare function dateToIsoDate(d: Date): string;
1139
+ declare function isoDateToDate(s: string): Date | null;
1140
+ declare function addDays(d: Date, delta: number): Date;
1141
+ declare function isSameDay(a: Date, b: Date): boolean;
1142
+ /** Parse `YYYY-MM-DD` string or `Date`; invalid string falls back to `fallback`. */
1143
+ declare function parseAnchorDate(v: string | Date | undefined, fallback: Date): Date;
1144
+
1145
+ declare function DatePicker(props: DatePickerProps): react_jsx_runtime.JSX.Element;
1146
+
1147
+ interface DatePickerContentProps {
1148
+ view: View;
1149
+ calendarType: CalendarType;
1150
+ cells: CalendarCell[];
1151
+ years: number[];
1152
+ decadeStart: number;
1153
+ ecViewYear: number;
1154
+ gcViewYear: number;
1155
+ primaryDate: Date | null;
1156
+ hasRange: boolean;
1157
+ hideOutsideDates: boolean;
1158
+ hideWeekdays: boolean;
1159
+ firstDayOfWeek: number;
1160
+ withWeekNumbers: boolean;
1161
+ weekendDays: number[];
1162
+ prevDisabled: boolean;
1163
+ nextDisabled: boolean;
1164
+ isDayDisabled: (date: Date) => boolean;
1165
+ renderDay?: (date: Date) => ReactNode;
1166
+ getDayProps?: (date: Date) => DatePickerGetDayPropsResult | undefined;
1167
+ /** Display-only: selection and drill-down disabled; prev/next allowed. */
1168
+ static?: boolean;
1169
+ headerLabel: string;
1170
+ presets?: DatePickerPreset[];
1171
+ onPresetClick?: (preset: DatePickerPreset) => void;
1172
+ onPrev: () => void;
1173
+ onNext: () => void;
1174
+ onHeaderClick: () => void;
1175
+ onDayClick: (cell: CalendarCell) => void;
1176
+ onDayHover: (cell: CalendarCell) => void;
1177
+ onGridMouseLeave: () => void;
1178
+ onMonthSelect: (i: number) => void;
1179
+ onYearSelect: (y: number) => void;
1180
+ onCalendarTypeChange: (type: CalendarType) => void;
1181
+ isDateSelected: (date: Date) => boolean;
1182
+ isDateInRange: (date: Date) => boolean;
1183
+ isRangeStart: (date: Date) => boolean;
1184
+ isRangeEnd: (date: Date) => boolean;
1185
+ }
1186
+ declare function DatePickerContent({ view, calendarType, cells, years, decadeStart, ecViewYear, gcViewYear, primaryDate, hasRange, hideOutsideDates, hideWeekdays, firstDayOfWeek, withWeekNumbers, weekendDays, prevDisabled, nextDisabled, isDayDisabled, renderDay, getDayProps, static: isStatic, headerLabel, presets, onPresetClick, onPrev, onNext, onHeaderClick, onDayClick, onDayHover, onGridMouseLeave, onMonthSelect, onYearSelect, onCalendarTypeChange, isDateSelected, isDateInRange, isRangeStart, isRangeEnd, }: DatePickerContentProps): react_jsx_runtime.JSX.Element;
1187
+
1188
+ type DatePickerInputType = 'default' | 'multiple' | 'range';
1189
+ type DatePickerInputFormatter = (opts: {
1190
+ type: DatePickerInputType;
1191
+ date: Date | Date[] | [Date | null, Date | null];
1192
+ }) => string;
1193
+ interface DatePickerInputBaseProps {
1194
+ label?: string;
1195
+ placeholder?: string;
1196
+ description?: string;
1197
+ error?: string;
1198
+ required?: boolean;
1199
+ /** Red asterisk next to label (Mantine-style). */
1200
+ withAsterisk?: boolean;
1201
+ disabled?: boolean;
1202
+ clearable?: boolean;
1203
+ /** @default 'md' */
1204
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1205
+ /** @default 'md' */
1206
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1207
+ /** @default 'popover' */
1208
+ dropdownType?: 'popover' | 'modal';
1209
+ /** @default 'default' */
1210
+ variant?: 'default' | 'filled';
1211
+ leftSection?: ReactNode;
1212
+ leftSectionPointerEvents?: 'none' | 'auto';
1213
+ /** Custom display format function for a single Date. */
1214
+ valueFormat?: (date: Date) => string;
1215
+ /** Advanced formatter — receives the full value + type. Overrides valueFormat. */
1216
+ valueFormatter?: DatePickerInputFormatter;
1217
+ presets?: DatePickerPreset[];
1218
+ /** Allow deselecting current date (single type only). */
1219
+ allowDeselect?: boolean;
1220
+ /** Hide dates outside the current month. */
1221
+ hideOutsideDates?: boolean;
1222
+ /** Hide weekday header row. */
1223
+ hideWeekdays?: boolean;
1224
+ /** First day of week: 0 = Sunday … 6 = Saturday. @default 1 */
1225
+ firstDayOfWeek?: number;
1226
+ /** Show ISO week numbers. @default false */
1227
+ withWeekNumbers?: boolean;
1228
+ /** Weekend days (JS: 0 = Sunday … 6 = Saturday). @default [0, 6] */
1229
+ weekendDays?: number[];
1230
+ minDate?: Date;
1231
+ maxDate?: Date;
1232
+ renderDay?: (date: Date) => ReactNode;
1233
+ 'aria-label'?: string;
1234
+ className?: string;
1235
+ }
1236
+ type DatePickerInputProps = (DatePickerInputBaseProps & {
1237
+ type?: 'default';
1238
+ value?: Date | null;
1239
+ defaultValue?: Date | null;
1240
+ onChange?: (value: Date | null) => void;
1241
+ }) | (DatePickerInputBaseProps & {
1242
+ type: 'multiple';
1243
+ value?: Date[];
1244
+ defaultValue?: Date[];
1245
+ onChange?: (value: Date[]) => void;
1246
+ }) | (DatePickerInputBaseProps & {
1247
+ type: 'range';
1248
+ value?: [Date | null, Date | null];
1249
+ defaultValue?: [Date | null, Date | null];
1250
+ onChange?: (value: [Date | null, Date | null]) => void;
1251
+ allowSingleDateInRange?: boolean;
1252
+ });
1253
+
1254
+ declare const DatePickerInput: React$1.ForwardRefExoticComponent<DatePickerInputProps & React$1.RefAttributes<HTMLButtonElement>>;
1255
+
1256
+ type DateCalendarProps = Omit<Extract<DatePickerProps, {
1257
+ type?: 'default';
1258
+ }>, 'type'>;
1259
+ /**
1260
+ * One-month calendar for a single date — shorthand for `DatePicker` with
1261
+ * `type="default"`. Use `DatePicker` directly for `type="multiple" | "range"`,
1262
+ * `static`, `getDayProps`, and other full props.
1263
+ */
1264
+ declare function DateCalendar(props: DateCalendarProps): react_jsx_runtime.JSX.Element;
1265
+
1266
+ interface DateTimeDropdownContentProps {
1267
+ presets?: DateTimePickerPreset[];
1268
+ onPresetClick?: (preset: DateTimePickerPreset) => void;
1269
+ view: View;
1270
+ calendarType: CalendarType;
1271
+ value: Date | null;
1272
+ headerLabel: string;
1273
+ cells: CalendarCell[];
1274
+ years: number[];
1275
+ decadeStart: number;
1276
+ ecViewYear: number;
1277
+ gcViewYear: number;
1278
+ onPrev: () => void;
1279
+ onNext: () => void;
1280
+ onHeaderClick: () => void;
1281
+ onDayClick: (cell: CalendarCell) => void;
1282
+ onMonthSelect: (i: number) => void;
1283
+ onYearSelect: (y: number) => void;
1284
+ onCalendarTypeChange: (type: CalendarType) => void;
1285
+ timeH: string;
1286
+ timeM: string;
1287
+ timeS: string;
1288
+ timeFocus: 'h' | 'm' | 's' | null;
1289
+ withSeconds: boolean;
1290
+ onTimeFocus: (f: 'h' | 'm' | 's') => void;
1291
+ onTimeBlur: (field: 'h' | 'm' | 's') => void;
1292
+ onTimeHChange: (v: string) => void;
1293
+ onTimeMChange: (v: string) => void;
1294
+ onTimeSChange: (v: string) => void;
1295
+ onConfirm: () => void;
1296
+ hasPresets: boolean;
1297
+ }
1298
+
1299
+ declare const DateTimePicker: React$1.ForwardRefExoticComponent<DateTimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
1300
+
1301
+ interface DateInputShellProps {
1302
+ label?: string;
1303
+ placeholder: string;
1304
+ description?: string;
1305
+ error?: string;
1306
+ required?: boolean;
1307
+ /** Show required asterisk next to the label (visual only unless paired with `required`). */
1308
+ withAsterisk?: boolean;
1309
+ disabled?: boolean;
1310
+ clearable?: boolean;
1311
+ size: 'sm' | 'md' | 'lg' | 'xl';
1312
+ radius: 'sm' | 'md' | 'lg' | 'xl';
1313
+ dropdownType: 'popover' | 'modal';
1314
+ /** @default 'default' */
1315
+ variant?: 'default' | 'filled';
1316
+ leftSection?: ReactNode;
1317
+ leftSectionPointerEvents?: 'none' | 'auto';
1318
+ 'aria-label'?: string;
1319
+ className?: string;
1320
+ /** Pre-computed display string shown on the trigger. null = show placeholder. */
1321
+ displayValue: string | null;
1322
+ /** Whether clear button should be visible (displayValue != null is NOT enough for datetime, which uses `value`). */
1323
+ hasValue?: boolean;
1324
+ open: boolean;
1325
+ onOpenChange: (open: boolean) => void;
1326
+ contentSide: 'top' | 'bottom';
1327
+ triggerRef: RefObject<HTMLDivElement | null>;
1328
+ onClear: () => void;
1329
+ /** Extra class on the dropdown (popover/dialog content). */
1330
+ dropdownClassName?: string;
1331
+ children: ReactNode;
1332
+ buttonRef?: Ref<HTMLButtonElement>;
1333
+ }
1334
+ declare function DateInputShell({ label, placeholder, description, error, required, withAsterisk, disabled, clearable, size, radius, dropdownType, variant, leftSection, leftSectionPointerEvents, 'aria-label': ariaLabel, className, displayValue, hasValue, open, onOpenChange, contentSide, triggerRef, onClear, dropdownClassName, children, buttonRef, }: DateInputShellProps): react_jsx_runtime.JSX.Element;
1335
+
1336
+ /** Plain text field for date entry (used inside DateTimePicker time flows). For popover + calendar, use `DateInput` from `@mesob/ui/components`. */
1337
+ type TextDateInputProps = {
1338
+ value: Date | null;
1339
+ onChange?: (value: Date | null) => void;
1340
+ /** Format date for display. @default dd/MM/yyyy */
1341
+ format?: (date: Date) => string;
1342
+ /** Parse string to date. @default loose dd/MM/yyyy or ISO */
1343
+ parse?: (s: string) => Date | null;
1344
+ placeholder?: string;
1345
+ disabled?: boolean;
1346
+ className?: string;
1347
+ 'aria-label'?: string;
1348
+ };
1349
+ declare function TextDateInput({ value, onChange, format, parse, placeholder, disabled, className, 'aria-label': ariaLabel, }: TextDateInputProps): react_jsx_runtime.JSX.Element;
1350
+
1351
+ type TimeGridProps = {
1352
+ value: Date | null;
1353
+ onChange: (date: Date | null) => void;
1354
+ /** @default 30 */
1355
+ stepMinutes?: number;
1356
+ /** @default 0 */
1357
+ minHour?: number;
1358
+ /** @default 24 */
1359
+ maxHour?: number;
1360
+ /** Base date for building time slots (only date part used). @default today */
1361
+ baseDate?: Date;
1362
+ className?: string;
1363
+ };
1364
+ declare function TimeGrid({ value, onChange, stepMinutes, minHour, maxHour, baseDate, className, }: TimeGridProps): react_jsx_runtime.JSX.Element;
1365
+
1366
+ type TimeInputProps = {
1367
+ value: Date | null;
1368
+ onChange?: (date: Date | null) => void;
1369
+ withSeconds?: boolean;
1370
+ disabled?: boolean;
1371
+ /** @default today */
1372
+ baseDate?: Date;
1373
+ className?: string;
1374
+ 'aria-label'?: string;
1375
+ };
1376
+ declare function TimeInput({ value, onChange, withSeconds, disabled, baseDate, className, 'aria-label': ariaLabel, }: TimeInputProps): react_jsx_runtime.JSX.Element;
1377
+
1378
+ type TimeValueProps = {
1379
+ value: Date;
1380
+ /** @default HH:mm */
1381
+ format?: (date: Date) => string;
1382
+ withSeconds?: boolean;
1383
+ className?: string;
1384
+ };
1385
+ declare function TimeValue({ value, format, withSeconds, className, }: TimeValueProps): react_jsx_runtime.JSX.Element;
1386
+
1387
+ interface DateTimeTriggerButtonProps {
1388
+ displayValue: string | null;
1389
+ placeholder: string;
1390
+ disabled: boolean;
1391
+ error?: string;
1392
+ open: boolean;
1393
+ size: 'sm' | 'md' | 'lg' | 'xl';
1394
+ radius: 'sm' | 'md' | 'lg' | 'xl';
1395
+ /** @default 'default' */
1396
+ variant?: 'default' | 'filled';
1397
+ leftSection?: ReactNode;
1398
+ leftSectionPointerEvents?: 'none' | 'auto';
1399
+ 'aria-label'?: string;
1400
+ }
1401
+ declare const DateTimeTriggerButton: React$1.ForwardRefExoticComponent<DateTimeTriggerButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
1402
+
1403
+ type MiniCalendarDayButtonProps = Partial<Omit<ComponentProps<'button'>, 'type'>>;
1404
+ interface MiniCalendarProps {
1405
+ className?: string;
1406
+ /** How many consecutive days to show. @default 7 */
1407
+ numberOfDays?: number;
1408
+ /** Selected date as `YYYY-MM-DD`, or `null`. */
1409
+ value?: string | null;
1410
+ defaultValue?: string | null;
1411
+ onChange?: (value: string | null) => void;
1412
+ /** First visible day is anchored from this date (`YYYY-MM-DD`, `Date`, or omit for today). */
1413
+ defaultDate?: string | Date;
1414
+ minDate?: Date;
1415
+ maxDate?: Date;
1416
+ /** Extra props per day button (e.g. weekend `style` / `className`). */
1417
+ getDayProps?: (date: Date) => MiniCalendarDayButtonProps;
1418
+ previousControlProps?: ComponentProps<'button'>;
1419
+ nextControlProps?: ComponentProps<'button'>;
1420
+ }
1421
+
1422
+ declare function MiniCalendar({ className, getDayProps, previousControlProps, nextControlProps, ...rest }: MiniCalendarProps): react_jsx_runtime.JSX.Element;
1423
+
1424
+ type MonthPickerType = 'default' | 'multiple' | 'range';
1425
+ type MonthPickerView = 'months' | 'years';
1426
+ interface MonthPickerBaseProps {
1427
+ allowDeselect?: boolean;
1428
+ /** @default 'GC' */
1429
+ defaultCalendarType?: CalendarType;
1430
+ className?: string;
1431
+ /** Year to display initially. Only year is used. */
1432
+ defaultDate?: Date;
1433
+ /** Controlled displayed year. */
1434
+ date?: Date;
1435
+ /** Called when displayed year changes. */
1436
+ onDateChange?: (date: Date) => void;
1437
+ /** @default 'decade' — set to 'year' to prevent navigation to decade view. */
1438
+ maxLevel?: 'year' | 'decade';
1439
+ }
1440
+ type MonthPickerProps = (MonthPickerBaseProps & {
1441
+ type?: 'default';
1442
+ value?: Date | null;
1443
+ defaultValue?: Date | null;
1444
+ onChange?: (value: Date | null) => void;
1445
+ }) | (MonthPickerBaseProps & {
1446
+ type: 'multiple';
1447
+ value?: Date[];
1448
+ defaultValue?: Date[];
1449
+ onChange?: (value: Date[]) => void;
1450
+ }) | (MonthPickerBaseProps & {
1451
+ type: 'range';
1452
+ value?: [Date | null, Date | null];
1453
+ defaultValue?: [Date | null, Date | null];
1454
+ onChange?: (value: [Date | null, Date | null]) => void;
1455
+ allowSingleDateInRange?: boolean;
1456
+ });
1457
+
1458
+ declare function MonthPicker(props: MonthPickerProps): react_jsx_runtime.JSX.Element;
1459
+
1460
+ interface MonthPickerContentProps {
1461
+ view: MonthPickerView;
1462
+ calendarType: CalendarType;
1463
+ years: number[];
1464
+ decadeStart: number;
1465
+ ecViewYear: number;
1466
+ gcViewYear: number;
1467
+ primaryDate: Date | null;
1468
+ hasRange: boolean;
1469
+ headerLabel: string;
1470
+ onPrev: () => void;
1471
+ onNext: () => void;
1472
+ onHeaderClick: () => void;
1473
+ onMonthClick: (monthIndex: number) => void;
1474
+ onMonthHover: (monthIndex: number) => void;
1475
+ onGridMouseLeave: () => void;
1476
+ onYearSelect: (y: number) => void;
1477
+ onCalendarTypeChange: (type: CalendarType) => void;
1478
+ isMonthSelected: (monthIndex: number) => boolean;
1479
+ isMonthInRange: (monthIndex: number) => boolean;
1480
+ isRangeStart: (monthIndex: number) => boolean;
1481
+ isRangeEnd: (monthIndex: number) => boolean;
1482
+ }
1483
+ declare function MonthPickerContent({ view, calendarType, years, decadeStart, ecViewYear: _ecViewYear, gcViewYear: _gcViewYear, primaryDate, hasRange, headerLabel, onPrev, onNext, onHeaderClick, onMonthClick, onMonthHover, onGridMouseLeave, onYearSelect, onCalendarTypeChange, isMonthSelected, isMonthInRange, isRangeStart, isRangeEnd, }: MonthPickerContentProps): react_jsx_runtime.JSX.Element;
1484
+
1485
+ type MonthPickerInputType = 'default' | 'multiple' | 'range';
1486
+ type MonthPickerInputFormatter = (opts: {
1487
+ type: MonthPickerInputType;
1488
+ date: Date | Date[] | [Date | null, Date | null];
1489
+ }) => string;
1490
+ interface MonthPickerInputBaseProps {
1491
+ label?: string;
1492
+ placeholder?: string;
1493
+ description?: string;
1494
+ error?: string;
1495
+ required?: boolean;
1496
+ disabled?: boolean;
1497
+ clearable?: boolean;
1498
+ /** @default 'md' */
1499
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1500
+ /** @default 'md' */
1501
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1502
+ /** @default 'popover' */
1503
+ dropdownType?: 'popover' | 'modal';
1504
+ /** Custom display format function for a single Date. */
1505
+ valueFormat?: (date: Date) => string;
1506
+ /** Advanced formatter — receives the full value + type. Overrides valueFormat. */
1507
+ valueFormatter?: MonthPickerInputFormatter;
1508
+ allowDeselect?: boolean;
1509
+ /** @default 'decade' */
1510
+ maxLevel?: 'year' | 'decade';
1511
+ 'aria-label'?: string;
1512
+ className?: string;
1513
+ }
1514
+ type MonthPickerInputProps = (MonthPickerInputBaseProps & {
1515
+ type?: 'default';
1516
+ value?: Date | null;
1517
+ defaultValue?: Date | null;
1518
+ onChange?: (value: Date | null) => void;
1519
+ }) | (MonthPickerInputBaseProps & {
1520
+ type: 'multiple';
1521
+ value?: Date[];
1522
+ defaultValue?: Date[];
1523
+ onChange?: (value: Date[]) => void;
1524
+ }) | (MonthPickerInputBaseProps & {
1525
+ type: 'range';
1526
+ value?: [Date | null, Date | null];
1527
+ defaultValue?: [Date | null, Date | null];
1528
+ onChange?: (value: [Date | null, Date | null]) => void;
1529
+ allowSingleDateInRange?: boolean;
1530
+ });
1531
+
1532
+ declare const MonthPickerInput: React$1.ForwardRefExoticComponent<MonthPickerInputProps & React$1.RefAttributes<HTMLButtonElement>>;
1533
+
1534
+ type TimePickerProps = {
1535
+ value?: Date | null;
1536
+ defaultValue?: Date | null;
1537
+ onChange?: (value: Date | null) => void;
1538
+ withSeconds?: boolean;
1539
+ label?: string;
1540
+ placeholder?: string;
1541
+ disabled?: boolean;
1542
+ clearable?: boolean;
1543
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1544
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1545
+ dropdownType?: 'popover' | 'modal';
1546
+ 'aria-label'?: string;
1547
+ className?: string;
1548
+ valueFormat?: (date: Date) => string;
1549
+ };
1550
+
1551
+ declare const TimePicker: React$1.ForwardRefExoticComponent<TimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
1552
+
1553
+ type TimePickerContentProps = {
1554
+ timeH: string;
1555
+ timeM: string;
1556
+ timeS: string;
1557
+ timeFocus: 'h' | 'm' | 's' | null;
1558
+ withSeconds: boolean;
1559
+ onTimeFocus: (f: 'h' | 'm' | 's') => void;
1560
+ onTimeBlur: (field: 'h' | 'm' | 's') => void;
1561
+ onTimeHChange: (v: string) => void;
1562
+ onTimeMChange: (v: string) => void;
1563
+ onTimeSChange: (v: string) => void;
1564
+ onConfirm: () => void;
1565
+ };
1566
+
1567
+ type YearPickerContentProps = {
1568
+ calendarType: CalendarType;
1569
+ years: number[];
1570
+ decadeStart: number;
1571
+ headerLabel: string;
1572
+ onPrev: () => void;
1573
+ onNext: () => void;
1574
+ onYearClick: (y: number) => void;
1575
+ onYearHover: (y: number) => void;
1576
+ onGridMouseLeave: () => void;
1577
+ onCalendarTypeChange: (type: CalendarType) => void;
1578
+ isYearSelected: (y: number) => boolean;
1579
+ isYearInRange: (y: number) => boolean;
1580
+ isRangeStart: (y: number) => boolean;
1581
+ isRangeEnd: (y: number) => boolean;
1582
+ };
1583
+
1584
+ type YearPickerType = 'default' | 'range';
1585
+ interface YearPickerBaseProps {
1586
+ allowDeselect?: boolean;
1587
+ /** @default 'GC' */
1588
+ defaultCalendarType?: CalendarType;
1589
+ className?: string;
1590
+ defaultDate?: Date;
1591
+ date?: Date;
1592
+ onDateChange?: (date: Date) => void;
1593
+ }
1594
+ type YearPickerProps = (YearPickerBaseProps & {
1595
+ type?: 'default';
1596
+ value?: Date | null;
1597
+ defaultValue?: Date | null;
1598
+ onChange?: (value: Date | null) => void;
1599
+ }) | (YearPickerBaseProps & {
1600
+ type: 'range';
1601
+ value?: [Date | null, Date | null];
1602
+ defaultValue?: [Date | null, Date | null];
1603
+ onChange?: (value: [Date | null, Date | null]) => void;
1604
+ allowSingleDateInRange?: boolean;
1605
+ });
1606
+
1607
+ declare function YearPicker(props: YearPickerProps): react_jsx_runtime.JSX.Element;
1608
+
1609
+ type YearPickerInputType = 'default' | 'range';
1610
+ type YearPickerInputFormatter = (opts: {
1611
+ type: YearPickerInputType;
1612
+ date: Date | null | [Date | null, Date | null];
1613
+ }) => string;
1614
+ interface YearPickerInputBaseProps {
1615
+ label?: string;
1616
+ placeholder?: string;
1617
+ description?: string;
1618
+ error?: string;
1619
+ required?: boolean;
1620
+ disabled?: boolean;
1621
+ clearable?: boolean;
1622
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1623
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1624
+ dropdownType?: 'popover' | 'modal';
1625
+ valueFormat?: (date: Date) => string;
1626
+ valueFormatter?: YearPickerInputFormatter;
1627
+ allowDeselect?: boolean;
1628
+ 'aria-label'?: string;
1629
+ className?: string;
1630
+ }
1631
+ type YearPickerInputProps = (YearPickerInputBaseProps & {
1632
+ type?: 'default';
1633
+ value?: Date | null;
1634
+ defaultValue?: Date | null;
1635
+ onChange?: (value: Date | null) => void;
1636
+ }) | (YearPickerInputBaseProps & {
1637
+ type: 'range';
1638
+ value?: [Date | null, Date | null];
1639
+ defaultValue?: [Date | null, Date | null];
1640
+ onChange?: (value: [Date | null, Date | null]) => void;
1641
+ allowSingleDateInRange?: boolean;
1642
+ });
1643
+
1644
+ declare const YearPickerInput: React$1.ForwardRefExoticComponent<YearPickerInputProps & React$1.RefAttributes<HTMLButtonElement>>;
1645
+
882
1646
  type AccordionProps = React$1.ComponentProps<typeof Accordion$1.Root> & {
883
1647
  variant?: 'default' | 'separated' | 'contained' | 'filled';
884
1648
  radius?: unknown;
@@ -901,7 +1665,7 @@ declare function AccordionTrigger({ className, children, chevron, chevronPositio
901
1665
  declare function AccordionContent({ className, children, ...props }: React$1.ComponentProps<typeof Accordion$1.Panel>): react_jsx_runtime.JSX.Element;
902
1666
 
903
1667
  declare const actionIconVariants: (props?: ({
904
- variant?: "secondary" | "destructive" | "default" | "outline" | "ghost" | "light" | null | undefined;
1668
+ variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "light" | null | undefined;
905
1669
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
906
1670
  radius?: "xs" | "sm" | "md" | "lg" | "xl" | "full" | null | undefined;
907
1671
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -1016,7 +1780,7 @@ type BackgroundImageProps = React$1.ComponentProps<'div'> & {
1016
1780
  declare function BackgroundImage({ className, src, radius, style, ...props }: BackgroundImageProps): react_jsx_runtime.JSX.Element;
1017
1781
 
1018
1782
  declare const badgeVariants: (props?: ({
1019
- variant?: "link" | "secondary" | "destructive" | "default" | "outline" | "ghost" | "light" | "dot" | "success" | "warning" | null | undefined;
1783
+ variant?: "success" | "default" | "link" | "secondary" | "destructive" | "outline" | "ghost" | "light" | "dot" | "warning" | null | undefined;
1020
1784
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
1021
1785
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
1022
1786
  circle?: boolean | null | undefined;
@@ -1030,7 +1794,7 @@ type BadgeProps = React$1.ComponentProps<'span'> & VariantProps<typeof badgeVari
1030
1794
  declare function Badge({ className, variant, size, radius, circle, color, render, leftSection, rightSection, children, ...props }: BadgeProps): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1031
1795
 
1032
1796
  declare const blockquoteVariants: (props?: ({
1033
- variant?: "primary" | "secondary" | "default" | null | undefined;
1797
+ variant?: "default" | "primary" | "secondary" | null | undefined;
1034
1798
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1035
1799
  declare function Blockquote({ className, variant, ...props }: React$1.ComponentProps<'blockquote'> & VariantProps<typeof blockquoteVariants>): react_jsx_runtime.JSX.Element;
1036
1800
 
@@ -1054,8 +1818,8 @@ type BurgerProps = Omit<React$1.ComponentProps<'button'>, 'children'> & VariantP
1054
1818
  declare function Burger({ className, size, opened, ariaLabel, ...props }: BurgerProps): react_jsx_runtime.JSX.Element;
1055
1819
 
1056
1820
  declare const buttonVariants: (props?: ({
1057
- variant?: "link" | "secondary" | "destructive" | "default" | "outline" | "ghost" | "light" | null | undefined;
1058
- size?: "xs" | "sm" | "md" | "lg" | "xl" | "default" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | "icon-xl" | null | undefined;
1821
+ variant?: "default" | "link" | "secondary" | "destructive" | "outline" | "ghost" | "light" | null | undefined;
1822
+ size?: "default" | "xs" | "sm" | "md" | "lg" | "xl" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | "icon-xl" | null | undefined;
1059
1823
  radius?: "xs" | "sm" | "md" | "lg" | "xl" | "full" | null | undefined;
1060
1824
  fullWidth?: boolean | null | undefined;
1061
1825
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -1170,7 +1934,7 @@ type CheckboxProps = React$1.ComponentProps<typeof Checkbox$1.Root> & {
1170
1934
  declare function Checkbox({ className, size, color: _color, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
1171
1935
 
1172
1936
  declare const chipVariants: (props?: ({
1173
- variant?: "input" | "secondary" | "default" | "outline" | null | undefined;
1937
+ variant?: "default" | "input" | "secondary" | "outline" | null | undefined;
1174
1938
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1175
1939
  type ChipProps = React$1.ComponentProps<'div'> & VariantProps<typeof chipVariants> & {
1176
1940
  onRemove?: () => void;
@@ -1331,19 +2095,6 @@ type ComboboxProps = Omit<Combobox$1.Root.Props<string>, 'children' | 'onValueCh
1331
2095
  };
1332
2096
  declare function Combobox({ options, value, onValueChange, placeholder, emptyText, disabled, showClear, className, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
1333
2097
 
1334
- declare function Dialog({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
1335
- declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
1336
- declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
1337
- declare function DialogClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
1338
- declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Backdrop>): react_jsx_runtime.JSX.Element;
1339
- declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog$1.Popup> & {
1340
- showCloseButton?: boolean;
1341
- }): react_jsx_runtime.JSX.Element;
1342
- declare function DialogHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
1343
- declare function DialogFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
1344
- declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
1345
- declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
1346
-
1347
2098
  type CommandProps = Omit<React$1.ComponentProps<typeof Autocomplete.Root>, 'children'> & {
1348
2099
  className?: string;
1349
2100
  children?: React$1.ReactNode;
@@ -1466,78 +2217,6 @@ type DataTableViewOptionsProps<TData> = {
1466
2217
  };
1467
2218
  declare function DataTableViewOptions<TData>({ table, }: DataTableViewOptionsProps<TData>): react_jsx_runtime.JSX.Element;
1468
2219
 
1469
- type DateTimePickerPreset = {
1470
- value: Date;
1471
- label: string;
1472
- };
1473
- interface DateTimePickerProps {
1474
- label?: string;
1475
- placeholder?: string;
1476
- value?: Date | null;
1477
- defaultValue?: Date | null;
1478
- onChange?: (value: Date | null) => void;
1479
- disabled?: boolean;
1480
- clearable?: boolean;
1481
- withSeconds?: boolean;
1482
- presets?: DateTimePickerPreset[];
1483
- valueFormat?: (date: Date) => string;
1484
- description?: string;
1485
- error?: string;
1486
- required?: boolean;
1487
- size?: 'sm' | 'md' | 'lg' | 'xl';
1488
- radius?: 'sm' | 'md' | 'lg' | 'xl';
1489
- dropdownType?: 'popover' | 'modal';
1490
- 'aria-label'?: string;
1491
- className?: string;
1492
- }
1493
- type View = 'days' | 'months' | 'years';
1494
- type CalendarType = 'GC' | 'EC';
1495
- interface CalendarCell {
1496
- gcDate: Date;
1497
- day: number;
1498
- month: number;
1499
- year: number;
1500
- current: boolean;
1501
- weekend: boolean;
1502
- isToday: boolean;
1503
- isSelected: boolean;
1504
- }
1505
-
1506
- interface DateTimeDropdownContentProps {
1507
- presets?: DateTimePickerPreset[];
1508
- onPresetClick?: (preset: DateTimePickerPreset) => void;
1509
- view: View;
1510
- calendarType: CalendarType;
1511
- value: Date | null;
1512
- headerLabel: string;
1513
- cells: CalendarCell[];
1514
- years: number[];
1515
- decadeStart: number;
1516
- ecViewYear: number;
1517
- gcViewYear: number;
1518
- onPrev: () => void;
1519
- onNext: () => void;
1520
- onHeaderClick: () => void;
1521
- onDayClick: (cell: CalendarCell) => void;
1522
- onMonthSelect: (i: number) => void;
1523
- onYearSelect: (y: number) => void;
1524
- onCalendarTypeChange: (type: CalendarType) => void;
1525
- timeH: string;
1526
- timeM: string;
1527
- timeS: string;
1528
- timeFocus: 'h' | 'm' | 's' | null;
1529
- withSeconds: boolean;
1530
- onTimeFocus: (f: 'h' | 'm' | 's') => void;
1531
- onTimeBlur: (field: 'h' | 'm' | 's') => void;
1532
- onTimeHChange: (v: string) => void;
1533
- onTimeMChange: (v: string) => void;
1534
- onTimeSChange: (v: string) => void;
1535
- onConfirm: () => void;
1536
- hasPresets: boolean;
1537
- }
1538
-
1539
- declare const DateTimePicker: React$1.ForwardRefExoticComponent<DateTimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
1540
-
1541
2220
  declare function Drawer({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
1542
2221
  declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
1543
2222
  declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
@@ -1731,10 +2410,10 @@ declare const gridVariants: (props?: ({
1731
2410
  gutter?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
1732
2411
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1733
2412
  declare const gridColVariants: (props?: ({
1734
- span?: 4 | 1 | "auto" | 2 | 3 | 5 | 7 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
1735
- sm?: 4 | 1 | 2 | 3 | 5 | 7 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
1736
- md?: 4 | 1 | 2 | 3 | 5 | 7 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
1737
- lg?: 4 | 1 | 2 | 3 | 5 | 7 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
2413
+ span?: 1 | 2 | 4 | "auto" | 3 | 7 | 5 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
2414
+ sm?: 1 | 2 | 4 | 3 | 7 | 5 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
2415
+ md?: 1 | 2 | 4 | 3 | 7 | 5 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
2416
+ lg?: 1 | 2 | 4 | 3 | 7 | 5 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
1738
2417
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1739
2418
  type GridProps = React$1.ComponentProps<'div'> & VariantProps<typeof gridVariants>;
1740
2419
  type GridColProps = React$1.ComponentProps<'div'> & VariantProps<typeof gridColVariants> & {
@@ -1781,7 +2460,7 @@ declare function Image({ className, src, alt, fallback, radius, fit, onError, ..
1781
2460
 
1782
2461
  declare const indicatorVariants: (props?: ({
1783
2462
  position?: "top-start" | "top-end" | "bottom-start" | "bottom-end" | "top-center" | "bottom-center" | "middle-start" | "middle-end" | null | undefined;
1784
- size?: "xs" | "sm" | "md" | "lg" | null | undefined;
2463
+ size?: "xs" | "sm" | "md" | "lg" | "2xs" | null | undefined;
1785
2464
  color?: "primary" | "secondary" | "accent" | "destructive" | null | undefined;
1786
2465
  withBorder?: boolean | null | undefined;
1787
2466
  processing?: boolean | null | undefined;
@@ -1820,13 +2499,13 @@ declare function ItemGroup({ className, ...props }: React$1.ComponentProps<'ul'>
1820
2499
  declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
1821
2500
  declare const itemVariants: (props?: ({
1822
2501
  variant?: "default" | "outline" | "muted" | null | undefined;
1823
- size?: "xs" | "sm" | "default" | null | undefined;
2502
+ size?: "default" | "xs" | "sm" | null | undefined;
1824
2503
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1825
2504
  declare function Item({ className, variant, size, render, ...props }: React$1.ComponentProps<'div'> & VariantProps<typeof itemVariants> & {
1826
2505
  render?: useRender.RenderProp;
1827
2506
  }): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
1828
2507
  declare const itemMediaVariants: (props?: ({
1829
- variant?: "image" | "default" | "icon" | null | undefined;
2508
+ variant?: "default" | "image" | "icon" | null | undefined;
1830
2509
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1831
2510
  declare function ItemMedia({ className, variant, ...props }: React$1.ComponentProps<'div'> & VariantProps<typeof itemMediaVariants>): react_jsx_runtime.JSX.Element;
1832
2511
  declare function ItemContent({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
@@ -2200,7 +2879,7 @@ declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<'ul
2200
2879
  declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
2201
2880
  declare const sidebarMenuButtonVariants: (props?: ({
2202
2881
  variant?: "default" | "outline" | null | undefined;
2203
- size?: "sm" | "lg" | "default" | null | undefined;
2882
+ size?: "default" | "sm" | "lg" | null | undefined;
2204
2883
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2205
2884
  declare function SidebarMenuButton({ render, isActive, variant, size, tooltip, className, ...props }: React$1.ComponentProps<'button'> & {
2206
2885
  render?: useRender.RenderProp;
@@ -2224,7 +2903,7 @@ declare function SidebarMenuSubButton({ render, size, isActive, className, ...pr
2224
2903
  }): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
2225
2904
 
2226
2905
  declare const simpleGridVariants: (props?: ({
2227
- cols?: 4 | 1 | "auto" | 2 | 3 | 5 | 6 | null | undefined;
2906
+ cols?: 1 | 2 | 4 | "auto" | 3 | 5 | 6 | null | undefined;
2228
2907
  spacing?: "0" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
2229
2908
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2230
2909
  type SimpleGridProps = React$1.ComponentProps<'div'> & VariantProps<typeof simpleGridVariants> & {
@@ -2321,7 +3000,7 @@ declare function TableOfContents({ className, items, activeId, onItemClick, size
2321
3000
 
2322
3001
  declare function Tabs({ className, orientation, ...props }: React$1.ComponentProps<typeof Tabs$1.Root>): react_jsx_runtime.JSX.Element;
2323
3002
  declare const tabsListVariants: (props?: ({
2324
- variant?: "line" | "default" | null | undefined;
3003
+ variant?: "default" | "line" | null | undefined;
2325
3004
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2326
3005
  declare function TabsList({ className, ...props }: React$1.ComponentProps<typeof Tabs$1.List> & VariantProps<typeof tabsListVariants> & {
2327
3006
  variant?: 'default' | 'line' | 'outline' | 'pills';
@@ -2348,7 +3027,7 @@ declare const textVariants: (props?: ({
2348
3027
  align?: "center" | "left" | "right" | "start" | "end" | "justify" | null | undefined;
2349
3028
  transform?: "none" | "capitalize" | "lowercase" | "uppercase" | null | undefined;
2350
3029
  decoration?: "none" | "line-through" | "underline" | null | undefined;
2351
- variant?: "primary" | "secondary" | "accent" | "destructive" | "default" | "muted" | "success" | "warning" | "dimmed" | null | undefined;
3030
+ variant?: "success" | "default" | "primary" | "secondary" | "accent" | "destructive" | "muted" | "warning" | "dimmed" | null | undefined;
2352
3031
  truncate?: boolean | null | undefined;
2353
3032
  inherit?: boolean | null | undefined;
2354
3033
  italic?: boolean | null | undefined;
@@ -2376,7 +3055,7 @@ declare const TextInput: React$1.ForwardRefExoticComponent<Omit<TextInputProps,
2376
3055
  declare const themeIconVariants: (props?: ({
2377
3056
  size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
2378
3057
  variant?: "default" | "outline" | "light" | "filled" | "gradient" | "subtle" | null | undefined;
2379
- color?: "primary" | "secondary" | "accent" | "destructive" | "success" | "warning" | null | undefined;
3058
+ color?: "success" | "primary" | "secondary" | "accent" | "destructive" | "warning" | null | undefined;
2380
3059
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
2381
3060
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2382
3061
  type ThemeIconProps = React$1.ComponentProps<'div'> & VariantProps<typeof themeIconVariants>;
@@ -2393,8 +3072,8 @@ declare function TimelineDescription({ className, ...props }: React$1.ComponentP
2393
3072
  declare function TimelineTime({ className, ...props }: React$1.ComponentProps<'time'>): react_jsx_runtime.JSX.Element;
2394
3073
 
2395
3074
  declare const titleVariants: (props?: ({
2396
- order?: 4 | 1 | 2 | 3 | 5 | 6 | null | undefined;
2397
- variant?: "primary" | "secondary" | "accent" | "default" | "muted" | "dimmed" | "gradient" | null | undefined;
3075
+ order?: 1 | 2 | 4 | 3 | 5 | 6 | null | undefined;
3076
+ variant?: "default" | "primary" | "secondary" | "accent" | "muted" | "dimmed" | "gradient" | null | undefined;
2398
3077
  weight?: "bold" | "light" | "normal" | "medium" | "semibold" | "extrabold" | null | undefined;
2399
3078
  align?: "center" | "left" | "right" | null | undefined;
2400
3079
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2403,7 +3082,7 @@ declare function Title({ className, order, variant, weight, align, children, ...
2403
3082
 
2404
3083
  declare const toggleVariants: (props?: ({
2405
3084
  variant?: "default" | "outline" | null | undefined;
2406
- size?: "sm" | "lg" | "default" | null | undefined;
3085
+ size?: "default" | "sm" | "lg" | null | undefined;
2407
3086
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2408
3087
  declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof Toggle$1> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
2409
3088
 
@@ -2468,4 +3147,4 @@ declare function UnstyledButton({ className, render, ...props }: UnstyledButtonP
2468
3147
 
2469
3148
  declare function VisuallyHidden({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
2470
3149
 
2471
- export { Accordion, AccordionContent, AccordionItem, type AccordionProps, AccordionTrigger, ActionIcon, type ActionIconProps, Affix, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, Anchor, type AnchorProps, AngleSlider, type AngleSliderProps, type AnimatedTabItem, AnimatedTabs, AppBreadcrumbs, AppHeaderActions, AppSidebar, AspectRatio, Avatar, AvatarFallback, AvatarImage, type AvatarProps, BackgroundImage, type BackgroundImageProps, Badge, type BadgeProps, Blockquote, Breadcrumb, BreadcrumbContext, type BreadcrumbContextValue, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemData, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbProvider, BreadcrumbSeparator, Burger, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonLoaderProps, type ButtonProps, Calendar, CalendarDayButton, DisplayTableCaption as Caption, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Center, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Chip, CloseButton, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorFormat, ColorInput, ColorPicker, type ColorPickerProps, ColorSwatch, type ColorSwatchProps, Combobox, type ComboboxOption, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuPositioner, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CurrencyOption, DataTable, DataTableAction, DataTableColumnHeader, DataTablePagination, DataTableViewOptions, type DateTimeDropdownContentProps, DateTimePicker, type DateTimePickerPreset, type DateTimePickerProps, DeleteConfirmButton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisplayTable, type DisplayTableData, type DisplayTableVariant, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonItem, type DropdownButtonItemAction, type DropdownButtonItemLabel, type DropdownButtonItemSeparator, type DropdownButtonProps, type DropdownButtonVariant, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuPositioner, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyCardLoading, type EmptyCardLoadingProps, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EntityBulkActions, EntityDetailHeader, EntityDrawer, EntityDrawerTrigger, EntityEmptyState, EntityFilter, EntityFilterState, EntityFormActions, EntityHeader, EntityLoadingState, EntityPageLoading, type EntityPageLoadingProps, type EntityParams, EntitySearch, EntitySearchState, EntitySection, type EntitySectionState, type EntitySectionView, EntitySelector, type EntitySelectorColumn, type EntitySelectorConfig, EntitySelectorModal, type EntitySelectorModalSize, type EntitySelectorProps, EntitySort, EntitySortState, EntityViewToggle, EntityViewToggleState, ErrorPageView, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileButton, FileDropInput, type FileDropInputProps, FileInput, type FileInputProps, FileUpload, type FileUploadPreviewItem, type FileUploadProps, Flex, type FlexProps, FloatingIndicator, type FloatingIndicatorProps, FocusTrap, FocusTrapInitialFocus, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridCol, Group, type GroupProps, Highlight, HoverCard, HoverCardContent, HoverCardTrigger, Image, ImageCropDialog, type ImageCropDialogProps, ImageUpload, type ImageUploadProps, Indicator, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, type InputWrapperProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, JsonInput, Kbd, KbdGroup, Label, List, ListItem, Loader, type LoaderProps, type LoaderType, LoadingOverlay, type LoadingOverlayProps, LocaleInputRichText, type LocaleInputRichTextProps, LocaleInputText, type LocaleInputTextProps, LocaleInputTextarea, type LocaleInputTextareaProps, LocaleRichText, type LocaleRichTextProps, LocaleText, Mark, type MarkProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarPositioner, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MesobLogo, MoneyInput, type MoneyInputProps, MultiSelect, type MultiSelectOption, NativeSelect, NativeSelectBase, type NativeSelectBaseProps, type NativeSelectOption, type NativeSelectProps, type NavItem, NavLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoDataAvailable, type NoDataAvailableProps, NumberFormatter, NumberInput, type NumberInputProps, Overlay, PageBody, PageContainer, PageGoBack, PageSection, PageSubTitle, PageTitle, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Paper, type PaperProps, PasswordInput, type PasswordInputBaseProps, PasswordInputWithWrapper, type PasswordInputWithWrapperProps, Pill, type PillProps, Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, PoweredBy, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Rating, ResizableHandle, ResizablePanel, ResizablePanelGroup, RichTextDisplay, RichTextEditor, RichTextEditorContent, RichTextEditorControl, RichTextEditorControlsGroup, RichTextEditorToolbar, RichTextInput, RingProgress, ScrollArea, ScrollBar, DisplayTableScrollContainer as ScrollContainer, Section, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SemiCircleProgress, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Shell, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, Slider, Space, type SpaceProps, Spinner, type SpinnerProps, Spoiler, SpotlightSearch, Stack, type StackProps, Step, Stepper, Switch, type SwitchProps, type TabItem, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagsInput, DisplayTableTbody as Tbody, DisplayTableTd as Td, Text, TextInput, type TextInputProps, type TextProps, Textarea, type TextareaBaseProps, TextareaInput, type TextareaInputProps, DisplayTableTfoot as Tfoot, DisplayTableTh as Th, DisplayTableThead as Thead, ThemeIcon, type ThemeIconProps, ThemeToggle, Timeline, TimelineContent, TimelineDescription, TimelineDot, TimelineItem, TimelineTime, TimelineTitle, Title, type TitleProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, DisplayTableTr as Tr, Transition, type TransitionName, type TransitionProps, Tree, type TreeNodeData, type TreeProps, UnstyledButton, type UnstyledButtonProps, type UseEntitySectionStateConfig, type ViewOption, VisuallyHidden, actionIconVariants, anchorVariants, badgeVariants, blockquoteVariants, burgerVariants, buttonVariants, chipVariants, codeVariants, containerVariants, gridColVariants, gridVariants, indicatorVariants, listVariants, navLinkVariants, navigationMenuTriggerStyle, pillVariants, simpleGridVariants, tabsListVariants, textVariants, themeIconVariants, titleVariants, toggleVariants, useBreadcrumbs, useEntitySectionState, useFormField, useRichTextEditorContext, useSidebar };
3150
+ export { Accordion, AccordionContent, AccordionItem, type AccordionProps, AccordionTrigger, ActionIcon, type ActionIconProps, Affix, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, Anchor, type AnchorProps, AngleSlider, type AngleSliderProps, type AnimatedTabItem, AnimatedTabs, AppBreadcrumbs, AppHeaderActions, AppSidebar, AspectRatio, Avatar, AvatarFallback, AvatarImage, type AvatarProps, BackgroundImage, type BackgroundImageProps, Badge, type BadgeProps, Blockquote, Breadcrumb, BreadcrumbContext, type BreadcrumbContextValue, BreadcrumbEllipsis, BreadcrumbItem, type BreadcrumbItemData, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbProvider, BreadcrumbSeparator, Burger, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonLoaderProps, type ButtonProps, Calendar, CalendarDayButton, DisplayTableCaption as Caption, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Center, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, Chip, Clarity, CloseButton, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorFormat, ColorInput, ColorPicker, type ColorPickerProps, ColorSwatch, type ColorSwatchProps, Combobox, type ComboboxOption, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuPositioner, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CurrencyOption, DataTable, DataTableAction, DataTableColumnHeader, DataTablePagination, DataTableViewOptions, DateCalendar, type DateCalendarProps, DateInput, type DateInputProps, DateInputShell, type DateInputShellProps, type DateParserFn, type DateParserResult, DatePicker, DatePickerContent, type DatePickerContentProps, type DatePickerGetDayPropsResult, DatePickerInput, type DatePickerInputFormatter, type DatePickerInputProps, type DatePickerInputType, type DatePickerPreset, type DatePickerProps, type DatePickerType, type DateTimeDropdownContentProps, DateTimePicker, type DateTimePickerPreset, type DateTimePickerProps, DateTimeTriggerButton, type DateTimeTriggerButtonProps, DeleteConfirmButton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisableDevtool, type DisableDevtoolOptions, DisplayTable, type DisplayTableData, type DisplayTableVariant, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonItem, type DropdownButtonItemAction, type DropdownButtonItemLabel, type DropdownButtonItemSeparator, type DropdownButtonProps, type DropdownButtonVariant, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuPositioner, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyCardLoading, type EmptyCardLoadingProps, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, EntityBulkActions, EntityDetailHeader, EntityDrawer, EntityDrawerTrigger, EntityEmptyState, EntityFilter, EntityFilterState, EntityFormActions, EntityHeader, EntityLoadingState, EntityPageLoading, type EntityPageLoadingProps, type EntityParams, EntitySearch, EntitySearchState, EntitySection, type EntitySectionState, type EntitySectionView, EntitySelector, type EntitySelectorColumn, type EntitySelectorConfig, EntitySelectorModal, type EntitySelectorModalSize, type EntitySelectorProps, EntitySort, EntitySortState, EntityViewToggle, EntityViewToggleState, ErrorPageView, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileButton, FileDropInput, type FileDropInputProps, FileInput, type FileInputProps, FileUpload, type FileUploadPreviewItem, type FileUploadProps, Flex, type FlexProps, FloatingIndicator, type FloatingIndicatorProps, FocusTrap, FocusTrapInitialFocus, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GoogleAnalytics, Grid, GridCol, Group, type GroupProps, Highlight, HoverCard, HoverCardContent, HoverCardTrigger, Image, ImageCropDialog, type ImageCropDialogProps, ImageUpload, type ImageUploadProps, Indicator, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, type InputWrapperProps, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, JsonInput, Kbd, KbdGroup, Label, List, ListItem, Loader, type LoaderProps, type LoaderType, LoadingOverlay, type LoadingOverlayProps, LocaleInputRichText, type LocaleInputRichTextProps, LocaleInputText, type LocaleInputTextProps, LocaleInputTextarea, type LocaleInputTextareaProps, LocaleRichText, type LocaleRichTextProps, LocaleText, Mark, type MarkProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarPositioner, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MesobLogo, MiniCalendar, type MiniCalendarDayButtonProps, type MiniCalendarProps, Modal, ModalBody, type ModalBodyProps, ModalClose, type ModalCloseProps, ModalContent, type ModalContentProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, type ModalProps, ModalRoot, type ModalRootProps, ModalSubtitle, type ModalSubtitleProps, ModalTitle, type ModalTitleProps, ModalTrigger, type ModalTriggerProps, MoneyInput, type MoneyInputProps, MonthPicker, MonthPickerContent, type MonthPickerContentProps, MonthPickerInput, type MonthPickerInputFormatter, type MonthPickerInputProps, type MonthPickerInputType, type MonthPickerProps, type MonthPickerType, type MonthPickerView, MultiSelect, type MultiSelectOption, NativeSelect, NativeSelectBase, type NativeSelectBaseProps, type NativeSelectOption, type NativeSelectProps, type NavItem, NavLink, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, NoDataAvailable, type NoDataAvailableProps, NumberFormatter, NumberInput, type NumberInputProps, Overlay, PageBody, PageContainer, PageGoBack, PageSection, PageSubTitle, PageTitle, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Paper, type PaperProps, PasswordInput, type PasswordInputBaseProps, PasswordInputWithWrapper, type PasswordInputWithWrapperProps, Pill, type PillProps, Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, PoweredBy, Progress, type ProgressProps, RadioGroup, RadioGroupItem, type RadioGroupItemProps, Rating, ResizableHandle, ResizablePanel, ResizablePanelGroup, RichTextDisplay, RichTextEditor, RichTextEditorContent, RichTextEditorControl, RichTextEditorControlsGroup, RichTextEditorToolbar, RichTextInput, RingProgress, ScrollArea, ScrollBar, DisplayTableScrollContainer as ScrollContainer, Section, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SemiCircleProgress, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Shell, Sidebar, SidebarContent, SidebarContext, type SidebarContextProps, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, SimpleGrid, type SimpleGridProps, Skeleton, type SkeletonProps, Slider, Space, type SpaceProps, Spinner, type SpinnerProps, Spoiler, SpotlightSearch, Stack, type StackProps, Step, Stepper, Switch, type SwitchProps, type TabItem, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableOfContents, type TableOfContentsItem, type TableOfContentsProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagsInput, DisplayTableTbody as Tbody, DisplayTableTd as Td, Text, TextDateInput, type TextDateInputProps, TextInput, type TextInputProps, type TextProps, Textarea, type TextareaBaseProps, TextareaInput, type TextareaInputProps, DisplayTableTfoot as Tfoot, DisplayTableTh as Th, DisplayTableThead as Thead, ThemeIcon, type ThemeIconProps, ThemeToggle, TimeGrid, type TimeGridProps, TimeInput, type TimeInputProps, TimePicker, type TimePickerContentProps, type TimePickerProps, TimeValue, type TimeValueProps, Timeline, TimelineContent, TimelineDescription, TimelineDot, TimelineItem, TimelineTime, TimelineTitle, Title, type TitleProps, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, DisplayTableTr as Tr, Transition, type TransitionName, type TransitionProps, Tree, type TreeNodeData, type TreeProps, UnstyledButton, type UnstyledButtonProps, type UseEntitySectionStateConfig, type ViewOption, VisuallyHidden, YearPicker, type YearPickerContentProps, YearPickerInput, type YearPickerInputFormatter, type YearPickerInputProps, type YearPickerInputType, type YearPickerProps, type YearPickerType, actionIconVariants, addDays, anchorVariants, badgeVariants, blockquoteVariants, burgerVariants, buttonVariants, chipVariants, codeVariants, containerVariants, dateToIsoDate, formatDateWithPattern, gridColVariants, gridVariants, indicatorVariants, isSameDay, isoDateToDate, listVariants, navLinkVariants, navigationMenuTriggerStyle, parseAnchorDate, parseDateWithPattern, parseLooseDateString, pillVariants, simpleGridVariants, stripTime, tabsListVariants, textVariants, themeIconVariants, titleVariants, toggleVariants, useBreadcrumbs, useEntitySectionState, useFormField, useRichTextEditorContext, useSidebar };