@underverse-ui/underverse 1.0.75 → 1.0.77
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 +30 -2
- package/dist/index.cjs +980 -98
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +150 -1
- package/dist/index.d.ts +150 -1
- package/dist/index.js +983 -98
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -215,6 +215,7 @@ interface EmojiPickerProps {
|
|
|
215
215
|
showCategoryNav?: boolean;
|
|
216
216
|
columns?: number;
|
|
217
217
|
maxHeight?: string;
|
|
218
|
+
chrome?: "standalone" | "embedded";
|
|
218
219
|
}
|
|
219
220
|
declare const EmojiPicker: React__default.FC<EmojiPickerProps>;
|
|
220
221
|
|
|
@@ -2734,6 +2735,22 @@ type UEditorPrepareContentForSaveOptions = {
|
|
|
2734
2735
|
interface UEditorRef {
|
|
2735
2736
|
prepareContentForSave: (options?: UEditorPrepareContentForSaveOptions) => Promise<UEditorPrepareContentForSaveResult>;
|
|
2736
2737
|
}
|
|
2738
|
+
type UEditorFontFamilyOption = {
|
|
2739
|
+
label: string;
|
|
2740
|
+
value: string;
|
|
2741
|
+
};
|
|
2742
|
+
type UEditorFontSizeOption = {
|
|
2743
|
+
label: string;
|
|
2744
|
+
value: string;
|
|
2745
|
+
};
|
|
2746
|
+
type UEditorLineHeightOption = {
|
|
2747
|
+
label: string;
|
|
2748
|
+
value: string;
|
|
2749
|
+
};
|
|
2750
|
+
type UEditorLetterSpacingOption = {
|
|
2751
|
+
label: string;
|
|
2752
|
+
value: string;
|
|
2753
|
+
};
|
|
2737
2754
|
interface UEditorProps {
|
|
2738
2755
|
content?: string;
|
|
2739
2756
|
onChange?: (content: string) => void;
|
|
@@ -2754,6 +2771,10 @@ interface UEditorProps {
|
|
|
2754
2771
|
minHeight?: number | string;
|
|
2755
2772
|
maxHeight?: number | string;
|
|
2756
2773
|
variant?: "default" | "minimal" | "notion";
|
|
2774
|
+
fontFamilies?: UEditorFontFamilyOption[];
|
|
2775
|
+
fontSizes?: UEditorFontSizeOption[];
|
|
2776
|
+
lineHeights?: UEditorLineHeightOption[];
|
|
2777
|
+
letterSpacings?: UEditorLetterSpacingOption[];
|
|
2757
2778
|
}
|
|
2758
2779
|
type UEditorVariant = NonNullable<UEditorProps["variant"]>;
|
|
2759
2780
|
|
|
@@ -2923,6 +2944,17 @@ declare const underverseMessages: {
|
|
|
2923
2944
|
undo: string;
|
|
2924
2945
|
redo: string;
|
|
2925
2946
|
textStyle: string;
|
|
2947
|
+
fontFamily: string;
|
|
2948
|
+
fontSize: string;
|
|
2949
|
+
lineHeight: string;
|
|
2950
|
+
fontDefault: string;
|
|
2951
|
+
sizeDefault: string;
|
|
2952
|
+
lineHeightDefault: string;
|
|
2953
|
+
letterSpacing: string;
|
|
2954
|
+
letterSpacingDefault: string;
|
|
2955
|
+
fontSans: string;
|
|
2956
|
+
fontSerif: string;
|
|
2957
|
+
fontMono: string;
|
|
2926
2958
|
normal: string;
|
|
2927
2959
|
heading1: string;
|
|
2928
2960
|
heading2: string;
|
|
@@ -2996,6 +3028,8 @@ declare const underverseMessages: {
|
|
|
2996
3028
|
};
|
|
2997
3029
|
tableMenu: {
|
|
2998
3030
|
insert3x3: string;
|
|
3031
|
+
insertTable: string;
|
|
3032
|
+
gridPreview: string;
|
|
2999
3033
|
addColumnBefore: string;
|
|
3000
3034
|
addColumnAfter: string;
|
|
3001
3035
|
addRowBefore: string;
|
|
@@ -3015,6 +3049,9 @@ declare const underverseMessages: {
|
|
|
3015
3049
|
expandTable: string;
|
|
3016
3050
|
dragRow: string;
|
|
3017
3051
|
dragColumn: string;
|
|
3052
|
+
alignLeft: string;
|
|
3053
|
+
alignCenter: string;
|
|
3054
|
+
alignRight: string;
|
|
3018
3055
|
};
|
|
3019
3056
|
};
|
|
3020
3057
|
};
|
|
@@ -3170,6 +3207,17 @@ declare const underverseMessages: {
|
|
|
3170
3207
|
undo: string;
|
|
3171
3208
|
redo: string;
|
|
3172
3209
|
textStyle: string;
|
|
3210
|
+
fontFamily: string;
|
|
3211
|
+
fontSize: string;
|
|
3212
|
+
lineHeight: string;
|
|
3213
|
+
fontDefault: string;
|
|
3214
|
+
sizeDefault: string;
|
|
3215
|
+
lineHeightDefault: string;
|
|
3216
|
+
letterSpacing: string;
|
|
3217
|
+
letterSpacingDefault: string;
|
|
3218
|
+
fontSans: string;
|
|
3219
|
+
fontSerif: string;
|
|
3220
|
+
fontMono: string;
|
|
3173
3221
|
normal: string;
|
|
3174
3222
|
heading1: string;
|
|
3175
3223
|
heading2: string;
|
|
@@ -3243,6 +3291,8 @@ declare const underverseMessages: {
|
|
|
3243
3291
|
};
|
|
3244
3292
|
tableMenu: {
|
|
3245
3293
|
insert3x3: string;
|
|
3294
|
+
insertTable: string;
|
|
3295
|
+
gridPreview: string;
|
|
3246
3296
|
addColumnBefore: string;
|
|
3247
3297
|
addColumnAfter: string;
|
|
3248
3298
|
addRowBefore: string;
|
|
@@ -3262,6 +3312,9 @@ declare const underverseMessages: {
|
|
|
3262
3312
|
expandTable: string;
|
|
3263
3313
|
dragRow: string;
|
|
3264
3314
|
dragColumn: string;
|
|
3315
|
+
alignLeft: string;
|
|
3316
|
+
alignCenter: string;
|
|
3317
|
+
alignRight: string;
|
|
3265
3318
|
};
|
|
3266
3319
|
};
|
|
3267
3320
|
};
|
|
@@ -3417,6 +3470,17 @@ declare const underverseMessages: {
|
|
|
3417
3470
|
undo: string;
|
|
3418
3471
|
redo: string;
|
|
3419
3472
|
textStyle: string;
|
|
3473
|
+
fontFamily: string;
|
|
3474
|
+
fontSize: string;
|
|
3475
|
+
lineHeight: string;
|
|
3476
|
+
fontDefault: string;
|
|
3477
|
+
sizeDefault: string;
|
|
3478
|
+
lineHeightDefault: string;
|
|
3479
|
+
letterSpacing: string;
|
|
3480
|
+
letterSpacingDefault: string;
|
|
3481
|
+
fontSans: string;
|
|
3482
|
+
fontSerif: string;
|
|
3483
|
+
fontMono: string;
|
|
3420
3484
|
normal: string;
|
|
3421
3485
|
heading1: string;
|
|
3422
3486
|
heading2: string;
|
|
@@ -3489,6 +3553,8 @@ declare const underverseMessages: {
|
|
|
3489
3553
|
};
|
|
3490
3554
|
tableMenu: {
|
|
3491
3555
|
insert3x3: string;
|
|
3556
|
+
insertTable: string;
|
|
3557
|
+
gridPreview: string;
|
|
3492
3558
|
addColumnBefore: string;
|
|
3493
3559
|
addColumnAfter: string;
|
|
3494
3560
|
addRowBefore: string;
|
|
@@ -3508,6 +3574,9 @@ declare const underverseMessages: {
|
|
|
3508
3574
|
expandTable: string;
|
|
3509
3575
|
dragRow: string;
|
|
3510
3576
|
dragColumn: string;
|
|
3577
|
+
alignLeft: string;
|
|
3578
|
+
alignCenter: string;
|
|
3579
|
+
alignRight: string;
|
|
3511
3580
|
};
|
|
3512
3581
|
};
|
|
3513
3582
|
};
|
|
@@ -3663,6 +3732,17 @@ declare const underverseMessages: {
|
|
|
3663
3732
|
undo: string;
|
|
3664
3733
|
redo: string;
|
|
3665
3734
|
textStyle: string;
|
|
3735
|
+
fontFamily: string;
|
|
3736
|
+
fontSize: string;
|
|
3737
|
+
lineHeight: string;
|
|
3738
|
+
fontDefault: string;
|
|
3739
|
+
sizeDefault: string;
|
|
3740
|
+
lineHeightDefault: string;
|
|
3741
|
+
letterSpacing: string;
|
|
3742
|
+
letterSpacingDefault: string;
|
|
3743
|
+
fontSans: string;
|
|
3744
|
+
fontSerif: string;
|
|
3745
|
+
fontMono: string;
|
|
3666
3746
|
normal: string;
|
|
3667
3747
|
heading1: string;
|
|
3668
3748
|
heading2: string;
|
|
@@ -3735,6 +3815,8 @@ declare const underverseMessages: {
|
|
|
3735
3815
|
};
|
|
3736
3816
|
tableMenu: {
|
|
3737
3817
|
insert3x3: string;
|
|
3818
|
+
insertTable: string;
|
|
3819
|
+
gridPreview: string;
|
|
3738
3820
|
addColumnBefore: string;
|
|
3739
3821
|
addColumnAfter: string;
|
|
3740
3822
|
addRowBefore: string;
|
|
@@ -3754,6 +3836,9 @@ declare const underverseMessages: {
|
|
|
3754
3836
|
expandTable: string;
|
|
3755
3837
|
dragRow: string;
|
|
3756
3838
|
dragColumn: string;
|
|
3839
|
+
alignLeft: string;
|
|
3840
|
+
alignCenter: string;
|
|
3841
|
+
alignRight: string;
|
|
3757
3842
|
};
|
|
3758
3843
|
};
|
|
3759
3844
|
};
|
|
@@ -3911,6 +3996,17 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
3911
3996
|
undo: string;
|
|
3912
3997
|
redo: string;
|
|
3913
3998
|
textStyle: string;
|
|
3999
|
+
fontFamily: string;
|
|
4000
|
+
fontSize: string;
|
|
4001
|
+
lineHeight: string;
|
|
4002
|
+
fontDefault: string;
|
|
4003
|
+
sizeDefault: string;
|
|
4004
|
+
lineHeightDefault: string;
|
|
4005
|
+
letterSpacing: string;
|
|
4006
|
+
letterSpacingDefault: string;
|
|
4007
|
+
fontSans: string;
|
|
4008
|
+
fontSerif: string;
|
|
4009
|
+
fontMono: string;
|
|
3914
4010
|
normal: string;
|
|
3915
4011
|
heading1: string;
|
|
3916
4012
|
heading2: string;
|
|
@@ -3984,6 +4080,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
3984
4080
|
};
|
|
3985
4081
|
tableMenu: {
|
|
3986
4082
|
insert3x3: string;
|
|
4083
|
+
insertTable: string;
|
|
4084
|
+
gridPreview: string;
|
|
3987
4085
|
addColumnBefore: string;
|
|
3988
4086
|
addColumnAfter: string;
|
|
3989
4087
|
addRowBefore: string;
|
|
@@ -4003,6 +4101,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4003
4101
|
expandTable: string;
|
|
4004
4102
|
dragRow: string;
|
|
4005
4103
|
dragColumn: string;
|
|
4104
|
+
alignLeft: string;
|
|
4105
|
+
alignCenter: string;
|
|
4106
|
+
alignRight: string;
|
|
4006
4107
|
};
|
|
4007
4108
|
};
|
|
4008
4109
|
} | {
|
|
@@ -4157,6 +4258,17 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4157
4258
|
undo: string;
|
|
4158
4259
|
redo: string;
|
|
4159
4260
|
textStyle: string;
|
|
4261
|
+
fontFamily: string;
|
|
4262
|
+
fontSize: string;
|
|
4263
|
+
lineHeight: string;
|
|
4264
|
+
fontDefault: string;
|
|
4265
|
+
sizeDefault: string;
|
|
4266
|
+
lineHeightDefault: string;
|
|
4267
|
+
letterSpacing: string;
|
|
4268
|
+
letterSpacingDefault: string;
|
|
4269
|
+
fontSans: string;
|
|
4270
|
+
fontSerif: string;
|
|
4271
|
+
fontMono: string;
|
|
4160
4272
|
normal: string;
|
|
4161
4273
|
heading1: string;
|
|
4162
4274
|
heading2: string;
|
|
@@ -4230,6 +4342,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4230
4342
|
};
|
|
4231
4343
|
tableMenu: {
|
|
4232
4344
|
insert3x3: string;
|
|
4345
|
+
insertTable: string;
|
|
4346
|
+
gridPreview: string;
|
|
4233
4347
|
addColumnBefore: string;
|
|
4234
4348
|
addColumnAfter: string;
|
|
4235
4349
|
addRowBefore: string;
|
|
@@ -4249,6 +4363,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4249
4363
|
expandTable: string;
|
|
4250
4364
|
dragRow: string;
|
|
4251
4365
|
dragColumn: string;
|
|
4366
|
+
alignLeft: string;
|
|
4367
|
+
alignCenter: string;
|
|
4368
|
+
alignRight: string;
|
|
4252
4369
|
};
|
|
4253
4370
|
};
|
|
4254
4371
|
} | {
|
|
@@ -4403,6 +4520,17 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4403
4520
|
undo: string;
|
|
4404
4521
|
redo: string;
|
|
4405
4522
|
textStyle: string;
|
|
4523
|
+
fontFamily: string;
|
|
4524
|
+
fontSize: string;
|
|
4525
|
+
lineHeight: string;
|
|
4526
|
+
fontDefault: string;
|
|
4527
|
+
sizeDefault: string;
|
|
4528
|
+
lineHeightDefault: string;
|
|
4529
|
+
letterSpacing: string;
|
|
4530
|
+
letterSpacingDefault: string;
|
|
4531
|
+
fontSans: string;
|
|
4532
|
+
fontSerif: string;
|
|
4533
|
+
fontMono: string;
|
|
4406
4534
|
normal: string;
|
|
4407
4535
|
heading1: string;
|
|
4408
4536
|
heading2: string;
|
|
@@ -4475,6 +4603,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4475
4603
|
};
|
|
4476
4604
|
tableMenu: {
|
|
4477
4605
|
insert3x3: string;
|
|
4606
|
+
insertTable: string;
|
|
4607
|
+
gridPreview: string;
|
|
4478
4608
|
addColumnBefore: string;
|
|
4479
4609
|
addColumnAfter: string;
|
|
4480
4610
|
addRowBefore: string;
|
|
@@ -4494,6 +4624,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4494
4624
|
expandTable: string;
|
|
4495
4625
|
dragRow: string;
|
|
4496
4626
|
dragColumn: string;
|
|
4627
|
+
alignLeft: string;
|
|
4628
|
+
alignCenter: string;
|
|
4629
|
+
alignRight: string;
|
|
4497
4630
|
};
|
|
4498
4631
|
};
|
|
4499
4632
|
} | {
|
|
@@ -4648,6 +4781,17 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4648
4781
|
undo: string;
|
|
4649
4782
|
redo: string;
|
|
4650
4783
|
textStyle: string;
|
|
4784
|
+
fontFamily: string;
|
|
4785
|
+
fontSize: string;
|
|
4786
|
+
lineHeight: string;
|
|
4787
|
+
fontDefault: string;
|
|
4788
|
+
sizeDefault: string;
|
|
4789
|
+
lineHeightDefault: string;
|
|
4790
|
+
letterSpacing: string;
|
|
4791
|
+
letterSpacingDefault: string;
|
|
4792
|
+
fontSans: string;
|
|
4793
|
+
fontSerif: string;
|
|
4794
|
+
fontMono: string;
|
|
4651
4795
|
normal: string;
|
|
4652
4796
|
heading1: string;
|
|
4653
4797
|
heading2: string;
|
|
@@ -4720,6 +4864,8 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4720
4864
|
};
|
|
4721
4865
|
tableMenu: {
|
|
4722
4866
|
insert3x3: string;
|
|
4867
|
+
insertTable: string;
|
|
4868
|
+
gridPreview: string;
|
|
4723
4869
|
addColumnBefore: string;
|
|
4724
4870
|
addColumnAfter: string;
|
|
4725
4871
|
addRowBefore: string;
|
|
@@ -4739,8 +4885,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4739
4885
|
expandTable: string;
|
|
4740
4886
|
dragRow: string;
|
|
4741
4887
|
dragColumn: string;
|
|
4888
|
+
alignLeft: string;
|
|
4889
|
+
alignCenter: string;
|
|
4890
|
+
alignRight: string;
|
|
4742
4891
|
};
|
|
4743
4892
|
};
|
|
4744
4893
|
};
|
|
4745
4894
|
|
|
4746
|
-
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, 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, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, 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, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, 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 UEditorInlineUploadedItem, 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$1 as cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, shadcnAnimationStyles, underverseMessages, useFormField, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|
|
4895
|
+
export { AccessDenied, type AccessDeniedProps, Alert, Avatar, Badge, Badge as BadgeBase, BatteryProgress, BottomSheet, 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, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, EmojiPicker, type EmojiPickerProps, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, 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, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, type SliderProps, SmartImage, type Song, type Sorter, StatusBadge, StepProgress, 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$1 as cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, loading, normalizeImageUrl, prepareUEditorContentForSave, shadcnAnimationStyles, underverseMessages, useFormField, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
|