@underverse-ui/underverse 1.0.177 → 1.0.179
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.
- package/api-reference.json +51 -2
- package/dist/index.cjs +4282 -2690
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +150 -4
- package/dist/index.d.ts +150 -4
- package/dist/index.js +4023 -2434
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -30,6 +30,15 @@ declare const SIZE_STYLES_BTN: {
|
|
|
30
30
|
icon: string;
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
+
declare const STANDARD_BORDER_MODES: readonly ["none", "sm", "md", "lg", "xl", "2xl", "3xl", "full"];
|
|
34
|
+
declare const CUSTOM_BORDER_MAP: {
|
|
35
|
+
readonly daewoo: "rounded-2xl";
|
|
36
|
+
readonly infiniq: "rounded-full";
|
|
37
|
+
};
|
|
38
|
+
type StandardBorderMode = typeof STANDARD_BORDER_MODES[number];
|
|
39
|
+
type CustomBorderMode = keyof typeof CUSTOM_BORDER_MAP;
|
|
40
|
+
type BorderMode = StandardBorderMode | CustomBorderMode | (string & {});
|
|
41
|
+
|
|
33
42
|
/** Public props for the `Button` component. */
|
|
34
43
|
interface ButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
35
44
|
onClick?: (event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
@@ -60,6 +69,7 @@ interface ButtonProps extends React__default.ButtonHTMLAttributes<HTMLButtonElem
|
|
|
60
69
|
noWrap?: boolean;
|
|
61
70
|
noHoverOverlay?: boolean;
|
|
62
71
|
gradient?: boolean;
|
|
72
|
+
borderMode?: BorderMode;
|
|
63
73
|
}
|
|
64
74
|
declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
|
|
65
75
|
|
|
@@ -162,6 +172,7 @@ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size">
|
|
|
162
172
|
description?: string;
|
|
163
173
|
variant?: "default" | "filled" | "outlined" | "minimal";
|
|
164
174
|
size?: "sm" | "md" | "lg";
|
|
175
|
+
borderMode?: BorderMode;
|
|
165
176
|
leftIcon?: React__default.ComponentType<{
|
|
166
177
|
className?: string;
|
|
167
178
|
}>;
|
|
@@ -214,6 +225,7 @@ interface TextareaProps extends React__default.TextareaHTMLAttributes<HTMLTextAr
|
|
|
214
225
|
description?: string;
|
|
215
226
|
variant?: "default" | "filled" | "outlined" | "minimal";
|
|
216
227
|
size?: "sm" | "md" | "lg";
|
|
228
|
+
borderMode?: BorderMode;
|
|
217
229
|
resize?: "none" | "vertical" | "horizontal" | "both";
|
|
218
230
|
counter?: boolean;
|
|
219
231
|
/** Enable OverlayScrollbars on textarea viewport. Default: false */
|
|
@@ -325,6 +337,7 @@ interface TagInputProps {
|
|
|
325
337
|
};
|
|
326
338
|
/** Maximum visible tags before showing "+N more" badge */
|
|
327
339
|
maxVisibleTags?: number;
|
|
340
|
+
borderMode?: BorderMode;
|
|
328
341
|
}
|
|
329
342
|
declare const TagInput: React__default.ForwardRefExoticComponent<TagInputProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
330
343
|
|
|
@@ -952,6 +965,7 @@ interface DatePickerProps {
|
|
|
952
965
|
minDate?: Date;
|
|
953
966
|
/** Maximum selectable date (inclusive). Compared by day in local timezone. */
|
|
954
967
|
maxDate?: Date;
|
|
968
|
+
borderMode?: BorderMode;
|
|
955
969
|
}
|
|
956
970
|
declare const DatePicker: React$1.FC<DatePickerProps>;
|
|
957
971
|
/** Public props for the `DateRangePicker` component. */
|
|
@@ -974,6 +988,7 @@ interface DateRangePickerProps {
|
|
|
974
988
|
/** Size variant */
|
|
975
989
|
size?: "sm" | "md" | "lg";
|
|
976
990
|
disabled?: boolean;
|
|
991
|
+
borderMode?: BorderMode;
|
|
977
992
|
}
|
|
978
993
|
declare const DateRangePicker: React$1.FC<DateRangePickerProps>;
|
|
979
994
|
declare const CompactDatePicker: React$1.FC<{
|
|
@@ -982,6 +997,97 @@ declare const CompactDatePicker: React$1.FC<{
|
|
|
982
997
|
className?: string;
|
|
983
998
|
}>;
|
|
984
999
|
|
|
1000
|
+
type LunarDateValue = {
|
|
1001
|
+
day: number;
|
|
1002
|
+
month: number;
|
|
1003
|
+
year: number;
|
|
1004
|
+
is_leap_month: boolean;
|
|
1005
|
+
};
|
|
1006
|
+
/**
|
|
1007
|
+
* Converts a Gregorian (Solar) Date object to a LunarDateValue object.
|
|
1008
|
+
* Applies the standard Vietnamese Lunar Calendar algorithm based on the timezone offset (UTC+7).
|
|
1009
|
+
*
|
|
1010
|
+
* @param {Date} date - The Gregorian Date object to convert.
|
|
1011
|
+
* @returns {LunarDateValue} The corresponding lunar date containing day, month, year, and leap month indicator.
|
|
1012
|
+
*/
|
|
1013
|
+
declare function solarToLunar(date: Date): LunarDateValue;
|
|
1014
|
+
/**
|
|
1015
|
+
* Converts a LunarDateValue back to a Gregorian (Solar) date string.
|
|
1016
|
+
*
|
|
1017
|
+
* @param {LunarDateValue} lunar - The lunar date object to convert.
|
|
1018
|
+
* @returns {string} The corresponding Gregorian date in 'YYYY-MM-DD' format.
|
|
1019
|
+
*/
|
|
1020
|
+
declare function lunarToSolar(lunar: LunarDateValue): string;
|
|
1021
|
+
/**
|
|
1022
|
+
* Formats a LunarDateValue into a basic localized short string representation.
|
|
1023
|
+
* For example: '15/8/2026'.
|
|
1024
|
+
*
|
|
1025
|
+
* @param {LunarDateValue | null} lunar - The lunar date object to format.
|
|
1026
|
+
* @returns {string} The formatted short string representation, or an empty string if null.
|
|
1027
|
+
*/
|
|
1028
|
+
declare function formatLunarDate(lunar?: LunarDateValue | null): string;
|
|
1029
|
+
/**
|
|
1030
|
+
* Generates a compact lunar badge string (e.g., '(L8.15)') directly from a Gregorian date.
|
|
1031
|
+
* Relies on Intl.DateTimeFormat with the 'chinese' calendar type.
|
|
1032
|
+
*
|
|
1033
|
+
* @param {Date} date - The Gregorian date to convert and format.
|
|
1034
|
+
* @returns {string} A short badge string representing the lunar month and day.
|
|
1035
|
+
*/
|
|
1036
|
+
declare function formatLunarBadge(date: Date): string;
|
|
1037
|
+
|
|
1038
|
+
type lunar_LunarDateValue = LunarDateValue;
|
|
1039
|
+
declare const lunar_formatLunarBadge: typeof formatLunarBadge;
|
|
1040
|
+
declare const lunar_formatLunarDate: typeof formatLunarDate;
|
|
1041
|
+
declare const lunar_lunarToSolar: typeof lunarToSolar;
|
|
1042
|
+
declare const lunar_solarToLunar: typeof solarToLunar;
|
|
1043
|
+
declare namespace lunar {
|
|
1044
|
+
export { type lunar_LunarDateValue as LunarDateValue, lunar_formatLunarBadge as formatLunarBadge, lunar_formatLunarDate as formatLunarDate, lunar_lunarToSolar as lunarToSolar, lunar_solarToLunar as solarToLunar };
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
type LunarPickerValue = LunarDateValue;
|
|
1048
|
+
interface LunarDatePickerProps {
|
|
1049
|
+
id?: string;
|
|
1050
|
+
value?: LunarPickerValue;
|
|
1051
|
+
onChange: (date: LunarPickerValue | undefined) => void;
|
|
1052
|
+
placeholder?: string;
|
|
1053
|
+
className?: string;
|
|
1054
|
+
disabled?: boolean;
|
|
1055
|
+
size?: "sm" | "md" | "lg";
|
|
1056
|
+
label?: string;
|
|
1057
|
+
/** Custom class for label */
|
|
1058
|
+
labelClassName?: string;
|
|
1059
|
+
required?: boolean;
|
|
1060
|
+
todayLabel?: string;
|
|
1061
|
+
clearLabel?: string;
|
|
1062
|
+
weekdayLabels?: string[];
|
|
1063
|
+
/** Disable selecting past dates (before today) */
|
|
1064
|
+
disablePastDates?: boolean;
|
|
1065
|
+
/** Minimum selectable date (inclusive). Compared by day in local timezone. */
|
|
1066
|
+
minDate?: LunarPickerValue;
|
|
1067
|
+
/** Maximum selectable date (inclusive). Compared by day in local timezone. */
|
|
1068
|
+
maxDate?: LunarPickerValue;
|
|
1069
|
+
borderMode?: BorderMode;
|
|
1070
|
+
}
|
|
1071
|
+
declare const LunarDatePicker: React$1.FC<LunarDatePickerProps>;
|
|
1072
|
+
interface LunarDateRangePickerProps {
|
|
1073
|
+
id?: string;
|
|
1074
|
+
startDate?: LunarPickerValue;
|
|
1075
|
+
endDate?: LunarPickerValue | null;
|
|
1076
|
+
onChange: (start: LunarPickerValue | undefined, end: LunarPickerValue | null | undefined) => void;
|
|
1077
|
+
placeholder?: string;
|
|
1078
|
+
className?: string;
|
|
1079
|
+
label?: string;
|
|
1080
|
+
labelClassName?: string;
|
|
1081
|
+
required?: boolean;
|
|
1082
|
+
disablePastDates?: boolean;
|
|
1083
|
+
minDate?: LunarPickerValue;
|
|
1084
|
+
maxDate?: LunarPickerValue;
|
|
1085
|
+
size?: "sm" | "md" | "lg";
|
|
1086
|
+
disabled?: boolean;
|
|
1087
|
+
borderMode?: BorderMode;
|
|
1088
|
+
}
|
|
1089
|
+
declare const LunarDateRangePicker: React$1.FC<LunarDateRangePickerProps>;
|
|
1090
|
+
|
|
985
1091
|
/** Public props for the `DateTimePicker` component. */
|
|
986
1092
|
interface DateTimePickerProps {
|
|
987
1093
|
value?: Date;
|
|
@@ -1004,6 +1110,7 @@ interface DateTimePickerProps {
|
|
|
1004
1110
|
clearLabel?: string;
|
|
1005
1111
|
/** Size variant */
|
|
1006
1112
|
size?: "sm" | "md" | "lg";
|
|
1113
|
+
borderMode?: BorderMode;
|
|
1007
1114
|
}
|
|
1008
1115
|
declare const DateTimePicker: React$1.FC<DateTimePickerProps>;
|
|
1009
1116
|
|
|
@@ -1061,8 +1168,9 @@ interface TimePickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "
|
|
|
1061
1168
|
onOpen?: () => void;
|
|
1062
1169
|
/** Callback when popover closes */
|
|
1063
1170
|
onClose?: () => void;
|
|
1171
|
+
borderMode?: BorderMode;
|
|
1064
1172
|
}
|
|
1065
|
-
declare function TimePicker({ value, defaultValue, onChange, placeholder, disabled, size, label, required, format, includeSeconds, minuteStep, secondStep, clearable, variant, matchTriggerWidth, showNow, showPresets, allowManualInput, customPresets, min, max, minTime, maxTime, disabledTimes, error, success, helperText, animate, onOpen, onClose, className, ...rest }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
1173
|
+
declare function TimePicker({ value, defaultValue, onChange, placeholder, disabled, size, label, required, format, includeSeconds, minuteStep, secondStep, clearable, variant, matchTriggerWidth, showNow, showPresets, allowManualInput, customPresets, min, max, minTime, maxTime, disabledTimes, error, success, helperText, animate, onOpen, onClose, className, borderMode, ...rest }: TimePickerProps): react_jsx_runtime.JSX.Element;
|
|
1066
1174
|
|
|
1067
1175
|
type MonthYearPickerVariant = "default" | "compact" | "inline";
|
|
1068
1176
|
type PickerSize = "sm" | "md" | "lg";
|
|
@@ -1133,8 +1241,9 @@ interface MonthYearPickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElemen
|
|
|
1133
1241
|
month?: string;
|
|
1134
1242
|
year?: string;
|
|
1135
1243
|
};
|
|
1244
|
+
borderMode?: BorderMode;
|
|
1136
1245
|
}
|
|
1137
|
-
declare function MonthYearPicker({ value, defaultValue, onChange, placeholder, disabled, size, label, labelClassName, required, clearable, variant, matchTriggerWidth, monthNames, shortMonthNames, minYear, maxYear, minDate, maxDate, error, success, helperText, animate, onOpen, onClose, showThisMonth, columnLabels, className, ...rest }: MonthYearPickerProps): react_jsx_runtime.JSX.Element;
|
|
1246
|
+
declare function MonthYearPicker({ value, defaultValue, onChange, placeholder, disabled, size, label, labelClassName, required, clearable, variant, matchTriggerWidth, monthNames, shortMonthNames, minYear, maxYear, minDate, maxDate, error, success, helperText, animate, onOpen, onClose, showThisMonth, columnLabels, className, borderMode, ...rest }: MonthYearPickerProps): react_jsx_runtime.JSX.Element;
|
|
1138
1247
|
|
|
1139
1248
|
type SelectMode = "single" | "multiple" | "range";
|
|
1140
1249
|
type Variant$3 = "default" | "bordered" | "card" | "minimal";
|
|
@@ -1639,6 +1748,7 @@ interface ComboboxProps {
|
|
|
1639
1748
|
fontBold?: boolean;
|
|
1640
1749
|
loading?: boolean;
|
|
1641
1750
|
loadingText?: string;
|
|
1751
|
+
borderMode?: BorderMode;
|
|
1642
1752
|
showSelectedIcon?: boolean;
|
|
1643
1753
|
maxHeight?: number;
|
|
1644
1754
|
groupBy?: (option: ComboboxOption) => string;
|
|
@@ -1704,6 +1814,7 @@ interface MultiComboboxProps {
|
|
|
1704
1814
|
loading?: boolean;
|
|
1705
1815
|
loadingText?: string;
|
|
1706
1816
|
emptyText?: string;
|
|
1817
|
+
borderMode?: BorderMode;
|
|
1707
1818
|
showSelectedIcons?: boolean;
|
|
1708
1819
|
maxHeight?: number;
|
|
1709
1820
|
groupBy?: (option: MultiComboboxOption) => string;
|
|
@@ -1747,6 +1858,7 @@ interface RadioGroupProps {
|
|
|
1747
1858
|
orientation?: "horizontal" | "vertical";
|
|
1748
1859
|
size?: "sm" | "md" | "lg";
|
|
1749
1860
|
variant?: "default" | "card" | "button";
|
|
1861
|
+
borderMode?: BorderMode;
|
|
1750
1862
|
className?: string;
|
|
1751
1863
|
children: React$1.ReactNode;
|
|
1752
1864
|
required?: boolean;
|
|
@@ -1990,6 +2102,7 @@ interface CategoryTreeSelectBaseProps {
|
|
|
1990
2102
|
* <CategoryTreeSelect baseIndent={0.25} indentSize={0.75} />
|
|
1991
2103
|
*/
|
|
1992
2104
|
indentSize?: number;
|
|
2105
|
+
borderMode?: BorderMode;
|
|
1993
2106
|
}
|
|
1994
2107
|
/** Multi-select mode. This is the default when `singleSelect` is omitted. */
|
|
1995
2108
|
interface CategoryTreeSelectMultiProps extends CategoryTreeSelectBaseProps {
|
|
@@ -2417,8 +2530,9 @@ interface ColorPickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
2417
2530
|
showHarmony?: boolean;
|
|
2418
2531
|
/** Max recent colors to remember */
|
|
2419
2532
|
maxRecent?: number;
|
|
2533
|
+
borderMode?: BorderMode;
|
|
2420
2534
|
}
|
|
2421
|
-
declare function ColorPicker({ value, defaultValue, onChange, disabled, withAlpha, format, presets, className, triggerClassName, contentClassName, clearable, copyable, size, variant, showRecent, showHarmony, maxRecent, ...rest }: ColorPickerProps): react_jsx_runtime.JSX.Element;
|
|
2535
|
+
declare function ColorPicker({ value, defaultValue, onChange, disabled, withAlpha, format, presets, className, triggerClassName, contentClassName, clearable, copyable, size, variant, showRecent, showHarmony, maxRecent, borderMode, ...rest }: ColorPickerProps): react_jsx_runtime.JSX.Element;
|
|
2422
2536
|
|
|
2423
2537
|
interface Song {
|
|
2424
2538
|
id: number;
|
|
@@ -3487,6 +3601,10 @@ declare const underverseMessages: {
|
|
|
3487
3601
|
placeholder: string;
|
|
3488
3602
|
today: string;
|
|
3489
3603
|
clear: string;
|
|
3604
|
+
lunarFormat: string;
|
|
3605
|
+
lunarLeapFormat: string;
|
|
3606
|
+
lunarMonth: string;
|
|
3607
|
+
lunarLeap: string;
|
|
3490
3608
|
};
|
|
3491
3609
|
DateTimePicker: {
|
|
3492
3610
|
time: string;
|
|
@@ -3903,6 +4021,10 @@ declare const underverseMessages: {
|
|
|
3903
4021
|
placeholder: string;
|
|
3904
4022
|
today: string;
|
|
3905
4023
|
clear: string;
|
|
4024
|
+
lunarFormat: string;
|
|
4025
|
+
lunarLeapFormat: string;
|
|
4026
|
+
lunarMonth: string;
|
|
4027
|
+
lunarLeap: string;
|
|
3906
4028
|
};
|
|
3907
4029
|
DateTimePicker: {
|
|
3908
4030
|
time: string;
|
|
@@ -4319,6 +4441,10 @@ declare const underverseMessages: {
|
|
|
4319
4441
|
placeholder: string;
|
|
4320
4442
|
today: string;
|
|
4321
4443
|
clear: string;
|
|
4444
|
+
lunarFormat: string;
|
|
4445
|
+
lunarLeapFormat: string;
|
|
4446
|
+
lunarMonth: string;
|
|
4447
|
+
lunarLeap: string;
|
|
4322
4448
|
};
|
|
4323
4449
|
DateTimePicker: {
|
|
4324
4450
|
time: string;
|
|
@@ -4735,6 +4861,10 @@ declare const underverseMessages: {
|
|
|
4735
4861
|
placeholder: string;
|
|
4736
4862
|
today: string;
|
|
4737
4863
|
clear: string;
|
|
4864
|
+
lunarFormat: string;
|
|
4865
|
+
lunarLeapFormat: string;
|
|
4866
|
+
lunarMonth: string;
|
|
4867
|
+
lunarLeap: string;
|
|
4738
4868
|
};
|
|
4739
4869
|
DateTimePicker: {
|
|
4740
4870
|
time: string;
|
|
@@ -5154,6 +5284,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5154
5284
|
placeholder: string;
|
|
5155
5285
|
today: string;
|
|
5156
5286
|
clear: string;
|
|
5287
|
+
lunarFormat: string;
|
|
5288
|
+
lunarLeapFormat: string;
|
|
5289
|
+
lunarMonth: string;
|
|
5290
|
+
lunarLeap: string;
|
|
5157
5291
|
};
|
|
5158
5292
|
DateTimePicker: {
|
|
5159
5293
|
time: string;
|
|
@@ -5569,6 +5703,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5569
5703
|
placeholder: string;
|
|
5570
5704
|
today: string;
|
|
5571
5705
|
clear: string;
|
|
5706
|
+
lunarFormat: string;
|
|
5707
|
+
lunarLeapFormat: string;
|
|
5708
|
+
lunarMonth: string;
|
|
5709
|
+
lunarLeap: string;
|
|
5572
5710
|
};
|
|
5573
5711
|
DateTimePicker: {
|
|
5574
5712
|
time: string;
|
|
@@ -5984,6 +6122,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
5984
6122
|
placeholder: string;
|
|
5985
6123
|
today: string;
|
|
5986
6124
|
clear: string;
|
|
6125
|
+
lunarFormat: string;
|
|
6126
|
+
lunarLeapFormat: string;
|
|
6127
|
+
lunarMonth: string;
|
|
6128
|
+
lunarLeap: string;
|
|
5987
6129
|
};
|
|
5988
6130
|
DateTimePicker: {
|
|
5989
6131
|
time: string;
|
|
@@ -6399,6 +6541,10 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6399
6541
|
placeholder: string;
|
|
6400
6542
|
today: string;
|
|
6401
6543
|
clear: string;
|
|
6544
|
+
lunarFormat: string;
|
|
6545
|
+
lunarLeapFormat: string;
|
|
6546
|
+
lunarMonth: string;
|
|
6547
|
+
lunarLeap: string;
|
|
6402
6548
|
};
|
|
6403
6549
|
DateTimePicker: {
|
|
6404
6550
|
time: string;
|
|
@@ -6768,4 +6914,4 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
6768
6914
|
};
|
|
6769
6915
|
};
|
|
6770
6916
|
|
|
6771
|
-
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, type BottomSheetProps, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type CarouselEffectOptions, type CarouselEffectPreset, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, type GlobalI18nConfig, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxOption, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NextIntlAdapter, NotificationBadge, NotificationModal, NumberInput, type NumberInputProps, OverlayControls, type OverlayControlsProps, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, type ScrollAreaProps, SearchInput, type SearchInputProps, Section, SegmentedProgress, SelectDropdown, Sheet, type SheetProps, SidebarSheet, type SidebarSheetProps, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, type SlideOverProps, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, type StickerAssetVariant, type StickerImageUrlOptions, StickerPicker, type StickerPickerProps, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderProps, type TableProps, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type TextareaProps, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, UEditor, type UEditorFontFamilyOption, type UEditorFontSizeOption, type UEditorInlineUploadedItem, type UEditorLetterSpacingOption, type UEditorLineHeightOption, UEditorPrepareContentForSaveError, type UEditorPrepareContentForSaveOptions, type UEditorPrepareContentForSaveResult, type UEditorProps, type UEditorRef, type UEditorUploadImageForSave, type UEditorUploadImageForSaveResult, type UEditorVariant, type UnderverseLocale, UnderverseNextIntlProvider, UnderverseProvider, type UnderverseProviderProps, type UploadedFile, type UploadedImage, type UseOverlayScrollbarTargetOptions, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VIETNAM_HOLIDAYS, VerticalTabs, Watermark, type WatermarkProps, cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getEmojiImageUrl, getEmojiUnifiedCode, getStickerImageUrl, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, setEmojiBaseUrl, setStickerBaseUrl, shadcnAnimationStyles, underverseMessages, useFormField, useGlobalI18n, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|
|
6917
|
+
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, type BottomSheetProps, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, type CalendarHoliday, type CalendarProps, CalendarTimeline, type CalendarTimelineDateInput, type CalendarTimelineDayRangeMode, type CalendarTimelineEvent, type CalendarTimelineFormatters, type CalendarTimelineGroup, type CalendarTimelineInteractions, type CalendarTimelineLabels, type CalendarTimelineProps, type CalendarTimelineResource, type CalendarTimelineSize, type CalendarTimelineView, type CalendarTimelineVirtualization, Card, type CardProps, Carousel, type CarouselEffectOptions, type CarouselEffectPreset, type Category, CategoryTreeSelect, type CategoryTreeSelectBaseProps, type CategoryTreeSelectLabels, type CategoryTreeSelectMultiProps, type CategoryTreeSelectProps, type CategoryTreeSelectSingleProps, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxOption, type ComboboxProps, CompactDatePicker, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableLabels, type DataTableProps, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, type DateRangePickerProps, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, type DrawerProps, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, type GlobalI18nConfig, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, type ImageUploadProps, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale, LunarDatePicker, type LunarDatePickerProps, LunarDateRangePicker, type LunarDateRangePickerProps, type LunarDateValue, type LunarPickerValue, lunar as LunarUtils, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxOption, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NextIntlAdapter, NotificationBadge, NotificationModal, NumberInput, type NumberInputProps, OverlayControls, type OverlayControlsProps, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PillTabs, Popover, Progress, PulseBadge, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, type ScrollAreaProps, SearchInput, type SearchInputProps, Section, SegmentedProgress, SelectDropdown, Sheet, type SheetProps, SidebarSheet, type SidebarSheetProps, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, type SlideOverProps, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, type StickerAssetVariant, type StickerImageUrlOptions, StickerPicker, type StickerPickerProps, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderProps, type TableProps, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, type TextareaProps, type ThemeMode, ThemeToggleHeadless as ThemeToggle, ThemeToggleHeadless, type ThemeToggleHeadlessProps, type ThemeToggleHeadlessProps as ThemeToggleProps, TimePicker, type TimePickerProps, Timeline, TimelineItem, ToastProvider, Tooltip, TranslationProvider, type TranslationProviderProps, type Translations, UEditor, type UEditorFontFamilyOption, type UEditorFontSizeOption, type UEditorInlineUploadedItem, type UEditorLetterSpacingOption, type UEditorLineHeightOption, UEditorPrepareContentForSaveError, type UEditorPrepareContentForSaveOptions, type UEditorPrepareContentForSaveResult, type UEditorProps, type UEditorRef, type UEditorUploadImageForSave, type UEditorUploadImageForSaveResult, type UEditorVariant, type UnderverseLocale, UnderverseNextIntlProvider, UnderverseProvider, type UnderverseProviderProps, type UploadedFile, type UploadedImage, type UseOverlayScrollbarTargetOptions, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VIETNAM_HOLIDAYS, VerticalTabs, Watermark, type WatermarkProps, cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getEmojiImageUrl, getEmojiUnifiedCode, getStickerImageUrl, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, setEmojiBaseUrl, setStickerBaseUrl, shadcnAnimationStyles, underverseMessages, useFormField, useGlobalI18n, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|