@underverse-ui/underverse 1.0.74 → 1.0.76
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 +3882 -3131
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +189 -1
- package/dist/index.d.ts +189 -1
- package/dist/index.js +3639 -2885
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2734,6 +2734,22 @@ type UEditorPrepareContentForSaveOptions = {
|
|
|
2734
2734
|
interface UEditorRef {
|
|
2735
2735
|
prepareContentForSave: (options?: UEditorPrepareContentForSaveOptions) => Promise<UEditorPrepareContentForSaveResult>;
|
|
2736
2736
|
}
|
|
2737
|
+
type UEditorFontFamilyOption = {
|
|
2738
|
+
label: string;
|
|
2739
|
+
value: string;
|
|
2740
|
+
};
|
|
2741
|
+
type UEditorFontSizeOption = {
|
|
2742
|
+
label: string;
|
|
2743
|
+
value: string;
|
|
2744
|
+
};
|
|
2745
|
+
type UEditorLineHeightOption = {
|
|
2746
|
+
label: string;
|
|
2747
|
+
value: string;
|
|
2748
|
+
};
|
|
2749
|
+
type UEditorLetterSpacingOption = {
|
|
2750
|
+
label: string;
|
|
2751
|
+
value: string;
|
|
2752
|
+
};
|
|
2737
2753
|
interface UEditorProps {
|
|
2738
2754
|
content?: string;
|
|
2739
2755
|
onChange?: (content: string) => void;
|
|
@@ -2754,6 +2770,10 @@ interface UEditorProps {
|
|
|
2754
2770
|
minHeight?: number | string;
|
|
2755
2771
|
maxHeight?: number | string;
|
|
2756
2772
|
variant?: "default" | "minimal" | "notion";
|
|
2773
|
+
fontFamilies?: UEditorFontFamilyOption[];
|
|
2774
|
+
fontSizes?: UEditorFontSizeOption[];
|
|
2775
|
+
lineHeights?: UEditorLineHeightOption[];
|
|
2776
|
+
letterSpacings?: UEditorLetterSpacingOption[];
|
|
2757
2777
|
}
|
|
2758
2778
|
type UEditorVariant = NonNullable<UEditorProps["variant"]>;
|
|
2759
2779
|
|
|
@@ -2923,6 +2943,17 @@ declare const underverseMessages: {
|
|
|
2923
2943
|
undo: string;
|
|
2924
2944
|
redo: string;
|
|
2925
2945
|
textStyle: string;
|
|
2946
|
+
fontFamily: string;
|
|
2947
|
+
fontSize: string;
|
|
2948
|
+
lineHeight: string;
|
|
2949
|
+
fontDefault: string;
|
|
2950
|
+
sizeDefault: string;
|
|
2951
|
+
lineHeightDefault: string;
|
|
2952
|
+
letterSpacing: string;
|
|
2953
|
+
letterSpacingDefault: string;
|
|
2954
|
+
fontSans: string;
|
|
2955
|
+
fontSerif: string;
|
|
2956
|
+
fontMono: string;
|
|
2926
2957
|
normal: string;
|
|
2927
2958
|
heading1: string;
|
|
2928
2959
|
heading2: string;
|
|
@@ -2989,8 +3020,15 @@ declare const underverseMessages: {
|
|
|
2989
3020
|
noResults: string;
|
|
2990
3021
|
tryDifferentSearch: string;
|
|
2991
3022
|
};
|
|
3023
|
+
emojiSuggestion: {
|
|
3024
|
+
title: string;
|
|
3025
|
+
noResults: string;
|
|
3026
|
+
showingCount: string;
|
|
3027
|
+
};
|
|
2992
3028
|
tableMenu: {
|
|
2993
3029
|
insert3x3: string;
|
|
3030
|
+
insertTable: string;
|
|
3031
|
+
gridPreview: string;
|
|
2994
3032
|
addColumnBefore: string;
|
|
2995
3033
|
addColumnAfter: string;
|
|
2996
3034
|
addRowBefore: string;
|
|
@@ -3010,6 +3048,9 @@ declare const underverseMessages: {
|
|
|
3010
3048
|
expandTable: string;
|
|
3011
3049
|
dragRow: string;
|
|
3012
3050
|
dragColumn: string;
|
|
3051
|
+
alignLeft: string;
|
|
3052
|
+
alignCenter: string;
|
|
3053
|
+
alignRight: string;
|
|
3013
3054
|
};
|
|
3014
3055
|
};
|
|
3015
3056
|
};
|
|
@@ -3165,6 +3206,17 @@ declare const underverseMessages: {
|
|
|
3165
3206
|
undo: string;
|
|
3166
3207
|
redo: string;
|
|
3167
3208
|
textStyle: string;
|
|
3209
|
+
fontFamily: string;
|
|
3210
|
+
fontSize: string;
|
|
3211
|
+
lineHeight: string;
|
|
3212
|
+
fontDefault: string;
|
|
3213
|
+
sizeDefault: string;
|
|
3214
|
+
lineHeightDefault: string;
|
|
3215
|
+
letterSpacing: string;
|
|
3216
|
+
letterSpacingDefault: string;
|
|
3217
|
+
fontSans: string;
|
|
3218
|
+
fontSerif: string;
|
|
3219
|
+
fontMono: string;
|
|
3168
3220
|
normal: string;
|
|
3169
3221
|
heading1: string;
|
|
3170
3222
|
heading2: string;
|
|
@@ -3231,8 +3283,15 @@ declare const underverseMessages: {
|
|
|
3231
3283
|
noResults: string;
|
|
3232
3284
|
tryDifferentSearch: string;
|
|
3233
3285
|
};
|
|
3286
|
+
emojiSuggestion: {
|
|
3287
|
+
title: string;
|
|
3288
|
+
noResults: string;
|
|
3289
|
+
showingCount: string;
|
|
3290
|
+
};
|
|
3234
3291
|
tableMenu: {
|
|
3235
3292
|
insert3x3: string;
|
|
3293
|
+
insertTable: string;
|
|
3294
|
+
gridPreview: string;
|
|
3236
3295
|
addColumnBefore: string;
|
|
3237
3296
|
addColumnAfter: string;
|
|
3238
3297
|
addRowBefore: string;
|
|
@@ -3252,6 +3311,9 @@ declare const underverseMessages: {
|
|
|
3252
3311
|
expandTable: string;
|
|
3253
3312
|
dragRow: string;
|
|
3254
3313
|
dragColumn: string;
|
|
3314
|
+
alignLeft: string;
|
|
3315
|
+
alignCenter: string;
|
|
3316
|
+
alignRight: string;
|
|
3255
3317
|
};
|
|
3256
3318
|
};
|
|
3257
3319
|
};
|
|
@@ -3407,6 +3469,17 @@ declare const underverseMessages: {
|
|
|
3407
3469
|
undo: string;
|
|
3408
3470
|
redo: string;
|
|
3409
3471
|
textStyle: string;
|
|
3472
|
+
fontFamily: string;
|
|
3473
|
+
fontSize: string;
|
|
3474
|
+
lineHeight: string;
|
|
3475
|
+
fontDefault: string;
|
|
3476
|
+
sizeDefault: string;
|
|
3477
|
+
lineHeightDefault: string;
|
|
3478
|
+
letterSpacing: string;
|
|
3479
|
+
letterSpacingDefault: string;
|
|
3480
|
+
fontSans: string;
|
|
3481
|
+
fontSerif: string;
|
|
3482
|
+
fontMono: string;
|
|
3410
3483
|
normal: string;
|
|
3411
3484
|
heading1: string;
|
|
3412
3485
|
heading2: string;
|
|
@@ -3472,8 +3545,15 @@ declare const underverseMessages: {
|
|
|
3472
3545
|
noResults: string;
|
|
3473
3546
|
tryDifferentSearch: string;
|
|
3474
3547
|
};
|
|
3548
|
+
emojiSuggestion: {
|
|
3549
|
+
title: string;
|
|
3550
|
+
noResults: string;
|
|
3551
|
+
showingCount: string;
|
|
3552
|
+
};
|
|
3475
3553
|
tableMenu: {
|
|
3476
3554
|
insert3x3: string;
|
|
3555
|
+
insertTable: string;
|
|
3556
|
+
gridPreview: string;
|
|
3477
3557
|
addColumnBefore: string;
|
|
3478
3558
|
addColumnAfter: string;
|
|
3479
3559
|
addRowBefore: string;
|
|
@@ -3493,6 +3573,9 @@ declare const underverseMessages: {
|
|
|
3493
3573
|
expandTable: string;
|
|
3494
3574
|
dragRow: string;
|
|
3495
3575
|
dragColumn: string;
|
|
3576
|
+
alignLeft: string;
|
|
3577
|
+
alignCenter: string;
|
|
3578
|
+
alignRight: string;
|
|
3496
3579
|
};
|
|
3497
3580
|
};
|
|
3498
3581
|
};
|
|
@@ -3648,6 +3731,17 @@ declare const underverseMessages: {
|
|
|
3648
3731
|
undo: string;
|
|
3649
3732
|
redo: string;
|
|
3650
3733
|
textStyle: string;
|
|
3734
|
+
fontFamily: string;
|
|
3735
|
+
fontSize: string;
|
|
3736
|
+
lineHeight: string;
|
|
3737
|
+
fontDefault: string;
|
|
3738
|
+
sizeDefault: string;
|
|
3739
|
+
lineHeightDefault: string;
|
|
3740
|
+
letterSpacing: string;
|
|
3741
|
+
letterSpacingDefault: string;
|
|
3742
|
+
fontSans: string;
|
|
3743
|
+
fontSerif: string;
|
|
3744
|
+
fontMono: string;
|
|
3651
3745
|
normal: string;
|
|
3652
3746
|
heading1: string;
|
|
3653
3747
|
heading2: string;
|
|
@@ -3713,8 +3807,15 @@ declare const underverseMessages: {
|
|
|
3713
3807
|
noResults: string;
|
|
3714
3808
|
tryDifferentSearch: string;
|
|
3715
3809
|
};
|
|
3810
|
+
emojiSuggestion: {
|
|
3811
|
+
title: string;
|
|
3812
|
+
noResults: string;
|
|
3813
|
+
showingCount: string;
|
|
3814
|
+
};
|
|
3716
3815
|
tableMenu: {
|
|
3717
3816
|
insert3x3: string;
|
|
3817
|
+
insertTable: string;
|
|
3818
|
+
gridPreview: string;
|
|
3718
3819
|
addColumnBefore: string;
|
|
3719
3820
|
addColumnAfter: string;
|
|
3720
3821
|
addRowBefore: string;
|
|
@@ -3734,6 +3835,9 @@ declare const underverseMessages: {
|
|
|
3734
3835
|
expandTable: string;
|
|
3735
3836
|
dragRow: string;
|
|
3736
3837
|
dragColumn: string;
|
|
3838
|
+
alignLeft: string;
|
|
3839
|
+
alignCenter: string;
|
|
3840
|
+
alignRight: string;
|
|
3737
3841
|
};
|
|
3738
3842
|
};
|
|
3739
3843
|
};
|
|
@@ -3891,6 +3995,17 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
3891
3995
|
undo: string;
|
|
3892
3996
|
redo: string;
|
|
3893
3997
|
textStyle: string;
|
|
3998
|
+
fontFamily: string;
|
|
3999
|
+
fontSize: string;
|
|
4000
|
+
lineHeight: string;
|
|
4001
|
+
fontDefault: string;
|
|
4002
|
+
sizeDefault: string;
|
|
4003
|
+
lineHeightDefault: string;
|
|
4004
|
+
letterSpacing: string;
|
|
4005
|
+
letterSpacingDefault: string;
|
|
4006
|
+
fontSans: string;
|
|
4007
|
+
fontSerif: string;
|
|
4008
|
+
fontMono: string;
|
|
3894
4009
|
normal: string;
|
|
3895
4010
|
heading1: string;
|
|
3896
4011
|
heading2: string;
|
|
@@ -3957,8 +4072,15 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
3957
4072
|
noResults: string;
|
|
3958
4073
|
tryDifferentSearch: string;
|
|
3959
4074
|
};
|
|
4075
|
+
emojiSuggestion: {
|
|
4076
|
+
title: string;
|
|
4077
|
+
noResults: string;
|
|
4078
|
+
showingCount: string;
|
|
4079
|
+
};
|
|
3960
4080
|
tableMenu: {
|
|
3961
4081
|
insert3x3: string;
|
|
4082
|
+
insertTable: string;
|
|
4083
|
+
gridPreview: string;
|
|
3962
4084
|
addColumnBefore: string;
|
|
3963
4085
|
addColumnAfter: string;
|
|
3964
4086
|
addRowBefore: string;
|
|
@@ -3978,6 +4100,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
3978
4100
|
expandTable: string;
|
|
3979
4101
|
dragRow: string;
|
|
3980
4102
|
dragColumn: string;
|
|
4103
|
+
alignLeft: string;
|
|
4104
|
+
alignCenter: string;
|
|
4105
|
+
alignRight: string;
|
|
3981
4106
|
};
|
|
3982
4107
|
};
|
|
3983
4108
|
} | {
|
|
@@ -4132,6 +4257,17 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4132
4257
|
undo: string;
|
|
4133
4258
|
redo: string;
|
|
4134
4259
|
textStyle: string;
|
|
4260
|
+
fontFamily: string;
|
|
4261
|
+
fontSize: string;
|
|
4262
|
+
lineHeight: string;
|
|
4263
|
+
fontDefault: string;
|
|
4264
|
+
sizeDefault: string;
|
|
4265
|
+
lineHeightDefault: string;
|
|
4266
|
+
letterSpacing: string;
|
|
4267
|
+
letterSpacingDefault: string;
|
|
4268
|
+
fontSans: string;
|
|
4269
|
+
fontSerif: string;
|
|
4270
|
+
fontMono: string;
|
|
4135
4271
|
normal: string;
|
|
4136
4272
|
heading1: string;
|
|
4137
4273
|
heading2: string;
|
|
@@ -4198,8 +4334,15 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4198
4334
|
noResults: string;
|
|
4199
4335
|
tryDifferentSearch: string;
|
|
4200
4336
|
};
|
|
4337
|
+
emojiSuggestion: {
|
|
4338
|
+
title: string;
|
|
4339
|
+
noResults: string;
|
|
4340
|
+
showingCount: string;
|
|
4341
|
+
};
|
|
4201
4342
|
tableMenu: {
|
|
4202
4343
|
insert3x3: string;
|
|
4344
|
+
insertTable: string;
|
|
4345
|
+
gridPreview: string;
|
|
4203
4346
|
addColumnBefore: string;
|
|
4204
4347
|
addColumnAfter: string;
|
|
4205
4348
|
addRowBefore: string;
|
|
@@ -4219,6 +4362,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4219
4362
|
expandTable: string;
|
|
4220
4363
|
dragRow: string;
|
|
4221
4364
|
dragColumn: string;
|
|
4365
|
+
alignLeft: string;
|
|
4366
|
+
alignCenter: string;
|
|
4367
|
+
alignRight: string;
|
|
4222
4368
|
};
|
|
4223
4369
|
};
|
|
4224
4370
|
} | {
|
|
@@ -4373,6 +4519,17 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4373
4519
|
undo: string;
|
|
4374
4520
|
redo: string;
|
|
4375
4521
|
textStyle: string;
|
|
4522
|
+
fontFamily: string;
|
|
4523
|
+
fontSize: string;
|
|
4524
|
+
lineHeight: string;
|
|
4525
|
+
fontDefault: string;
|
|
4526
|
+
sizeDefault: string;
|
|
4527
|
+
lineHeightDefault: string;
|
|
4528
|
+
letterSpacing: string;
|
|
4529
|
+
letterSpacingDefault: string;
|
|
4530
|
+
fontSans: string;
|
|
4531
|
+
fontSerif: string;
|
|
4532
|
+
fontMono: string;
|
|
4376
4533
|
normal: string;
|
|
4377
4534
|
heading1: string;
|
|
4378
4535
|
heading2: string;
|
|
@@ -4438,8 +4595,15 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4438
4595
|
noResults: string;
|
|
4439
4596
|
tryDifferentSearch: string;
|
|
4440
4597
|
};
|
|
4598
|
+
emojiSuggestion: {
|
|
4599
|
+
title: string;
|
|
4600
|
+
noResults: string;
|
|
4601
|
+
showingCount: string;
|
|
4602
|
+
};
|
|
4441
4603
|
tableMenu: {
|
|
4442
4604
|
insert3x3: string;
|
|
4605
|
+
insertTable: string;
|
|
4606
|
+
gridPreview: string;
|
|
4443
4607
|
addColumnBefore: string;
|
|
4444
4608
|
addColumnAfter: string;
|
|
4445
4609
|
addRowBefore: string;
|
|
@@ -4459,6 +4623,9 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4459
4623
|
expandTable: string;
|
|
4460
4624
|
dragRow: string;
|
|
4461
4625
|
dragColumn: string;
|
|
4626
|
+
alignLeft: string;
|
|
4627
|
+
alignCenter: string;
|
|
4628
|
+
alignRight: string;
|
|
4462
4629
|
};
|
|
4463
4630
|
};
|
|
4464
4631
|
} | {
|
|
@@ -4613,6 +4780,17 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4613
4780
|
undo: string;
|
|
4614
4781
|
redo: string;
|
|
4615
4782
|
textStyle: string;
|
|
4783
|
+
fontFamily: string;
|
|
4784
|
+
fontSize: string;
|
|
4785
|
+
lineHeight: string;
|
|
4786
|
+
fontDefault: string;
|
|
4787
|
+
sizeDefault: string;
|
|
4788
|
+
lineHeightDefault: string;
|
|
4789
|
+
letterSpacing: string;
|
|
4790
|
+
letterSpacingDefault: string;
|
|
4791
|
+
fontSans: string;
|
|
4792
|
+
fontSerif: string;
|
|
4793
|
+
fontMono: string;
|
|
4616
4794
|
normal: string;
|
|
4617
4795
|
heading1: string;
|
|
4618
4796
|
heading2: string;
|
|
@@ -4678,8 +4856,15 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4678
4856
|
noResults: string;
|
|
4679
4857
|
tryDifferentSearch: string;
|
|
4680
4858
|
};
|
|
4859
|
+
emojiSuggestion: {
|
|
4860
|
+
title: string;
|
|
4861
|
+
noResults: string;
|
|
4862
|
+
showingCount: string;
|
|
4863
|
+
};
|
|
4681
4864
|
tableMenu: {
|
|
4682
4865
|
insert3x3: string;
|
|
4866
|
+
insertTable: string;
|
|
4867
|
+
gridPreview: string;
|
|
4683
4868
|
addColumnBefore: string;
|
|
4684
4869
|
addColumnAfter: string;
|
|
4685
4870
|
addRowBefore: string;
|
|
@@ -4699,8 +4884,11 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
|
|
|
4699
4884
|
expandTable: string;
|
|
4700
4885
|
dragRow: string;
|
|
4701
4886
|
dragColumn: string;
|
|
4887
|
+
alignLeft: string;
|
|
4888
|
+
alignCenter: string;
|
|
4889
|
+
alignRight: string;
|
|
4702
4890
|
};
|
|
4703
4891
|
};
|
|
4704
4892
|
};
|
|
4705
4893
|
|
|
4706
|
-
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 };
|
|
4894
|
+
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 };
|