@mesob/ui 0.4.7 → 0.5.2

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,17 @@
1
+ export { D as DisableDevtool, a as DisableDevtoolOptions, G as GoogleAnalytics } from './google-analytics-B82Q7rm2.js';
1
2
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
3
  import * as React$1 from 'react';
3
- import { ReactNode, ReactElement, ComponentType } from 'react';
4
+ import { ReactNode, ReactElement, ComponentType, RefObject, Ref, ComponentProps } from 'react';
4
5
  export { u as useEntityPagination, a as useEntityParams } from './use-entity-params-nqD69tdX.js';
5
6
  import * as react_hook_form from 'react-hook-form';
6
7
  import { Control, UseFormRegister, ControllerRenderProps, FieldError as FieldError$1, FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
7
8
  import { Locale } from './lib/locale.js';
9
+ import * as class_variance_authority_types from 'class-variance-authority/types';
10
+ import { VariantProps } from 'class-variance-authority';
11
+ import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
8
12
  import { Editor } from '@tiptap/react';
9
13
  import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
10
- import * as class_variance_authority_types from 'class-variance-authority/types';
11
14
  import { useRender } from '@base-ui/react/use-render';
12
- import { VariantProps } from 'class-variance-authority';
13
15
  import { ComponentColor, ComponentSize, ComponentRadius, InputWrapperOrder } from './lib/theme-schema.js';
14
16
  import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
15
17
  import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
@@ -24,7 +26,6 @@ import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
24
26
  import { ColorFormat } from './lib/color-utils.js';
25
27
  import { Combobox as Combobox$1 } from '@base-ui/react/combobox';
26
28
  import { Autocomplete } from '@base-ui/react/autocomplete';
27
- import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
28
29
  import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
29
30
  import { ColumnDef, SortingState, ColumnFiltersState, VisibilityState, Column, Table as Table$1 } from '@tanstack/react-table';
30
31
  export { DirectionProvider, useDirection } from '@base-ui/react/direction-provider';
@@ -52,6 +53,11 @@ import { ToggleGroup as ToggleGroup$1 } from '@base-ui/react/toggle-group';
52
53
  import 'nuqs';
53
54
  import 'zod';
54
55
 
56
+ type ClarityProps = {
57
+ clarityId: string;
58
+ };
59
+ declare function Clarity({ clarityId }: ClarityProps): null;
60
+
55
61
  type BreadcrumbItemData = {
56
62
  label: string;
57
63
  href?: string;
@@ -804,6 +810,58 @@ type MesobLogoProps = {
804
810
  };
805
811
  declare function MesobLogo({ width, height, textColor, iconBackgroundColor, iconColor, className, }: MesobLogoProps): react_jsx_runtime.JSX.Element;
806
812
 
813
+ declare function Dialog({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
814
+ declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
815
+ declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
816
+ declare function DialogClose({ ...props }: React$1.ComponentProps<typeof Dialog$1.Close>): react_jsx_runtime.JSX.Element;
817
+ declare function DialogOverlay({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Backdrop>): react_jsx_runtime.JSX.Element;
818
+ declare function DialogContent({ className, children, showCloseButton, ...props }: React$1.ComponentProps<typeof Dialog$1.Popup> & {
819
+ showCloseButton?: boolean;
820
+ }): react_jsx_runtime.JSX.Element;
821
+ declare function DialogHeader({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
822
+ declare function DialogFooter({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
823
+ declare function DialogTitle({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Title>): react_jsx_runtime.JSX.Element;
824
+ declare function DialogDescription({ className, ...props }: React$1.ComponentProps<typeof Dialog$1.Description>): react_jsx_runtime.JSX.Element;
825
+
826
+ declare const modalContentVariants: (props?: ({
827
+ size?: "sm" | "md" | "lg" | "xl" | "full" | "2xl" | null | undefined;
828
+ placement?: "center" | "top" | null | undefined;
829
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
830
+ type ModalRootProps = React$1.ComponentProps<typeof Dialog>;
831
+ type ModalTriggerProps = React$1.ComponentProps<typeof DialogTrigger>;
832
+ type ModalCloseProps = React$1.ComponentProps<typeof DialogClose>;
833
+ type ModalContentProps = Omit<React$1.ComponentProps<typeof DialogContent>, 'children'> & VariantProps<typeof modalContentVariants> & {
834
+ children: React$1.ReactNode;
835
+ };
836
+ type ModalHeaderProps = React$1.ComponentProps<'div'>;
837
+ type ModalTitleProps = React$1.ComponentProps<typeof DialogTitle>;
838
+ type ModalSubtitleProps = React$1.ComponentProps<typeof DialogDescription>;
839
+ type ModalBodyProps = React$1.ComponentProps<'div'>;
840
+ type ModalFooterProps = React$1.ComponentProps<typeof DialogFooter>;
841
+ type ModalProps = ModalRootProps & VariantProps<typeof modalContentVariants> & {
842
+ closeOnInteractOutside?: boolean;
843
+ trigger?: ModalTriggerProps['render'];
844
+ triggerProps?: Omit<ModalTriggerProps, 'render'>;
845
+ title?: React$1.ReactNode;
846
+ subtitle?: React$1.ReactNode;
847
+ children?: React$1.ReactNode;
848
+ footer?: React$1.ReactNode;
849
+ contentProps?: Omit<React$1.ComponentProps<typeof DialogContent>, 'children' | 'showCloseButton'>;
850
+ headerProps?: ModalHeaderProps;
851
+ bodyProps?: ModalBodyProps;
852
+ footerProps?: ModalFooterProps;
853
+ };
854
+ declare function ModalRoot({ ...props }: ModalRootProps): react_jsx_runtime.JSX.Element;
855
+ declare function ModalTrigger(props: ModalTriggerProps): react_jsx_runtime.JSX.Element;
856
+ declare function ModalClose({ className, ...props }: ModalCloseProps): react_jsx_runtime.JSX.Element;
857
+ declare function ModalContent({ className, size, placement, ...props }: ModalContentProps): react_jsx_runtime.JSX.Element;
858
+ declare function ModalHeader({ className, children, ...props }: ModalHeaderProps): react_jsx_runtime.JSX.Element;
859
+ declare function ModalTitle({ className, ...props }: ModalTitleProps): react_jsx_runtime.JSX.Element;
860
+ declare function ModalSubtitle({ className, ...props }: ModalSubtitleProps): react_jsx_runtime.JSX.Element;
861
+ declare function ModalBody({ className, ...props }: ModalBodyProps): react_jsx_runtime.JSX.Element;
862
+ declare function ModalFooter({ className, ...props }: ModalFooterProps): react_jsx_runtime.JSX.Element;
863
+ 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;
864
+
807
865
  type PoweredByProps = {
808
866
  className?: string;
809
867
  };
@@ -879,6 +937,690 @@ type ThemeToggleProps = {
879
937
  };
880
938
  declare function ThemeToggle({ className }: ThemeToggleProps): react_jsx_runtime.JSX.Element;
881
939
 
940
+ type DateTimePickerPreset = {
941
+ value: Date;
942
+ label: string;
943
+ };
944
+ interface DateTimePickerProps {
945
+ label?: string;
946
+ placeholder?: string;
947
+ value?: Date | null;
948
+ defaultValue?: Date | null;
949
+ onChange?: (value: Date | null) => void;
950
+ disabled?: boolean;
951
+ clearable?: boolean;
952
+ withSeconds?: boolean;
953
+ presets?: DateTimePickerPreset[];
954
+ valueFormat?: (date: Date) => string;
955
+ description?: string;
956
+ error?: string;
957
+ required?: boolean;
958
+ size?: 'sm' | 'md' | 'lg' | 'xl';
959
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
960
+ dropdownType?: 'popover' | 'modal';
961
+ 'aria-label'?: string;
962
+ className?: string;
963
+ }
964
+ type View = 'days' | 'months' | 'years';
965
+ type CalendarType = 'GC' | 'EC';
966
+ interface CalendarCell {
967
+ gcDate: Date;
968
+ day: number;
969
+ month: number;
970
+ year: number;
971
+ current: boolean;
972
+ weekend: boolean;
973
+ isToday: boolean;
974
+ isSelected: boolean;
975
+ }
976
+
977
+ type DatePickerType = 'default' | 'multiple' | 'range';
978
+ type DatePickerPreset = {
979
+ /** Single date or [start, end] tuple for range presets. */
980
+ value: Date | [Date, Date];
981
+ label: string;
982
+ };
983
+ /** Return value of `getDayProps` for custom day behavior and styling. */
984
+ type DatePickerGetDayPropsResult = {
985
+ onClick?: () => void;
986
+ onMouseEnter?: () => void;
987
+ onMouseLeave?: () => void;
988
+ /** Override selected appearance (e.g. fully custom selection). */
989
+ selected?: boolean;
990
+ className?: string;
991
+ /** Force-disabled day (in addition to min/max rules). */
992
+ disabled?: boolean;
993
+ };
994
+ interface DatePickerBaseProps {
995
+ /** Allow deselecting current date by clicking on it. Ignored for type="multiple" and type="range". */
996
+ allowDeselect?: boolean;
997
+ /** Hide dates outside the current month. @default false */
998
+ hideOutsideDates?: boolean;
999
+ /** Hide weekday header row (Mo, Tu, …). @default false */
1000
+ hideWeekdays?: boolean;
1001
+ /** First day of week: 0 = Sunday … 6 = Saturday. @default 1 (Monday) */
1002
+ firstDayOfWeek?: number;
1003
+ /** Show ISO week numbers in the first column. @default false */
1004
+ withWeekNumbers?: boolean;
1005
+ /** Weekend days as JS weekday indices (0 = Sunday … 6 = Saturday). @default [0, 6] */
1006
+ weekendDays?: number[];
1007
+ /** Inclusive minimum selectable date (time ignored). */
1008
+ minDate?: Date;
1009
+ /** Inclusive maximum selectable date (time ignored). */
1010
+ maxDate?: Date;
1011
+ /** Replace the default day cell content (day number). */
1012
+ renderDay?: (date: Date) => ReactNode;
1013
+ /** Initial calendar level. @default 'days' */
1014
+ defaultLevel?: View;
1015
+ /** Initial calendar system. @default 'GC' */
1016
+ defaultCalendarType?: CalendarType;
1017
+ /** Additional CSS class on root element */
1018
+ className?: string;
1019
+ /** Quick-select date presets displayed beside the calendar. */
1020
+ presets?: DatePickerPreset[];
1021
+ /** Date used to determine initial month/year shown. Ignored when `date` is set. */
1022
+ defaultDate?: Date;
1023
+ /** Controlled currently-displayed month/year. Only year and month are used. */
1024
+ date?: Date;
1025
+ /** Called when the displayed month/year changes. */
1026
+ onDateChange?: (date: Date) => void;
1027
+ /**
1028
+ * Display-only calendar: no day selection, presets, level changes, or GC/EC toggle.
1029
+ * Month navigation (prev/next) still works.
1030
+ */
1031
+ static?: boolean;
1032
+ /**
1033
+ * Custom per-day interaction and styles. If you pass `onClick`, the default
1034
+ * selection handler is not run for that click (build your own selection in state).
1035
+ */
1036
+ getDayProps?: (date: Date) => DatePickerGetDayPropsResult | undefined;
1037
+ }
1038
+ type DatePickerProps = (DatePickerBaseProps & {
1039
+ type?: 'default';
1040
+ value?: Date | null;
1041
+ defaultValue?: Date | null;
1042
+ onChange?: (value: Date | null) => void;
1043
+ }) | (DatePickerBaseProps & {
1044
+ type: 'multiple';
1045
+ value?: Date[];
1046
+ defaultValue?: Date[];
1047
+ onChange?: (value: Date[]) => void;
1048
+ }) | (DatePickerBaseProps & {
1049
+ type: 'range';
1050
+ value?: [Date | null, Date | null];
1051
+ defaultValue?: [Date | null, Date | null];
1052
+ onChange?: (value: [Date | null, Date | null]) => void;
1053
+ /** Allow start and end to be the same date. @default false */
1054
+ allowSingleDateInRange?: boolean;
1055
+ });
1056
+
1057
+ type DateParserResult = Date | string | null;
1058
+ /** Custom parser: return a `Date`, ISO `YYYY-MM-DD` string, or `null` if invalid. */
1059
+ type DateParserFn = (input: string) => DateParserResult;
1060
+ type DateInputSize = 'sm' | 'md' | 'lg' | 'xl';
1061
+ interface DateInputProps extends Omit<React.ComponentProps<'input'>, 'value' | 'defaultValue' | 'onChange' | 'size' | 'type'> {
1062
+ /** Controlled value as `YYYY-MM-DD`, or `null` when empty. */
1063
+ value?: string | null;
1064
+ defaultValue?: string | null;
1065
+ onChange?: (value: string | null) => void;
1066
+ /**
1067
+ * Display / edit format. Use a dayjs-like pattern (`YYYY MMM DD`, `MMMM D, YYYY`, …)
1068
+ * or a function `(date) => string`.
1069
+ * @default 'MMMM D, YYYY' (e.g. March 10, 2028)
1070
+ */
1071
+ valueFormat?: string | ((date: Date) => string);
1072
+ dateParser?: DateParserFn;
1073
+ label?: ReactNode;
1074
+ description?: ReactNode;
1075
+ error?: ReactNode;
1076
+ required?: boolean;
1077
+ withAsterisk?: boolean;
1078
+ clearable?: boolean;
1079
+ minDate?: Date;
1080
+ maxDate?: Date;
1081
+ /** @default 'md' */
1082
+ size?: DateInputSize;
1083
+ /** @default 'default' */
1084
+ variant?: 'default' | 'filled';
1085
+ /** @default 'md' */
1086
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1087
+ /** Allow deselecting by clicking the selected day in the calendar (when `clearable`). @default follows `clearable` */
1088
+ allowDeselect?: boolean;
1089
+ hideOutsideDates?: boolean;
1090
+ hideWeekdays?: boolean;
1091
+ firstDayOfWeek?: number;
1092
+ withWeekNumbers?: boolean;
1093
+ weekendDays?: number[];
1094
+ renderDay?: (date: Date) => ReactNode;
1095
+ defaultLevel?: View;
1096
+ defaultCalendarType?: CalendarType;
1097
+ presets?: DatePickerPreset[];
1098
+ defaultDate?: Date;
1099
+ date?: Date;
1100
+ onDateChange?: (date: Date) => void;
1101
+ className?: string;
1102
+ /** Extra class on the calendar popover surface. */
1103
+ popoverClassName?: string;
1104
+ }
1105
+
1106
+ declare const DateInput: React$1.ForwardRefExoticComponent<Omit<DateInputProps, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
1107
+
1108
+ /** Format a date using a small dayjs-like pattern subset. */
1109
+ declare function formatDateWithPattern(date: Date, pattern: string): string;
1110
+ /** Parse strings produced by common `valueFormat` patterns (and a few extras). */
1111
+ declare function parseDateWithPattern(str: string, pattern: string): Date | null;
1112
+ /** Loose parse: ISO date, `Date.parse`, then DD/MM/YYYY. */
1113
+ declare function parseLooseDateString(str: string): Date | null;
1114
+
1115
+ declare function stripTime(d: Date): Date;
1116
+ declare function dateToIsoDate(d: Date): string;
1117
+ declare function isoDateToDate(s: string): Date | null;
1118
+ declare function addDays(d: Date, delta: number): Date;
1119
+ declare function isSameDay(a: Date, b: Date): boolean;
1120
+ /** Parse `YYYY-MM-DD` string or `Date`; invalid string falls back to `fallback`. */
1121
+ declare function parseAnchorDate(v: string | Date | undefined, fallback: Date): Date;
1122
+
1123
+ declare function DatePicker(props: DatePickerProps): react_jsx_runtime.JSX.Element;
1124
+
1125
+ interface DatePickerContentProps {
1126
+ view: View;
1127
+ calendarType: CalendarType;
1128
+ cells: CalendarCell[];
1129
+ years: number[];
1130
+ decadeStart: number;
1131
+ ecViewYear: number;
1132
+ gcViewYear: number;
1133
+ primaryDate: Date | null;
1134
+ hasRange: boolean;
1135
+ hideOutsideDates: boolean;
1136
+ hideWeekdays: boolean;
1137
+ firstDayOfWeek: number;
1138
+ withWeekNumbers: boolean;
1139
+ weekendDays: number[];
1140
+ prevDisabled: boolean;
1141
+ nextDisabled: boolean;
1142
+ isDayDisabled: (date: Date) => boolean;
1143
+ renderDay?: (date: Date) => ReactNode;
1144
+ getDayProps?: (date: Date) => DatePickerGetDayPropsResult | undefined;
1145
+ /** Display-only: selection and drill-down disabled; prev/next allowed. */
1146
+ static?: boolean;
1147
+ headerLabel: string;
1148
+ presets?: DatePickerPreset[];
1149
+ onPresetClick?: (preset: DatePickerPreset) => void;
1150
+ onPrev: () => void;
1151
+ onNext: () => void;
1152
+ onHeaderClick: () => void;
1153
+ onDayClick: (cell: CalendarCell) => void;
1154
+ onDayHover: (cell: CalendarCell) => void;
1155
+ onGridMouseLeave: () => void;
1156
+ onMonthSelect: (i: number) => void;
1157
+ onYearSelect: (y: number) => void;
1158
+ onCalendarTypeChange: (type: CalendarType) => void;
1159
+ isDateSelected: (date: Date) => boolean;
1160
+ isDateInRange: (date: Date) => boolean;
1161
+ isRangeStart: (date: Date) => boolean;
1162
+ isRangeEnd: (date: Date) => boolean;
1163
+ }
1164
+ 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;
1165
+
1166
+ type DatePickerInputType = 'default' | 'multiple' | 'range';
1167
+ type DatePickerInputFormatter = (opts: {
1168
+ type: DatePickerInputType;
1169
+ date: Date | Date[] | [Date | null, Date | null];
1170
+ }) => string;
1171
+ interface DatePickerInputBaseProps {
1172
+ label?: string;
1173
+ placeholder?: string;
1174
+ description?: string;
1175
+ error?: string;
1176
+ required?: boolean;
1177
+ /** Red asterisk next to label (Mantine-style). */
1178
+ withAsterisk?: boolean;
1179
+ disabled?: boolean;
1180
+ clearable?: boolean;
1181
+ /** @default 'md' */
1182
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1183
+ /** @default 'md' */
1184
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1185
+ /** @default 'popover' */
1186
+ dropdownType?: 'popover' | 'modal';
1187
+ /** @default 'default' */
1188
+ variant?: 'default' | 'filled';
1189
+ leftSection?: ReactNode;
1190
+ leftSectionPointerEvents?: 'none' | 'auto';
1191
+ /** Custom display format function for a single Date. */
1192
+ valueFormat?: (date: Date) => string;
1193
+ /** Advanced formatter — receives the full value + type. Overrides valueFormat. */
1194
+ valueFormatter?: DatePickerInputFormatter;
1195
+ presets?: DatePickerPreset[];
1196
+ /** Allow deselecting current date (single type only). */
1197
+ allowDeselect?: boolean;
1198
+ /** Hide dates outside the current month. */
1199
+ hideOutsideDates?: boolean;
1200
+ /** Hide weekday header row. */
1201
+ hideWeekdays?: boolean;
1202
+ /** First day of week: 0 = Sunday … 6 = Saturday. @default 1 */
1203
+ firstDayOfWeek?: number;
1204
+ /** Show ISO week numbers. @default false */
1205
+ withWeekNumbers?: boolean;
1206
+ /** Weekend days (JS: 0 = Sunday … 6 = Saturday). @default [0, 6] */
1207
+ weekendDays?: number[];
1208
+ minDate?: Date;
1209
+ maxDate?: Date;
1210
+ renderDay?: (date: Date) => ReactNode;
1211
+ 'aria-label'?: string;
1212
+ className?: string;
1213
+ }
1214
+ type DatePickerInputProps = (DatePickerInputBaseProps & {
1215
+ type?: 'default';
1216
+ value?: Date | null;
1217
+ defaultValue?: Date | null;
1218
+ onChange?: (value: Date | null) => void;
1219
+ }) | (DatePickerInputBaseProps & {
1220
+ type: 'multiple';
1221
+ value?: Date[];
1222
+ defaultValue?: Date[];
1223
+ onChange?: (value: Date[]) => void;
1224
+ }) | (DatePickerInputBaseProps & {
1225
+ type: 'range';
1226
+ value?: [Date | null, Date | null];
1227
+ defaultValue?: [Date | null, Date | null];
1228
+ onChange?: (value: [Date | null, Date | null]) => void;
1229
+ allowSingleDateInRange?: boolean;
1230
+ });
1231
+
1232
+ declare const DatePickerInput: React$1.ForwardRefExoticComponent<DatePickerInputProps & React$1.RefAttributes<HTMLButtonElement>>;
1233
+
1234
+ type DateCalendarProps = Omit<Extract<DatePickerProps, {
1235
+ type?: 'default';
1236
+ }>, 'type'>;
1237
+ /**
1238
+ * One-month calendar for a single date — shorthand for `DatePicker` with
1239
+ * `type="default"`. Use `DatePicker` directly for `type="multiple" | "range"`,
1240
+ * `static`, `getDayProps`, and other full props.
1241
+ */
1242
+ declare function DateCalendar(props: DateCalendarProps): react_jsx_runtime.JSX.Element;
1243
+
1244
+ interface DateTimeDropdownContentProps {
1245
+ presets?: DateTimePickerPreset[];
1246
+ onPresetClick?: (preset: DateTimePickerPreset) => void;
1247
+ view: View;
1248
+ calendarType: CalendarType;
1249
+ value: Date | null;
1250
+ headerLabel: string;
1251
+ cells: CalendarCell[];
1252
+ years: number[];
1253
+ decadeStart: number;
1254
+ ecViewYear: number;
1255
+ gcViewYear: number;
1256
+ onPrev: () => void;
1257
+ onNext: () => void;
1258
+ onHeaderClick: () => void;
1259
+ onDayClick: (cell: CalendarCell) => void;
1260
+ onMonthSelect: (i: number) => void;
1261
+ onYearSelect: (y: number) => void;
1262
+ onCalendarTypeChange: (type: CalendarType) => void;
1263
+ timeH: string;
1264
+ timeM: string;
1265
+ timeS: string;
1266
+ timeFocus: 'h' | 'm' | 's' | null;
1267
+ withSeconds: boolean;
1268
+ onTimeFocus: (f: 'h' | 'm' | 's') => void;
1269
+ onTimeBlur: (field: 'h' | 'm' | 's') => void;
1270
+ onTimeHChange: (v: string) => void;
1271
+ onTimeMChange: (v: string) => void;
1272
+ onTimeSChange: (v: string) => void;
1273
+ onConfirm: () => void;
1274
+ hasPresets: boolean;
1275
+ }
1276
+
1277
+ declare const DateTimePicker: React$1.ForwardRefExoticComponent<DateTimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
1278
+
1279
+ interface DateInputShellProps {
1280
+ label?: string;
1281
+ placeholder: string;
1282
+ description?: string;
1283
+ error?: string;
1284
+ required?: boolean;
1285
+ /** Show required asterisk next to the label (visual only unless paired with `required`). */
1286
+ withAsterisk?: boolean;
1287
+ disabled?: boolean;
1288
+ clearable?: boolean;
1289
+ size: 'sm' | 'md' | 'lg' | 'xl';
1290
+ radius: 'sm' | 'md' | 'lg' | 'xl';
1291
+ dropdownType: 'popover' | 'modal';
1292
+ /** @default 'default' */
1293
+ variant?: 'default' | 'filled';
1294
+ leftSection?: ReactNode;
1295
+ leftSectionPointerEvents?: 'none' | 'auto';
1296
+ 'aria-label'?: string;
1297
+ className?: string;
1298
+ /** Pre-computed display string shown on the trigger. null = show placeholder. */
1299
+ displayValue: string | null;
1300
+ /** Whether clear button should be visible (displayValue != null is NOT enough for datetime, which uses `value`). */
1301
+ hasValue?: boolean;
1302
+ open: boolean;
1303
+ onOpenChange: (open: boolean) => void;
1304
+ contentSide: 'top' | 'bottom';
1305
+ triggerRef: RefObject<HTMLDivElement | null>;
1306
+ onClear: () => void;
1307
+ /** Extra class on the dropdown (popover/dialog content). */
1308
+ dropdownClassName?: string;
1309
+ children: ReactNode;
1310
+ buttonRef?: Ref<HTMLButtonElement>;
1311
+ }
1312
+ 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;
1313
+
1314
+ /** Plain text field for date entry (used inside DateTimePicker time flows). For popover + calendar, use `DateInput` from `@mesob/ui/components`. */
1315
+ type TextDateInputProps = {
1316
+ value: Date | null;
1317
+ onChange?: (value: Date | null) => void;
1318
+ /** Format date for display. @default dd/MM/yyyy */
1319
+ format?: (date: Date) => string;
1320
+ /** Parse string to date. @default loose dd/MM/yyyy or ISO */
1321
+ parse?: (s: string) => Date | null;
1322
+ placeholder?: string;
1323
+ disabled?: boolean;
1324
+ className?: string;
1325
+ 'aria-label'?: string;
1326
+ };
1327
+ declare function TextDateInput({ value, onChange, format, parse, placeholder, disabled, className, 'aria-label': ariaLabel, }: TextDateInputProps): react_jsx_runtime.JSX.Element;
1328
+
1329
+ type TimeGridProps = {
1330
+ value: Date | null;
1331
+ onChange: (date: Date | null) => void;
1332
+ /** @default 30 */
1333
+ stepMinutes?: number;
1334
+ /** @default 0 */
1335
+ minHour?: number;
1336
+ /** @default 24 */
1337
+ maxHour?: number;
1338
+ /** Base date for building time slots (only date part used). @default today */
1339
+ baseDate?: Date;
1340
+ className?: string;
1341
+ };
1342
+ declare function TimeGrid({ value, onChange, stepMinutes, minHour, maxHour, baseDate, className, }: TimeGridProps): react_jsx_runtime.JSX.Element;
1343
+
1344
+ type TimeInputProps = {
1345
+ value: Date | null;
1346
+ onChange?: (date: Date | null) => void;
1347
+ withSeconds?: boolean;
1348
+ disabled?: boolean;
1349
+ /** @default today */
1350
+ baseDate?: Date;
1351
+ className?: string;
1352
+ 'aria-label'?: string;
1353
+ };
1354
+ declare function TimeInput({ value, onChange, withSeconds, disabled, baseDate, className, 'aria-label': ariaLabel, }: TimeInputProps): react_jsx_runtime.JSX.Element;
1355
+
1356
+ type TimeValueProps = {
1357
+ value: Date;
1358
+ /** @default HH:mm */
1359
+ format?: (date: Date) => string;
1360
+ withSeconds?: boolean;
1361
+ className?: string;
1362
+ };
1363
+ declare function TimeValue({ value, format, withSeconds, className, }: TimeValueProps): react_jsx_runtime.JSX.Element;
1364
+
1365
+ interface DateTimeTriggerButtonProps {
1366
+ displayValue: string | null;
1367
+ placeholder: string;
1368
+ disabled: boolean;
1369
+ error?: string;
1370
+ open: boolean;
1371
+ size: 'sm' | 'md' | 'lg' | 'xl';
1372
+ radius: 'sm' | 'md' | 'lg' | 'xl';
1373
+ /** @default 'default' */
1374
+ variant?: 'default' | 'filled';
1375
+ leftSection?: ReactNode;
1376
+ leftSectionPointerEvents?: 'none' | 'auto';
1377
+ 'aria-label'?: string;
1378
+ }
1379
+ declare const DateTimeTriggerButton: React$1.ForwardRefExoticComponent<DateTimeTriggerButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
1380
+
1381
+ type MiniCalendarDayButtonProps = Partial<Omit<ComponentProps<'button'>, 'type'>>;
1382
+ interface MiniCalendarProps {
1383
+ className?: string;
1384
+ /** How many consecutive days to show. @default 7 */
1385
+ numberOfDays?: number;
1386
+ /** Selected date as `YYYY-MM-DD`, or `null`. */
1387
+ value?: string | null;
1388
+ defaultValue?: string | null;
1389
+ onChange?: (value: string | null) => void;
1390
+ /** First visible day is anchored from this date (`YYYY-MM-DD`, `Date`, or omit for today). */
1391
+ defaultDate?: string | Date;
1392
+ minDate?: Date;
1393
+ maxDate?: Date;
1394
+ /** Extra props per day button (e.g. weekend `style` / `className`). */
1395
+ getDayProps?: (date: Date) => MiniCalendarDayButtonProps;
1396
+ previousControlProps?: ComponentProps<'button'>;
1397
+ nextControlProps?: ComponentProps<'button'>;
1398
+ }
1399
+
1400
+ declare function MiniCalendar({ className, getDayProps, previousControlProps, nextControlProps, ...rest }: MiniCalendarProps): react_jsx_runtime.JSX.Element;
1401
+
1402
+ type MonthPickerType = 'default' | 'multiple' | 'range';
1403
+ type MonthPickerView = 'months' | 'years';
1404
+ interface MonthPickerBaseProps {
1405
+ allowDeselect?: boolean;
1406
+ /** @default 'GC' */
1407
+ defaultCalendarType?: CalendarType;
1408
+ className?: string;
1409
+ /** Year to display initially. Only year is used. */
1410
+ defaultDate?: Date;
1411
+ /** Controlled displayed year. */
1412
+ date?: Date;
1413
+ /** Called when displayed year changes. */
1414
+ onDateChange?: (date: Date) => void;
1415
+ /** @default 'decade' — set to 'year' to prevent navigation to decade view. */
1416
+ maxLevel?: 'year' | 'decade';
1417
+ }
1418
+ type MonthPickerProps = (MonthPickerBaseProps & {
1419
+ type?: 'default';
1420
+ value?: Date | null;
1421
+ defaultValue?: Date | null;
1422
+ onChange?: (value: Date | null) => void;
1423
+ }) | (MonthPickerBaseProps & {
1424
+ type: 'multiple';
1425
+ value?: Date[];
1426
+ defaultValue?: Date[];
1427
+ onChange?: (value: Date[]) => void;
1428
+ }) | (MonthPickerBaseProps & {
1429
+ type: 'range';
1430
+ value?: [Date | null, Date | null];
1431
+ defaultValue?: [Date | null, Date | null];
1432
+ onChange?: (value: [Date | null, Date | null]) => void;
1433
+ allowSingleDateInRange?: boolean;
1434
+ });
1435
+
1436
+ declare function MonthPicker(props: MonthPickerProps): react_jsx_runtime.JSX.Element;
1437
+
1438
+ interface MonthPickerContentProps {
1439
+ view: MonthPickerView;
1440
+ calendarType: CalendarType;
1441
+ years: number[];
1442
+ decadeStart: number;
1443
+ ecViewYear: number;
1444
+ gcViewYear: number;
1445
+ primaryDate: Date | null;
1446
+ hasRange: boolean;
1447
+ headerLabel: string;
1448
+ onPrev: () => void;
1449
+ onNext: () => void;
1450
+ onHeaderClick: () => void;
1451
+ onMonthClick: (monthIndex: number) => void;
1452
+ onMonthHover: (monthIndex: number) => void;
1453
+ onGridMouseLeave: () => void;
1454
+ onYearSelect: (y: number) => void;
1455
+ onCalendarTypeChange: (type: CalendarType) => void;
1456
+ isMonthSelected: (monthIndex: number) => boolean;
1457
+ isMonthInRange: (monthIndex: number) => boolean;
1458
+ isRangeStart: (monthIndex: number) => boolean;
1459
+ isRangeEnd: (monthIndex: number) => boolean;
1460
+ }
1461
+ 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;
1462
+
1463
+ type MonthPickerInputType = 'default' | 'multiple' | 'range';
1464
+ type MonthPickerInputFormatter = (opts: {
1465
+ type: MonthPickerInputType;
1466
+ date: Date | Date[] | [Date | null, Date | null];
1467
+ }) => string;
1468
+ interface MonthPickerInputBaseProps {
1469
+ label?: string;
1470
+ placeholder?: string;
1471
+ description?: string;
1472
+ error?: string;
1473
+ required?: boolean;
1474
+ disabled?: boolean;
1475
+ clearable?: boolean;
1476
+ /** @default 'md' */
1477
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1478
+ /** @default 'md' */
1479
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1480
+ /** @default 'popover' */
1481
+ dropdownType?: 'popover' | 'modal';
1482
+ /** Custom display format function for a single Date. */
1483
+ valueFormat?: (date: Date) => string;
1484
+ /** Advanced formatter — receives the full value + type. Overrides valueFormat. */
1485
+ valueFormatter?: MonthPickerInputFormatter;
1486
+ allowDeselect?: boolean;
1487
+ /** @default 'decade' */
1488
+ maxLevel?: 'year' | 'decade';
1489
+ 'aria-label'?: string;
1490
+ className?: string;
1491
+ }
1492
+ type MonthPickerInputProps = (MonthPickerInputBaseProps & {
1493
+ type?: 'default';
1494
+ value?: Date | null;
1495
+ defaultValue?: Date | null;
1496
+ onChange?: (value: Date | null) => void;
1497
+ }) | (MonthPickerInputBaseProps & {
1498
+ type: 'multiple';
1499
+ value?: Date[];
1500
+ defaultValue?: Date[];
1501
+ onChange?: (value: Date[]) => void;
1502
+ }) | (MonthPickerInputBaseProps & {
1503
+ type: 'range';
1504
+ value?: [Date | null, Date | null];
1505
+ defaultValue?: [Date | null, Date | null];
1506
+ onChange?: (value: [Date | null, Date | null]) => void;
1507
+ allowSingleDateInRange?: boolean;
1508
+ });
1509
+
1510
+ declare const MonthPickerInput: React$1.ForwardRefExoticComponent<MonthPickerInputProps & React$1.RefAttributes<HTMLButtonElement>>;
1511
+
1512
+ type TimePickerProps = {
1513
+ value?: Date | null;
1514
+ defaultValue?: Date | null;
1515
+ onChange?: (value: Date | null) => void;
1516
+ withSeconds?: boolean;
1517
+ label?: string;
1518
+ placeholder?: string;
1519
+ disabled?: boolean;
1520
+ clearable?: boolean;
1521
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1522
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1523
+ dropdownType?: 'popover' | 'modal';
1524
+ 'aria-label'?: string;
1525
+ className?: string;
1526
+ valueFormat?: (date: Date) => string;
1527
+ };
1528
+
1529
+ declare const TimePicker: React$1.ForwardRefExoticComponent<TimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
1530
+
1531
+ type TimePickerContentProps = {
1532
+ timeH: string;
1533
+ timeM: string;
1534
+ timeS: string;
1535
+ timeFocus: 'h' | 'm' | 's' | null;
1536
+ withSeconds: boolean;
1537
+ onTimeFocus: (f: 'h' | 'm' | 's') => void;
1538
+ onTimeBlur: (field: 'h' | 'm' | 's') => void;
1539
+ onTimeHChange: (v: string) => void;
1540
+ onTimeMChange: (v: string) => void;
1541
+ onTimeSChange: (v: string) => void;
1542
+ onConfirm: () => void;
1543
+ };
1544
+
1545
+ type YearPickerContentProps = {
1546
+ calendarType: CalendarType;
1547
+ years: number[];
1548
+ decadeStart: number;
1549
+ headerLabel: string;
1550
+ onPrev: () => void;
1551
+ onNext: () => void;
1552
+ onYearClick: (y: number) => void;
1553
+ onYearHover: (y: number) => void;
1554
+ onGridMouseLeave: () => void;
1555
+ onCalendarTypeChange: (type: CalendarType) => void;
1556
+ isYearSelected: (y: number) => boolean;
1557
+ isYearInRange: (y: number) => boolean;
1558
+ isRangeStart: (y: number) => boolean;
1559
+ isRangeEnd: (y: number) => boolean;
1560
+ };
1561
+
1562
+ type YearPickerType = 'default' | 'range';
1563
+ interface YearPickerBaseProps {
1564
+ allowDeselect?: boolean;
1565
+ /** @default 'GC' */
1566
+ defaultCalendarType?: CalendarType;
1567
+ className?: string;
1568
+ defaultDate?: Date;
1569
+ date?: Date;
1570
+ onDateChange?: (date: Date) => void;
1571
+ }
1572
+ type YearPickerProps = (YearPickerBaseProps & {
1573
+ type?: 'default';
1574
+ value?: Date | null;
1575
+ defaultValue?: Date | null;
1576
+ onChange?: (value: Date | null) => void;
1577
+ }) | (YearPickerBaseProps & {
1578
+ type: 'range';
1579
+ value?: [Date | null, Date | null];
1580
+ defaultValue?: [Date | null, Date | null];
1581
+ onChange?: (value: [Date | null, Date | null]) => void;
1582
+ allowSingleDateInRange?: boolean;
1583
+ });
1584
+
1585
+ declare function YearPicker(props: YearPickerProps): react_jsx_runtime.JSX.Element;
1586
+
1587
+ type YearPickerInputType = 'default' | 'range';
1588
+ type YearPickerInputFormatter = (opts: {
1589
+ type: YearPickerInputType;
1590
+ date: Date | null | [Date | null, Date | null];
1591
+ }) => string;
1592
+ interface YearPickerInputBaseProps {
1593
+ label?: string;
1594
+ placeholder?: string;
1595
+ description?: string;
1596
+ error?: string;
1597
+ required?: boolean;
1598
+ disabled?: boolean;
1599
+ clearable?: boolean;
1600
+ size?: 'sm' | 'md' | 'lg' | 'xl';
1601
+ radius?: 'sm' | 'md' | 'lg' | 'xl';
1602
+ dropdownType?: 'popover' | 'modal';
1603
+ valueFormat?: (date: Date) => string;
1604
+ valueFormatter?: YearPickerInputFormatter;
1605
+ allowDeselect?: boolean;
1606
+ 'aria-label'?: string;
1607
+ className?: string;
1608
+ }
1609
+ type YearPickerInputProps = (YearPickerInputBaseProps & {
1610
+ type?: 'default';
1611
+ value?: Date | null;
1612
+ defaultValue?: Date | null;
1613
+ onChange?: (value: Date | null) => void;
1614
+ }) | (YearPickerInputBaseProps & {
1615
+ type: 'range';
1616
+ value?: [Date | null, Date | null];
1617
+ defaultValue?: [Date | null, Date | null];
1618
+ onChange?: (value: [Date | null, Date | null]) => void;
1619
+ allowSingleDateInRange?: boolean;
1620
+ });
1621
+
1622
+ declare const YearPickerInput: React$1.ForwardRefExoticComponent<YearPickerInputProps & React$1.RefAttributes<HTMLButtonElement>>;
1623
+
882
1624
  type AccordionProps = React$1.ComponentProps<typeof Accordion$1.Root> & {
883
1625
  variant?: 'default' | 'separated' | 'contained' | 'filled';
884
1626
  radius?: unknown;
@@ -901,7 +1643,7 @@ declare function AccordionTrigger({ className, children, chevron, chevronPositio
901
1643
  declare function AccordionContent({ className, children, ...props }: React$1.ComponentProps<typeof Accordion$1.Panel>): react_jsx_runtime.JSX.Element;
902
1644
 
903
1645
  declare const actionIconVariants: (props?: ({
904
- variant?: "secondary" | "destructive" | "default" | "outline" | "ghost" | "light" | null | undefined;
1646
+ variant?: "default" | "secondary" | "destructive" | "outline" | "ghost" | "light" | null | undefined;
905
1647
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
906
1648
  radius?: "xs" | "sm" | "md" | "lg" | "xl" | "full" | null | undefined;
907
1649
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -1016,7 +1758,7 @@ type BackgroundImageProps = React$1.ComponentProps<'div'> & {
1016
1758
  declare function BackgroundImage({ className, src, radius, style, ...props }: BackgroundImageProps): react_jsx_runtime.JSX.Element;
1017
1759
 
1018
1760
  declare const badgeVariants: (props?: ({
1019
- variant?: "link" | "secondary" | "destructive" | "default" | "outline" | "ghost" | "light" | "dot" | "success" | "warning" | null | undefined;
1761
+ variant?: "link" | "success" | "default" | "secondary" | "destructive" | "outline" | "ghost" | "light" | "dot" | "warning" | null | undefined;
1020
1762
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
1021
1763
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
1022
1764
  circle?: boolean | null | undefined;
@@ -1030,7 +1772,7 @@ type BadgeProps = React$1.ComponentProps<'span'> & VariantProps<typeof badgeVari
1030
1772
  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
1773
 
1032
1774
  declare const blockquoteVariants: (props?: ({
1033
- variant?: "primary" | "secondary" | "default" | null | undefined;
1775
+ variant?: "default" | "primary" | "secondary" | null | undefined;
1034
1776
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1035
1777
  declare function Blockquote({ className, variant, ...props }: React$1.ComponentProps<'blockquote'> & VariantProps<typeof blockquoteVariants>): react_jsx_runtime.JSX.Element;
1036
1778
 
@@ -1054,8 +1796,8 @@ type BurgerProps = Omit<React$1.ComponentProps<'button'>, 'children'> & VariantP
1054
1796
  declare function Burger({ className, size, opened, ariaLabel, ...props }: BurgerProps): react_jsx_runtime.JSX.Element;
1055
1797
 
1056
1798
  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;
1799
+ variant?: "link" | "default" | "secondary" | "destructive" | "outline" | "ghost" | "light" | null | undefined;
1800
+ size?: "default" | "xs" | "sm" | "md" | "lg" | "xl" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | "icon-xl" | null | undefined;
1059
1801
  radius?: "xs" | "sm" | "md" | "lg" | "xl" | "full" | null | undefined;
1060
1802
  fullWidth?: boolean | null | undefined;
1061
1803
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -1170,7 +1912,7 @@ type CheckboxProps = React$1.ComponentProps<typeof Checkbox$1.Root> & {
1170
1912
  declare function Checkbox({ className, size, color: _color, ...props }: CheckboxProps): react_jsx_runtime.JSX.Element;
1171
1913
 
1172
1914
  declare const chipVariants: (props?: ({
1173
- variant?: "input" | "secondary" | "default" | "outline" | null | undefined;
1915
+ variant?: "input" | "default" | "secondary" | "outline" | null | undefined;
1174
1916
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1175
1917
  type ChipProps = React$1.ComponentProps<'div'> & VariantProps<typeof chipVariants> & {
1176
1918
  onRemove?: () => void;
@@ -1331,19 +2073,6 @@ type ComboboxProps = Omit<Combobox$1.Root.Props<string>, 'children' | 'onValueCh
1331
2073
  };
1332
2074
  declare function Combobox({ options, value, onValueChange, placeholder, emptyText, disabled, showClear, className, ...props }: ComboboxProps): react_jsx_runtime.JSX.Element;
1333
2075
 
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
2076
  type CommandProps = Omit<React$1.ComponentProps<typeof Autocomplete.Root>, 'children'> & {
1348
2077
  className?: string;
1349
2078
  children?: React$1.ReactNode;
@@ -1466,78 +2195,6 @@ type DataTableViewOptionsProps<TData> = {
1466
2195
  };
1467
2196
  declare function DataTableViewOptions<TData>({ table, }: DataTableViewOptionsProps<TData>): react_jsx_runtime.JSX.Element;
1468
2197
 
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
2198
  declare function Drawer({ ...props }: React$1.ComponentProps<typeof Dialog$1.Root>): react_jsx_runtime.JSX.Element;
1542
2199
  declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Dialog$1.Trigger>): react_jsx_runtime.JSX.Element;
1543
2200
  declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Dialog$1.Portal>): react_jsx_runtime.JSX.Element;
@@ -1731,10 +2388,10 @@ declare const gridVariants: (props?: ({
1731
2388
  gutter?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
1732
2389
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1733
2390
  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;
2391
+ span?: 1 | 4 | "auto" | 2 | 3 | 7 | 5 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
2392
+ sm?: 1 | 4 | 2 | 3 | 7 | 5 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
2393
+ md?: 1 | 4 | 2 | 3 | 7 | 5 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
2394
+ lg?: 1 | 4 | 2 | 3 | 7 | 5 | 6 | 8 | 10 | 9 | 12 | 11 | null | undefined;
1738
2395
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1739
2396
  type GridProps = React$1.ComponentProps<'div'> & VariantProps<typeof gridVariants>;
1740
2397
  type GridColProps = React$1.ComponentProps<'div'> & VariantProps<typeof gridColVariants> & {
@@ -1781,7 +2438,7 @@ declare function Image({ className, src, alt, fallback, radius, fit, onError, ..
1781
2438
 
1782
2439
  declare const indicatorVariants: (props?: ({
1783
2440
  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;
2441
+ size?: "xs" | "sm" | "md" | "lg" | "2xs" | null | undefined;
1785
2442
  color?: "primary" | "secondary" | "accent" | "destructive" | null | undefined;
1786
2443
  withBorder?: boolean | null | undefined;
1787
2444
  processing?: boolean | null | undefined;
@@ -1820,7 +2477,7 @@ declare function ItemGroup({ className, ...props }: React$1.ComponentProps<'ul'>
1820
2477
  declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
1821
2478
  declare const itemVariants: (props?: ({
1822
2479
  variant?: "default" | "outline" | "muted" | null | undefined;
1823
- size?: "xs" | "sm" | "default" | null | undefined;
2480
+ size?: "default" | "xs" | "sm" | null | undefined;
1824
2481
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1825
2482
  declare function Item({ className, variant, size, render, ...props }: React$1.ComponentProps<'div'> & VariantProps<typeof itemVariants> & {
1826
2483
  render?: useRender.RenderProp;
@@ -1981,6 +2638,30 @@ declare function NavigationMenuViewport({ className, ...props }: React$1.Compone
1981
2638
  declare function NavigationMenuLink({ className, ...props }: React$1.ComponentProps<typeof NavigationMenu$1.Link>): react_jsx_runtime.JSX.Element;
1982
2639
  declare function NavigationMenuIndicator({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
1983
2640
 
2641
+ type NProgressState = {
2642
+ mounted: boolean;
2643
+ progress: number;
2644
+ };
2645
+ type NProgressOptions = {
2646
+ stepInterval?: number;
2647
+ initialProgress?: number;
2648
+ };
2649
+ type NProgressProps = React$1.ComponentProps<'div'> & {
2650
+ height?: number;
2651
+ zIndex?: React$1.CSSProperties['zIndex'];
2652
+ color?: string;
2653
+ pathname?: string | null;
2654
+ withNavigation?: boolean;
2655
+ };
2656
+ declare function configureNProgress(options?: NProgressOptions): void;
2657
+ declare function setNProgress(value: number): void;
2658
+ declare function incrementNProgress(amount?: number): void;
2659
+ declare function startNProgress(): void;
2660
+ declare function completeNProgress(): void;
2661
+ declare function resetNProgress(): void;
2662
+ declare function setNProgressStep(stepValue: number): void;
2663
+ declare function NProgress({ className, height, zIndex, color, pathname, withNavigation, style, ...props }: NProgressProps): react_jsx_runtime.JSX.Element;
2664
+
1984
2665
  type NumberFormatterProps = React$1.ComponentProps<'span'> & {
1985
2666
  value: number;
1986
2667
  prefix?: string;
@@ -2200,7 +2881,7 @@ declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<'ul
2200
2881
  declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<'li'>): react_jsx_runtime.JSX.Element;
2201
2882
  declare const sidebarMenuButtonVariants: (props?: ({
2202
2883
  variant?: "default" | "outline" | null | undefined;
2203
- size?: "sm" | "lg" | "default" | null | undefined;
2884
+ size?: "default" | "sm" | "lg" | null | undefined;
2204
2885
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2205
2886
  declare function SidebarMenuButton({ render, isActive, variant, size, tooltip, className, ...props }: React$1.ComponentProps<'button'> & {
2206
2887
  render?: useRender.RenderProp;
@@ -2224,7 +2905,7 @@ declare function SidebarMenuSubButton({ render, size, isActive, className, ...pr
2224
2905
  }): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
2225
2906
 
2226
2907
  declare const simpleGridVariants: (props?: ({
2227
- cols?: 4 | 1 | "auto" | 2 | 3 | 5 | 6 | null | undefined;
2908
+ cols?: 1 | 4 | "auto" | 2 | 3 | 5 | 6 | null | undefined;
2228
2909
  spacing?: "0" | "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
2229
2910
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2230
2911
  type SimpleGridProps = React$1.ComponentProps<'div'> & VariantProps<typeof simpleGridVariants> & {
@@ -2348,7 +3029,7 @@ declare const textVariants: (props?: ({
2348
3029
  align?: "center" | "left" | "right" | "start" | "end" | "justify" | null | undefined;
2349
3030
  transform?: "none" | "capitalize" | "lowercase" | "uppercase" | null | undefined;
2350
3031
  decoration?: "none" | "line-through" | "underline" | null | undefined;
2351
- variant?: "primary" | "secondary" | "accent" | "destructive" | "default" | "muted" | "success" | "warning" | "dimmed" | null | undefined;
3032
+ variant?: "success" | "default" | "primary" | "secondary" | "accent" | "destructive" | "muted" | "warning" | "dimmed" | null | undefined;
2352
3033
  truncate?: boolean | null | undefined;
2353
3034
  inherit?: boolean | null | undefined;
2354
3035
  italic?: boolean | null | undefined;
@@ -2376,7 +3057,7 @@ declare const TextInput: React$1.ForwardRefExoticComponent<Omit<TextInputProps,
2376
3057
  declare const themeIconVariants: (props?: ({
2377
3058
  size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
2378
3059
  variant?: "default" | "outline" | "light" | "filled" | "gradient" | "subtle" | null | undefined;
2379
- color?: "primary" | "secondary" | "accent" | "destructive" | "success" | "warning" | null | undefined;
3060
+ color?: "success" | "primary" | "secondary" | "accent" | "destructive" | "warning" | null | undefined;
2380
3061
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
2381
3062
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2382
3063
  type ThemeIconProps = React$1.ComponentProps<'div'> & VariantProps<typeof themeIconVariants>;
@@ -2393,8 +3074,8 @@ declare function TimelineDescription({ className, ...props }: React$1.ComponentP
2393
3074
  declare function TimelineTime({ className, ...props }: React$1.ComponentProps<'time'>): react_jsx_runtime.JSX.Element;
2394
3075
 
2395
3076
  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;
3077
+ order?: 1 | 4 | 2 | 3 | 5 | 6 | null | undefined;
3078
+ variant?: "default" | "primary" | "secondary" | "accent" | "muted" | "dimmed" | "gradient" | null | undefined;
2398
3079
  weight?: "bold" | "light" | "normal" | "medium" | "semibold" | "extrabold" | null | undefined;
2399
3080
  align?: "center" | "left" | "right" | null | undefined;
2400
3081
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -2403,7 +3084,7 @@ declare function Title({ className, order, variant, weight, align, children, ...
2403
3084
 
2404
3085
  declare const toggleVariants: (props?: ({
2405
3086
  variant?: "default" | "outline" | null | undefined;
2406
- size?: "sm" | "lg" | "default" | null | undefined;
3087
+ size?: "default" | "sm" | "lg" | null | undefined;
2407
3088
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2408
3089
  declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof Toggle$1> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
2409
3090
 
@@ -2468,4 +3149,4 @@ declare function UnstyledButton({ className, render, ...props }: UnstyledButtonP
2468
3149
 
2469
3150
  declare function VisuallyHidden({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
2470
3151
 
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 };
3152
+ 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, 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, 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, NProgress, type NProgressOptions, type NProgressProps, type NProgressState, 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, completeNProgress, configureNProgress, containerVariants, dateToIsoDate, formatDateWithPattern, gridColVariants, gridVariants, incrementNProgress, indicatorVariants, isSameDay, isoDateToDate, listVariants, navLinkVariants, navigationMenuTriggerStyle, parseAnchorDate, parseDateWithPattern, parseLooseDateString, pillVariants, resetNProgress, setNProgress, setNProgressStep, simpleGridVariants, startNProgress, stripTime, tabsListVariants, textVariants, themeIconVariants, titleVariants, toggleVariants, useBreadcrumbs, useEntitySectionState, useFormField, useRichTextEditorContext, useSidebar };