@underverse-ui/underverse 1.0.36 → 1.0.38

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/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from 'react';
2
- import React__default, { InputHTMLAttributes, TextareaHTMLAttributes, ReactNode, HTMLAttributes } from 'react';
2
+ import React__default, { InputHTMLAttributes, ReactNode, HTMLAttributes } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import * as class_variance_authority_types from 'class-variance-authority/types';
5
5
  import { VariantProps } from 'class-variance-authority';
@@ -186,6 +186,17 @@ interface NumberInputProps extends Omit<InputProps, "type" | "value" | "onChange
186
186
  onChange?: React__default.ChangeEventHandler<HTMLInputElement>;
187
187
  }
188
188
  declare const NumberInput: React__default.ForwardRefExoticComponent<NumberInputProps & React__default.RefAttributes<HTMLInputElement>>;
189
+ interface TextareaProps extends React__default.TextareaHTMLAttributes<HTMLTextAreaElement> {
190
+ label?: string;
191
+ /** Custom class for label */
192
+ labelClassName?: string;
193
+ error?: string;
194
+ description?: string;
195
+ variant?: "default" | "filled" | "outlined" | "minimal";
196
+ resize?: "none" | "vertical" | "horizontal" | "both";
197
+ counter?: boolean;
198
+ }
199
+ declare const Textarea: React__default.ForwardRefExoticComponent<TextareaProps & React__default.RefAttributes<HTMLTextAreaElement>>;
189
200
 
190
201
  interface TagInputProps {
191
202
  /** Danh sách tags hiện tại */
@@ -231,17 +242,6 @@ interface TagInputProps {
231
242
  }
232
243
  declare const TagInput: React__default.ForwardRefExoticComponent<TagInputProps & React__default.RefAttributes<HTMLInputElement>>;
233
244
 
234
- interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
235
- label?: string;
236
- error?: string;
237
- description?: string;
238
- variant?: "default" | "filled" | "outlined";
239
- size?: "sm" | "md" | "lg";
240
- /** Enable OverlayScrollbars on textarea viewport. Default: false */
241
- useOverlayScrollbar?: boolean;
242
- }
243
- declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
244
-
245
245
  interface SwitchProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "size"> {
246
246
  checked: boolean;
247
247
  onCheckedChange: (checked: boolean) => void;
@@ -732,12 +732,9 @@ declare const Section: React__default.ForwardRefExoticComponent<SectionProps & R
732
732
 
733
733
  interface ScrollAreaProps extends HTMLAttributes<HTMLDivElement> {
734
734
  className?: string;
735
- /** Content area class name */
736
735
  contentClassName?: string;
737
736
  variant?: "default" | "muted" | "primary" | "accent";
738
- /** Show thin border like Card */
739
737
  outlined?: boolean;
740
- /** Enable OverlayScrollbars for this scroll viewport. Default: false */
741
738
  useOverlayScrollbar?: boolean;
742
739
  }
743
740
  declare const ScrollArea: React$1.ForwardRefExoticComponent<ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>>;
@@ -750,10 +747,6 @@ interface OverlayScrollbarBehavior {
750
747
  autoHideDelay: number;
751
748
  dragScroll: boolean;
752
749
  clickScroll: boolean;
753
- /**
754
- * Exclude selector list applied both on current node and ancestors.
755
- * `html` and `body` are always skipped even if excluded list changes.
756
- */
757
750
  exclude: string;
758
751
  }
759
752
 
@@ -798,7 +791,7 @@ interface DatePickerProps {
798
791
  maxDate?: Date;
799
792
  }
800
793
  declare const DatePicker: React$1.FC<DatePickerProps>;
801
- declare const DateRangePicker: React$1.FC<{
794
+ interface DateRangePickerProps {
802
795
  startDate?: Date;
803
796
  endDate?: Date;
804
797
  onChange: (start: Date, end: Date) => void;
@@ -812,6 +805,12 @@ declare const DateRangePicker: React$1.FC<{
812
805
  maxDate?: Date;
813
806
  /** Size variant */
814
807
  size?: "sm" | "md" | "lg";
808
+ }
809
+ declare const DateRangePicker: React$1.FC<DateRangePickerProps>;
810
+ declare const CompactDatePicker: React$1.FC<{
811
+ value?: Date;
812
+ onChange: (date?: Date) => void;
813
+ className?: string;
815
814
  }>;
816
815
 
817
816
  interface DateTimePickerProps {
@@ -974,6 +973,8 @@ interface CalendarHoliday {
974
973
  name?: string;
975
974
  recurring?: boolean;
976
975
  }
976
+ /** Vietnamese national holidays (recurring annually) */
977
+ declare const VIETNAM_HOLIDAYS: CalendarHoliday[];
977
978
  interface CalendarEvent {
978
979
  date: Date | string;
979
980
  id?: string | number;
@@ -2351,6 +2352,37 @@ interface LoadingBarProps {
2351
2352
  }
2352
2353
  declare const LoadingBar: React__default.FC<LoadingBarProps>;
2353
2354
 
2355
+ /**
2356
+ * Singleton Loading Manager - Đơn giản và dễ sử dụng
2357
+ * Chỉ cần gọi loading.show() và loading.hide() từ bất kỳ đâu
2358
+ */
2359
+ type LoadingState = {
2360
+ isVisible: boolean;
2361
+ text?: string;
2362
+ };
2363
+ declare class LoadingManager {
2364
+ private state;
2365
+ private listeners;
2366
+ /**
2367
+ * Hiển thị loading với text tùy chọn
2368
+ */
2369
+ show(text?: string): void;
2370
+ /**
2371
+ * Ẩn loading
2372
+ */
2373
+ hide(): void;
2374
+ /**
2375
+ * Lấy state hiện tại
2376
+ */
2377
+ getState(): LoadingState;
2378
+ /**
2379
+ * Subscribe để nhận thông báo khi state thay đổi
2380
+ */
2381
+ subscribe(listener: (state: LoadingState) => void): () => void;
2382
+ private notifyListeners;
2383
+ }
2384
+ declare const loading: LoadingManager;
2385
+
2354
2386
  type FilterType = "text" | "select" | "date";
2355
2387
  type DataTableSize = "sm" | "md" | "lg";
2356
2388
  type DataTableDensity = "compact" | "normal" | "comfortable";
@@ -2512,11 +2544,6 @@ interface NotificationModalProps {
2512
2544
  }
2513
2545
  declare function NotificationModal({ isOpen, onClose, notification, titleText, openLinkText, closeText }: NotificationModalProps): react_jsx_runtime.JSX.Element | null;
2514
2546
 
2515
- interface FloatingContactsProps {
2516
- className?: string;
2517
- }
2518
- declare function FloatingContacts({ className }: FloatingContactsProps): react_jsx_runtime.JSX.Element | null;
2519
-
2520
2547
  type Variant = "destructive" | "warning" | "info";
2521
2548
  interface AccessDeniedProps {
2522
2549
  title?: string;
@@ -3004,10 +3031,20 @@ declare const underverseMessages: {
3004
3031
  month: string;
3005
3032
  week: string;
3006
3033
  day: string;
3034
+ sprint: string;
3035
+ newEvent: string;
3036
+ createEventTitle: string;
3037
+ create: string;
3038
+ cancel: string;
3039
+ resource: string;
3040
+ start: string;
3041
+ end: string;
3007
3042
  resourcesHeader: string;
3008
3043
  expandGroup: string;
3009
3044
  collapseGroup: string;
3010
3045
  more: string;
3046
+ sprints: string;
3047
+ deleteConfirm: string;
3011
3048
  };
3012
3049
  Pagination: {
3013
3050
  navigationLabel: string;
@@ -3042,6 +3079,116 @@ declare const underverseMessages: {
3042
3079
  uploadSuccess: string;
3043
3080
  uploadFailed: string;
3044
3081
  };
3082
+ UEditor: {
3083
+ placeholder: string;
3084
+ loading: string;
3085
+ words: string;
3086
+ characters: string;
3087
+ colors: {
3088
+ default: string;
3089
+ muted: string;
3090
+ primary: string;
3091
+ secondary: string;
3092
+ success: string;
3093
+ warning: string;
3094
+ destructive: string;
3095
+ info: string;
3096
+ accent: string;
3097
+ textColor: string;
3098
+ highlight: string;
3099
+ done: string;
3100
+ };
3101
+ toolbar: {
3102
+ bold: string;
3103
+ boldShortcut: string;
3104
+ italic: string;
3105
+ italicShortcut: string;
3106
+ underline: string;
3107
+ underlineShortcut: string;
3108
+ strike: string;
3109
+ code: string;
3110
+ subscript: string;
3111
+ superscript: string;
3112
+ link: string;
3113
+ image: string;
3114
+ table: string;
3115
+ alignment: string;
3116
+ alignLeft: string;
3117
+ alignCenter: string;
3118
+ alignRight: string;
3119
+ justify: string;
3120
+ bulletList: string;
3121
+ orderedList: string;
3122
+ taskList: string;
3123
+ quote: string;
3124
+ codeBlock: string;
3125
+ undo: string;
3126
+ redo: string;
3127
+ textStyle: string;
3128
+ normal: string;
3129
+ heading1: string;
3130
+ heading2: string;
3131
+ heading3: string;
3132
+ emoji: string;
3133
+ };
3134
+ slashCommand: {
3135
+ basicBlocks: string;
3136
+ text: string;
3137
+ textDesc: string;
3138
+ heading1: string;
3139
+ heading1Desc: string;
3140
+ heading2: string;
3141
+ heading2Desc: string;
3142
+ heading3: string;
3143
+ heading3Desc: string;
3144
+ bulletList: string;
3145
+ bulletListDesc: string;
3146
+ orderedList: string;
3147
+ orderedListDesc: string;
3148
+ todoList: string;
3149
+ todoListDesc: string;
3150
+ quote: string;
3151
+ quoteDesc: string;
3152
+ codeBlock: string;
3153
+ codeBlockDesc: string;
3154
+ divider: string;
3155
+ dividerDesc: string;
3156
+ table: string;
3157
+ tableDesc: string;
3158
+ noResults: string;
3159
+ };
3160
+ floatingMenu: {
3161
+ addBlock: string;
3162
+ };
3163
+ linkInput: {
3164
+ placeholder: string;
3165
+ };
3166
+ imageInput: {
3167
+ urlTab: string;
3168
+ uploadTab: string;
3169
+ urlLabel: string;
3170
+ urlPlaceholder: string;
3171
+ uploadLabel: string;
3172
+ uploadPlaceholder: string;
3173
+ uploading: string;
3174
+ uploadError: string;
3175
+ altLabel: string;
3176
+ altPlaceholder: string;
3177
+ addBtn: string;
3178
+ cancelBtn: string;
3179
+ addFromUrl: string;
3180
+ };
3181
+ tableMenu: {
3182
+ insert3x3: string;
3183
+ addColumnBefore: string;
3184
+ addColumnAfter: string;
3185
+ addRowBefore: string;
3186
+ addRowAfter: string;
3187
+ deleteColumn: string;
3188
+ deleteRow: string;
3189
+ deleteTable: string;
3190
+ };
3191
+ };
3045
3192
  };
3046
3193
  readonly vi: {
3047
3194
  Common: {
@@ -3101,10 +3248,20 @@ declare const underverseMessages: {
3101
3248
  month: string;
3102
3249
  week: string;
3103
3250
  day: string;
3251
+ sprint: string;
3252
+ newEvent: string;
3253
+ createEventTitle: string;
3254
+ create: string;
3255
+ cancel: string;
3256
+ resource: string;
3257
+ start: string;
3258
+ end: string;
3104
3259
  resourcesHeader: string;
3105
3260
  expandGroup: string;
3106
3261
  collapseGroup: string;
3107
3262
  more: string;
3263
+ sprints: string;
3264
+ deleteConfirm: string;
3108
3265
  };
3109
3266
  Pagination: {
3110
3267
  navigationLabel: string;
@@ -3139,6 +3296,116 @@ declare const underverseMessages: {
3139
3296
  uploadSuccess: string;
3140
3297
  uploadFailed: string;
3141
3298
  };
3299
+ UEditor: {
3300
+ placeholder: string;
3301
+ loading: string;
3302
+ words: string;
3303
+ characters: string;
3304
+ colors: {
3305
+ default: string;
3306
+ muted: string;
3307
+ primary: string;
3308
+ secondary: string;
3309
+ success: string;
3310
+ warning: string;
3311
+ destructive: string;
3312
+ info: string;
3313
+ accent: string;
3314
+ textColor: string;
3315
+ highlight: string;
3316
+ done: string;
3317
+ };
3318
+ toolbar: {
3319
+ bold: string;
3320
+ boldShortcut: string;
3321
+ italic: string;
3322
+ italicShortcut: string;
3323
+ underline: string;
3324
+ underlineShortcut: string;
3325
+ strike: string;
3326
+ code: string;
3327
+ subscript: string;
3328
+ superscript: string;
3329
+ link: string;
3330
+ image: string;
3331
+ table: string;
3332
+ alignment: string;
3333
+ alignLeft: string;
3334
+ alignCenter: string;
3335
+ alignRight: string;
3336
+ justify: string;
3337
+ bulletList: string;
3338
+ orderedList: string;
3339
+ taskList: string;
3340
+ quote: string;
3341
+ codeBlock: string;
3342
+ undo: string;
3343
+ redo: string;
3344
+ textStyle: string;
3345
+ normal: string;
3346
+ heading1: string;
3347
+ heading2: string;
3348
+ heading3: string;
3349
+ emoji: string;
3350
+ };
3351
+ slashCommand: {
3352
+ basicBlocks: string;
3353
+ text: string;
3354
+ textDesc: string;
3355
+ heading1: string;
3356
+ heading1Desc: string;
3357
+ heading2: string;
3358
+ heading2Desc: string;
3359
+ heading3: string;
3360
+ heading3Desc: string;
3361
+ bulletList: string;
3362
+ bulletListDesc: string;
3363
+ orderedList: string;
3364
+ orderedListDesc: string;
3365
+ todoList: string;
3366
+ todoListDesc: string;
3367
+ quote: string;
3368
+ quoteDesc: string;
3369
+ codeBlock: string;
3370
+ codeBlockDesc: string;
3371
+ divider: string;
3372
+ dividerDesc: string;
3373
+ table: string;
3374
+ tableDesc: string;
3375
+ noResults: string;
3376
+ };
3377
+ floatingMenu: {
3378
+ addBlock: string;
3379
+ };
3380
+ linkInput: {
3381
+ placeholder: string;
3382
+ };
3383
+ imageInput: {
3384
+ urlTab: string;
3385
+ uploadTab: string;
3386
+ urlLabel: string;
3387
+ urlPlaceholder: string;
3388
+ uploadLabel: string;
3389
+ uploadPlaceholder: string;
3390
+ uploading: string;
3391
+ uploadError: string;
3392
+ altLabel: string;
3393
+ altPlaceholder: string;
3394
+ addBtn: string;
3395
+ cancelBtn: string;
3396
+ addFromUrl: string;
3397
+ };
3398
+ tableMenu: {
3399
+ insert3x3: string;
3400
+ addColumnBefore: string;
3401
+ addColumnAfter: string;
3402
+ addRowBefore: string;
3403
+ addRowAfter: string;
3404
+ deleteColumn: string;
3405
+ deleteRow: string;
3406
+ deleteTable: string;
3407
+ };
3408
+ };
3142
3409
  };
3143
3410
  readonly ko: {
3144
3411
  Common: {
@@ -3198,10 +3465,20 @@ declare const underverseMessages: {
3198
3465
  month: string;
3199
3466
  week: string;
3200
3467
  day: string;
3468
+ sprint: string;
3469
+ newEvent: string;
3470
+ createEventTitle: string;
3471
+ create: string;
3472
+ cancel: string;
3473
+ resource: string;
3474
+ start: string;
3475
+ end: string;
3201
3476
  resourcesHeader: string;
3202
3477
  expandGroup: string;
3203
3478
  collapseGroup: string;
3204
3479
  more: string;
3480
+ sprints: string;
3481
+ deleteConfirm: string;
3205
3482
  };
3206
3483
  Pagination: {
3207
3484
  navigationLabel: string;
@@ -3236,6 +3513,115 @@ declare const underverseMessages: {
3236
3513
  uploadSuccess: string;
3237
3514
  uploadFailed: string;
3238
3515
  };
3516
+ UEditor: {
3517
+ placeholder: string;
3518
+ loading: string;
3519
+ words: string;
3520
+ characters: string;
3521
+ colors: {
3522
+ default: string;
3523
+ muted: string;
3524
+ primary: string;
3525
+ secondary: string;
3526
+ success: string;
3527
+ warning: string;
3528
+ destructive: string;
3529
+ info: string;
3530
+ accent: string;
3531
+ textColor: string;
3532
+ highlight: string;
3533
+ done: string;
3534
+ };
3535
+ toolbar: {
3536
+ bold: string;
3537
+ boldShortcut: string;
3538
+ italic: string;
3539
+ italicShortcut: string;
3540
+ underline: string;
3541
+ underlineShortcut: string;
3542
+ strike: string;
3543
+ code: string;
3544
+ subscript: string;
3545
+ superscript: string;
3546
+ link: string;
3547
+ image: string;
3548
+ table: string;
3549
+ alignment: string;
3550
+ alignLeft: string;
3551
+ alignCenter: string;
3552
+ alignRight: string;
3553
+ justify: string;
3554
+ bulletList: string;
3555
+ orderedList: string;
3556
+ taskList: string;
3557
+ quote: string;
3558
+ codeBlock: string;
3559
+ undo: string;
3560
+ redo: string;
3561
+ textStyle: string;
3562
+ normal: string;
3563
+ heading1: string;
3564
+ heading2: string;
3565
+ heading3: string;
3566
+ emoji: string;
3567
+ };
3568
+ slashCommand: {
3569
+ basicBlocks: string;
3570
+ text: string;
3571
+ textDesc: string;
3572
+ heading1: string;
3573
+ heading1Desc: string;
3574
+ heading2: string;
3575
+ heading2Desc: string;
3576
+ heading3: string;
3577
+ heading3Desc: string;
3578
+ bulletList: string;
3579
+ bulletListDesc: string;
3580
+ orderedList: string;
3581
+ orderedListDesc: string;
3582
+ todoList: string;
3583
+ todoListDesc: string;
3584
+ quote: string;
3585
+ quoteDesc: string;
3586
+ codeBlock: string;
3587
+ codeBlockDesc: string;
3588
+ divider: string;
3589
+ dividerDesc: string;
3590
+ table: string;
3591
+ tableDesc: string;
3592
+ };
3593
+ floatingMenu: {
3594
+ addBlock: string;
3595
+ };
3596
+ linkInput: {
3597
+ placeholder: string;
3598
+ };
3599
+ imageInput: {
3600
+ urlTab: string;
3601
+ uploadTab: string;
3602
+ urlLabel: string;
3603
+ urlPlaceholder: string;
3604
+ uploadLabel: string;
3605
+ uploadPlaceholder: string;
3606
+ uploading: string;
3607
+ uploadError: string;
3608
+ altLabel: string;
3609
+ altPlaceholder: string;
3610
+ addBtn: string;
3611
+ cancelBtn: string;
3612
+ addFromUrl: string;
3613
+ };
3614
+ tableMenu: {
3615
+ insert3x3: string;
3616
+ addColumnBefore: string;
3617
+ addColumnAfter: string;
3618
+ addRowBefore: string;
3619
+ addRowAfter: string;
3620
+ deleteColumn: string;
3621
+ deleteRow: string;
3622
+ deleteTable: string;
3623
+ };
3624
+ };
3239
3625
  };
3240
3626
  readonly ja: {
3241
3627
  Common: {
@@ -3295,10 +3681,20 @@ declare const underverseMessages: {
3295
3681
  month: string;
3296
3682
  week: string;
3297
3683
  day: string;
3684
+ sprint: string;
3685
+ newEvent: string;
3686
+ createEventTitle: string;
3687
+ create: string;
3688
+ cancel: string;
3689
+ resource: string;
3690
+ start: string;
3691
+ end: string;
3298
3692
  resourcesHeader: string;
3299
3693
  expandGroup: string;
3300
3694
  collapseGroup: string;
3301
3695
  more: string;
3696
+ sprints: string;
3697
+ deleteConfirm: string;
3302
3698
  };
3303
3699
  Pagination: {
3304
3700
  navigationLabel: string;
@@ -3333,6 +3729,115 @@ declare const underverseMessages: {
3333
3729
  uploadSuccess: string;
3334
3730
  uploadFailed: string;
3335
3731
  };
3732
+ UEditor: {
3733
+ placeholder: string;
3734
+ loading: string;
3735
+ words: string;
3736
+ characters: string;
3737
+ colors: {
3738
+ default: string;
3739
+ muted: string;
3740
+ primary: string;
3741
+ secondary: string;
3742
+ success: string;
3743
+ warning: string;
3744
+ destructive: string;
3745
+ info: string;
3746
+ accent: string;
3747
+ textColor: string;
3748
+ highlight: string;
3749
+ done: string;
3750
+ };
3751
+ toolbar: {
3752
+ bold: string;
3753
+ boldShortcut: string;
3754
+ italic: string;
3755
+ italicShortcut: string;
3756
+ underline: string;
3757
+ underlineShortcut: string;
3758
+ strike: string;
3759
+ code: string;
3760
+ subscript: string;
3761
+ superscript: string;
3762
+ link: string;
3763
+ image: string;
3764
+ table: string;
3765
+ alignment: string;
3766
+ alignLeft: string;
3767
+ alignCenter: string;
3768
+ alignRight: string;
3769
+ justify: string;
3770
+ bulletList: string;
3771
+ orderedList: string;
3772
+ taskList: string;
3773
+ quote: string;
3774
+ codeBlock: string;
3775
+ undo: string;
3776
+ redo: string;
3777
+ textStyle: string;
3778
+ normal: string;
3779
+ heading1: string;
3780
+ heading2: string;
3781
+ heading3: string;
3782
+ emoji: string;
3783
+ };
3784
+ slashCommand: {
3785
+ basicBlocks: string;
3786
+ text: string;
3787
+ textDesc: string;
3788
+ heading1: string;
3789
+ heading1Desc: string;
3790
+ heading2: string;
3791
+ heading2Desc: string;
3792
+ heading3: string;
3793
+ heading3Desc: string;
3794
+ bulletList: string;
3795
+ bulletListDesc: string;
3796
+ orderedList: string;
3797
+ orderedListDesc: string;
3798
+ todoList: string;
3799
+ todoListDesc: string;
3800
+ quote: string;
3801
+ quoteDesc: string;
3802
+ codeBlock: string;
3803
+ codeBlockDesc: string;
3804
+ divider: string;
3805
+ dividerDesc: string;
3806
+ table: string;
3807
+ tableDesc: string;
3808
+ };
3809
+ floatingMenu: {
3810
+ addBlock: string;
3811
+ };
3812
+ linkInput: {
3813
+ placeholder: string;
3814
+ };
3815
+ imageInput: {
3816
+ urlTab: string;
3817
+ uploadTab: string;
3818
+ urlLabel: string;
3819
+ urlPlaceholder: string;
3820
+ uploadLabel: string;
3821
+ uploadPlaceholder: string;
3822
+ uploading: string;
3823
+ uploadError: string;
3824
+ altLabel: string;
3825
+ altPlaceholder: string;
3826
+ addBtn: string;
3827
+ cancelBtn: string;
3828
+ addFromUrl: string;
3829
+ };
3830
+ tableMenu: {
3831
+ insert3x3: string;
3832
+ addColumnBefore: string;
3833
+ addColumnAfter: string;
3834
+ addRowBefore: string;
3835
+ addRowAfter: string;
3836
+ deleteColumn: string;
3837
+ deleteRow: string;
3838
+ deleteTable: string;
3839
+ };
3840
+ };
3336
3841
  };
3337
3842
  };
3338
3843
  type UnderverseLocale = keyof typeof underverseMessages;
@@ -3394,10 +3899,20 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
3394
3899
  month: string;
3395
3900
  week: string;
3396
3901
  day: string;
3902
+ sprint: string;
3903
+ newEvent: string;
3904
+ createEventTitle: string;
3905
+ create: string;
3906
+ cancel: string;
3907
+ resource: string;
3908
+ start: string;
3909
+ end: string;
3397
3910
  resourcesHeader: string;
3398
3911
  expandGroup: string;
3399
3912
  collapseGroup: string;
3400
3913
  more: string;
3914
+ sprints: string;
3915
+ deleteConfirm: string;
3401
3916
  };
3402
3917
  Pagination: {
3403
3918
  navigationLabel: string;
@@ -3432,6 +3947,116 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
3432
3947
  uploadSuccess: string;
3433
3948
  uploadFailed: string;
3434
3949
  };
3950
+ UEditor: {
3951
+ placeholder: string;
3952
+ loading: string;
3953
+ words: string;
3954
+ characters: string;
3955
+ colors: {
3956
+ default: string;
3957
+ muted: string;
3958
+ primary: string;
3959
+ secondary: string;
3960
+ success: string;
3961
+ warning: string;
3962
+ destructive: string;
3963
+ info: string;
3964
+ accent: string;
3965
+ textColor: string;
3966
+ highlight: string;
3967
+ done: string;
3968
+ };
3969
+ toolbar: {
3970
+ bold: string;
3971
+ boldShortcut: string;
3972
+ italic: string;
3973
+ italicShortcut: string;
3974
+ underline: string;
3975
+ underlineShortcut: string;
3976
+ strike: string;
3977
+ code: string;
3978
+ subscript: string;
3979
+ superscript: string;
3980
+ link: string;
3981
+ image: string;
3982
+ table: string;
3983
+ alignment: string;
3984
+ alignLeft: string;
3985
+ alignCenter: string;
3986
+ alignRight: string;
3987
+ justify: string;
3988
+ bulletList: string;
3989
+ orderedList: string;
3990
+ taskList: string;
3991
+ quote: string;
3992
+ codeBlock: string;
3993
+ undo: string;
3994
+ redo: string;
3995
+ textStyle: string;
3996
+ normal: string;
3997
+ heading1: string;
3998
+ heading2: string;
3999
+ heading3: string;
4000
+ emoji: string;
4001
+ };
4002
+ slashCommand: {
4003
+ basicBlocks: string;
4004
+ text: string;
4005
+ textDesc: string;
4006
+ heading1: string;
4007
+ heading1Desc: string;
4008
+ heading2: string;
4009
+ heading2Desc: string;
4010
+ heading3: string;
4011
+ heading3Desc: string;
4012
+ bulletList: string;
4013
+ bulletListDesc: string;
4014
+ orderedList: string;
4015
+ orderedListDesc: string;
4016
+ todoList: string;
4017
+ todoListDesc: string;
4018
+ quote: string;
4019
+ quoteDesc: string;
4020
+ codeBlock: string;
4021
+ codeBlockDesc: string;
4022
+ divider: string;
4023
+ dividerDesc: string;
4024
+ table: string;
4025
+ tableDesc: string;
4026
+ noResults: string;
4027
+ };
4028
+ floatingMenu: {
4029
+ addBlock: string;
4030
+ };
4031
+ linkInput: {
4032
+ placeholder: string;
4033
+ };
4034
+ imageInput: {
4035
+ urlTab: string;
4036
+ uploadTab: string;
4037
+ urlLabel: string;
4038
+ urlPlaceholder: string;
4039
+ uploadLabel: string;
4040
+ uploadPlaceholder: string;
4041
+ uploading: string;
4042
+ uploadError: string;
4043
+ altLabel: string;
4044
+ altPlaceholder: string;
4045
+ addBtn: string;
4046
+ cancelBtn: string;
4047
+ addFromUrl: string;
4048
+ };
4049
+ tableMenu: {
4050
+ insert3x3: string;
4051
+ addColumnBefore: string;
4052
+ addColumnAfter: string;
4053
+ addRowBefore: string;
4054
+ addRowAfter: string;
4055
+ deleteColumn: string;
4056
+ deleteRow: string;
4057
+ deleteTable: string;
4058
+ };
4059
+ };
3435
4060
  } | {
3436
4061
  Common: {
3437
4062
  close: string;
@@ -3490,10 +4115,20 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
3490
4115
  month: string;
3491
4116
  week: string;
3492
4117
  day: string;
4118
+ sprint: string;
4119
+ newEvent: string;
4120
+ createEventTitle: string;
4121
+ create: string;
4122
+ cancel: string;
4123
+ resource: string;
4124
+ start: string;
4125
+ end: string;
3493
4126
  resourcesHeader: string;
3494
4127
  expandGroup: string;
3495
4128
  collapseGroup: string;
3496
4129
  more: string;
4130
+ sprints: string;
4131
+ deleteConfirm: string;
3497
4132
  };
3498
4133
  Pagination: {
3499
4134
  navigationLabel: string;
@@ -3528,6 +4163,116 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
3528
4163
  uploadSuccess: string;
3529
4164
  uploadFailed: string;
3530
4165
  };
4166
+ UEditor: {
4167
+ placeholder: string;
4168
+ loading: string;
4169
+ words: string;
4170
+ characters: string;
4171
+ colors: {
4172
+ default: string;
4173
+ muted: string;
4174
+ primary: string;
4175
+ secondary: string;
4176
+ success: string;
4177
+ warning: string;
4178
+ destructive: string;
4179
+ info: string;
4180
+ accent: string;
4181
+ textColor: string;
4182
+ highlight: string;
4183
+ done: string;
4184
+ };
4185
+ toolbar: {
4186
+ bold: string;
4187
+ boldShortcut: string;
4188
+ italic: string;
4189
+ italicShortcut: string;
4190
+ underline: string;
4191
+ underlineShortcut: string;
4192
+ strike: string;
4193
+ code: string;
4194
+ subscript: string;
4195
+ superscript: string;
4196
+ link: string;
4197
+ image: string;
4198
+ table: string;
4199
+ alignment: string;
4200
+ alignLeft: string;
4201
+ alignCenter: string;
4202
+ alignRight: string;
4203
+ justify: string;
4204
+ bulletList: string;
4205
+ orderedList: string;
4206
+ taskList: string;
4207
+ quote: string;
4208
+ codeBlock: string;
4209
+ undo: string;
4210
+ redo: string;
4211
+ textStyle: string;
4212
+ normal: string;
4213
+ heading1: string;
4214
+ heading2: string;
4215
+ heading3: string;
4216
+ emoji: string;
4217
+ };
4218
+ slashCommand: {
4219
+ basicBlocks: string;
4220
+ text: string;
4221
+ textDesc: string;
4222
+ heading1: string;
4223
+ heading1Desc: string;
4224
+ heading2: string;
4225
+ heading2Desc: string;
4226
+ heading3: string;
4227
+ heading3Desc: string;
4228
+ bulletList: string;
4229
+ bulletListDesc: string;
4230
+ orderedList: string;
4231
+ orderedListDesc: string;
4232
+ todoList: string;
4233
+ todoListDesc: string;
4234
+ quote: string;
4235
+ quoteDesc: string;
4236
+ codeBlock: string;
4237
+ codeBlockDesc: string;
4238
+ divider: string;
4239
+ dividerDesc: string;
4240
+ table: string;
4241
+ tableDesc: string;
4242
+ noResults: string;
4243
+ };
4244
+ floatingMenu: {
4245
+ addBlock: string;
4246
+ };
4247
+ linkInput: {
4248
+ placeholder: string;
4249
+ };
4250
+ imageInput: {
4251
+ urlTab: string;
4252
+ uploadTab: string;
4253
+ urlLabel: string;
4254
+ urlPlaceholder: string;
4255
+ uploadLabel: string;
4256
+ uploadPlaceholder: string;
4257
+ uploading: string;
4258
+ uploadError: string;
4259
+ altLabel: string;
4260
+ altPlaceholder: string;
4261
+ addBtn: string;
4262
+ cancelBtn: string;
4263
+ addFromUrl: string;
4264
+ };
4265
+ tableMenu: {
4266
+ insert3x3: string;
4267
+ addColumnBefore: string;
4268
+ addColumnAfter: string;
4269
+ addRowBefore: string;
4270
+ addRowAfter: string;
4271
+ deleteColumn: string;
4272
+ deleteRow: string;
4273
+ deleteTable: string;
4274
+ };
4275
+ };
3531
4276
  } | {
3532
4277
  Common: {
3533
4278
  close: string;
@@ -3586,10 +4331,20 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
3586
4331
  month: string;
3587
4332
  week: string;
3588
4333
  day: string;
4334
+ sprint: string;
4335
+ newEvent: string;
4336
+ createEventTitle: string;
4337
+ create: string;
4338
+ cancel: string;
4339
+ resource: string;
4340
+ start: string;
4341
+ end: string;
3589
4342
  resourcesHeader: string;
3590
4343
  expandGroup: string;
3591
4344
  collapseGroup: string;
3592
4345
  more: string;
4346
+ sprints: string;
4347
+ deleteConfirm: string;
3593
4348
  };
3594
4349
  Pagination: {
3595
4350
  navigationLabel: string;
@@ -3624,6 +4379,115 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
3624
4379
  uploadSuccess: string;
3625
4380
  uploadFailed: string;
3626
4381
  };
4382
+ UEditor: {
4383
+ placeholder: string;
4384
+ loading: string;
4385
+ words: string;
4386
+ characters: string;
4387
+ colors: {
4388
+ default: string;
4389
+ muted: string;
4390
+ primary: string;
4391
+ secondary: string;
4392
+ success: string;
4393
+ warning: string;
4394
+ destructive: string;
4395
+ info: string;
4396
+ accent: string;
4397
+ textColor: string;
4398
+ highlight: string;
4399
+ done: string;
4400
+ };
4401
+ toolbar: {
4402
+ bold: string;
4403
+ boldShortcut: string;
4404
+ italic: string;
4405
+ italicShortcut: string;
4406
+ underline: string;
4407
+ underlineShortcut: string;
4408
+ strike: string;
4409
+ code: string;
4410
+ subscript: string;
4411
+ superscript: string;
4412
+ link: string;
4413
+ image: string;
4414
+ table: string;
4415
+ alignment: string;
4416
+ alignLeft: string;
4417
+ alignCenter: string;
4418
+ alignRight: string;
4419
+ justify: string;
4420
+ bulletList: string;
4421
+ orderedList: string;
4422
+ taskList: string;
4423
+ quote: string;
4424
+ codeBlock: string;
4425
+ undo: string;
4426
+ redo: string;
4427
+ textStyle: string;
4428
+ normal: string;
4429
+ heading1: string;
4430
+ heading2: string;
4431
+ heading3: string;
4432
+ emoji: string;
4433
+ };
4434
+ slashCommand: {
4435
+ basicBlocks: string;
4436
+ text: string;
4437
+ textDesc: string;
4438
+ heading1: string;
4439
+ heading1Desc: string;
4440
+ heading2: string;
4441
+ heading2Desc: string;
4442
+ heading3: string;
4443
+ heading3Desc: string;
4444
+ bulletList: string;
4445
+ bulletListDesc: string;
4446
+ orderedList: string;
4447
+ orderedListDesc: string;
4448
+ todoList: string;
4449
+ todoListDesc: string;
4450
+ quote: string;
4451
+ quoteDesc: string;
4452
+ codeBlock: string;
4453
+ codeBlockDesc: string;
4454
+ divider: string;
4455
+ dividerDesc: string;
4456
+ table: string;
4457
+ tableDesc: string;
4458
+ };
4459
+ floatingMenu: {
4460
+ addBlock: string;
4461
+ };
4462
+ linkInput: {
4463
+ placeholder: string;
4464
+ };
4465
+ imageInput: {
4466
+ urlTab: string;
4467
+ uploadTab: string;
4468
+ urlLabel: string;
4469
+ urlPlaceholder: string;
4470
+ uploadLabel: string;
4471
+ uploadPlaceholder: string;
4472
+ uploading: string;
4473
+ uploadError: string;
4474
+ altLabel: string;
4475
+ altPlaceholder: string;
4476
+ addBtn: string;
4477
+ cancelBtn: string;
4478
+ addFromUrl: string;
4479
+ };
4480
+ tableMenu: {
4481
+ insert3x3: string;
4482
+ addColumnBefore: string;
4483
+ addColumnAfter: string;
4484
+ addRowBefore: string;
4485
+ addRowAfter: string;
4486
+ deleteColumn: string;
4487
+ deleteRow: string;
4488
+ deleteTable: string;
4489
+ };
4490
+ };
3627
4491
  } | {
3628
4492
  Common: {
3629
4493
  close: string;
@@ -3682,10 +4546,20 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
3682
4546
  month: string;
3683
4547
  week: string;
3684
4548
  day: string;
4549
+ sprint: string;
4550
+ newEvent: string;
4551
+ createEventTitle: string;
4552
+ create: string;
4553
+ cancel: string;
4554
+ resource: string;
4555
+ start: string;
4556
+ end: string;
3685
4557
  resourcesHeader: string;
3686
4558
  expandGroup: string;
3687
4559
  collapseGroup: string;
3688
4560
  more: string;
4561
+ sprints: string;
4562
+ deleteConfirm: string;
3689
4563
  };
3690
4564
  Pagination: {
3691
4565
  navigationLabel: string;
@@ -3720,6 +4594,115 @@ declare function getUnderverseMessages(locale?: UnderverseLocale): {
3720
4594
  uploadSuccess: string;
3721
4595
  uploadFailed: string;
3722
4596
  };
4597
+ UEditor: {
4598
+ placeholder: string;
4599
+ loading: string;
4600
+ words: string;
4601
+ characters: string;
4602
+ colors: {
4603
+ default: string;
4604
+ muted: string;
4605
+ primary: string;
4606
+ secondary: string;
4607
+ success: string;
4608
+ warning: string;
4609
+ destructive: string;
4610
+ info: string;
4611
+ accent: string;
4612
+ textColor: string;
4613
+ highlight: string;
4614
+ done: string;
4615
+ };
4616
+ toolbar: {
4617
+ bold: string;
4618
+ boldShortcut: string;
4619
+ italic: string;
4620
+ italicShortcut: string;
4621
+ underline: string;
4622
+ underlineShortcut: string;
4623
+ strike: string;
4624
+ code: string;
4625
+ subscript: string;
4626
+ superscript: string;
4627
+ link: string;
4628
+ image: string;
4629
+ table: string;
4630
+ alignment: string;
4631
+ alignLeft: string;
4632
+ alignCenter: string;
4633
+ alignRight: string;
4634
+ justify: string;
4635
+ bulletList: string;
4636
+ orderedList: string;
4637
+ taskList: string;
4638
+ quote: string;
4639
+ codeBlock: string;
4640
+ undo: string;
4641
+ redo: string;
4642
+ textStyle: string;
4643
+ normal: string;
4644
+ heading1: string;
4645
+ heading2: string;
4646
+ heading3: string;
4647
+ emoji: string;
4648
+ };
4649
+ slashCommand: {
4650
+ basicBlocks: string;
4651
+ text: string;
4652
+ textDesc: string;
4653
+ heading1: string;
4654
+ heading1Desc: string;
4655
+ heading2: string;
4656
+ heading2Desc: string;
4657
+ heading3: string;
4658
+ heading3Desc: string;
4659
+ bulletList: string;
4660
+ bulletListDesc: string;
4661
+ orderedList: string;
4662
+ orderedListDesc: string;
4663
+ todoList: string;
4664
+ todoListDesc: string;
4665
+ quote: string;
4666
+ quoteDesc: string;
4667
+ codeBlock: string;
4668
+ codeBlockDesc: string;
4669
+ divider: string;
4670
+ dividerDesc: string;
4671
+ table: string;
4672
+ tableDesc: string;
4673
+ };
4674
+ floatingMenu: {
4675
+ addBlock: string;
4676
+ };
4677
+ linkInput: {
4678
+ placeholder: string;
4679
+ };
4680
+ imageInput: {
4681
+ urlTab: string;
4682
+ uploadTab: string;
4683
+ urlLabel: string;
4684
+ urlPlaceholder: string;
4685
+ uploadLabel: string;
4686
+ uploadPlaceholder: string;
4687
+ uploading: string;
4688
+ uploadError: string;
4689
+ altLabel: string;
4690
+ altPlaceholder: string;
4691
+ addBtn: string;
4692
+ cancelBtn: string;
4693
+ addFromUrl: string;
4694
+ };
4695
+ tableMenu: {
4696
+ insert3x3: string;
4697
+ addColumnBefore: string;
4698
+ addColumnAfter: string;
4699
+ addRowBefore: string;
4700
+ addRowAfter: string;
4701
+ deleteColumn: string;
4702
+ deleteRow: string;
4703
+ deleteTable: string;
4704
+ };
4705
+ };
3723
4706
  };
3724
4707
 
3725
- export { AccessDenied, Alert, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, Avatar, Badge, Badge as BadgeBase, BarChart, type BarChartDataPoint, type BarChartProps, type BarChartSeries, BatteryProgress, BottomSheet, Breadcrumb, Button, ButtonLoading, type ButtonProps, Calendar, type CalendarEvent, 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, Carousel, CategoryTreeSelect, Checkbox, type CheckboxProps, CircularProgress, ClientOnly, ColorPicker, type ColorPickerProps, Combobox, type ComboboxProps, CompactPagination, type CompactPaginationProps, DataTable, type DataTableColumn, type DataTableDensity, type DataTableQuery, type DataTableSize, DatePicker, type DatePickerProps, DateRangePicker, DateTimePicker, type DateTimePickerProps, date as DateUtils, Drawer, DropdownMenu, DropdownMenuItem, DropdownMenuSeparator, FallingIcons, FileUpload, type FileUploadProps, FloatingContacts, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GaugeChart, type GaugeChartProps, GlobalLoading, GradientBadge, Grid, GridItem, type GridItemProps, type GridProps, ImageUpload, InlineLoading, Input, type InputProps, InteractiveBadge, Label, type LanguageOption, LanguageSwitcherHeadless as LanguageSwitcher, LanguageSwitcherHeadless, type LanguageSwitcherHeadlessProps, type LanguageSwitcherHeadlessProps as LanguageSwitcherProps, LineChart, type LineChartDataPoint, type LineChartProps, type LineChartSeries, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type Locale$1 as Locale, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NotificationBadge, NotificationModal, NumberInput, OverlayControls, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, PieChart, type PieChartDataPoint, type PieChartProps, PillTabs, Popover, Progress, PulseBadge, RadarChart, type RadarChartDataPoint, type RadarChartProps, type RadarChartSeries, RadioGroup, RadioGroupItem, SIZE_STYLES_BTN, ScrollArea, SearchInput, Section, SegmentedProgress, SelectDropdown, Sheet, SidebarSheet, SimplePagination, type SimplePaginationProps, SimpleTabs, Skeleton, SkeletonAvatar, SkeletonButton, SkeletonCard, SkeletonList, SkeletonMessage, SkeletonPost, SkeletonTable, SkeletonText, SlideOver, Slider, SmartImage, type Song, type Sorter, Sparkline, type SparklineDataPoint, type SparklineProps, StatusBadge, StepProgress, type SupportedLocale, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TagBadge, TagInput, TagInput as TagInputBase, type TagInputProps, Textarea, 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, UnderverseProvider, type UnderverseProviderProps, type UploadedFile, type UseOverlayScrollbarTargetOptions, VARIANT_STYLES_ALERT, VARIANT_STYLES_BTN, VerticalTabs, Watermark, type WatermarkProps, cn$1 as cn, cn as cnLocal, extractImageSrcsFromHtml, getAnimationStyles, getUnderverseMessages, injectAnimationStyles, normalizeImageUrl, prepareUEditorContentForSave, shadcnAnimationStyles, underverseMessages, useFormField, useOverlayScrollbarTarget, useShadCNAnimations, useSmartLocale, useSmartTranslations, useToast, useTranslations as useUnderverseI18n, useLocale as useUnderverseI18nLocale, useUnderverseLocale, useUnderverseTranslations };
4708
+ export { AccessDenied, type AccessDeniedProps, Alert, AreaChart, type AreaChartDataPoint, type AreaChartProps, type AreaChartSeries, Avatar, Badge, Badge as BadgeBase, BarChart, type BarChartDataPoint, type BarChartProps, type BarChartSeries, 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, Carousel, CategoryTreeSelect, 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, FallingIcons, FileUpload, type FileUploadProps, type FilterType, ForceInternalTranslationsProvider, Form, FormActions, FormCheckbox, FormControl, FormDescription, FormField, FormInput, FormItem, FormLabel, FormMessage, FormSubmitButton, GaugeChart, type GaugeChartProps, 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, LineChart, type LineChartDataPoint, type LineChartProps, type LineChartSeries, List, ListItem, LoadingBar, LoadingDots, LoadingProgress, LoadingSpinner, type LoadingState, type Locale$1 as Locale, MiniProgress, Modal, MonthYearPicker, MonthYearPicker as MonthYearPickerBase, type MonthYearPickerProps, MultiCombobox, type MultiComboboxOption, type MultiComboboxProps, MusicPlayer, MusicPlayer as MusicPlayerDefault, type MusicPlayerProps, NotificationBadge, NotificationModal, NumberInput, type NumberInputProps, OverlayControls, type OverlayControlsProps, OverlayScrollArea, type OverlayScrollAreaProps, OverlayScrollbarProvider, type OverlayScrollbarProviderProps, PageLoading, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, PieChart, type PieChartDataPoint, type PieChartProps, PillTabs, Popover, Progress, PulseBadge, RadarChart, type RadarChartDataPoint, type RadarChartProps, type RadarChartSeries, 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, Sparkline, type SparklineDataPoint, type SparklineProps, 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, 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 };