@weni/unnnic-system 3.12.8-alpha-teleports.0 → 3.12.8-alpha.1

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.
Files changed (84) hide show
  1. package/.vscode/extensions.json +3 -0
  2. package/CHANGELOG.md +1114 -0
  3. package/README.md +1 -9
  4. package/dist/{es-2f6793d2.mjs → es-9d6892f7.mjs} +1 -1
  5. package/dist/{index-799af668.mjs → index-78117c0a.mjs} +9299 -8975
  6. package/dist/index.d.ts +870 -321
  7. package/dist/{pt-br-f5121b47.mjs → pt-br-89839646.mjs} +1 -1
  8. package/dist/style.css +1 -1
  9. package/dist/unnnic.mjs +156 -154
  10. package/dist/unnnic.umd.js +33 -33
  11. package/package.json +1 -1
  12. package/src/components/Alert/__tests__/__snapshots__/Alert.spec.js.snap +1 -1
  13. package/src/components/ChartFunnel/DefaultFunnel/ChartDefaultFunnelBase.vue +1 -2
  14. package/src/components/ChartFunnel/SvgFunnel/ChartFunnelTwoRows.vue +60 -61
  15. package/src/components/Checkbox/Checkbox.vue +9 -3
  16. package/src/components/CheckboxGroup/CheckboxGroup.vue +7 -5
  17. package/src/components/Chip/Chip.vue +1 -1
  18. package/src/components/DatePicker/DatePicker.vue +1 -11
  19. package/src/components/Drawer/Drawer.vue +20 -9
  20. package/src/components/Drawer/__tests__/Drawer.spec.js +11 -9
  21. package/src/components/Drawer/__tests__/__snapshots__/Drawer.spec.js.snap +9 -9
  22. package/src/components/EmojiPicker/EmojiPicker.vue +1 -1
  23. package/src/components/FormElement/FormElement.vue +97 -88
  24. package/src/components/Input/BaseInput.vue +25 -5
  25. package/src/components/Input/Input.scss +2 -1
  26. package/src/components/Input/Input.vue +26 -3
  27. package/src/components/Input/TextInput.vue +64 -25
  28. package/src/components/Input/__test__/TextInput.spec.js +1 -1
  29. package/src/components/Input/__test__/__snapshots__/Input.spec.js.snap +5 -1
  30. package/src/components/Input/__test__/__snapshots__/TextInput.spec.js.snap +7 -1
  31. package/src/components/InputDatePicker/InputDatePicker.vue +73 -68
  32. package/src/components/InputDatePicker/__test__/InputDatePicker.spec.js +24 -31
  33. package/src/components/ModalDialog/ModalDialog.vue +8 -1
  34. package/src/components/ModalDialog/__tests__/ModalDialog.spec.js +1 -31
  35. package/src/components/MultiSelect/MultSelectOption.vue +49 -0
  36. package/src/components/MultiSelect/__tests__/MultiSelect.spec.js +557 -0
  37. package/src/components/MultiSelect/__tests__/MultiSelectOption.spec.js +229 -0
  38. package/src/components/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +87 -0
  39. package/src/components/MultiSelect/__tests__/__snapshots__/MultiSelectOption.spec.js.snap +51 -0
  40. package/src/components/MultiSelect/index.vue +265 -0
  41. package/src/components/Radio/Radio.vue +13 -7
  42. package/src/components/Radio/__test__/Radio.spec.js +3 -1
  43. package/src/components/RadioGroup/RadioGroup.vue +18 -10
  44. package/src/components/Select/__tests__/Select.spec.js +422 -0
  45. package/src/components/Select/__tests__/SelectItem.spec.js +330 -0
  46. package/src/components/Select/__tests__/__snapshots__/Popover.spec.js.snap +8 -0
  47. package/src/components/Select/__tests__/__snapshots__/Select.spec.js.snap +71 -0
  48. package/src/components/Select/__tests__/__snapshots__/SelectItem.spec.js.snap +15 -0
  49. package/src/components/Select/__tests__/__snapshots__/SelectOption.spec.js.snap +25 -0
  50. package/src/components/Select/__tests__/__snapshots__/SelectPopover.spec.js.snap +8 -0
  51. package/src/components/Select/index.vue +308 -0
  52. package/src/components/Switch/Switch.vue +11 -4
  53. package/src/components/TemplatePreview/TemplatePreview.vue +30 -27
  54. package/src/components/TemplatePreview/TemplatePreviewModal.vue +11 -11
  55. package/src/components/TemplatePreview/types.d.ts +3 -3
  56. package/src/components/Toast/Toast.vue +13 -9
  57. package/src/components/Toast/ToastManager.ts +1 -4
  58. package/src/components/Toast/__tests__/ToastManager.spec.js +6 -10
  59. package/src/components/ToolTip/ToolTip.vue +1 -1
  60. package/src/components/index.ts +6 -6
  61. package/src/components/ui/dialog/DialogContent.vue +5 -5
  62. package/src/components/ui/drawer/DrawerContent.vue +2 -4
  63. package/src/components/ui/popover/PopoverContent.vue +2 -4
  64. package/src/components/ui/popover/PopoverOption.vue +4 -0
  65. package/src/components/ui/tooltip/TooltipContent.vue +2 -5
  66. package/src/components/ui/tooltip/TooltipTrigger.vue +4 -2
  67. package/src/index.ts +2 -9
  68. package/src/lib/layer-manager.ts +52 -24
  69. package/src/locales/en.json +3 -1
  70. package/src/locales/es.json +3 -1
  71. package/src/locales/pt_br.json +3 -1
  72. package/src/stories/Input.mdx +3 -0
  73. package/src/stories/LayerManager.docs.mdx +9 -9
  74. package/src/stories/LayerManager.stories.js +11 -54
  75. package/src/stories/ModalDialog.stories.js +0 -95
  76. package/src/stories/MultiSelect.stories.js +143 -45
  77. package/src/stories/Select.stories.js +161 -0
  78. package/src/stories/TemplatePreview.stories.js +27 -27
  79. package/src/stories/TemplatePreviewModal.stories.js +31 -31
  80. package/dist/apple-64.png +0 -0
  81. package/public/apple-64.png +0 -0
  82. package/src/components/MultiSelect/MultiSelect.vue +0 -297
  83. package/src/lib/__tests__/teleport-target.spec.ts +0 -73
  84. package/src/lib/teleport-target.ts +0 -46
package/dist/index.d.ts CHANGED
@@ -91,7 +91,6 @@ declare interface DatePickerProps {
91
91
  disableClear?: boolean;
92
92
  locale?: string;
93
93
  translations?: Record<string, unknown>;
94
- variant?: 'card' | 'popover';
95
94
  }
96
95
 
97
96
  declare interface DisclaimerProps {
@@ -163,8 +162,6 @@ declare type TagSize = 'small' | 'medium';
163
162
 
164
163
  declare type TagType = 'default' | 'brand' | 'next';
165
164
 
166
- declare type TeleportTarget = string | HTMLElement;
167
-
168
165
  declare interface ToastButton {
169
166
  text: string;
170
167
  action: () => void;
@@ -708,8 +705,8 @@ type: BooleanConstructor;
708
705
  default: boolean;
709
706
  };
710
707
  }>> & Readonly<{}>, {
711
- text: string;
712
708
  side: string;
709
+ text: string;
713
710
  enabled: boolean;
714
711
  forceOpen: boolean;
715
712
  maxWidth: string;
@@ -769,7 +766,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
769
766
  escapeKeyDown: (event: KeyboardEvent) => any;
770
767
  pointerDownOutside: (event: Event) => any;
771
768
  }, PublicProps, {
772
- class: HTMLAttributes["class"];
773
769
  sideOffset: number;
774
770
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
775
771
  P: {};
@@ -784,7 +780,6 @@ class?: HTMLAttributes["class"];
784
780
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
785
781
  onPointerDownOutside?: ((event: Event) => any) | undefined;
786
782
  }>, {}, {}, {}, {}, {
787
- class: HTMLAttributes["class"];
788
783
  sideOffset: number;
789
784
  }>;
790
785
  __isFragment?: never;
@@ -799,7 +794,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
799
794
  escapeKeyDown: (event: KeyboardEvent) => any;
800
795
  pointerDownOutside: (event: Event) => any;
801
796
  }, string, {
802
- class: HTMLAttributes["class"];
803
797
  sideOffset: number;
804
798
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
805
799
  $slots: {
@@ -969,8 +963,8 @@ type: BooleanConstructor;
969
963
  default: boolean;
970
964
  };
971
965
  }>> & Readonly<{}>, {
972
- text: string;
973
966
  side: string;
967
+ text: string;
974
968
  enabled: boolean;
975
969
  forceOpen: boolean;
976
970
  maxWidth: string;
@@ -1030,7 +1024,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
1030
1024
  escapeKeyDown: (event: KeyboardEvent) => any;
1031
1025
  pointerDownOutside: (event: Event) => any;
1032
1026
  }, PublicProps, {
1033
- class: HTMLAttributes["class"];
1034
1027
  sideOffset: number;
1035
1028
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1036
1029
  P: {};
@@ -1045,7 +1038,6 @@ class?: HTMLAttributes["class"];
1045
1038
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
1046
1039
  onPointerDownOutside?: ((event: Event) => any) | undefined;
1047
1040
  }>, {}, {}, {}, {}, {
1048
- class: HTMLAttributes["class"];
1049
1041
  sideOffset: number;
1050
1042
  }>;
1051
1043
  __isFragment?: never;
@@ -1060,7 +1052,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
1060
1052
  escapeKeyDown: (event: KeyboardEvent) => any;
1061
1053
  pointerDownOutside: (event: Event) => any;
1062
1054
  }, string, {
1063
- class: HTMLAttributes["class"];
1064
1055
  sideOffset: number;
1065
1056
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
1066
1057
  $slots: {
@@ -1255,8 +1246,8 @@ type: BooleanConstructor;
1255
1246
  default: boolean;
1256
1247
  };
1257
1248
  }>> & Readonly<{}>, {
1258
- text: string;
1259
1249
  side: string;
1250
+ text: string;
1260
1251
  enabled: boolean;
1261
1252
  forceOpen: boolean;
1262
1253
  maxWidth: string;
@@ -1316,7 +1307,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
1316
1307
  escapeKeyDown: (event: KeyboardEvent) => any;
1317
1308
  pointerDownOutside: (event: Event) => any;
1318
1309
  }, PublicProps, {
1319
- class: HTMLAttributes["class"];
1320
1310
  sideOffset: number;
1321
1311
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1322
1312
  P: {};
@@ -1331,7 +1321,6 @@ class?: HTMLAttributes["class"];
1331
1321
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
1332
1322
  onPointerDownOutside?: ((event: Event) => any) | undefined;
1333
1323
  }>, {}, {}, {}, {}, {
1334
- class: HTMLAttributes["class"];
1335
1324
  sideOffset: number;
1336
1325
  }>;
1337
1326
  __isFragment?: never;
@@ -1346,7 +1335,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
1346
1335
  escapeKeyDown: (event: KeyboardEvent) => any;
1347
1336
  pointerDownOutside: (event: Event) => any;
1348
1337
  }, string, {
1349
- class: HTMLAttributes["class"];
1350
1338
  sideOffset: number;
1351
1339
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
1352
1340
  $slots: {
@@ -1516,8 +1504,8 @@ type: BooleanConstructor;
1516
1504
  default: boolean;
1517
1505
  };
1518
1506
  }>> & Readonly<{}>, {
1519
- text: string;
1520
1507
  side: string;
1508
+ text: string;
1521
1509
  enabled: boolean;
1522
1510
  forceOpen: boolean;
1523
1511
  maxWidth: string;
@@ -1577,7 +1565,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
1577
1565
  escapeKeyDown: (event: KeyboardEvent) => any;
1578
1566
  pointerDownOutside: (event: Event) => any;
1579
1567
  }, PublicProps, {
1580
- class: HTMLAttributes["class"];
1581
1568
  sideOffset: number;
1582
1569
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1583
1570
  P: {};
@@ -1592,7 +1579,6 @@ class?: HTMLAttributes["class"];
1592
1579
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
1593
1580
  onPointerDownOutside?: ((event: Event) => any) | undefined;
1594
1581
  }>, {}, {}, {}, {}, {
1595
- class: HTMLAttributes["class"];
1596
1582
  sideOffset: number;
1597
1583
  }>;
1598
1584
  __isFragment?: never;
@@ -1607,7 +1593,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
1607
1593
  escapeKeyDown: (event: KeyboardEvent) => any;
1608
1594
  pointerDownOutside: (event: Event) => any;
1609
1595
  }, string, {
1610
- class: HTMLAttributes["class"];
1611
1596
  sideOffset: number;
1612
1597
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
1613
1598
  $slots: {
@@ -2229,8 +2214,8 @@ export declare const UnnnicButton: {
2229
2214
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
2230
2215
  disabled: boolean;
2231
2216
  type: ButtonType;
2232
- text: string;
2233
2217
  size: ButtonSize;
2218
+ text: string;
2234
2219
  iconLeft: string;
2235
2220
  iconRight: string;
2236
2221
  float: boolean;
@@ -2247,8 +2232,8 @@ export declare const UnnnicButton: {
2247
2232
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
2248
2233
  disabled: boolean;
2249
2234
  type: ButtonType;
2250
- text: string;
2251
2235
  size: ButtonSize;
2236
+ text: string;
2252
2237
  iconLeft: string;
2253
2238
  iconRight: string;
2254
2239
  float: boolean;
@@ -2262,8 +2247,8 @@ export declare const UnnnicButton: {
2262
2247
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
2263
2248
  disabled: boolean;
2264
2249
  type: ButtonType;
2265
- text: string;
2266
2250
  size: ButtonSize;
2251
+ text: string;
2267
2252
  iconLeft: string;
2268
2253
  iconRight: string;
2269
2254
  float: boolean;
@@ -2280,8 +2265,8 @@ export declare const unnnicButton: {
2280
2265
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
2281
2266
  disabled: boolean;
2282
2267
  type: ButtonType;
2283
- text: string;
2284
2268
  size: ButtonSize;
2269
+ text: string;
2285
2270
  iconLeft: string;
2286
2271
  iconRight: string;
2287
2272
  float: boolean;
@@ -2298,8 +2283,8 @@ export declare const unnnicButton: {
2298
2283
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
2299
2284
  disabled: boolean;
2300
2285
  type: ButtonType;
2301
- text: string;
2302
2286
  size: ButtonSize;
2287
+ text: string;
2303
2288
  iconLeft: string;
2304
2289
  iconRight: string;
2305
2290
  float: boolean;
@@ -2313,8 +2298,8 @@ export declare const unnnicButton: {
2313
2298
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
2314
2299
  disabled: boolean;
2315
2300
  type: ButtonType;
2316
- text: string;
2317
2301
  size: ButtonSize;
2302
+ text: string;
2318
2303
  iconLeft: string;
2319
2304
  iconRight: string;
2320
2305
  float: boolean;
@@ -2574,10 +2559,10 @@ type: StringConstructor;
2574
2559
  default: null;
2575
2560
  };
2576
2561
  }>> & Readonly<{}>, {
2577
- value: number;
2578
2562
  title: string;
2579
2563
  icon: string;
2580
2564
  scheme: string;
2565
+ value: number;
2581
2566
  percent: number;
2582
2567
  invertedPercentage: boolean;
2583
2568
  }, {}, {
@@ -2733,8 +2718,8 @@ type: BooleanConstructor;
2733
2718
  default: boolean;
2734
2719
  };
2735
2720
  }>> & Readonly<{}>, {
2736
- title: string;
2737
2721
  enabled: boolean;
2722
+ title: string;
2738
2723
  info: string;
2739
2724
  icon: string;
2740
2725
  scheme: string;
@@ -2794,8 +2779,8 @@ type: BooleanConstructor;
2794
2779
  default: boolean;
2795
2780
  };
2796
2781
  }>> & Readonly<{}>, {
2797
- text: string;
2798
2782
  side: string;
2783
+ text: string;
2799
2784
  enabled: boolean;
2800
2785
  forceOpen: boolean;
2801
2786
  maxWidth: string;
@@ -2855,7 +2840,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
2855
2840
  escapeKeyDown: (event: KeyboardEvent) => any;
2856
2841
  pointerDownOutside: (event: Event) => any;
2857
2842
  }, PublicProps, {
2858
- class: HTMLAttributes["class"];
2859
2843
  sideOffset: number;
2860
2844
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
2861
2845
  P: {};
@@ -2870,7 +2854,6 @@ class?: HTMLAttributes["class"];
2870
2854
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
2871
2855
  onPointerDownOutside?: ((event: Event) => any) | undefined;
2872
2856
  }>, {}, {}, {}, {}, {
2873
- class: HTMLAttributes["class"];
2874
2857
  sideOffset: number;
2875
2858
  }>;
2876
2859
  __isFragment?: never;
@@ -2885,7 +2868,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
2885
2868
  escapeKeyDown: (event: KeyboardEvent) => any;
2886
2869
  pointerDownOutside: (event: Event) => any;
2887
2870
  }, string, {
2888
- class: HTMLAttributes["class"];
2889
2871
  sideOffset: number;
2890
2872
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
2891
2873
  $slots: {
@@ -3015,8 +2997,8 @@ type: StringConstructor;
3015
2997
  default: null;
3016
2998
  };
3017
2999
  }>> & Readonly<{}>, {
3018
- title: string;
3019
3000
  enabled: boolean;
3001
+ title: string;
3020
3002
  icon: string;
3021
3003
  scheme: string;
3022
3004
  description: string;
@@ -3218,8 +3200,8 @@ type: BooleanConstructor;
3218
3200
  default: boolean;
3219
3201
  };
3220
3202
  }>> & Readonly<{}>, {
3221
- title: string;
3222
3203
  enabled: boolean;
3204
+ title: string;
3223
3205
  icon: string;
3224
3206
  clickable: boolean;
3225
3207
  description: string;
@@ -3412,14 +3394,14 @@ default: () => void;
3412
3394
  };
3413
3395
  }>> & Readonly<{}>, {
3414
3396
  type: string;
3415
- value: number;
3416
- title: string;
3417
3397
  text: string;
3418
3398
  enabled: boolean;
3399
+ title: string;
3419
3400
  info: string;
3420
3401
  icon: string;
3421
3402
  clickable: boolean;
3422
3403
  scheme: string;
3404
+ value: number;
3423
3405
  description: string;
3424
3406
  percent: number;
3425
3407
  invertedPercentage: boolean;
@@ -3572,10 +3554,10 @@ type: StringConstructor;
3572
3554
  default: null;
3573
3555
  };
3574
3556
  }>> & Readonly<{}>, {
3575
- value: number;
3576
3557
  title: string;
3577
3558
  icon: string;
3578
3559
  scheme: string;
3560
+ value: number;
3579
3561
  percent: number;
3580
3562
  invertedPercentage: boolean;
3581
3563
  }, {}, {
@@ -3731,8 +3713,8 @@ type: BooleanConstructor;
3731
3713
  default: boolean;
3732
3714
  };
3733
3715
  }>> & Readonly<{}>, {
3734
- title: string;
3735
3716
  enabled: boolean;
3717
+ title: string;
3736
3718
  info: string;
3737
3719
  icon: string;
3738
3720
  scheme: string;
@@ -3792,8 +3774,8 @@ type: BooleanConstructor;
3792
3774
  default: boolean;
3793
3775
  };
3794
3776
  }>> & Readonly<{}>, {
3795
- text: string;
3796
3777
  side: string;
3778
+ text: string;
3797
3779
  enabled: boolean;
3798
3780
  forceOpen: boolean;
3799
3781
  maxWidth: string;
@@ -3853,7 +3835,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
3853
3835
  escapeKeyDown: (event: KeyboardEvent) => any;
3854
3836
  pointerDownOutside: (event: Event) => any;
3855
3837
  }, PublicProps, {
3856
- class: HTMLAttributes["class"];
3857
3838
  sideOffset: number;
3858
3839
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
3859
3840
  P: {};
@@ -3868,7 +3849,6 @@ class?: HTMLAttributes["class"];
3868
3849
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
3869
3850
  onPointerDownOutside?: ((event: Event) => any) | undefined;
3870
3851
  }>, {}, {}, {}, {}, {
3871
- class: HTMLAttributes["class"];
3872
3852
  sideOffset: number;
3873
3853
  }>;
3874
3854
  __isFragment?: never;
@@ -3883,7 +3863,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
3883
3863
  escapeKeyDown: (event: KeyboardEvent) => any;
3884
3864
  pointerDownOutside: (event: Event) => any;
3885
3865
  }, string, {
3886
- class: HTMLAttributes["class"];
3887
3866
  sideOffset: number;
3888
3867
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
3889
3868
  $slots: {
@@ -4013,8 +3992,8 @@ type: StringConstructor;
4013
3992
  default: null;
4014
3993
  };
4015
3994
  }>> & Readonly<{}>, {
4016
- title: string;
4017
3995
  enabled: boolean;
3996
+ title: string;
4018
3997
  icon: string;
4019
3998
  scheme: string;
4020
3999
  description: string;
@@ -4216,8 +4195,8 @@ type: BooleanConstructor;
4216
4195
  default: boolean;
4217
4196
  };
4218
4197
  }>> & Readonly<{}>, {
4219
- title: string;
4220
4198
  enabled: boolean;
4199
+ title: string;
4221
4200
  icon: string;
4222
4201
  clickable: boolean;
4223
4202
  description: string;
@@ -4410,14 +4389,14 @@ default: () => void;
4410
4389
  };
4411
4390
  }>> & Readonly<{}>, {
4412
4391
  type: string;
4413
- value: number;
4414
- title: string;
4415
4392
  text: string;
4416
4393
  enabled: boolean;
4394
+ title: string;
4417
4395
  info: string;
4418
4396
  icon: string;
4419
4397
  clickable: boolean;
4420
4398
  scheme: string;
4399
+ value: number;
4421
4400
  description: string;
4422
4401
  percent: number;
4423
4402
  invertedPercentage: boolean;
@@ -4469,8 +4448,8 @@ onClose?: (() => any) | undefined;
4469
4448
  }>, {
4470
4449
  disabled: boolean;
4471
4450
  type: TagType;
4472
- text: string;
4473
4451
  size: TagSize;
4452
+ text: string;
4474
4453
  scheme: string;
4475
4454
  leftIcon: string;
4476
4455
  hasCloseIcon: boolean;
@@ -4515,8 +4494,8 @@ onClose?: (() => any) | undefined;
4515
4494
  }>, {
4516
4495
  disabled: boolean;
4517
4496
  type: TagType;
4518
- text: string;
4519
4497
  size: TagSize;
4498
+ text: string;
4520
4499
  scheme: string;
4521
4500
  leftIcon: string;
4522
4501
  hasCloseIcon: boolean;
@@ -4887,8 +4866,8 @@ type: BooleanConstructor;
4887
4866
  default: boolean;
4888
4867
  };
4889
4868
  }>> & Readonly<{}>, {
4890
- text: string;
4891
4869
  side: string;
4870
+ text: string;
4892
4871
  enabled: boolean;
4893
4872
  forceOpen: boolean;
4894
4873
  maxWidth: string;
@@ -4948,7 +4927,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
4948
4927
  escapeKeyDown: (event: KeyboardEvent) => any;
4949
4928
  pointerDownOutside: (event: Event) => any;
4950
4929
  }, PublicProps, {
4951
- class: HTMLAttributes["class"];
4952
4930
  sideOffset: number;
4953
4931
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
4954
4932
  P: {};
@@ -4963,7 +4941,6 @@ class?: HTMLAttributes["class"];
4963
4941
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
4964
4942
  onPointerDownOutside?: ((event: Event) => any) | undefined;
4965
4943
  }>, {}, {}, {}, {}, {
4966
- class: HTMLAttributes["class"];
4967
4944
  sideOffset: number;
4968
4945
  }>;
4969
4946
  __isFragment?: never;
@@ -4978,7 +4955,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
4978
4955
  escapeKeyDown: (event: KeyboardEvent) => any;
4979
4956
  pointerDownOutside: (event: Event) => any;
4980
4957
  }, string, {
4981
- class: HTMLAttributes["class"];
4982
4958
  sideOffset: number;
4983
4959
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
4984
4960
  $slots: {
@@ -5256,8 +5232,8 @@ type: BooleanConstructor;
5256
5232
  default: boolean;
5257
5233
  };
5258
5234
  }>> & Readonly<{}>, {
5259
- text: string;
5260
5235
  side: string;
5236
+ text: string;
5261
5237
  enabled: boolean;
5262
5238
  forceOpen: boolean;
5263
5239
  maxWidth: string;
@@ -5317,7 +5293,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
5317
5293
  escapeKeyDown: (event: KeyboardEvent) => any;
5318
5294
  pointerDownOutside: (event: Event) => any;
5319
5295
  }, PublicProps, {
5320
- class: HTMLAttributes["class"];
5321
5296
  sideOffset: number;
5322
5297
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
5323
5298
  P: {};
@@ -5332,7 +5307,6 @@ class?: HTMLAttributes["class"];
5332
5307
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
5333
5308
  onPointerDownOutside?: ((event: Event) => any) | undefined;
5334
5309
  }>, {}, {}, {}, {}, {
5335
- class: HTMLAttributes["class"];
5336
5310
  sideOffset: number;
5337
5311
  }>;
5338
5312
  __isFragment?: never;
@@ -5347,7 +5321,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
5347
5321
  escapeKeyDown: (event: KeyboardEvent) => any;
5348
5322
  pointerDownOutside: (event: Event) => any;
5349
5323
  }, string, {
5350
- class: HTMLAttributes["class"];
5351
5324
  sideOffset: number;
5352
5325
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
5353
5326
  $slots: {
@@ -5508,8 +5481,8 @@ onClose?: (() => any) | undefined;
5508
5481
  }>, {
5509
5482
  disabled: boolean;
5510
5483
  type: TagType;
5511
- text: string;
5512
5484
  size: TagSize;
5485
+ text: string;
5513
5486
  scheme: string;
5514
5487
  leftIcon: string;
5515
5488
  hasCloseIcon: boolean;
@@ -5632,8 +5605,8 @@ onClose?: (() => any) | undefined;
5632
5605
  }>, {
5633
5606
  disabled: boolean;
5634
5607
  type: TagType;
5635
- text: string;
5636
5608
  size: TagSize;
5609
+ text: string;
5637
5610
  scheme: string;
5638
5611
  leftIcon: string;
5639
5612
  hasCloseIcon: boolean;
@@ -5741,8 +5714,8 @@ UnnnicButton: {
5741
5714
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
5742
5715
  disabled: boolean;
5743
5716
  type: ButtonType;
5744
- text: string;
5745
5717
  size: ButtonSize;
5718
+ text: string;
5746
5719
  iconLeft: string;
5747
5720
  iconRight: string;
5748
5721
  float: boolean;
@@ -5759,8 +5732,8 @@ Defaults: {};
5759
5732
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
5760
5733
  disabled: boolean;
5761
5734
  type: ButtonType;
5762
- text: string;
5763
5735
  size: ButtonSize;
5736
+ text: string;
5764
5737
  iconLeft: string;
5765
5738
  iconRight: string;
5766
5739
  float: boolean;
@@ -5774,8 +5747,8 @@ __isSuspense?: never;
5774
5747
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
5775
5748
  disabled: boolean;
5776
5749
  type: ButtonType;
5777
- text: string;
5778
5750
  size: ButtonSize;
5751
+ text: string;
5779
5752
  iconLeft: string;
5780
5753
  iconRight: string;
5781
5754
  float: boolean;
@@ -5840,8 +5813,8 @@ type: BooleanConstructor;
5840
5813
  default: boolean;
5841
5814
  };
5842
5815
  }>> & Readonly<{}>, {
5843
- text: string;
5844
5816
  side: string;
5817
+ text: string;
5845
5818
  enabled: boolean;
5846
5819
  forceOpen: boolean;
5847
5820
  maxWidth: string;
@@ -5901,7 +5874,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
5901
5874
  escapeKeyDown: (event: KeyboardEvent) => any;
5902
5875
  pointerDownOutside: (event: Event) => any;
5903
5876
  }, PublicProps, {
5904
- class: HTMLAttributes["class"];
5905
5877
  sideOffset: number;
5906
5878
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
5907
5879
  P: {};
@@ -5916,7 +5888,6 @@ class?: HTMLAttributes["class"];
5916
5888
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
5917
5889
  onPointerDownOutside?: ((event: Event) => any) | undefined;
5918
5890
  }>, {}, {}, {}, {}, {
5919
- class: HTMLAttributes["class"];
5920
5891
  sideOffset: number;
5921
5892
  }>;
5922
5893
  __isFragment?: never;
@@ -5931,7 +5902,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
5931
5902
  escapeKeyDown: (event: KeyboardEvent) => any;
5932
5903
  pointerDownOutside: (event: Event) => any;
5933
5904
  }, string, {
5934
- class: HTMLAttributes["class"];
5935
5905
  sideOffset: number;
5936
5906
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
5937
5907
  $slots: {
@@ -5993,8 +5963,8 @@ UnnnicButton: {
5993
5963
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
5994
5964
  disabled: boolean;
5995
5965
  type: ButtonType;
5996
- text: string;
5997
5966
  size: ButtonSize;
5967
+ text: string;
5998
5968
  iconLeft: string;
5999
5969
  iconRight: string;
6000
5970
  float: boolean;
@@ -6011,8 +5981,8 @@ Defaults: {};
6011
5981
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
6012
5982
  disabled: boolean;
6013
5983
  type: ButtonType;
6014
- text: string;
6015
5984
  size: ButtonSize;
5985
+ text: string;
6016
5986
  iconLeft: string;
6017
5987
  iconRight: string;
6018
5988
  float: boolean;
@@ -6026,8 +5996,8 @@ __isSuspense?: never;
6026
5996
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
6027
5997
  disabled: boolean;
6028
5998
  type: ButtonType;
6029
- text: string;
6030
5999
  size: ButtonSize;
6000
+ text: string;
6031
6001
  iconLeft: string;
6032
6002
  iconRight: string;
6033
6003
  float: boolean;
@@ -6092,8 +6062,8 @@ type: BooleanConstructor;
6092
6062
  default: boolean;
6093
6063
  };
6094
6064
  }>> & Readonly<{}>, {
6095
- text: string;
6096
6065
  side: string;
6066
+ text: string;
6097
6067
  enabled: boolean;
6098
6068
  forceOpen: boolean;
6099
6069
  maxWidth: string;
@@ -6153,7 +6123,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
6153
6123
  escapeKeyDown: (event: KeyboardEvent) => any;
6154
6124
  pointerDownOutside: (event: Event) => any;
6155
6125
  }, PublicProps, {
6156
- class: HTMLAttributes["class"];
6157
6126
  sideOffset: number;
6158
6127
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
6159
6128
  P: {};
@@ -6168,7 +6137,6 @@ class?: HTMLAttributes["class"];
6168
6137
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
6169
6138
  onPointerDownOutside?: ((event: Event) => any) | undefined;
6170
6139
  }>, {}, {}, {}, {}, {
6171
- class: HTMLAttributes["class"];
6172
6140
  sideOffset: number;
6173
6141
  }>;
6174
6142
  __isFragment?: never;
@@ -6183,7 +6151,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
6183
6151
  escapeKeyDown: (event: KeyboardEvent) => any;
6184
6152
  pointerDownOutside: (event: Event) => any;
6185
6153
  }, string, {
6186
- class: HTMLAttributes["class"];
6187
6154
  sideOffset: number;
6188
6155
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
6189
6156
  $slots: {
@@ -6271,8 +6238,8 @@ type: BooleanConstructor;
6271
6238
  default: boolean;
6272
6239
  };
6273
6240
  }>> & Readonly<{}>, {
6274
- text: string;
6275
6241
  side: string;
6242
+ text: string;
6276
6243
  enabled: boolean;
6277
6244
  forceOpen: boolean;
6278
6245
  maxWidth: string;
@@ -6332,7 +6299,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
6332
6299
  escapeKeyDown: (event: KeyboardEvent) => any;
6333
6300
  pointerDownOutside: (event: Event) => any;
6334
6301
  }, PublicProps, {
6335
- class: HTMLAttributes["class"];
6336
6302
  sideOffset: number;
6337
6303
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
6338
6304
  P: {};
@@ -6347,7 +6313,6 @@ class?: HTMLAttributes["class"];
6347
6313
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
6348
6314
  onPointerDownOutside?: ((event: Event) => any) | undefined;
6349
6315
  }>, {}, {}, {}, {}, {
6350
- class: HTMLAttributes["class"];
6351
6316
  sideOffset: number;
6352
6317
  }>;
6353
6318
  __isFragment?: never;
@@ -6362,7 +6327,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
6362
6327
  escapeKeyDown: (event: KeyboardEvent) => any;
6363
6328
  pointerDownOutside: (event: Event) => any;
6364
6329
  }, string, {
6365
- class: HTMLAttributes["class"];
6366
6330
  sideOffset: number;
6367
6331
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
6368
6332
  $slots: {
@@ -6446,8 +6410,8 @@ type: BooleanConstructor;
6446
6410
  default: boolean;
6447
6411
  };
6448
6412
  }>> & Readonly<{}>, {
6449
- text: string;
6450
6413
  side: string;
6414
+ text: string;
6451
6415
  enabled: boolean;
6452
6416
  forceOpen: boolean;
6453
6417
  maxWidth: string;
@@ -6507,7 +6471,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
6507
6471
  escapeKeyDown: (event: KeyboardEvent) => any;
6508
6472
  pointerDownOutside: (event: Event) => any;
6509
6473
  }, PublicProps, {
6510
- class: HTMLAttributes["class"];
6511
6474
  sideOffset: number;
6512
6475
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
6513
6476
  P: {};
@@ -6522,7 +6485,6 @@ class?: HTMLAttributes["class"];
6522
6485
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
6523
6486
  onPointerDownOutside?: ((event: Event) => any) | undefined;
6524
6487
  }>, {}, {}, {}, {}, {
6525
- class: HTMLAttributes["class"];
6526
6488
  sideOffset: number;
6527
6489
  }>;
6528
6490
  __isFragment?: never;
@@ -6537,7 +6499,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
6537
6499
  escapeKeyDown: (event: KeyboardEvent) => any;
6538
6500
  pointerDownOutside: (event: Event) => any;
6539
6501
  }, string, {
6540
- class: HTMLAttributes["class"];
6541
6502
  sideOffset: number;
6542
6503
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
6543
6504
  $slots: {
@@ -6914,8 +6875,8 @@ onClick?: ((...args: any[]) => any) | undefined;
6914
6875
  onClickPin?: ((...args: any[]) => any) | undefined;
6915
6876
  }>, {
6916
6877
  disabled: boolean;
6917
- title: string;
6918
6878
  locale: string;
6879
+ title: string;
6919
6880
  selected: boolean;
6920
6881
  lastMessage: Record<string, any>;
6921
6882
  lastInteractionTimePrefix: string;
@@ -7334,8 +7295,8 @@ onClick?: ((...args: any[]) => any) | undefined;
7334
7295
  onClickPin?: ((...args: any[]) => any) | undefined;
7335
7296
  }>, {
7336
7297
  disabled: boolean;
7337
- title: string;
7338
7298
  locale: string;
7299
+ title: string;
7339
7300
  selected: boolean;
7340
7301
  lastMessage: Record<string, any>;
7341
7302
  lastInteractionTimePrefix: string;
@@ -7980,8 +7941,8 @@ type: BooleanConstructor;
7980
7941
  default: boolean;
7981
7942
  };
7982
7943
  }>> & Readonly<{}>, {
7983
- text: string;
7984
7944
  side: string;
7945
+ text: string;
7985
7946
  enabled: boolean;
7986
7947
  forceOpen: boolean;
7987
7948
  maxWidth: string;
@@ -8041,7 +8002,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
8041
8002
  escapeKeyDown: (event: KeyboardEvent) => any;
8042
8003
  pointerDownOutside: (event: Event) => any;
8043
8004
  }, PublicProps, {
8044
- class: HTMLAttributes["class"];
8045
8005
  sideOffset: number;
8046
8006
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
8047
8007
  P: {};
@@ -8056,7 +8016,6 @@ class?: HTMLAttributes["class"];
8056
8016
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
8057
8017
  onPointerDownOutside?: ((event: Event) => any) | undefined;
8058
8018
  }>, {}, {}, {}, {}, {
8059
- class: HTMLAttributes["class"];
8060
8019
  sideOffset: number;
8061
8020
  }>;
8062
8021
  __isFragment?: never;
@@ -8071,7 +8030,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
8071
8030
  escapeKeyDown: (event: KeyboardEvent) => any;
8072
8031
  pointerDownOutside: (event: Event) => any;
8073
8032
  }, string, {
8074
- class: HTMLAttributes["class"];
8075
8033
  sideOffset: number;
8076
8034
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
8077
8035
  $slots: {
@@ -8463,8 +8421,8 @@ type: BooleanConstructor;
8463
8421
  default: boolean;
8464
8422
  };
8465
8423
  }>> & Readonly<{}>, {
8466
- text: string;
8467
8424
  side: string;
8425
+ text: string;
8468
8426
  enabled: boolean;
8469
8427
  forceOpen: boolean;
8470
8428
  maxWidth: string;
@@ -8524,7 +8482,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
8524
8482
  escapeKeyDown: (event: KeyboardEvent) => any;
8525
8483
  pointerDownOutside: (event: Event) => any;
8526
8484
  }, PublicProps, {
8527
- class: HTMLAttributes["class"];
8528
8485
  sideOffset: number;
8529
8486
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
8530
8487
  P: {};
@@ -8539,7 +8496,6 @@ class?: HTMLAttributes["class"];
8539
8496
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
8540
8497
  onPointerDownOutside?: ((event: Event) => any) | undefined;
8541
8498
  }>, {}, {}, {}, {}, {
8542
- class: HTMLAttributes["class"];
8543
8499
  sideOffset: number;
8544
8500
  }>;
8545
8501
  __isFragment?: never;
@@ -8554,7 +8510,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
8554
8510
  escapeKeyDown: (event: KeyboardEvent) => any;
8555
8511
  pointerDownOutside: (event: Event) => any;
8556
8512
  }, string, {
8557
- class: HTMLAttributes["class"];
8558
8513
  sideOffset: number;
8559
8514
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
8560
8515
  $slots: {
@@ -8944,8 +8899,8 @@ type: BooleanConstructor;
8944
8899
  default: boolean;
8945
8900
  };
8946
8901
  }>> & Readonly<{}>, {
8947
- text: string;
8948
8902
  side: string;
8903
+ text: string;
8949
8904
  enabled: boolean;
8950
8905
  forceOpen: boolean;
8951
8906
  maxWidth: string;
@@ -9005,7 +8960,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
9005
8960
  escapeKeyDown: (event: KeyboardEvent) => any;
9006
8961
  pointerDownOutside: (event: Event) => any;
9007
8962
  }, PublicProps, {
9008
- class: HTMLAttributes["class"];
9009
8963
  sideOffset: number;
9010
8964
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
9011
8965
  P: {};
@@ -9020,7 +8974,6 @@ class?: HTMLAttributes["class"];
9020
8974
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
9021
8975
  onPointerDownOutside?: ((event: Event) => any) | undefined;
9022
8976
  }>, {}, {}, {}, {}, {
9023
- class: HTMLAttributes["class"];
9024
8977
  sideOffset: number;
9025
8978
  }>;
9026
8979
  __isFragment?: never;
@@ -9035,7 +8988,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
9035
8988
  escapeKeyDown: (event: KeyboardEvent) => any;
9036
8989
  pointerDownOutside: (event: Event) => any;
9037
8990
  }, string, {
9038
- class: HTMLAttributes["class"];
9039
8991
  sideOffset: number;
9040
8992
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
9041
8993
  $slots: {
@@ -9149,8 +9101,8 @@ type: BooleanConstructor;
9149
9101
  default: boolean;
9150
9102
  };
9151
9103
  }>> & Readonly<{}>, {
9152
- text: string;
9153
9104
  side: string;
9105
+ text: string;
9154
9106
  enabled: boolean;
9155
9107
  forceOpen: boolean;
9156
9108
  maxWidth: string;
@@ -9210,7 +9162,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
9210
9162
  escapeKeyDown: (event: KeyboardEvent) => any;
9211
9163
  pointerDownOutside: (event: Event) => any;
9212
9164
  }, PublicProps, {
9213
- class: HTMLAttributes["class"];
9214
9165
  sideOffset: number;
9215
9166
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
9216
9167
  P: {};
@@ -9225,7 +9176,6 @@ class?: HTMLAttributes["class"];
9225
9176
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
9226
9177
  onPointerDownOutside?: ((event: Event) => any) | undefined;
9227
9178
  }>, {}, {}, {}, {}, {
9228
- class: HTMLAttributes["class"];
9229
9179
  sideOffset: number;
9230
9180
  }>;
9231
9181
  __isFragment?: never;
@@ -9240,7 +9190,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
9240
9190
  escapeKeyDown: (event: KeyboardEvent) => any;
9241
9191
  pointerDownOutside: (event: Event) => any;
9242
9192
  }, string, {
9243
- class: HTMLAttributes["class"];
9244
9193
  sideOffset: number;
9245
9194
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
9246
9195
  $slots: {
@@ -9714,9 +9663,9 @@ type: StringConstructor;
9714
9663
  default: null;
9715
9664
  };
9716
9665
  }>> & Readonly<{}>, {
9666
+ text: string;
9717
9667
  time: string;
9718
9668
  title: string;
9719
- text: string;
9720
9669
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
9721
9670
 
9722
9671
  export declare const unnnicComment: DefineComponent<ExtractPropTypes< {
@@ -9746,9 +9695,9 @@ type: StringConstructor;
9746
9695
  default: null;
9747
9696
  };
9748
9697
  }>> & Readonly<{}>, {
9698
+ text: string;
9749
9699
  time: string;
9750
9700
  title: string;
9751
- text: string;
9752
9701
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
9753
9702
 
9754
9703
  export declare const UnnnicDataArea: DefineComponent<ExtractPropTypes< {
@@ -9786,8 +9735,8 @@ type: StringConstructor;
9786
9735
  default: string;
9787
9736
  };
9788
9737
  }>> & Readonly<{}>, {
9789
- title: string;
9790
9738
  text: string;
9739
+ title: string;
9791
9740
  enableHover: boolean;
9792
9741
  hoverText: string;
9793
9742
  }, {}, {
@@ -9844,8 +9793,8 @@ type: BooleanConstructor;
9844
9793
  default: boolean;
9845
9794
  };
9846
9795
  }>> & Readonly<{}>, {
9847
- text: string;
9848
9796
  side: string;
9797
+ text: string;
9849
9798
  enabled: boolean;
9850
9799
  forceOpen: boolean;
9851
9800
  maxWidth: string;
@@ -9905,7 +9854,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
9905
9854
  escapeKeyDown: (event: KeyboardEvent) => any;
9906
9855
  pointerDownOutside: (event: Event) => any;
9907
9856
  }, PublicProps, {
9908
- class: HTMLAttributes["class"];
9909
9857
  sideOffset: number;
9910
9858
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
9911
9859
  P: {};
@@ -9920,7 +9868,6 @@ class?: HTMLAttributes["class"];
9920
9868
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
9921
9869
  onPointerDownOutside?: ((event: Event) => any) | undefined;
9922
9870
  }>, {}, {}, {}, {}, {
9923
- class: HTMLAttributes["class"];
9924
9871
  sideOffset: number;
9925
9872
  }>;
9926
9873
  __isFragment?: never;
@@ -9935,7 +9882,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
9935
9882
  escapeKeyDown: (event: KeyboardEvent) => any;
9936
9883
  pointerDownOutside: (event: Event) => any;
9937
9884
  }, string, {
9938
- class: HTMLAttributes["class"];
9939
9885
  sideOffset: number;
9940
9886
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
9941
9887
  $slots: {
@@ -9980,8 +9926,8 @@ type: StringConstructor;
9980
9926
  default: string;
9981
9927
  };
9982
9928
  }>> & Readonly<{}>, {
9983
- title: string;
9984
9929
  text: string;
9930
+ title: string;
9985
9931
  enableHover: boolean;
9986
9932
  hoverText: string;
9987
9933
  }, {}, {
@@ -10038,8 +9984,8 @@ type: BooleanConstructor;
10038
9984
  default: boolean;
10039
9985
  };
10040
9986
  }>> & Readonly<{}>, {
10041
- text: string;
10042
9987
  side: string;
9988
+ text: string;
10043
9989
  enabled: boolean;
10044
9990
  forceOpen: boolean;
10045
9991
  maxWidth: string;
@@ -10099,7 +10045,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
10099
10045
  escapeKeyDown: (event: KeyboardEvent) => any;
10100
10046
  pointerDownOutside: (event: Event) => any;
10101
10047
  }, PublicProps, {
10102
- class: HTMLAttributes["class"];
10103
10048
  sideOffset: number;
10104
10049
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
10105
10050
  P: {};
@@ -10114,7 +10059,6 @@ class?: HTMLAttributes["class"];
10114
10059
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
10115
10060
  onPointerDownOutside?: ((event: Event) => any) | undefined;
10116
10061
  }>, {}, {}, {}, {}, {
10117
- class: HTMLAttributes["class"];
10118
10062
  sideOffset: number;
10119
10063
  }>;
10120
10064
  __isFragment?: never;
@@ -10129,7 +10073,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
10129
10073
  escapeKeyDown: (event: KeyboardEvent) => any;
10130
10074
  pointerDownOutside: (event: Event) => any;
10131
10075
  }, string, {
10132
- class: HTMLAttributes["class"];
10133
10076
  sideOffset: number;
10134
10077
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
10135
10078
  $slots: {
@@ -10285,13 +10228,29 @@ disabled: {
10285
10228
  type: BooleanConstructor;
10286
10229
  default: boolean;
10287
10230
  };
10231
+ readonly: {
10232
+ type: BooleanConstructor;
10233
+ default: boolean;
10234
+ };
10235
+ useFocusProp: {
10236
+ type: BooleanConstructor;
10237
+ default: boolean;
10238
+ };
10239
+ focus: {
10240
+ type: BooleanConstructor;
10241
+ default: boolean;
10242
+ };
10243
+ showClear: {
10244
+ type: BooleanConstructor;
10245
+ default: boolean;
10246
+ };
10288
10247
  }>, {}, {
10289
10248
  val: string;
10290
10249
  }, {
10291
10250
  computedError(): string | boolean;
10292
10251
  }, {
10293
10252
  fullySanitize: fullySanitize;
10294
- }, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
10253
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
10295
10254
  placeholder: {
10296
10255
  type: StringConstructor;
10297
10256
  default: string;
@@ -10369,25 +10328,46 @@ disabled: {
10369
10328
  type: BooleanConstructor;
10370
10329
  default: boolean;
10371
10330
  };
10331
+ readonly: {
10332
+ type: BooleanConstructor;
10333
+ default: boolean;
10334
+ };
10335
+ useFocusProp: {
10336
+ type: BooleanConstructor;
10337
+ default: boolean;
10338
+ };
10339
+ focus: {
10340
+ type: BooleanConstructor;
10341
+ default: boolean;
10342
+ };
10343
+ showClear: {
10344
+ type: BooleanConstructor;
10345
+ default: boolean;
10346
+ };
10372
10347
  }>> & Readonly<{
10373
10348
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
10349
+ onClear?: ((...args: any[]) => any) | undefined;
10374
10350
  }>, {
10375
10351
  disabled: boolean;
10352
+ focus: boolean;
10376
10353
  type: string;
10377
10354
  placeholder: string;
10355
+ tooltip: string;
10378
10356
  label: string;
10379
- mask: string | unknown[];
10380
10357
  size: string;
10381
- tooltip: string;
10358
+ mask: string | unknown[];
10382
10359
  message: string;
10383
10360
  modelValue: string;
10384
10361
  nativeType: string;
10385
10362
  maxlength: number | null;
10363
+ readonly: boolean;
10364
+ useFocusProp: boolean;
10386
10365
  iconLeft: string;
10387
10366
  iconRight: string;
10388
10367
  iconLeftClickable: boolean;
10389
10368
  iconRightClickable: boolean;
10390
10369
  allowTogglePassword: boolean;
10370
+ showClear: boolean;
10391
10371
  errors: string | unknown[];
10392
10372
  hasCloudyColor: boolean;
10393
10373
  showMaxlengthCounter: boolean;
@@ -10442,6 +10422,22 @@ disabled: {
10442
10422
  type: BooleanConstructor;
10443
10423
  default: boolean;
10444
10424
  };
10425
+ readonly: {
10426
+ type: BooleanConstructor;
10427
+ default: boolean;
10428
+ };
10429
+ useFocusProp: {
10430
+ type: BooleanConstructor;
10431
+ default: boolean;
10432
+ };
10433
+ focus: {
10434
+ type: BooleanConstructor;
10435
+ default: boolean;
10436
+ };
10437
+ showClear: {
10438
+ type: BooleanConstructor;
10439
+ default: boolean;
10440
+ };
10445
10441
  }>, {}, {
10446
10442
  isFocused: boolean;
10447
10443
  showPassword: boolean;
@@ -10451,12 +10447,13 @@ iconRightSvg(): string;
10451
10447
  iconScheme(): "fg-base" | "fg-muted";
10452
10448
  attributes(): any;
10453
10449
  }, {
10454
- focus(): void;
10450
+ focusInput(): void;
10455
10451
  onFocus(): void;
10456
10452
  onBlur(): void;
10457
10453
  onIconLeftClick(): void;
10454
+ onClearClick(): void;
10458
10455
  onIconRightClick(): void;
10459
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("icon-left-click" | "icon-right-click")[], "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
10456
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "icon-left-click" | "icon-right-click")[], "clear" | "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
10460
10457
  placeholder: {
10461
10458
  type: StringConstructor;
10462
10459
  default: null;
@@ -10506,22 +10503,43 @@ disabled: {
10506
10503
  type: BooleanConstructor;
10507
10504
  default: boolean;
10508
10505
  };
10506
+ readonly: {
10507
+ type: BooleanConstructor;
10508
+ default: boolean;
10509
+ };
10510
+ useFocusProp: {
10511
+ type: BooleanConstructor;
10512
+ default: boolean;
10513
+ };
10514
+ focus: {
10515
+ type: BooleanConstructor;
10516
+ default: boolean;
10517
+ };
10518
+ showClear: {
10519
+ type: BooleanConstructor;
10520
+ default: boolean;
10521
+ };
10509
10522
  }>> & Readonly<{
10523
+ onClear?: ((...args: any[]) => any) | undefined;
10510
10524
  "onIcon-left-click"?: ((...args: any[]) => any) | undefined;
10511
10525
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
10512
10526
  }>, {
10513
10527
  disabled: boolean;
10528
+ focus: boolean;
10514
10529
  type: string;
10515
10530
  placeholder: string;
10516
10531
  size: string;
10517
10532
  modelValue: string;
10518
10533
  nativeType: string;
10519
10534
  maxlength: number;
10535
+ readonly: boolean;
10536
+ useFocusProp: boolean;
10520
10537
  iconLeft: string;
10521
10538
  iconRight: string;
10522
10539
  iconLeftClickable: boolean;
10523
10540
  iconRightClickable: boolean;
10524
10541
  allowTogglePassword: boolean;
10542
+ showClear: boolean;
10525
10543
  }, {}, {
10526
10544
  BaseInput: DefineComponent<ExtractPropTypes< {
10527
10545
  type: {
@@ -10547,15 +10565,29 @@ default: string;
10547
10565
  };
10548
10566
  hasIconLeft: BooleanConstructor;
10549
10567
  hasIconRight: BooleanConstructor;
10568
+ hasClearIcon: BooleanConstructor;
10550
10569
  maxlength: {
10551
10570
  type: NumberConstructor;
10552
10571
  default: null;
10553
10572
  };
10573
+ readonly: {
10574
+ type: BooleanConstructor;
10575
+ default: boolean;
10576
+ };
10577
+ useFocusProp: {
10578
+ type: BooleanConstructor;
10579
+ default: boolean;
10580
+ };
10581
+ focus: {
10582
+ type: BooleanConstructor;
10583
+ default: boolean;
10584
+ };
10554
10585
  }>, {}, {}, {
10555
10586
  attributes(): any;
10556
10587
  classes(): (string | {
10557
10588
  'input--has-icon-left': boolean;
10558
10589
  'input--has-icon-right': boolean;
10590
+ 'input--has-clear-icon': boolean;
10559
10591
  })[];
10560
10592
  }, {
10561
10593
  fullySanitize: fullySanitize;
@@ -10583,21 +10615,38 @@ default: string;
10583
10615
  };
10584
10616
  hasIconLeft: BooleanConstructor;
10585
10617
  hasIconRight: BooleanConstructor;
10618
+ hasClearIcon: BooleanConstructor;
10586
10619
  maxlength: {
10587
10620
  type: NumberConstructor;
10588
10621
  default: null;
10589
10622
  };
10623
+ readonly: {
10624
+ type: BooleanConstructor;
10625
+ default: boolean;
10626
+ };
10627
+ useFocusProp: {
10628
+ type: BooleanConstructor;
10629
+ default: boolean;
10630
+ };
10631
+ focus: {
10632
+ type: BooleanConstructor;
10633
+ default: boolean;
10634
+ };
10590
10635
  }>> & Readonly<{
10591
10636
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
10592
10637
  }>, {
10638
+ focus: boolean;
10593
10639
  type: string;
10594
- mask: string | unknown[];
10595
10640
  size: string;
10641
+ mask: string | unknown[];
10596
10642
  hasIconLeft: boolean;
10597
10643
  hasIconRight: boolean;
10644
+ hasClearIcon: boolean;
10598
10645
  modelValue: string;
10599
10646
  nativeType: string;
10600
10647
  maxlength: number;
10648
+ readonly: boolean;
10649
+ useFocusProp: boolean;
10601
10650
  }, {}, {}, {
10602
10651
  mask: any;
10603
10652
  }, string, ComponentProvideOptions, true, {}, any>;
@@ -10682,15 +10731,15 @@ default: string;
10682
10731
  }>> & Readonly<{}>, {
10683
10732
  disabled: boolean;
10684
10733
  error: string | boolean;
10734
+ tooltip: string;
10685
10735
  label: string;
10686
10736
  size: string;
10687
- tooltip: string;
10688
10737
  fixedLabel: boolean;
10689
10738
  message: string;
10690
10739
  }, {}, {
10691
10740
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
10692
- label: string;
10693
10741
  tooltip: string;
10742
+ label: string;
10694
10743
  useHtmlTooltip: boolean;
10695
10744
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
10696
10745
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -10839,16 +10888,32 @@ disabled: {
10839
10888
  type: BooleanConstructor;
10840
10889
  default: boolean;
10841
10890
  };
10842
- }>, {}, {
10843
- val: string;
10844
- }, {
10845
- computedError(): string | boolean;
10846
- }, {
10847
- fullySanitize: fullySanitize;
10848
- }, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
10849
- placeholder: {
10850
- type: StringConstructor;
10851
- default: string;
10891
+ readonly: {
10892
+ type: BooleanConstructor;
10893
+ default: boolean;
10894
+ };
10895
+ useFocusProp: {
10896
+ type: BooleanConstructor;
10897
+ default: boolean;
10898
+ };
10899
+ focus: {
10900
+ type: BooleanConstructor;
10901
+ default: boolean;
10902
+ };
10903
+ showClear: {
10904
+ type: BooleanConstructor;
10905
+ default: boolean;
10906
+ };
10907
+ }>, {}, {
10908
+ val: string;
10909
+ }, {
10910
+ computedError(): string | boolean;
10911
+ }, {
10912
+ fullySanitize: fullySanitize;
10913
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
10914
+ placeholder: {
10915
+ type: StringConstructor;
10916
+ default: string;
10852
10917
  };
10853
10918
  type: {
10854
10919
  type: StringConstructor;
@@ -10923,25 +10988,46 @@ disabled: {
10923
10988
  type: BooleanConstructor;
10924
10989
  default: boolean;
10925
10990
  };
10991
+ readonly: {
10992
+ type: BooleanConstructor;
10993
+ default: boolean;
10994
+ };
10995
+ useFocusProp: {
10996
+ type: BooleanConstructor;
10997
+ default: boolean;
10998
+ };
10999
+ focus: {
11000
+ type: BooleanConstructor;
11001
+ default: boolean;
11002
+ };
11003
+ showClear: {
11004
+ type: BooleanConstructor;
11005
+ default: boolean;
11006
+ };
10926
11007
  }>> & Readonly<{
10927
11008
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
11009
+ onClear?: ((...args: any[]) => any) | undefined;
10928
11010
  }>, {
10929
11011
  disabled: boolean;
11012
+ focus: boolean;
10930
11013
  type: string;
10931
11014
  placeholder: string;
11015
+ tooltip: string;
10932
11016
  label: string;
10933
- mask: string | unknown[];
10934
11017
  size: string;
10935
- tooltip: string;
11018
+ mask: string | unknown[];
10936
11019
  message: string;
10937
11020
  modelValue: string;
10938
11021
  nativeType: string;
10939
11022
  maxlength: number | null;
11023
+ readonly: boolean;
11024
+ useFocusProp: boolean;
10940
11025
  iconLeft: string;
10941
11026
  iconRight: string;
10942
11027
  iconLeftClickable: boolean;
10943
11028
  iconRightClickable: boolean;
10944
11029
  allowTogglePassword: boolean;
11030
+ showClear: boolean;
10945
11031
  errors: string | unknown[];
10946
11032
  hasCloudyColor: boolean;
10947
11033
  showMaxlengthCounter: boolean;
@@ -10996,6 +11082,22 @@ disabled: {
10996
11082
  type: BooleanConstructor;
10997
11083
  default: boolean;
10998
11084
  };
11085
+ readonly: {
11086
+ type: BooleanConstructor;
11087
+ default: boolean;
11088
+ };
11089
+ useFocusProp: {
11090
+ type: BooleanConstructor;
11091
+ default: boolean;
11092
+ };
11093
+ focus: {
11094
+ type: BooleanConstructor;
11095
+ default: boolean;
11096
+ };
11097
+ showClear: {
11098
+ type: BooleanConstructor;
11099
+ default: boolean;
11100
+ };
10999
11101
  }>, {}, {
11000
11102
  isFocused: boolean;
11001
11103
  showPassword: boolean;
@@ -11005,12 +11107,13 @@ iconRightSvg(): string;
11005
11107
  iconScheme(): "fg-base" | "fg-muted";
11006
11108
  attributes(): any;
11007
11109
  }, {
11008
- focus(): void;
11110
+ focusInput(): void;
11009
11111
  onFocus(): void;
11010
11112
  onBlur(): void;
11011
11113
  onIconLeftClick(): void;
11114
+ onClearClick(): void;
11012
11115
  onIconRightClick(): void;
11013
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("icon-left-click" | "icon-right-click")[], "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
11116
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "icon-left-click" | "icon-right-click")[], "clear" | "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
11014
11117
  placeholder: {
11015
11118
  type: StringConstructor;
11016
11119
  default: null;
@@ -11060,22 +11163,43 @@ disabled: {
11060
11163
  type: BooleanConstructor;
11061
11164
  default: boolean;
11062
11165
  };
11166
+ readonly: {
11167
+ type: BooleanConstructor;
11168
+ default: boolean;
11169
+ };
11170
+ useFocusProp: {
11171
+ type: BooleanConstructor;
11172
+ default: boolean;
11173
+ };
11174
+ focus: {
11175
+ type: BooleanConstructor;
11176
+ default: boolean;
11177
+ };
11178
+ showClear: {
11179
+ type: BooleanConstructor;
11180
+ default: boolean;
11181
+ };
11063
11182
  }>> & Readonly<{
11183
+ onClear?: ((...args: any[]) => any) | undefined;
11064
11184
  "onIcon-left-click"?: ((...args: any[]) => any) | undefined;
11065
11185
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
11066
11186
  }>, {
11067
11187
  disabled: boolean;
11188
+ focus: boolean;
11068
11189
  type: string;
11069
11190
  placeholder: string;
11070
11191
  size: string;
11071
11192
  modelValue: string;
11072
11193
  nativeType: string;
11073
11194
  maxlength: number;
11195
+ readonly: boolean;
11196
+ useFocusProp: boolean;
11074
11197
  iconLeft: string;
11075
11198
  iconRight: string;
11076
11199
  iconLeftClickable: boolean;
11077
11200
  iconRightClickable: boolean;
11078
11201
  allowTogglePassword: boolean;
11202
+ showClear: boolean;
11079
11203
  }, {}, {
11080
11204
  BaseInput: DefineComponent<ExtractPropTypes< {
11081
11205
  type: {
@@ -11101,15 +11225,29 @@ default: string;
11101
11225
  };
11102
11226
  hasIconLeft: BooleanConstructor;
11103
11227
  hasIconRight: BooleanConstructor;
11228
+ hasClearIcon: BooleanConstructor;
11104
11229
  maxlength: {
11105
11230
  type: NumberConstructor;
11106
11231
  default: null;
11107
11232
  };
11233
+ readonly: {
11234
+ type: BooleanConstructor;
11235
+ default: boolean;
11236
+ };
11237
+ useFocusProp: {
11238
+ type: BooleanConstructor;
11239
+ default: boolean;
11240
+ };
11241
+ focus: {
11242
+ type: BooleanConstructor;
11243
+ default: boolean;
11244
+ };
11108
11245
  }>, {}, {}, {
11109
11246
  attributes(): any;
11110
11247
  classes(): (string | {
11111
11248
  'input--has-icon-left': boolean;
11112
11249
  'input--has-icon-right': boolean;
11250
+ 'input--has-clear-icon': boolean;
11113
11251
  })[];
11114
11252
  }, {
11115
11253
  fullySanitize: fullySanitize;
@@ -11137,21 +11275,38 @@ default: string;
11137
11275
  };
11138
11276
  hasIconLeft: BooleanConstructor;
11139
11277
  hasIconRight: BooleanConstructor;
11278
+ hasClearIcon: BooleanConstructor;
11140
11279
  maxlength: {
11141
11280
  type: NumberConstructor;
11142
11281
  default: null;
11143
11282
  };
11283
+ readonly: {
11284
+ type: BooleanConstructor;
11285
+ default: boolean;
11286
+ };
11287
+ useFocusProp: {
11288
+ type: BooleanConstructor;
11289
+ default: boolean;
11290
+ };
11291
+ focus: {
11292
+ type: BooleanConstructor;
11293
+ default: boolean;
11294
+ };
11144
11295
  }>> & Readonly<{
11145
11296
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
11146
11297
  }>, {
11298
+ focus: boolean;
11147
11299
  type: string;
11148
- mask: string | unknown[];
11149
11300
  size: string;
11301
+ mask: string | unknown[];
11150
11302
  hasIconLeft: boolean;
11151
11303
  hasIconRight: boolean;
11304
+ hasClearIcon: boolean;
11152
11305
  modelValue: string;
11153
11306
  nativeType: string;
11154
11307
  maxlength: number;
11308
+ readonly: boolean;
11309
+ useFocusProp: boolean;
11155
11310
  }, {}, {}, {
11156
11311
  mask: any;
11157
11312
  }, string, ComponentProvideOptions, true, {}, any>;
@@ -11236,15 +11391,15 @@ default: string;
11236
11391
  }>> & Readonly<{}>, {
11237
11392
  disabled: boolean;
11238
11393
  error: string | boolean;
11394
+ tooltip: string;
11239
11395
  label: string;
11240
11396
  size: string;
11241
- tooltip: string;
11242
11397
  fixedLabel: boolean;
11243
11398
  message: string;
11244
11399
  }, {}, {
11245
11400
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
11246
- label: string;
11247
11401
  tooltip: string;
11402
+ label: string;
11248
11403
  useHtmlTooltip: boolean;
11249
11404
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
11250
11405
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -11307,7 +11462,6 @@ name: string;
11307
11462
  }[];
11308
11463
  disableClear: boolean;
11309
11464
  translations: Record<string, unknown>;
11310
- variant: "card" | "popover";
11311
11465
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
11312
11466
 
11313
11467
  export declare const unnnicDatePicker: DefineComponent<DatePickerProps, {
@@ -11366,7 +11520,6 @@ name: string;
11366
11520
  }[];
11367
11521
  disableClear: boolean;
11368
11522
  translations: Record<string, unknown>;
11369
- variant: "card" | "popover";
11370
11523
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
11371
11524
 
11372
11525
  export declare const UnnnicDialog: {
@@ -11886,9 +12039,9 @@ iconColor: SchemeColor_2;
11886
12039
  export declare const UnnnicDrawer: {
11887
12040
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
11888
12041
  $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
11889
- title: string;
11890
12042
  class: string;
11891
12043
  size: string;
12044
+ title: string;
11892
12045
  modelValue: boolean;
11893
12046
  description: string;
11894
12047
  closeIcon: string;
@@ -11902,9 +12055,9 @@ export declare const UnnnicDrawer: {
11902
12055
  withoutOverlay: boolean;
11903
12056
  distinctCloseBack: boolean;
11904
12057
  $props: {
11905
- readonly title?: string | undefined;
11906
12058
  readonly class?: string | undefined;
11907
12059
  readonly size?: string | undefined;
12060
+ readonly title?: string | undefined;
11908
12061
  readonly modelValue?: boolean | undefined;
11909
12062
  readonly description?: string | undefined;
11910
12063
  readonly closeIcon?: string | undefined;
@@ -11927,9 +12080,9 @@ export declare const UnnnicDrawer: {
11927
12080
  Defaults: {};
11928
12081
  }, Readonly<{}> & Readonly<{}>, {
11929
12082
  $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
11930
- title: string;
11931
12083
  class: string;
11932
12084
  size: string;
12085
+ title: string;
11933
12086
  modelValue: boolean;
11934
12087
  description: string;
11935
12088
  closeIcon: string;
@@ -11943,9 +12096,9 @@ export declare const UnnnicDrawer: {
11943
12096
  withoutOverlay: boolean;
11944
12097
  distinctCloseBack: boolean;
11945
12098
  $props: {
11946
- readonly title?: string | undefined;
11947
12099
  readonly class?: string | undefined;
11948
12100
  readonly size?: string | undefined;
12101
+ readonly title?: string | undefined;
11949
12102
  readonly modelValue?: boolean | undefined;
11950
12103
  readonly description?: string | undefined;
11951
12104
  readonly closeIcon?: string | undefined;
@@ -11965,9 +12118,9 @@ export declare const UnnnicDrawer: {
11965
12118
  __isSuspense?: never;
11966
12119
  } & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
11967
12120
  $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
11968
- title: string;
11969
12121
  class: string;
11970
12122
  size: string;
12123
+ title: string;
11971
12124
  modelValue: boolean;
11972
12125
  description: string;
11973
12126
  closeIcon: string;
@@ -11981,9 +12134,9 @@ secondaryButtonText: string;
11981
12134
  withoutOverlay: boolean;
11982
12135
  distinctCloseBack: boolean;
11983
12136
  $props: {
11984
- readonly title?: string | undefined;
11985
12137
  readonly class?: string | undefined;
11986
12138
  readonly size?: string | undefined;
12139
+ readonly title?: string | undefined;
11987
12140
  readonly modelValue?: boolean | undefined;
11988
12141
  readonly description?: string | undefined;
11989
12142
  readonly closeIcon?: string | undefined;
@@ -12007,9 +12160,9 @@ readonly distinctCloseBack?: boolean | undefined;
12007
12160
  export declare const unnnicDrawer: {
12008
12161
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
12009
12162
  $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
12010
- title: string;
12011
12163
  class: string;
12012
12164
  size: string;
12165
+ title: string;
12013
12166
  modelValue: boolean;
12014
12167
  description: string;
12015
12168
  closeIcon: string;
@@ -12023,9 +12176,9 @@ export declare const unnnicDrawer: {
12023
12176
  withoutOverlay: boolean;
12024
12177
  distinctCloseBack: boolean;
12025
12178
  $props: {
12026
- readonly title?: string | undefined;
12027
12179
  readonly class?: string | undefined;
12028
12180
  readonly size?: string | undefined;
12181
+ readonly title?: string | undefined;
12029
12182
  readonly modelValue?: boolean | undefined;
12030
12183
  readonly description?: string | undefined;
12031
12184
  readonly closeIcon?: string | undefined;
@@ -12048,9 +12201,9 @@ export declare const unnnicDrawer: {
12048
12201
  Defaults: {};
12049
12202
  }, Readonly<{}> & Readonly<{}>, {
12050
12203
  $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
12051
- title: string;
12052
12204
  class: string;
12053
12205
  size: string;
12206
+ title: string;
12054
12207
  modelValue: boolean;
12055
12208
  description: string;
12056
12209
  closeIcon: string;
@@ -12064,9 +12217,9 @@ export declare const unnnicDrawer: {
12064
12217
  withoutOverlay: boolean;
12065
12218
  distinctCloseBack: boolean;
12066
12219
  $props: {
12067
- readonly title?: string | undefined;
12068
12220
  readonly class?: string | undefined;
12069
12221
  readonly size?: string | undefined;
12222
+ readonly title?: string | undefined;
12070
12223
  readonly modelValue?: boolean | undefined;
12071
12224
  readonly description?: string | undefined;
12072
12225
  readonly closeIcon?: string | undefined;
@@ -12086,9 +12239,9 @@ export declare const unnnicDrawer: {
12086
12239
  __isSuspense?: never;
12087
12240
  } & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
12088
12241
  $emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
12089
- title: string;
12090
12242
  class: string;
12091
12243
  size: string;
12244
+ title: string;
12092
12245
  modelValue: boolean;
12093
12246
  description: string;
12094
12247
  closeIcon: string;
@@ -12102,9 +12255,9 @@ secondaryButtonText: string;
12102
12255
  withoutOverlay: boolean;
12103
12256
  distinctCloseBack: boolean;
12104
12257
  $props: {
12105
- readonly title?: string | undefined;
12106
12258
  readonly class?: string | undefined;
12107
12259
  readonly size?: string | undefined;
12260
+ readonly title?: string | undefined;
12108
12261
  readonly modelValue?: boolean | undefined;
12109
12262
  readonly description?: string | undefined;
12110
12263
  readonly closeIcon?: string | undefined;
@@ -12912,15 +13065,15 @@ default: string;
12912
13065
  }>> & Readonly<{}>, {
12913
13066
  disabled: boolean;
12914
13067
  error: string | boolean;
13068
+ tooltip: string;
12915
13069
  label: string;
12916
13070
  size: string;
12917
- tooltip: string;
12918
13071
  fixedLabel: boolean;
12919
13072
  message: string;
12920
13073
  }, {}, {
12921
13074
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
12922
- label: string;
12923
13075
  tooltip: string;
13076
+ label: string;
12924
13077
  useHtmlTooltip: boolean;
12925
13078
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
12926
13079
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -12990,15 +13143,15 @@ default: string;
12990
13143
  }>> & Readonly<{}>, {
12991
13144
  disabled: boolean;
12992
13145
  error: string | boolean;
13146
+ tooltip: string;
12993
13147
  label: string;
12994
13148
  size: string;
12995
- tooltip: string;
12996
13149
  fixedLabel: boolean;
12997
13150
  message: string;
12998
13151
  }, {}, {
12999
13152
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
13000
- label: string;
13001
13153
  tooltip: string;
13154
+ label: string;
13002
13155
  useHtmlTooltip: boolean;
13003
13156
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
13004
13157
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -13231,8 +13384,8 @@ UnnnicButton: {
13231
13384
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
13232
13385
  disabled: boolean;
13233
13386
  type: ButtonType;
13234
- text: string;
13235
13387
  size: ButtonSize;
13388
+ text: string;
13236
13389
  iconLeft: string;
13237
13390
  iconRight: string;
13238
13391
  float: boolean;
@@ -13249,8 +13402,8 @@ Defaults: {};
13249
13402
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
13250
13403
  disabled: boolean;
13251
13404
  type: ButtonType;
13252
- text: string;
13253
13405
  size: ButtonSize;
13406
+ text: string;
13254
13407
  iconLeft: string;
13255
13408
  iconRight: string;
13256
13409
  float: boolean;
@@ -13264,8 +13417,8 @@ __isSuspense?: never;
13264
13417
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
13265
13418
  disabled: boolean;
13266
13419
  type: ButtonType;
13267
- text: string;
13268
13420
  size: ButtonSize;
13421
+ text: string;
13269
13422
  iconLeft: string;
13270
13423
  iconRight: string;
13271
13424
  float: boolean;
@@ -13380,8 +13533,8 @@ UnnnicButton: {
13380
13533
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
13381
13534
  disabled: boolean;
13382
13535
  type: ButtonType;
13383
- text: string;
13384
13536
  size: ButtonSize;
13537
+ text: string;
13385
13538
  iconLeft: string;
13386
13539
  iconRight: string;
13387
13540
  float: boolean;
@@ -13398,8 +13551,8 @@ Defaults: {};
13398
13551
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
13399
13552
  disabled: boolean;
13400
13553
  type: ButtonType;
13401
- text: string;
13402
13554
  size: ButtonSize;
13555
+ text: string;
13403
13556
  iconLeft: string;
13404
13557
  iconRight: string;
13405
13558
  float: boolean;
@@ -13413,8 +13566,8 @@ __isSuspense?: never;
13413
13566
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
13414
13567
  disabled: boolean;
13415
13568
  type: ButtonType;
13416
- text: string;
13417
13569
  size: ButtonSize;
13570
+ text: string;
13418
13571
  iconLeft: string;
13419
13572
  iconRight: string;
13420
13573
  float: boolean;
@@ -13587,13 +13740,29 @@ disabled: {
13587
13740
  type: BooleanConstructor;
13588
13741
  default: boolean;
13589
13742
  };
13743
+ readonly: {
13744
+ type: BooleanConstructor;
13745
+ default: boolean;
13746
+ };
13747
+ useFocusProp: {
13748
+ type: BooleanConstructor;
13749
+ default: boolean;
13750
+ };
13751
+ focus: {
13752
+ type: BooleanConstructor;
13753
+ default: boolean;
13754
+ };
13755
+ showClear: {
13756
+ type: BooleanConstructor;
13757
+ default: boolean;
13758
+ };
13590
13759
  }>, {}, {
13591
13760
  val: string;
13592
13761
  }, {
13593
13762
  computedError(): string | boolean;
13594
13763
  }, {
13595
13764
  fullySanitize: fullySanitize;
13596
- }, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
13765
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
13597
13766
  placeholder: {
13598
13767
  type: StringConstructor;
13599
13768
  default: string;
@@ -13671,25 +13840,46 @@ disabled: {
13671
13840
  type: BooleanConstructor;
13672
13841
  default: boolean;
13673
13842
  };
13843
+ readonly: {
13844
+ type: BooleanConstructor;
13845
+ default: boolean;
13846
+ };
13847
+ useFocusProp: {
13848
+ type: BooleanConstructor;
13849
+ default: boolean;
13850
+ };
13851
+ focus: {
13852
+ type: BooleanConstructor;
13853
+ default: boolean;
13854
+ };
13855
+ showClear: {
13856
+ type: BooleanConstructor;
13857
+ default: boolean;
13858
+ };
13674
13859
  }>> & Readonly<{
13675
13860
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
13861
+ onClear?: ((...args: any[]) => any) | undefined;
13676
13862
  }>, {
13677
13863
  disabled: boolean;
13864
+ focus: boolean;
13678
13865
  type: string;
13679
13866
  placeholder: string;
13867
+ tooltip: string;
13680
13868
  label: string;
13681
- mask: string | unknown[];
13682
13869
  size: string;
13683
- tooltip: string;
13870
+ mask: string | unknown[];
13684
13871
  message: string;
13685
13872
  modelValue: string;
13686
13873
  nativeType: string;
13687
13874
  maxlength: number | null;
13875
+ readonly: boolean;
13876
+ useFocusProp: boolean;
13688
13877
  iconLeft: string;
13689
13878
  iconRight: string;
13690
13879
  iconLeftClickable: boolean;
13691
13880
  iconRightClickable: boolean;
13692
13881
  allowTogglePassword: boolean;
13882
+ showClear: boolean;
13693
13883
  errors: string | unknown[];
13694
13884
  hasCloudyColor: boolean;
13695
13885
  showMaxlengthCounter: boolean;
@@ -13744,6 +13934,22 @@ disabled: {
13744
13934
  type: BooleanConstructor;
13745
13935
  default: boolean;
13746
13936
  };
13937
+ readonly: {
13938
+ type: BooleanConstructor;
13939
+ default: boolean;
13940
+ };
13941
+ useFocusProp: {
13942
+ type: BooleanConstructor;
13943
+ default: boolean;
13944
+ };
13945
+ focus: {
13946
+ type: BooleanConstructor;
13947
+ default: boolean;
13948
+ };
13949
+ showClear: {
13950
+ type: BooleanConstructor;
13951
+ default: boolean;
13952
+ };
13747
13953
  }>, {}, {
13748
13954
  isFocused: boolean;
13749
13955
  showPassword: boolean;
@@ -13753,12 +13959,13 @@ iconRightSvg(): string;
13753
13959
  iconScheme(): "fg-base" | "fg-muted";
13754
13960
  attributes(): any;
13755
13961
  }, {
13756
- focus(): void;
13962
+ focusInput(): void;
13757
13963
  onFocus(): void;
13758
13964
  onBlur(): void;
13759
13965
  onIconLeftClick(): void;
13966
+ onClearClick(): void;
13760
13967
  onIconRightClick(): void;
13761
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("icon-left-click" | "icon-right-click")[], "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
13968
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "icon-left-click" | "icon-right-click")[], "clear" | "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
13762
13969
  placeholder: {
13763
13970
  type: StringConstructor;
13764
13971
  default: null;
@@ -13808,22 +14015,43 @@ disabled: {
13808
14015
  type: BooleanConstructor;
13809
14016
  default: boolean;
13810
14017
  };
14018
+ readonly: {
14019
+ type: BooleanConstructor;
14020
+ default: boolean;
14021
+ };
14022
+ useFocusProp: {
14023
+ type: BooleanConstructor;
14024
+ default: boolean;
14025
+ };
14026
+ focus: {
14027
+ type: BooleanConstructor;
14028
+ default: boolean;
14029
+ };
14030
+ showClear: {
14031
+ type: BooleanConstructor;
14032
+ default: boolean;
14033
+ };
13811
14034
  }>> & Readonly<{
14035
+ onClear?: ((...args: any[]) => any) | undefined;
13812
14036
  "onIcon-left-click"?: ((...args: any[]) => any) | undefined;
13813
14037
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
13814
14038
  }>, {
13815
14039
  disabled: boolean;
14040
+ focus: boolean;
13816
14041
  type: string;
13817
14042
  placeholder: string;
13818
14043
  size: string;
13819
14044
  modelValue: string;
13820
14045
  nativeType: string;
13821
14046
  maxlength: number;
14047
+ readonly: boolean;
14048
+ useFocusProp: boolean;
13822
14049
  iconLeft: string;
13823
14050
  iconRight: string;
13824
14051
  iconLeftClickable: boolean;
13825
14052
  iconRightClickable: boolean;
13826
14053
  allowTogglePassword: boolean;
14054
+ showClear: boolean;
13827
14055
  }, {}, {
13828
14056
  BaseInput: DefineComponent<ExtractPropTypes< {
13829
14057
  type: {
@@ -13849,15 +14077,29 @@ default: string;
13849
14077
  };
13850
14078
  hasIconLeft: BooleanConstructor;
13851
14079
  hasIconRight: BooleanConstructor;
14080
+ hasClearIcon: BooleanConstructor;
13852
14081
  maxlength: {
13853
14082
  type: NumberConstructor;
13854
14083
  default: null;
13855
14084
  };
14085
+ readonly: {
14086
+ type: BooleanConstructor;
14087
+ default: boolean;
14088
+ };
14089
+ useFocusProp: {
14090
+ type: BooleanConstructor;
14091
+ default: boolean;
14092
+ };
14093
+ focus: {
14094
+ type: BooleanConstructor;
14095
+ default: boolean;
14096
+ };
13856
14097
  }>, {}, {}, {
13857
14098
  attributes(): any;
13858
14099
  classes(): (string | {
13859
14100
  'input--has-icon-left': boolean;
13860
14101
  'input--has-icon-right': boolean;
14102
+ 'input--has-clear-icon': boolean;
13861
14103
  })[];
13862
14104
  }, {
13863
14105
  fullySanitize: fullySanitize;
@@ -13885,21 +14127,38 @@ default: string;
13885
14127
  };
13886
14128
  hasIconLeft: BooleanConstructor;
13887
14129
  hasIconRight: BooleanConstructor;
14130
+ hasClearIcon: BooleanConstructor;
13888
14131
  maxlength: {
13889
14132
  type: NumberConstructor;
13890
14133
  default: null;
13891
14134
  };
14135
+ readonly: {
14136
+ type: BooleanConstructor;
14137
+ default: boolean;
14138
+ };
14139
+ useFocusProp: {
14140
+ type: BooleanConstructor;
14141
+ default: boolean;
14142
+ };
14143
+ focus: {
14144
+ type: BooleanConstructor;
14145
+ default: boolean;
14146
+ };
13892
14147
  }>> & Readonly<{
13893
14148
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
13894
14149
  }>, {
14150
+ focus: boolean;
13895
14151
  type: string;
13896
- mask: string | unknown[];
13897
14152
  size: string;
14153
+ mask: string | unknown[];
13898
14154
  hasIconLeft: boolean;
13899
14155
  hasIconRight: boolean;
14156
+ hasClearIcon: boolean;
13900
14157
  modelValue: string;
13901
14158
  nativeType: string;
13902
14159
  maxlength: number;
14160
+ readonly: boolean;
14161
+ useFocusProp: boolean;
13903
14162
  }, {}, {}, {
13904
14163
  mask: any;
13905
14164
  }, string, ComponentProvideOptions, true, {}, any>;
@@ -13984,15 +14243,15 @@ default: string;
13984
14243
  }>> & Readonly<{}>, {
13985
14244
  disabled: boolean;
13986
14245
  error: string | boolean;
14246
+ tooltip: string;
13987
14247
  label: string;
13988
14248
  size: string;
13989
- tooltip: string;
13990
14249
  fixedLabel: boolean;
13991
14250
  message: string;
13992
14251
  }, {}, {
13993
14252
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
13994
- label: string;
13995
14253
  tooltip: string;
14254
+ label: string;
13996
14255
  useHtmlTooltip: boolean;
13997
14256
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
13998
14257
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -14076,13 +14335,29 @@ disabled: {
14076
14335
  type: BooleanConstructor;
14077
14336
  default: boolean;
14078
14337
  };
14338
+ readonly: {
14339
+ type: BooleanConstructor;
14340
+ default: boolean;
14341
+ };
14342
+ useFocusProp: {
14343
+ type: BooleanConstructor;
14344
+ default: boolean;
14345
+ };
14346
+ focus: {
14347
+ type: BooleanConstructor;
14348
+ default: boolean;
14349
+ };
14350
+ showClear: {
14351
+ type: BooleanConstructor;
14352
+ default: boolean;
14353
+ };
14079
14354
  }>, {}, {
14080
14355
  val: string;
14081
14356
  }, {
14082
14357
  computedError(): string | boolean;
14083
14358
  }, {
14084
14359
  fullySanitize: fullySanitize;
14085
- }, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
14360
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
14086
14361
  placeholder: {
14087
14362
  type: StringConstructor;
14088
14363
  default: string;
@@ -14160,25 +14435,46 @@ disabled: {
14160
14435
  type: BooleanConstructor;
14161
14436
  default: boolean;
14162
14437
  };
14438
+ readonly: {
14439
+ type: BooleanConstructor;
14440
+ default: boolean;
14441
+ };
14442
+ useFocusProp: {
14443
+ type: BooleanConstructor;
14444
+ default: boolean;
14445
+ };
14446
+ focus: {
14447
+ type: BooleanConstructor;
14448
+ default: boolean;
14449
+ };
14450
+ showClear: {
14451
+ type: BooleanConstructor;
14452
+ default: boolean;
14453
+ };
14163
14454
  }>> & Readonly<{
14164
14455
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
14456
+ onClear?: ((...args: any[]) => any) | undefined;
14165
14457
  }>, {
14166
14458
  disabled: boolean;
14459
+ focus: boolean;
14167
14460
  type: string;
14168
14461
  placeholder: string;
14462
+ tooltip: string;
14169
14463
  label: string;
14170
- mask: string | unknown[];
14171
14464
  size: string;
14172
- tooltip: string;
14465
+ mask: string | unknown[];
14173
14466
  message: string;
14174
14467
  modelValue: string;
14175
14468
  nativeType: string;
14176
14469
  maxlength: number | null;
14470
+ readonly: boolean;
14471
+ useFocusProp: boolean;
14177
14472
  iconLeft: string;
14178
14473
  iconRight: string;
14179
14474
  iconLeftClickable: boolean;
14180
14475
  iconRightClickable: boolean;
14181
14476
  allowTogglePassword: boolean;
14477
+ showClear: boolean;
14182
14478
  errors: string | unknown[];
14183
14479
  hasCloudyColor: boolean;
14184
14480
  showMaxlengthCounter: boolean;
@@ -14233,6 +14529,22 @@ disabled: {
14233
14529
  type: BooleanConstructor;
14234
14530
  default: boolean;
14235
14531
  };
14532
+ readonly: {
14533
+ type: BooleanConstructor;
14534
+ default: boolean;
14535
+ };
14536
+ useFocusProp: {
14537
+ type: BooleanConstructor;
14538
+ default: boolean;
14539
+ };
14540
+ focus: {
14541
+ type: BooleanConstructor;
14542
+ default: boolean;
14543
+ };
14544
+ showClear: {
14545
+ type: BooleanConstructor;
14546
+ default: boolean;
14547
+ };
14236
14548
  }>, {}, {
14237
14549
  isFocused: boolean;
14238
14550
  showPassword: boolean;
@@ -14242,12 +14554,13 @@ iconRightSvg(): string;
14242
14554
  iconScheme(): "fg-base" | "fg-muted";
14243
14555
  attributes(): any;
14244
14556
  }, {
14245
- focus(): void;
14557
+ focusInput(): void;
14246
14558
  onFocus(): void;
14247
14559
  onBlur(): void;
14248
14560
  onIconLeftClick(): void;
14561
+ onClearClick(): void;
14249
14562
  onIconRightClick(): void;
14250
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("icon-left-click" | "icon-right-click")[], "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
14563
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "icon-left-click" | "icon-right-click")[], "clear" | "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
14251
14564
  placeholder: {
14252
14565
  type: StringConstructor;
14253
14566
  default: null;
@@ -14297,22 +14610,43 @@ disabled: {
14297
14610
  type: BooleanConstructor;
14298
14611
  default: boolean;
14299
14612
  };
14613
+ readonly: {
14614
+ type: BooleanConstructor;
14615
+ default: boolean;
14616
+ };
14617
+ useFocusProp: {
14618
+ type: BooleanConstructor;
14619
+ default: boolean;
14620
+ };
14621
+ focus: {
14622
+ type: BooleanConstructor;
14623
+ default: boolean;
14624
+ };
14625
+ showClear: {
14626
+ type: BooleanConstructor;
14627
+ default: boolean;
14628
+ };
14300
14629
  }>> & Readonly<{
14630
+ onClear?: ((...args: any[]) => any) | undefined;
14301
14631
  "onIcon-left-click"?: ((...args: any[]) => any) | undefined;
14302
14632
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
14303
14633
  }>, {
14304
14634
  disabled: boolean;
14635
+ focus: boolean;
14305
14636
  type: string;
14306
14637
  placeholder: string;
14307
14638
  size: string;
14308
14639
  modelValue: string;
14309
14640
  nativeType: string;
14310
14641
  maxlength: number;
14642
+ readonly: boolean;
14643
+ useFocusProp: boolean;
14311
14644
  iconLeft: string;
14312
14645
  iconRight: string;
14313
14646
  iconLeftClickable: boolean;
14314
14647
  iconRightClickable: boolean;
14315
14648
  allowTogglePassword: boolean;
14649
+ showClear: boolean;
14316
14650
  }, {}, {
14317
14651
  BaseInput: DefineComponent<ExtractPropTypes< {
14318
14652
  type: {
@@ -14338,15 +14672,29 @@ default: string;
14338
14672
  };
14339
14673
  hasIconLeft: BooleanConstructor;
14340
14674
  hasIconRight: BooleanConstructor;
14675
+ hasClearIcon: BooleanConstructor;
14341
14676
  maxlength: {
14342
14677
  type: NumberConstructor;
14343
14678
  default: null;
14344
14679
  };
14680
+ readonly: {
14681
+ type: BooleanConstructor;
14682
+ default: boolean;
14683
+ };
14684
+ useFocusProp: {
14685
+ type: BooleanConstructor;
14686
+ default: boolean;
14687
+ };
14688
+ focus: {
14689
+ type: BooleanConstructor;
14690
+ default: boolean;
14691
+ };
14345
14692
  }>, {}, {}, {
14346
14693
  attributes(): any;
14347
14694
  classes(): (string | {
14348
14695
  'input--has-icon-left': boolean;
14349
14696
  'input--has-icon-right': boolean;
14697
+ 'input--has-clear-icon': boolean;
14350
14698
  })[];
14351
14699
  }, {
14352
14700
  fullySanitize: fullySanitize;
@@ -14374,21 +14722,38 @@ default: string;
14374
14722
  };
14375
14723
  hasIconLeft: BooleanConstructor;
14376
14724
  hasIconRight: BooleanConstructor;
14725
+ hasClearIcon: BooleanConstructor;
14377
14726
  maxlength: {
14378
14727
  type: NumberConstructor;
14379
14728
  default: null;
14380
14729
  };
14730
+ readonly: {
14731
+ type: BooleanConstructor;
14732
+ default: boolean;
14733
+ };
14734
+ useFocusProp: {
14735
+ type: BooleanConstructor;
14736
+ default: boolean;
14737
+ };
14738
+ focus: {
14739
+ type: BooleanConstructor;
14740
+ default: boolean;
14741
+ };
14381
14742
  }>> & Readonly<{
14382
14743
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
14383
14744
  }>, {
14745
+ focus: boolean;
14384
14746
  type: string;
14385
- mask: string | unknown[];
14386
14747
  size: string;
14748
+ mask: string | unknown[];
14387
14749
  hasIconLeft: boolean;
14388
14750
  hasIconRight: boolean;
14751
+ hasClearIcon: boolean;
14389
14752
  modelValue: string;
14390
14753
  nativeType: string;
14391
14754
  maxlength: number;
14755
+ readonly: boolean;
14756
+ useFocusProp: boolean;
14392
14757
  }, {}, {}, {
14393
14758
  mask: any;
14394
14759
  }, string, ComponentProvideOptions, true, {}, any>;
@@ -14473,15 +14838,15 @@ default: string;
14473
14838
  }>> & Readonly<{}>, {
14474
14839
  disabled: boolean;
14475
14840
  error: string | boolean;
14841
+ tooltip: string;
14476
14842
  label: string;
14477
14843
  size: string;
14478
- tooltip: string;
14479
14844
  fixedLabel: boolean;
14480
14845
  message: string;
14481
14846
  }, {}, {
14482
14847
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
14483
- label: string;
14484
14848
  tooltip: string;
14849
+ label: string;
14485
14850
  useHtmlTooltip: boolean;
14486
14851
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
14487
14852
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -14573,8 +14938,8 @@ disabled: boolean;
14573
14938
  type: string;
14574
14939
  size: string;
14575
14940
  nativeType: string;
14576
- allowTogglePassword: boolean;
14577
14941
  readonly: boolean;
14942
+ allowTogglePassword: boolean;
14578
14943
  }, {}, {
14579
14944
  UnnnicIcon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
14580
14945
  click: (event: Event) => any;
@@ -14675,8 +15040,8 @@ disabled: boolean;
14675
15040
  type: string;
14676
15041
  size: string;
14677
15042
  nativeType: string;
14678
- allowTogglePassword: boolean;
14679
15043
  readonly: boolean;
15044
+ allowTogglePassword: boolean;
14680
15045
  }, {}, {
14681
15046
  UnnnicIcon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
14682
15047
  click: (event: Event) => any;
@@ -14975,6 +15340,7 @@ attention: string;
14975
15340
  };
14976
15341
  }, {}, {
14977
15342
  close(): void;
15343
+ updateBodyOverflow(isHidden: any): void;
14978
15344
  persistentHandler(event: any): void;
14979
15345
  }, {
14980
15346
  props: {
@@ -15045,8 +15411,8 @@ onPrimaryButtonClick?: ((...args: any[]) => any) | undefined;
15045
15411
  onSecondaryButtonClick?: ((...args: any[]) => any) | undefined;
15046
15412
  }>, {
15047
15413
  type: string;
15048
- title: string;
15049
15414
  size: string;
15415
+ title: string;
15050
15416
  icon: string;
15051
15417
  iconScheme: string;
15052
15418
  persistent: boolean;
@@ -15060,8 +15426,8 @@ UnnnicButton: {
15060
15426
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
15061
15427
  disabled: boolean;
15062
15428
  type: ButtonType;
15063
- text: string;
15064
15429
  size: ButtonSize;
15430
+ text: string;
15065
15431
  iconLeft: string;
15066
15432
  iconRight: string;
15067
15433
  float: boolean;
@@ -15078,8 +15444,8 @@ Defaults: {};
15078
15444
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
15079
15445
  disabled: boolean;
15080
15446
  type: ButtonType;
15081
- text: string;
15082
15447
  size: ButtonSize;
15448
+ text: string;
15083
15449
  iconLeft: string;
15084
15450
  iconRight: string;
15085
15451
  float: boolean;
@@ -15093,8 +15459,8 @@ __isSuspense?: never;
15093
15459
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
15094
15460
  disabled: boolean;
15095
15461
  type: ButtonType;
15096
- text: string;
15097
15462
  size: ButtonSize;
15463
+ text: string;
15098
15464
  iconLeft: string;
15099
15465
  iconRight: string;
15100
15466
  float: boolean;
@@ -15376,6 +15742,7 @@ attention: string;
15376
15742
  };
15377
15743
  }, {}, {
15378
15744
  close(): void;
15745
+ updateBodyOverflow(isHidden: any): void;
15379
15746
  persistentHandler(event: any): void;
15380
15747
  }, {
15381
15748
  props: {
@@ -15446,8 +15813,8 @@ onPrimaryButtonClick?: ((...args: any[]) => any) | undefined;
15446
15813
  onSecondaryButtonClick?: ((...args: any[]) => any) | undefined;
15447
15814
  }>, {
15448
15815
  type: string;
15449
- title: string;
15450
15816
  size: string;
15817
+ title: string;
15451
15818
  icon: string;
15452
15819
  iconScheme: string;
15453
15820
  persistent: boolean;
@@ -15461,8 +15828,8 @@ UnnnicButton: {
15461
15828
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
15462
15829
  disabled: boolean;
15463
15830
  type: ButtonType;
15464
- text: string;
15465
15831
  size: ButtonSize;
15832
+ text: string;
15466
15833
  iconLeft: string;
15467
15834
  iconRight: string;
15468
15835
  float: boolean;
@@ -15479,8 +15846,8 @@ Defaults: {};
15479
15846
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
15480
15847
  disabled: boolean;
15481
15848
  type: ButtonType;
15482
- text: string;
15483
15849
  size: ButtonSize;
15850
+ text: string;
15484
15851
  iconLeft: string;
15485
15852
  iconRight: string;
15486
15853
  float: boolean;
@@ -15494,8 +15861,8 @@ __isSuspense?: never;
15494
15861
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
15495
15862
  disabled: boolean;
15496
15863
  type: ButtonType;
15497
- text: string;
15498
15864
  size: ButtonSize;
15865
+ text: string;
15499
15866
  iconLeft: string;
15500
15867
  iconRight: string;
15501
15868
  float: boolean;
@@ -15864,13 +16231,29 @@ disabled: {
15864
16231
  type: BooleanConstructor;
15865
16232
  default: boolean;
15866
16233
  };
16234
+ readonly: {
16235
+ type: BooleanConstructor;
16236
+ default: boolean;
16237
+ };
16238
+ useFocusProp: {
16239
+ type: BooleanConstructor;
16240
+ default: boolean;
16241
+ };
16242
+ focus: {
16243
+ type: BooleanConstructor;
16244
+ default: boolean;
16245
+ };
16246
+ showClear: {
16247
+ type: BooleanConstructor;
16248
+ default: boolean;
16249
+ };
15867
16250
  }>, {}, {
15868
16251
  val: string;
15869
16252
  }, {
15870
16253
  computedError(): string | boolean;
15871
16254
  }, {
15872
16255
  fullySanitize: fullySanitize;
15873
- }, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
16256
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
15874
16257
  placeholder: {
15875
16258
  type: StringConstructor;
15876
16259
  default: string;
@@ -15948,25 +16331,46 @@ disabled: {
15948
16331
  type: BooleanConstructor;
15949
16332
  default: boolean;
15950
16333
  };
16334
+ readonly: {
16335
+ type: BooleanConstructor;
16336
+ default: boolean;
16337
+ };
16338
+ useFocusProp: {
16339
+ type: BooleanConstructor;
16340
+ default: boolean;
16341
+ };
16342
+ focus: {
16343
+ type: BooleanConstructor;
16344
+ default: boolean;
16345
+ };
16346
+ showClear: {
16347
+ type: BooleanConstructor;
16348
+ default: boolean;
16349
+ };
15951
16350
  }>> & Readonly<{
15952
16351
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
16352
+ onClear?: ((...args: any[]) => any) | undefined;
15953
16353
  }>, {
15954
16354
  disabled: boolean;
16355
+ focus: boolean;
15955
16356
  type: string;
15956
16357
  placeholder: string;
16358
+ tooltip: string;
15957
16359
  label: string;
15958
- mask: string | unknown[];
15959
16360
  size: string;
15960
- tooltip: string;
16361
+ mask: string | unknown[];
15961
16362
  message: string;
15962
16363
  modelValue: string;
15963
16364
  nativeType: string;
15964
16365
  maxlength: number | null;
16366
+ readonly: boolean;
16367
+ useFocusProp: boolean;
15965
16368
  iconLeft: string;
15966
16369
  iconRight: string;
15967
16370
  iconLeftClickable: boolean;
15968
16371
  iconRightClickable: boolean;
15969
16372
  allowTogglePassword: boolean;
16373
+ showClear: boolean;
15970
16374
  errors: string | unknown[];
15971
16375
  hasCloudyColor: boolean;
15972
16376
  showMaxlengthCounter: boolean;
@@ -16021,6 +16425,22 @@ disabled: {
16021
16425
  type: BooleanConstructor;
16022
16426
  default: boolean;
16023
16427
  };
16428
+ readonly: {
16429
+ type: BooleanConstructor;
16430
+ default: boolean;
16431
+ };
16432
+ useFocusProp: {
16433
+ type: BooleanConstructor;
16434
+ default: boolean;
16435
+ };
16436
+ focus: {
16437
+ type: BooleanConstructor;
16438
+ default: boolean;
16439
+ };
16440
+ showClear: {
16441
+ type: BooleanConstructor;
16442
+ default: boolean;
16443
+ };
16024
16444
  }>, {}, {
16025
16445
  isFocused: boolean;
16026
16446
  showPassword: boolean;
@@ -16030,12 +16450,13 @@ iconRightSvg(): string;
16030
16450
  iconScheme(): "fg-base" | "fg-muted";
16031
16451
  attributes(): any;
16032
16452
  }, {
16033
- focus(): void;
16453
+ focusInput(): void;
16034
16454
  onFocus(): void;
16035
16455
  onBlur(): void;
16036
16456
  onIconLeftClick(): void;
16457
+ onClearClick(): void;
16037
16458
  onIconRightClick(): void;
16038
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("icon-left-click" | "icon-right-click")[], "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
16459
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "icon-left-click" | "icon-right-click")[], "clear" | "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
16039
16460
  placeholder: {
16040
16461
  type: StringConstructor;
16041
16462
  default: null;
@@ -16085,22 +16506,43 @@ disabled: {
16085
16506
  type: BooleanConstructor;
16086
16507
  default: boolean;
16087
16508
  };
16509
+ readonly: {
16510
+ type: BooleanConstructor;
16511
+ default: boolean;
16512
+ };
16513
+ useFocusProp: {
16514
+ type: BooleanConstructor;
16515
+ default: boolean;
16516
+ };
16517
+ focus: {
16518
+ type: BooleanConstructor;
16519
+ default: boolean;
16520
+ };
16521
+ showClear: {
16522
+ type: BooleanConstructor;
16523
+ default: boolean;
16524
+ };
16088
16525
  }>> & Readonly<{
16526
+ onClear?: ((...args: any[]) => any) | undefined;
16089
16527
  "onIcon-left-click"?: ((...args: any[]) => any) | undefined;
16090
16528
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
16091
16529
  }>, {
16092
16530
  disabled: boolean;
16531
+ focus: boolean;
16093
16532
  type: string;
16094
16533
  placeholder: string;
16095
16534
  size: string;
16096
16535
  modelValue: string;
16097
16536
  nativeType: string;
16098
16537
  maxlength: number;
16538
+ readonly: boolean;
16539
+ useFocusProp: boolean;
16099
16540
  iconLeft: string;
16100
16541
  iconRight: string;
16101
16542
  iconLeftClickable: boolean;
16102
16543
  iconRightClickable: boolean;
16103
16544
  allowTogglePassword: boolean;
16545
+ showClear: boolean;
16104
16546
  }, {}, {
16105
16547
  BaseInput: DefineComponent<ExtractPropTypes< {
16106
16548
  type: {
@@ -16126,15 +16568,29 @@ default: string;
16126
16568
  };
16127
16569
  hasIconLeft: BooleanConstructor;
16128
16570
  hasIconRight: BooleanConstructor;
16571
+ hasClearIcon: BooleanConstructor;
16129
16572
  maxlength: {
16130
16573
  type: NumberConstructor;
16131
16574
  default: null;
16132
16575
  };
16576
+ readonly: {
16577
+ type: BooleanConstructor;
16578
+ default: boolean;
16579
+ };
16580
+ useFocusProp: {
16581
+ type: BooleanConstructor;
16582
+ default: boolean;
16583
+ };
16584
+ focus: {
16585
+ type: BooleanConstructor;
16586
+ default: boolean;
16587
+ };
16133
16588
  }>, {}, {}, {
16134
16589
  attributes(): any;
16135
16590
  classes(): (string | {
16136
16591
  'input--has-icon-left': boolean;
16137
16592
  'input--has-icon-right': boolean;
16593
+ 'input--has-clear-icon': boolean;
16138
16594
  })[];
16139
16595
  }, {
16140
16596
  fullySanitize: fullySanitize;
@@ -16162,21 +16618,38 @@ default: string;
16162
16618
  };
16163
16619
  hasIconLeft: BooleanConstructor;
16164
16620
  hasIconRight: BooleanConstructor;
16621
+ hasClearIcon: BooleanConstructor;
16165
16622
  maxlength: {
16166
16623
  type: NumberConstructor;
16167
16624
  default: null;
16168
16625
  };
16626
+ readonly: {
16627
+ type: BooleanConstructor;
16628
+ default: boolean;
16629
+ };
16630
+ useFocusProp: {
16631
+ type: BooleanConstructor;
16632
+ default: boolean;
16633
+ };
16634
+ focus: {
16635
+ type: BooleanConstructor;
16636
+ default: boolean;
16637
+ };
16169
16638
  }>> & Readonly<{
16170
16639
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
16171
16640
  }>, {
16641
+ focus: boolean;
16172
16642
  type: string;
16173
- mask: string | unknown[];
16174
16643
  size: string;
16644
+ mask: string | unknown[];
16175
16645
  hasIconLeft: boolean;
16176
16646
  hasIconRight: boolean;
16647
+ hasClearIcon: boolean;
16177
16648
  modelValue: string;
16178
16649
  nativeType: string;
16179
16650
  maxlength: number;
16651
+ readonly: boolean;
16652
+ useFocusProp: boolean;
16180
16653
  }, {}, {}, {
16181
16654
  mask: any;
16182
16655
  }, string, ComponentProvideOptions, true, {}, any>;
@@ -16261,15 +16734,15 @@ default: string;
16261
16734
  }>> & Readonly<{}>, {
16262
16735
  disabled: boolean;
16263
16736
  error: string | boolean;
16737
+ tooltip: string;
16264
16738
  label: string;
16265
16739
  size: string;
16266
- tooltip: string;
16267
16740
  fixedLabel: boolean;
16268
16741
  message: string;
16269
16742
  }, {}, {
16270
16743
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
16271
- label: string;
16272
16744
  tooltip: string;
16745
+ label: string;
16273
16746
  useHtmlTooltip: boolean;
16274
16747
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
16275
16748
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -16278,8 +16751,8 @@ UnnnicButton: {
16278
16751
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
16279
16752
  disabled: boolean;
16280
16753
  type: ButtonType;
16281
- text: string;
16282
16754
  size: ButtonSize;
16755
+ text: string;
16283
16756
  iconLeft: string;
16284
16757
  iconRight: string;
16285
16758
  float: boolean;
@@ -16296,8 +16769,8 @@ Defaults: {};
16296
16769
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
16297
16770
  disabled: boolean;
16298
16771
  type: ButtonType;
16299
- text: string;
16300
16772
  size: ButtonSize;
16773
+ text: string;
16301
16774
  iconLeft: string;
16302
16775
  iconRight: string;
16303
16776
  float: boolean;
@@ -16311,8 +16784,8 @@ __isSuspense?: never;
16311
16784
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
16312
16785
  disabled: boolean;
16313
16786
  type: ButtonType;
16314
- text: string;
16315
16787
  size: ButtonSize;
16788
+ text: string;
16316
16789
  iconLeft: string;
16317
16790
  iconRight: string;
16318
16791
  float: boolean;
@@ -16479,13 +16952,29 @@ disabled: {
16479
16952
  type: BooleanConstructor;
16480
16953
  default: boolean;
16481
16954
  };
16955
+ readonly: {
16956
+ type: BooleanConstructor;
16957
+ default: boolean;
16958
+ };
16959
+ useFocusProp: {
16960
+ type: BooleanConstructor;
16961
+ default: boolean;
16962
+ };
16963
+ focus: {
16964
+ type: BooleanConstructor;
16965
+ default: boolean;
16966
+ };
16967
+ showClear: {
16968
+ type: BooleanConstructor;
16969
+ default: boolean;
16970
+ };
16482
16971
  }>, {}, {
16483
16972
  val: string;
16484
16973
  }, {
16485
16974
  computedError(): string | boolean;
16486
16975
  }, {
16487
16976
  fullySanitize: fullySanitize;
16488
- }, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
16977
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
16489
16978
  placeholder: {
16490
16979
  type: StringConstructor;
16491
16980
  default: string;
@@ -16563,25 +17052,46 @@ disabled: {
16563
17052
  type: BooleanConstructor;
16564
17053
  default: boolean;
16565
17054
  };
17055
+ readonly: {
17056
+ type: BooleanConstructor;
17057
+ default: boolean;
17058
+ };
17059
+ useFocusProp: {
17060
+ type: BooleanConstructor;
17061
+ default: boolean;
17062
+ };
17063
+ focus: {
17064
+ type: BooleanConstructor;
17065
+ default: boolean;
17066
+ };
17067
+ showClear: {
17068
+ type: BooleanConstructor;
17069
+ default: boolean;
17070
+ };
16566
17071
  }>> & Readonly<{
16567
17072
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
17073
+ onClear?: ((...args: any[]) => any) | undefined;
16568
17074
  }>, {
16569
17075
  disabled: boolean;
17076
+ focus: boolean;
16570
17077
  type: string;
16571
17078
  placeholder: string;
17079
+ tooltip: string;
16572
17080
  label: string;
16573
- mask: string | unknown[];
16574
17081
  size: string;
16575
- tooltip: string;
17082
+ mask: string | unknown[];
16576
17083
  message: string;
16577
17084
  modelValue: string;
16578
17085
  nativeType: string;
16579
17086
  maxlength: number | null;
17087
+ readonly: boolean;
17088
+ useFocusProp: boolean;
16580
17089
  iconLeft: string;
16581
17090
  iconRight: string;
16582
17091
  iconLeftClickable: boolean;
16583
17092
  iconRightClickable: boolean;
16584
17093
  allowTogglePassword: boolean;
17094
+ showClear: boolean;
16585
17095
  errors: string | unknown[];
16586
17096
  hasCloudyColor: boolean;
16587
17097
  showMaxlengthCounter: boolean;
@@ -16636,6 +17146,22 @@ disabled: {
16636
17146
  type: BooleanConstructor;
16637
17147
  default: boolean;
16638
17148
  };
17149
+ readonly: {
17150
+ type: BooleanConstructor;
17151
+ default: boolean;
17152
+ };
17153
+ useFocusProp: {
17154
+ type: BooleanConstructor;
17155
+ default: boolean;
17156
+ };
17157
+ focus: {
17158
+ type: BooleanConstructor;
17159
+ default: boolean;
17160
+ };
17161
+ showClear: {
17162
+ type: BooleanConstructor;
17163
+ default: boolean;
17164
+ };
16639
17165
  }>, {}, {
16640
17166
  isFocused: boolean;
16641
17167
  showPassword: boolean;
@@ -16645,12 +17171,13 @@ iconRightSvg(): string;
16645
17171
  iconScheme(): "fg-base" | "fg-muted";
16646
17172
  attributes(): any;
16647
17173
  }, {
16648
- focus(): void;
17174
+ focusInput(): void;
16649
17175
  onFocus(): void;
16650
17176
  onBlur(): void;
16651
17177
  onIconLeftClick(): void;
17178
+ onClearClick(): void;
16652
17179
  onIconRightClick(): void;
16653
- }, ComponentOptionsMixin, ComponentOptionsMixin, ("icon-left-click" | "icon-right-click")[], "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
17180
+ }, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "icon-left-click" | "icon-right-click")[], "clear" | "icon-left-click" | "icon-right-click", PublicProps, Readonly<ExtractPropTypes< {
16654
17181
  placeholder: {
16655
17182
  type: StringConstructor;
16656
17183
  default: null;
@@ -16700,22 +17227,43 @@ disabled: {
16700
17227
  type: BooleanConstructor;
16701
17228
  default: boolean;
16702
17229
  };
17230
+ readonly: {
17231
+ type: BooleanConstructor;
17232
+ default: boolean;
17233
+ };
17234
+ useFocusProp: {
17235
+ type: BooleanConstructor;
17236
+ default: boolean;
17237
+ };
17238
+ focus: {
17239
+ type: BooleanConstructor;
17240
+ default: boolean;
17241
+ };
17242
+ showClear: {
17243
+ type: BooleanConstructor;
17244
+ default: boolean;
17245
+ };
16703
17246
  }>> & Readonly<{
17247
+ onClear?: ((...args: any[]) => any) | undefined;
16704
17248
  "onIcon-left-click"?: ((...args: any[]) => any) | undefined;
16705
17249
  "onIcon-right-click"?: ((...args: any[]) => any) | undefined;
16706
17250
  }>, {
16707
17251
  disabled: boolean;
17252
+ focus: boolean;
16708
17253
  type: string;
16709
17254
  placeholder: string;
16710
17255
  size: string;
16711
17256
  modelValue: string;
16712
17257
  nativeType: string;
16713
17258
  maxlength: number;
17259
+ readonly: boolean;
17260
+ useFocusProp: boolean;
16714
17261
  iconLeft: string;
16715
17262
  iconRight: string;
16716
17263
  iconLeftClickable: boolean;
16717
17264
  iconRightClickable: boolean;
16718
17265
  allowTogglePassword: boolean;
17266
+ showClear: boolean;
16719
17267
  }, {}, {
16720
17268
  BaseInput: DefineComponent<ExtractPropTypes< {
16721
17269
  type: {
@@ -16741,15 +17289,29 @@ default: string;
16741
17289
  };
16742
17290
  hasIconLeft: BooleanConstructor;
16743
17291
  hasIconRight: BooleanConstructor;
17292
+ hasClearIcon: BooleanConstructor;
16744
17293
  maxlength: {
16745
17294
  type: NumberConstructor;
16746
17295
  default: null;
16747
17296
  };
17297
+ readonly: {
17298
+ type: BooleanConstructor;
17299
+ default: boolean;
17300
+ };
17301
+ useFocusProp: {
17302
+ type: BooleanConstructor;
17303
+ default: boolean;
17304
+ };
17305
+ focus: {
17306
+ type: BooleanConstructor;
17307
+ default: boolean;
17308
+ };
16748
17309
  }>, {}, {}, {
16749
17310
  attributes(): any;
16750
17311
  classes(): (string | {
16751
17312
  'input--has-icon-left': boolean;
16752
17313
  'input--has-icon-right': boolean;
17314
+ 'input--has-clear-icon': boolean;
16753
17315
  })[];
16754
17316
  }, {
16755
17317
  fullySanitize: fullySanitize;
@@ -16777,21 +17339,38 @@ default: string;
16777
17339
  };
16778
17340
  hasIconLeft: BooleanConstructor;
16779
17341
  hasIconRight: BooleanConstructor;
17342
+ hasClearIcon: BooleanConstructor;
16780
17343
  maxlength: {
16781
17344
  type: NumberConstructor;
16782
17345
  default: null;
16783
17346
  };
17347
+ readonly: {
17348
+ type: BooleanConstructor;
17349
+ default: boolean;
17350
+ };
17351
+ useFocusProp: {
17352
+ type: BooleanConstructor;
17353
+ default: boolean;
17354
+ };
17355
+ focus: {
17356
+ type: BooleanConstructor;
17357
+ default: boolean;
17358
+ };
16784
17359
  }>> & Readonly<{
16785
17360
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
16786
17361
  }>, {
17362
+ focus: boolean;
16787
17363
  type: string;
16788
- mask: string | unknown[];
16789
17364
  size: string;
17365
+ mask: string | unknown[];
16790
17366
  hasIconLeft: boolean;
16791
17367
  hasIconRight: boolean;
17368
+ hasClearIcon: boolean;
16792
17369
  modelValue: string;
16793
17370
  nativeType: string;
16794
17371
  maxlength: number;
17372
+ readonly: boolean;
17373
+ useFocusProp: boolean;
16795
17374
  }, {}, {}, {
16796
17375
  mask: any;
16797
17376
  }, string, ComponentProvideOptions, true, {}, any>;
@@ -16876,15 +17455,15 @@ default: string;
16876
17455
  }>> & Readonly<{}>, {
16877
17456
  disabled: boolean;
16878
17457
  error: string | boolean;
17458
+ tooltip: string;
16879
17459
  label: string;
16880
17460
  size: string;
16881
- tooltip: string;
16882
17461
  fixedLabel: boolean;
16883
17462
  message: string;
16884
17463
  }, {}, {
16885
17464
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
16886
- label: string;
16887
17465
  tooltip: string;
17466
+ label: string;
16888
17467
  useHtmlTooltip: boolean;
16889
17468
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
16890
17469
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -16893,8 +17472,8 @@ UnnnicButton: {
16893
17472
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
16894
17473
  disabled: boolean;
16895
17474
  type: ButtonType;
16896
- text: string;
16897
17475
  size: ButtonSize;
17476
+ text: string;
16898
17477
  iconLeft: string;
16899
17478
  iconRight: string;
16900
17479
  float: boolean;
@@ -16911,8 +17490,8 @@ Defaults: {};
16911
17490
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
16912
17491
  disabled: boolean;
16913
17492
  type: ButtonType;
16914
- text: string;
16915
17493
  size: ButtonSize;
17494
+ text: string;
16916
17495
  iconLeft: string;
16917
17496
  iconRight: string;
16918
17497
  float: boolean;
@@ -16926,8 +17505,8 @@ __isSuspense?: never;
16926
17505
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
16927
17506
  disabled: boolean;
16928
17507
  type: ButtonType;
16929
- text: string;
16930
17508
  size: ButtonSize;
17509
+ text: string;
16931
17510
  iconLeft: string;
16932
17511
  iconRight: string;
16933
17512
  float: boolean;
@@ -17349,8 +17928,8 @@ UnnnicButton: {
17349
17928
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
17350
17929
  disabled: boolean;
17351
17930
  type: ButtonType;
17352
- text: string;
17353
17931
  size: ButtonSize;
17932
+ text: string;
17354
17933
  iconLeft: string;
17355
17934
  iconRight: string;
17356
17935
  float: boolean;
@@ -17367,8 +17946,8 @@ Defaults: {};
17367
17946
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
17368
17947
  disabled: boolean;
17369
17948
  type: ButtonType;
17370
- text: string;
17371
17949
  size: ButtonSize;
17950
+ text: string;
17372
17951
  iconLeft: string;
17373
17952
  iconRight: string;
17374
17953
  float: boolean;
@@ -17382,8 +17961,8 @@ __isSuspense?: never;
17382
17961
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
17383
17962
  disabled: boolean;
17384
17963
  type: ButtonType;
17385
- text: string;
17386
17964
  size: ButtonSize;
17965
+ text: string;
17387
17966
  iconLeft: string;
17388
17967
  iconRight: string;
17389
17968
  float: boolean;
@@ -17431,8 +18010,8 @@ UnnnicButton: {
17431
18010
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
17432
18011
  disabled: boolean;
17433
18012
  type: ButtonType;
17434
- text: string;
17435
18013
  size: ButtonSize;
18014
+ text: string;
17436
18015
  iconLeft: string;
17437
18016
  iconRight: string;
17438
18017
  float: boolean;
@@ -17449,8 +18028,8 @@ Defaults: {};
17449
18028
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
17450
18029
  disabled: boolean;
17451
18030
  type: ButtonType;
17452
- text: string;
17453
18031
  size: ButtonSize;
18032
+ text: string;
17454
18033
  iconLeft: string;
17455
18034
  iconRight: string;
17456
18035
  float: boolean;
@@ -17464,8 +18043,8 @@ __isSuspense?: never;
17464
18043
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
17465
18044
  disabled: boolean;
17466
18045
  type: ButtonType;
17467
- text: string;
17468
18046
  size: ButtonSize;
18047
+ text: string;
17469
18048
  iconLeft: string;
17470
18049
  iconRight: string;
17471
18050
  float: boolean;
@@ -17887,8 +18466,8 @@ UnnnicButton: {
17887
18466
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
17888
18467
  disabled: boolean;
17889
18468
  type: ButtonType;
17890
- text: string;
17891
18469
  size: ButtonSize;
18470
+ text: string;
17892
18471
  iconLeft: string;
17893
18472
  iconRight: string;
17894
18473
  float: boolean;
@@ -17905,8 +18484,8 @@ Defaults: {};
17905
18484
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
17906
18485
  disabled: boolean;
17907
18486
  type: ButtonType;
17908
- text: string;
17909
18487
  size: ButtonSize;
18488
+ text: string;
17910
18489
  iconLeft: string;
17911
18490
  iconRight: string;
17912
18491
  float: boolean;
@@ -17920,8 +18499,8 @@ __isSuspense?: never;
17920
18499
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
17921
18500
  disabled: boolean;
17922
18501
  type: ButtonType;
17923
- text: string;
17924
18502
  size: ButtonSize;
18503
+ text: string;
17925
18504
  iconLeft: string;
17926
18505
  iconRight: string;
17927
18506
  float: boolean;
@@ -17969,8 +18548,8 @@ UnnnicButton: {
17969
18548
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
17970
18549
  disabled: boolean;
17971
18550
  type: ButtonType;
17972
- text: string;
17973
18551
  size: ButtonSize;
18552
+ text: string;
17974
18553
  iconLeft: string;
17975
18554
  iconRight: string;
17976
18555
  float: boolean;
@@ -17987,8 +18566,8 @@ Defaults: {};
17987
18566
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
17988
18567
  disabled: boolean;
17989
18568
  type: ButtonType;
17990
- text: string;
17991
18569
  size: ButtonSize;
18570
+ text: string;
17992
18571
  iconLeft: string;
17993
18572
  iconRight: string;
17994
18573
  float: boolean;
@@ -18002,8 +18581,8 @@ __isSuspense?: never;
18002
18581
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
18003
18582
  disabled: boolean;
18004
18583
  type: ButtonType;
18005
- text: string;
18006
18584
  size: ButtonSize;
18585
+ text: string;
18007
18586
  iconLeft: string;
18008
18587
  iconRight: string;
18009
18588
  float: boolean;
@@ -18099,8 +18678,8 @@ type: BooleanConstructor;
18099
18678
  default: boolean;
18100
18679
  };
18101
18680
  }>> & Readonly<{}>, {
18102
- text: string;
18103
18681
  side: string;
18682
+ text: string;
18104
18683
  enabled: boolean;
18105
18684
  forceOpen: boolean;
18106
18685
  maxWidth: string;
@@ -18160,7 +18739,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
18160
18739
  escapeKeyDown: (event: KeyboardEvent) => any;
18161
18740
  pointerDownOutside: (event: Event) => any;
18162
18741
  }, PublicProps, {
18163
- class: HTMLAttributes["class"];
18164
18742
  sideOffset: number;
18165
18743
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
18166
18744
  P: {};
@@ -18175,7 +18753,6 @@ class?: HTMLAttributes["class"];
18175
18753
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
18176
18754
  onPointerDownOutside?: ((event: Event) => any) | undefined;
18177
18755
  }>, {}, {}, {}, {}, {
18178
- class: HTMLAttributes["class"];
18179
18756
  sideOffset: number;
18180
18757
  }>;
18181
18758
  __isFragment?: never;
@@ -18190,7 +18767,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
18190
18767
  escapeKeyDown: (event: KeyboardEvent) => any;
18191
18768
  pointerDownOutside: (event: Event) => any;
18192
18769
  }, string, {
18193
- class: HTMLAttributes["class"];
18194
18770
  sideOffset: number;
18195
18771
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
18196
18772
  $slots: {
@@ -18282,8 +18858,8 @@ type: BooleanConstructor;
18282
18858
  default: boolean;
18283
18859
  };
18284
18860
  }>> & Readonly<{}>, {
18285
- text: string;
18286
18861
  side: string;
18862
+ text: string;
18287
18863
  enabled: boolean;
18288
18864
  forceOpen: boolean;
18289
18865
  maxWidth: string;
@@ -18343,7 +18919,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
18343
18919
  escapeKeyDown: (event: KeyboardEvent) => any;
18344
18920
  pointerDownOutside: (event: Event) => any;
18345
18921
  }, PublicProps, {
18346
- class: HTMLAttributes["class"];
18347
18922
  sideOffset: number;
18348
18923
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
18349
18924
  P: {};
@@ -18358,7 +18933,6 @@ class?: HTMLAttributes["class"];
18358
18933
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
18359
18934
  onPointerDownOutside?: ((event: Event) => any) | undefined;
18360
18935
  }>, {}, {}, {}, {}, {
18361
- class: HTMLAttributes["class"];
18362
18936
  sideOffset: number;
18363
18937
  }>;
18364
18938
  __isFragment?: never;
@@ -18373,7 +18947,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
18373
18947
  escapeKeyDown: (event: KeyboardEvent) => any;
18374
18948
  pointerDownOutside: (event: Event) => any;
18375
18949
  }, string, {
18376
- class: HTMLAttributes["class"];
18377
18950
  sideOffset: number;
18378
18951
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
18379
18952
  $slots: {
@@ -18566,8 +19139,8 @@ UnnnicButton: {
18566
19139
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
18567
19140
  disabled: boolean;
18568
19141
  type: ButtonType;
18569
- text: string;
18570
19142
  size: ButtonSize;
19143
+ text: string;
18571
19144
  iconLeft: string;
18572
19145
  iconRight: string;
18573
19146
  float: boolean;
@@ -18584,8 +19157,8 @@ Defaults: {};
18584
19157
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
18585
19158
  disabled: boolean;
18586
19159
  type: ButtonType;
18587
- text: string;
18588
19160
  size: ButtonSize;
19161
+ text: string;
18589
19162
  iconLeft: string;
18590
19163
  iconRight: string;
18591
19164
  float: boolean;
@@ -18599,8 +19172,8 @@ __isSuspense?: never;
18599
19172
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
18600
19173
  disabled: boolean;
18601
19174
  type: ButtonType;
18602
- text: string;
18603
19175
  size: ButtonSize;
19176
+ text: string;
18604
19177
  iconLeft: string;
18605
19178
  iconRight: string;
18606
19179
  float: boolean;
@@ -18671,8 +19244,8 @@ UnnnicButton: {
18671
19244
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
18672
19245
  disabled: boolean;
18673
19246
  type: ButtonType;
18674
- text: string;
18675
19247
  size: ButtonSize;
19248
+ text: string;
18676
19249
  iconLeft: string;
18677
19250
  iconRight: string;
18678
19251
  float: boolean;
@@ -18689,8 +19262,8 @@ Defaults: {};
18689
19262
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
18690
19263
  disabled: boolean;
18691
19264
  type: ButtonType;
18692
- text: string;
18693
19265
  size: ButtonSize;
19266
+ text: string;
18694
19267
  iconLeft: string;
18695
19268
  iconRight: string;
18696
19269
  float: boolean;
@@ -18704,8 +19277,8 @@ __isSuspense?: never;
18704
19277
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
18705
19278
  disabled: boolean;
18706
19279
  type: ButtonType;
18707
- text: string;
18708
19280
  size: ButtonSize;
19281
+ text: string;
18709
19282
  iconLeft: string;
18710
19283
  iconRight: string;
18711
19284
  float: boolean;
@@ -18720,14 +19293,10 @@ default?(_: {}): any;
18720
19293
  }, {}, string, ComponentProvideOptions, true, {}, any>;
18721
19294
 
18722
19295
  declare interface UnnnicPlugin {
18723
- install(app: App, options?: UnnnicPluginOptions): void;
19296
+ install(app: App): void;
18724
19297
  [key: string]: any;
18725
19298
  }
18726
19299
 
18727
- export declare interface UnnnicPluginOptions {
18728
- teleportTarget?: TeleportTarget | null;
18729
- }
18730
-
18731
19300
  export declare const UnnnicPopover: {
18732
19301
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<PopoverRootProps> & Readonly<{
18733
19302
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
@@ -18809,7 +19378,7 @@ onCloseAutoFocus?: ((event: Event) => any) | undefined;
18809
19378
  }>, {
18810
19379
  class: HTMLAttributes["class"];
18811
19380
  sideOffset: number;
18812
- align: "center" | "start" | "end";
19381
+ align: "start" | "center" | "end";
18813
19382
  size: string;
18814
19383
  width: string;
18815
19384
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
@@ -18839,7 +19408,7 @@ onCloseAutoFocus?: ((event: Event) => any) | undefined;
18839
19408
  }>, {
18840
19409
  class: HTMLAttributes["class"];
18841
19410
  sideOffset: number;
18842
- align: "center" | "start" | "end";
19411
+ align: "start" | "center" | "end";
18843
19412
  size: string;
18844
19413
  width: string;
18845
19414
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
@@ -19052,17 +19621,17 @@ export declare const UnnnicRadio: {
19052
19621
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
19053
19622
  $emit: (event: "update:modelValue", ...args: any[]) => void;
19054
19623
  disabled: boolean;
19055
- value: string | number;
19056
19624
  label: string;
19057
19625
  name: string;
19058
19626
  modelValue: string | number;
19627
+ value: string | number;
19059
19628
  helper: string;
19060
19629
  $props: {
19061
19630
  readonly disabled?: boolean | undefined;
19062
- readonly value?: string | number | undefined;
19063
19631
  readonly label?: string | undefined;
19064
19632
  readonly name?: string | undefined;
19065
19633
  readonly modelValue?: string | number | undefined;
19634
+ readonly value?: string | number | undefined;
19066
19635
  readonly helper?: string | undefined;
19067
19636
  };
19068
19637
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, {
@@ -19075,17 +19644,17 @@ export declare const UnnnicRadio: {
19075
19644
  }, Readonly<{}> & Readonly<{}>, {
19076
19645
  $emit: (event: "update:modelValue", ...args: any[]) => void;
19077
19646
  disabled: boolean;
19078
- value: string | number;
19079
19647
  label: string;
19080
19648
  name: string;
19081
19649
  modelValue: string | number;
19650
+ value: string | number;
19082
19651
  helper: string;
19083
19652
  $props: {
19084
19653
  readonly disabled?: boolean | undefined;
19085
- readonly value?: string | number | undefined;
19086
19654
  readonly label?: string | undefined;
19087
19655
  readonly name?: string | undefined;
19088
19656
  readonly modelValue?: string | number | undefined;
19657
+ readonly value?: string | number | undefined;
19089
19658
  readonly helper?: string | undefined;
19090
19659
  };
19091
19660
  }, {}, {}, {}, {}>;
@@ -19095,17 +19664,17 @@ export declare const UnnnicRadio: {
19095
19664
  } & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
19096
19665
  $emit: (event: "update:modelValue", ...args: any[]) => void;
19097
19666
  disabled: boolean;
19098
- value: string | number;
19099
19667
  label: string;
19100
19668
  name: string;
19101
19669
  modelValue: string | number;
19670
+ value: string | number;
19102
19671
  helper: string;
19103
19672
  $props: {
19104
19673
  readonly disabled?: boolean | undefined;
19105
- readonly value?: string | number | undefined;
19106
19674
  readonly label?: string | undefined;
19107
19675
  readonly name?: string | undefined;
19108
19676
  readonly modelValue?: string | number | undefined;
19677
+ readonly value?: string | number | undefined;
19109
19678
  readonly helper?: string | undefined;
19110
19679
  };
19111
19680
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
@@ -19118,17 +19687,17 @@ export declare const unnnicRadio: {
19118
19687
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
19119
19688
  $emit: (event: "update:modelValue", ...args: any[]) => void;
19120
19689
  disabled: boolean;
19121
- value: string | number;
19122
19690
  label: string;
19123
19691
  name: string;
19124
19692
  modelValue: string | number;
19693
+ value: string | number;
19125
19694
  helper: string;
19126
19695
  $props: {
19127
19696
  readonly disabled?: boolean | undefined;
19128
- readonly value?: string | number | undefined;
19129
19697
  readonly label?: string | undefined;
19130
19698
  readonly name?: string | undefined;
19131
19699
  readonly modelValue?: string | number | undefined;
19700
+ readonly value?: string | number | undefined;
19132
19701
  readonly helper?: string | undefined;
19133
19702
  };
19134
19703
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, {
@@ -19141,17 +19710,17 @@ export declare const unnnicRadio: {
19141
19710
  }, Readonly<{}> & Readonly<{}>, {
19142
19711
  $emit: (event: "update:modelValue", ...args: any[]) => void;
19143
19712
  disabled: boolean;
19144
- value: string | number;
19145
19713
  label: string;
19146
19714
  name: string;
19147
19715
  modelValue: string | number;
19716
+ value: string | number;
19148
19717
  helper: string;
19149
19718
  $props: {
19150
19719
  readonly disabled?: boolean | undefined;
19151
- readonly value?: string | number | undefined;
19152
19720
  readonly label?: string | undefined;
19153
19721
  readonly name?: string | undefined;
19154
19722
  readonly modelValue?: string | number | undefined;
19723
+ readonly value?: string | number | undefined;
19155
19724
  readonly helper?: string | undefined;
19156
19725
  };
19157
19726
  }, {}, {}, {}, {}>;
@@ -19161,17 +19730,17 @@ export declare const unnnicRadio: {
19161
19730
  } & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
19162
19731
  $emit: (event: "update:modelValue", ...args: any[]) => void;
19163
19732
  disabled: boolean;
19164
- value: string | number;
19165
19733
  label: string;
19166
19734
  name: string;
19167
19735
  modelValue: string | number;
19736
+ value: string | number;
19168
19737
  helper: string;
19169
19738
  $props: {
19170
19739
  readonly disabled?: boolean | undefined;
19171
- readonly value?: string | number | undefined;
19172
19740
  readonly label?: string | undefined;
19173
19741
  readonly name?: string | undefined;
19174
19742
  readonly modelValue?: string | number | undefined;
19743
+ readonly value?: string | number | undefined;
19175
19744
  readonly helper?: string | undefined;
19176
19745
  };
19177
19746
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
@@ -19572,6 +20141,10 @@ class?: HTMLAttributes["class"];
19572
20141
  };
19573
20142
  });
19574
20143
 
20144
+ export declare const UnnnicSelect: VueComponent;
20145
+
20146
+ export declare const unnnicSelect: VueComponent;
20147
+
19575
20148
  export declare const UnnnicSelectItem: DefineComponent<ExtractPropTypes< {
19576
20149
  size: {
19577
20150
  type: StringConstructor;
@@ -19666,14 +20239,14 @@ export declare const UnnnicSidebar: {
19666
20239
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
19667
20240
  $emit: (event: "navigate", ...args: any[]) => void;
19668
20241
  width: string;
19669
- active: Record<string, any>;
19670
20242
  position: string;
20243
+ active: Record<string, any>;
19671
20244
  autoNavigateFirstChild: boolean;
19672
20245
  items: unknown[];
19673
20246
  $props: {
19674
20247
  readonly width?: string | undefined;
19675
- readonly active?: Record<string, any> | undefined;
19676
20248
  readonly position?: string | undefined;
20249
+ readonly active?: Record<string, any> | undefined;
19677
20250
  readonly autoNavigateFirstChild?: boolean | undefined;
19678
20251
  readonly items?: unknown[] | undefined;
19679
20252
  };
@@ -19687,14 +20260,14 @@ export declare const UnnnicSidebar: {
19687
20260
  }, Readonly<{}> & Readonly<{}>, {
19688
20261
  $emit: (event: "navigate", ...args: any[]) => void;
19689
20262
  width: string;
19690
- active: Record<string, any>;
19691
20263
  position: string;
20264
+ active: Record<string, any>;
19692
20265
  autoNavigateFirstChild: boolean;
19693
20266
  items: unknown[];
19694
20267
  $props: {
19695
20268
  readonly width?: string | undefined;
19696
- readonly active?: Record<string, any> | undefined;
19697
20269
  readonly position?: string | undefined;
20270
+ readonly active?: Record<string, any> | undefined;
19698
20271
  readonly autoNavigateFirstChild?: boolean | undefined;
19699
20272
  readonly items?: unknown[] | undefined;
19700
20273
  };
@@ -19705,14 +20278,14 @@ export declare const UnnnicSidebar: {
19705
20278
  } & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
19706
20279
  $emit: (event: "navigate", ...args: any[]) => void;
19707
20280
  width: string;
19708
- active: Record<string, any>;
19709
20281
  position: string;
20282
+ active: Record<string, any>;
19710
20283
  autoNavigateFirstChild: boolean;
19711
20284
  items: unknown[];
19712
20285
  $props: {
19713
20286
  readonly width?: string | undefined;
19714
- readonly active?: Record<string, any> | undefined;
19715
20287
  readonly position?: string | undefined;
20288
+ readonly active?: Record<string, any> | undefined;
19716
20289
  readonly autoNavigateFirstChild?: boolean | undefined;
19717
20290
  readonly items?: unknown[] | undefined;
19718
20291
  };
@@ -19731,14 +20304,14 @@ export declare const unnnicSidebar: {
19731
20304
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
19732
20305
  $emit: (event: "navigate", ...args: any[]) => void;
19733
20306
  width: string;
19734
- active: Record<string, any>;
19735
20307
  position: string;
20308
+ active: Record<string, any>;
19736
20309
  autoNavigateFirstChild: boolean;
19737
20310
  items: unknown[];
19738
20311
  $props: {
19739
20312
  readonly width?: string | undefined;
19740
- readonly active?: Record<string, any> | undefined;
19741
20313
  readonly position?: string | undefined;
20314
+ readonly active?: Record<string, any> | undefined;
19742
20315
  readonly autoNavigateFirstChild?: boolean | undefined;
19743
20316
  readonly items?: unknown[] | undefined;
19744
20317
  };
@@ -19752,14 +20325,14 @@ export declare const unnnicSidebar: {
19752
20325
  }, Readonly<{}> & Readonly<{}>, {
19753
20326
  $emit: (event: "navigate", ...args: any[]) => void;
19754
20327
  width: string;
19755
- active: Record<string, any>;
19756
20328
  position: string;
20329
+ active: Record<string, any>;
19757
20330
  autoNavigateFirstChild: boolean;
19758
20331
  items: unknown[];
19759
20332
  $props: {
19760
20333
  readonly width?: string | undefined;
19761
- readonly active?: Record<string, any> | undefined;
19762
20334
  readonly position?: string | undefined;
20335
+ readonly active?: Record<string, any> | undefined;
19763
20336
  readonly autoNavigateFirstChild?: boolean | undefined;
19764
20337
  readonly items?: unknown[] | undefined;
19765
20338
  };
@@ -19770,14 +20343,14 @@ export declare const unnnicSidebar: {
19770
20343
  } & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
19771
20344
  $emit: (event: "navigate", ...args: any[]) => void;
19772
20345
  width: string;
19773
- active: Record<string, any>;
19774
20346
  position: string;
20347
+ active: Record<string, any>;
19775
20348
  autoNavigateFirstChild: boolean;
19776
20349
  items: unknown[];
19777
20350
  $props: {
19778
20351
  readonly width?: string | undefined;
19779
- readonly active?: Record<string, any> | undefined;
19780
20352
  readonly position?: string | undefined;
20353
+ readonly active?: Record<string, any> | undefined;
19781
20354
  readonly autoNavigateFirstChild?: boolean | undefined;
19782
20355
  readonly items?: unknown[] | undefined;
19783
20356
  };
@@ -19861,8 +20434,8 @@ default: boolean;
19861
20434
  }>> & Readonly<{
19862
20435
  onClick?: ((...args: any[]) => any) | undefined;
19863
20436
  }>, {
19864
- title: string;
19865
20437
  text: string;
20438
+ title: string;
19866
20439
  clickable: boolean;
19867
20440
  titleSize: string;
19868
20441
  titleTooltip: string;
@@ -19920,8 +20493,8 @@ type: BooleanConstructor;
19920
20493
  default: boolean;
19921
20494
  };
19922
20495
  }>> & Readonly<{}>, {
19923
- text: string;
19924
20496
  side: string;
20497
+ text: string;
19925
20498
  enabled: boolean;
19926
20499
  forceOpen: boolean;
19927
20500
  maxWidth: string;
@@ -19981,7 +20554,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
19981
20554
  escapeKeyDown: (event: KeyboardEvent) => any;
19982
20555
  pointerDownOutside: (event: Event) => any;
19983
20556
  }, PublicProps, {
19984
- class: HTMLAttributes["class"];
19985
20557
  sideOffset: number;
19986
20558
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
19987
20559
  P: {};
@@ -19996,7 +20568,6 @@ class?: HTMLAttributes["class"];
19996
20568
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
19997
20569
  onPointerDownOutside?: ((event: Event) => any) | undefined;
19998
20570
  }>, {}, {}, {}, {}, {
19999
- class: HTMLAttributes["class"];
20000
20571
  sideOffset: number;
20001
20572
  }>;
20002
20573
  __isFragment?: never;
@@ -20011,7 +20582,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
20011
20582
  escapeKeyDown: (event: KeyboardEvent) => any;
20012
20583
  pointerDownOutside: (event: Event) => any;
20013
20584
  }, string, {
20014
- class: HTMLAttributes["class"];
20015
20585
  sideOffset: number;
20016
20586
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
20017
20587
  $slots: {
@@ -20081,8 +20651,8 @@ default: boolean;
20081
20651
  }>> & Readonly<{
20082
20652
  onClick?: ((...args: any[]) => any) | undefined;
20083
20653
  }>, {
20084
- title: string;
20085
20654
  text: string;
20655
+ title: string;
20086
20656
  clickable: boolean;
20087
20657
  titleSize: string;
20088
20658
  titleTooltip: string;
@@ -20140,8 +20710,8 @@ type: BooleanConstructor;
20140
20710
  default: boolean;
20141
20711
  };
20142
20712
  }>> & Readonly<{}>, {
20143
- text: string;
20144
20713
  side: string;
20714
+ text: string;
20145
20715
  enabled: boolean;
20146
20716
  forceOpen: boolean;
20147
20717
  maxWidth: string;
@@ -20201,7 +20771,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
20201
20771
  escapeKeyDown: (event: KeyboardEvent) => any;
20202
20772
  pointerDownOutside: (event: Event) => any;
20203
20773
  }, PublicProps, {
20204
- class: HTMLAttributes["class"];
20205
20774
  sideOffset: number;
20206
20775
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
20207
20776
  P: {};
@@ -20216,7 +20785,6 @@ class?: HTMLAttributes["class"];
20216
20785
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
20217
20786
  onPointerDownOutside?: ((event: Event) => any) | undefined;
20218
20787
  }>, {}, {}, {}, {}, {
20219
- class: HTMLAttributes["class"];
20220
20788
  sideOffset: number;
20221
20789
  }>;
20222
20790
  __isFragment?: never;
@@ -20231,7 +20799,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
20231
20799
  escapeKeyDown: (event: KeyboardEvent) => any;
20232
20800
  pointerDownOutside: (event: Event) => any;
20233
20801
  }, string, {
20234
- class: HTMLAttributes["class"];
20235
20802
  sideOffset: number;
20236
20803
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
20237
20804
  $slots: {
@@ -20599,8 +21166,8 @@ type: BooleanConstructor;
20599
21166
  default: boolean;
20600
21167
  };
20601
21168
  }>> & Readonly<{}>, {
20602
- text: string;
20603
21169
  side: string;
21170
+ text: string;
20604
21171
  enabled: boolean;
20605
21172
  forceOpen: boolean;
20606
21173
  maxWidth: string;
@@ -20660,7 +21227,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
20660
21227
  escapeKeyDown: (event: KeyboardEvent) => any;
20661
21228
  pointerDownOutside: (event: Event) => any;
20662
21229
  }, PublicProps, {
20663
- class: HTMLAttributes["class"];
20664
21230
  sideOffset: number;
20665
21231
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
20666
21232
  P: {};
@@ -20675,7 +21241,6 @@ class?: HTMLAttributes["class"];
20675
21241
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
20676
21242
  onPointerDownOutside?: ((event: Event) => any) | undefined;
20677
21243
  }>, {}, {}, {}, {}, {
20678
- class: HTMLAttributes["class"];
20679
21244
  sideOffset: number;
20680
21245
  }>;
20681
21246
  __isFragment?: never;
@@ -20690,7 +21255,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
20690
21255
  escapeKeyDown: (event: KeyboardEvent) => any;
20691
21256
  pointerDownOutside: (event: Event) => any;
20692
21257
  }, string, {
20693
- class: HTMLAttributes["class"];
20694
21258
  sideOffset: number;
20695
21259
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
20696
21260
  $slots: {
@@ -20874,8 +21438,8 @@ type: BooleanConstructor;
20874
21438
  default: boolean;
20875
21439
  };
20876
21440
  }>> & Readonly<{}>, {
20877
- text: string;
20878
21441
  side: string;
21442
+ text: string;
20879
21443
  enabled: boolean;
20880
21444
  forceOpen: boolean;
20881
21445
  maxWidth: string;
@@ -20935,7 +21499,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
20935
21499
  escapeKeyDown: (event: KeyboardEvent) => any;
20936
21500
  pointerDownOutside: (event: Event) => any;
20937
21501
  }, PublicProps, {
20938
- class: HTMLAttributes["class"];
20939
21502
  sideOffset: number;
20940
21503
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
20941
21504
  P: {};
@@ -20950,7 +21513,6 @@ class?: HTMLAttributes["class"];
20950
21513
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
20951
21514
  onPointerDownOutside?: ((event: Event) => any) | undefined;
20952
21515
  }>, {}, {}, {}, {}, {
20953
- class: HTMLAttributes["class"];
20954
21516
  sideOffset: number;
20955
21517
  }>;
20956
21518
  __isFragment?: never;
@@ -20965,7 +21527,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
20965
21527
  escapeKeyDown: (event: KeyboardEvent) => any;
20966
21528
  pointerDownOutside: (event: Event) => any;
20967
21529
  }, string, {
20968
- class: HTMLAttributes["class"];
20969
21530
  sideOffset: number;
20970
21531
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
20971
21532
  $slots: {
@@ -21179,8 +21740,8 @@ type: BooleanConstructor;
21179
21740
  }>, {
21180
21741
  disabled: boolean;
21181
21742
  label: string;
21182
- option: string;
21183
21743
  size: string;
21744
+ option: string;
21184
21745
  modelValue: boolean;
21185
21746
  helper: string;
21186
21747
  textRight: string;
@@ -21190,8 +21751,8 @@ textLeft: string;
21190
21751
  useVModel: boolean;
21191
21752
  }, {}, {
21192
21753
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
21193
- label: string;
21194
21754
  tooltip: string;
21755
+ label: string;
21195
21756
  useHtmlTooltip: boolean;
21196
21757
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
21197
21758
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -21299,8 +21860,8 @@ type: BooleanConstructor;
21299
21860
  }>, {
21300
21861
  disabled: boolean;
21301
21862
  label: string;
21302
- option: string;
21303
21863
  size: string;
21864
+ option: string;
21304
21865
  modelValue: boolean;
21305
21866
  helper: string;
21306
21867
  textRight: string;
@@ -21310,8 +21871,8 @@ textLeft: string;
21310
21871
  useVModel: boolean;
21311
21872
  }, {}, {
21312
21873
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
21313
- label: string;
21314
21874
  tooltip: string;
21875
+ label: string;
21315
21876
  useHtmlTooltip: boolean;
21316
21877
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
21317
21878
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -21448,8 +22009,8 @@ type: BooleanConstructor;
21448
22009
  default: boolean;
21449
22010
  };
21450
22011
  }>> & Readonly<{}>, {
21451
- text: string;
21452
22012
  side: string;
22013
+ text: string;
21453
22014
  enabled: boolean;
21454
22015
  forceOpen: boolean;
21455
22016
  maxWidth: string;
@@ -21509,7 +22070,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
21509
22070
  escapeKeyDown: (event: KeyboardEvent) => any;
21510
22071
  pointerDownOutside: (event: Event) => any;
21511
22072
  }, PublicProps, {
21512
- class: HTMLAttributes["class"];
21513
22073
  sideOffset: number;
21514
22074
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
21515
22075
  P: {};
@@ -21524,7 +22084,6 @@ class?: HTMLAttributes["class"];
21524
22084
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
21525
22085
  onPointerDownOutside?: ((event: Event) => any) | undefined;
21526
22086
  }>, {}, {}, {}, {}, {
21527
- class: HTMLAttributes["class"];
21528
22087
  sideOffset: number;
21529
22088
  }>;
21530
22089
  __isFragment?: never;
@@ -21539,7 +22098,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
21539
22098
  escapeKeyDown: (event: KeyboardEvent) => any;
21540
22099
  pointerDownOutside: (event: Event) => any;
21541
22100
  }, string, {
21542
- class: HTMLAttributes["class"];
21543
22101
  sideOffset: number;
21544
22102
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
21545
22103
  $slots: {
@@ -21681,8 +22239,8 @@ type: BooleanConstructor;
21681
22239
  default: boolean;
21682
22240
  };
21683
22241
  }>> & Readonly<{}>, {
21684
- text: string;
21685
22242
  side: string;
22243
+ text: string;
21686
22244
  enabled: boolean;
21687
22245
  forceOpen: boolean;
21688
22246
  maxWidth: string;
@@ -21742,7 +22300,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
21742
22300
  escapeKeyDown: (event: KeyboardEvent) => any;
21743
22301
  pointerDownOutside: (event: Event) => any;
21744
22302
  }, PublicProps, {
21745
- class: HTMLAttributes["class"];
21746
22303
  sideOffset: number;
21747
22304
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
21748
22305
  P: {};
@@ -21757,7 +22314,6 @@ class?: HTMLAttributes["class"];
21757
22314
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
21758
22315
  onPointerDownOutside?: ((event: Event) => any) | undefined;
21759
22316
  }>, {}, {}, {}, {}, {
21760
- class: HTMLAttributes["class"];
21761
22317
  sideOffset: number;
21762
22318
  }>;
21763
22319
  __isFragment?: never;
@@ -21772,7 +22328,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
21772
22328
  escapeKeyDown: (event: KeyboardEvent) => any;
21773
22329
  pointerDownOutside: (event: Event) => any;
21774
22330
  }, string, {
21775
- class: HTMLAttributes["class"];
21776
22331
  sideOffset: number;
21777
22332
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
21778
22333
  $slots: {
@@ -22121,8 +22676,8 @@ onClose?: (() => any) | undefined;
22121
22676
  }>, {
22122
22677
  disabled: boolean;
22123
22678
  type: TagType;
22124
- text: string;
22125
22679
  size: TagSize;
22680
+ text: string;
22126
22681
  scheme: string;
22127
22682
  leftIcon: string;
22128
22683
  hasCloseIcon: boolean;
@@ -22137,8 +22692,8 @@ onClose?: (() => any) | undefined;
22137
22692
  }>, {
22138
22693
  disabled: boolean;
22139
22694
  type: TagType;
22140
- text: string;
22141
22695
  size: TagSize;
22696
+ text: string;
22142
22697
  scheme: string;
22143
22698
  leftIcon: string;
22144
22699
  hasCloseIcon: boolean;
@@ -22247,8 +22802,8 @@ default: () => never[];
22247
22802
  disabled: boolean;
22248
22803
  resize: string;
22249
22804
  type: string;
22250
- size: string;
22251
22805
  tooltip: string;
22806
+ size: string;
22252
22807
  message: string;
22253
22808
  errors: unknown[] | null;
22254
22809
  }, {}, {
@@ -22317,15 +22872,15 @@ default: string;
22317
22872
  }>> & Readonly<{}>, {
22318
22873
  disabled: boolean;
22319
22874
  error: string | boolean;
22875
+ tooltip: string;
22320
22876
  label: string;
22321
22877
  size: string;
22322
- tooltip: string;
22323
22878
  fixedLabel: boolean;
22324
22879
  message: string;
22325
22880
  }, {}, {
22326
22881
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
22327
- label: string;
22328
22882
  tooltip: string;
22883
+ label: string;
22329
22884
  useHtmlTooltip: boolean;
22330
22885
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
22331
22886
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -22426,8 +22981,8 @@ default: () => never[];
22426
22981
  disabled: boolean;
22427
22982
  resize: string;
22428
22983
  type: string;
22429
- size: string;
22430
22984
  tooltip: string;
22985
+ size: string;
22431
22986
  message: string;
22432
22987
  errors: unknown[] | null;
22433
22988
  }, {}, {
@@ -22496,15 +23051,15 @@ default: string;
22496
23051
  }>> & Readonly<{}>, {
22497
23052
  disabled: boolean;
22498
23053
  error: string | boolean;
23054
+ tooltip: string;
22499
23055
  label: string;
22500
23056
  size: string;
22501
- tooltip: string;
22502
23057
  fixedLabel: boolean;
22503
23058
  message: string;
22504
23059
  }, {}, {
22505
23060
  UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
22506
- label: string;
22507
23061
  tooltip: string;
23062
+ label: string;
22508
23063
  useHtmlTooltip: boolean;
22509
23064
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
22510
23065
  }, {}, string, ComponentProvideOptions, true, {}, any>;
@@ -22595,8 +23150,8 @@ type: BooleanConstructor;
22595
23150
  default: boolean;
22596
23151
  };
22597
23152
  }>> & Readonly<{}>, {
22598
- text: string;
22599
23153
  side: string;
23154
+ text: string;
22600
23155
  enabled: boolean;
22601
23156
  forceOpen: boolean;
22602
23157
  maxWidth: string;
@@ -22656,7 +23211,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
22656
23211
  escapeKeyDown: (event: KeyboardEvent) => any;
22657
23212
  pointerDownOutside: (event: Event) => any;
22658
23213
  }, PublicProps, {
22659
- class: HTMLAttributes["class"];
22660
23214
  sideOffset: number;
22661
23215
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
22662
23216
  P: {};
@@ -22671,7 +23225,6 @@ class?: HTMLAttributes["class"];
22671
23225
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
22672
23226
  onPointerDownOutside?: ((event: Event) => any) | undefined;
22673
23227
  }>, {}, {}, {}, {}, {
22674
- class: HTMLAttributes["class"];
22675
23228
  sideOffset: number;
22676
23229
  }>;
22677
23230
  __isFragment?: never;
@@ -22686,7 +23239,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
22686
23239
  escapeKeyDown: (event: KeyboardEvent) => any;
22687
23240
  pointerDownOutside: (event: Event) => any;
22688
23241
  }, string, {
22689
- class: HTMLAttributes["class"];
22690
23242
  sideOffset: number;
22691
23243
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
22692
23244
  $slots: {
@@ -22748,8 +23300,8 @@ type: BooleanConstructor;
22748
23300
  default: boolean;
22749
23301
  };
22750
23302
  }>> & Readonly<{}>, {
22751
- text: string;
22752
23303
  side: string;
23304
+ text: string;
22753
23305
  enabled: boolean;
22754
23306
  forceOpen: boolean;
22755
23307
  maxWidth: string;
@@ -22809,7 +23361,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
22809
23361
  escapeKeyDown: (event: KeyboardEvent) => any;
22810
23362
  pointerDownOutside: (event: Event) => any;
22811
23363
  }, PublicProps, {
22812
- class: HTMLAttributes["class"];
22813
23364
  sideOffset: number;
22814
23365
  }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
22815
23366
  P: {};
@@ -22824,7 +23375,6 @@ class?: HTMLAttributes["class"];
22824
23375
  onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
22825
23376
  onPointerDownOutside?: ((event: Event) => any) | undefined;
22826
23377
  }>, {}, {}, {}, {}, {
22827
- class: HTMLAttributes["class"];
22828
23378
  sideOffset: number;
22829
23379
  }>;
22830
23380
  __isFragment?: never;
@@ -22839,7 +23389,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
22839
23389
  escapeKeyDown: (event: KeyboardEvent) => any;
22840
23390
  pointerDownOutside: (event: Event) => any;
22841
23391
  }, string, {
22842
- class: HTMLAttributes["class"];
22843
23392
  sideOffset: number;
22844
23393
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
22845
23394
  $slots: {
@@ -23014,8 +23563,8 @@ UnnnicButton: {
23014
23563
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
23015
23564
  disabled: boolean;
23016
23565
  type: ButtonType;
23017
- text: string;
23018
23566
  size: ButtonSize;
23567
+ text: string;
23019
23568
  iconLeft: string;
23020
23569
  iconRight: string;
23021
23570
  float: boolean;
@@ -23032,8 +23581,8 @@ Defaults: {};
23032
23581
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
23033
23582
  disabled: boolean;
23034
23583
  type: ButtonType;
23035
- text: string;
23036
23584
  size: ButtonSize;
23585
+ text: string;
23037
23586
  iconLeft: string;
23038
23587
  iconRight: string;
23039
23588
  float: boolean;
@@ -23047,8 +23596,8 @@ __isSuspense?: never;
23047
23596
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
23048
23597
  disabled: boolean;
23049
23598
  type: ButtonType;
23050
- text: string;
23051
23599
  size: ButtonSize;
23600
+ text: string;
23052
23601
  iconLeft: string;
23053
23602
  iconRight: string;
23054
23603
  float: boolean;
@@ -23229,8 +23778,8 @@ UnnnicButton: {
23229
23778
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
23230
23779
  disabled: boolean;
23231
23780
  type: ButtonType;
23232
- text: string;
23233
23781
  size: ButtonSize;
23782
+ text: string;
23234
23783
  iconLeft: string;
23235
23784
  iconRight: string;
23236
23785
  float: boolean;
@@ -23247,8 +23796,8 @@ Defaults: {};
23247
23796
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
23248
23797
  disabled: boolean;
23249
23798
  type: ButtonType;
23250
- text: string;
23251
23799
  size: ButtonSize;
23800
+ text: string;
23252
23801
  iconLeft: string;
23253
23802
  iconRight: string;
23254
23803
  float: boolean;
@@ -23262,8 +23811,8 @@ __isSuspense?: never;
23262
23811
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
23263
23812
  disabled: boolean;
23264
23813
  type: ButtonType;
23265
- text: string;
23266
23814
  size: ButtonSize;
23815
+ text: string;
23267
23816
  iconLeft: string;
23268
23817
  iconRight: string;
23269
23818
  float: boolean;
@@ -23558,8 +24107,8 @@ UnnnicButton: {
23558
24107
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
23559
24108
  disabled: boolean;
23560
24109
  type: ButtonType;
23561
- text: string;
23562
24110
  size: ButtonSize;
24111
+ text: string;
23563
24112
  iconLeft: string;
23564
24113
  iconRight: string;
23565
24114
  float: boolean;
@@ -23576,8 +24125,8 @@ Defaults: {};
23576
24125
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
23577
24126
  disabled: boolean;
23578
24127
  type: ButtonType;
23579
- text: string;
23580
24128
  size: ButtonSize;
24129
+ text: string;
23581
24130
  iconLeft: string;
23582
24131
  iconRight: string;
23583
24132
  float: boolean;
@@ -23591,8 +24140,8 @@ __isSuspense?: never;
23591
24140
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
23592
24141
  disabled: boolean;
23593
24142
  type: ButtonType;
23594
- text: string;
23595
24143
  size: ButtonSize;
24144
+ text: string;
23596
24145
  iconLeft: string;
23597
24146
  iconRight: string;
23598
24147
  float: boolean;
@@ -23902,8 +24451,8 @@ UnnnicButton: {
23902
24451
  new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
23903
24452
  disabled: boolean;
23904
24453
  type: ButtonType;
23905
- text: string;
23906
24454
  size: ButtonSize;
24455
+ text: string;
23907
24456
  iconLeft: string;
23908
24457
  iconRight: string;
23909
24458
  float: boolean;
@@ -23920,8 +24469,8 @@ Defaults: {};
23920
24469
  }, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
23921
24470
  disabled: boolean;
23922
24471
  type: ButtonType;
23923
- text: string;
23924
24472
  size: ButtonSize;
24473
+ text: string;
23925
24474
  iconLeft: string;
23926
24475
  iconRight: string;
23927
24476
  float: boolean;
@@ -23935,8 +24484,8 @@ __isSuspense?: never;
23935
24484
  } & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
23936
24485
  disabled: boolean;
23937
24486
  type: ButtonType;
23938
- text: string;
23939
24487
  size: ButtonSize;
24488
+ text: string;
23940
24489
  iconLeft: string;
23941
24490
  iconRight: string;
23942
24491
  float: boolean;