@weni/unnnic-system 3.12.6-alpha-teleports.0 → 3.12.8-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/extensions.json +3 -0
- package/CHANGELOG.md +1080 -0
- package/README.md +1 -9
- package/dist/{es-ebc7770b.mjs → es-52edeb71.mjs} +1 -1
- package/dist/{index-f117a889.mjs → index-756fe685.mjs} +9070 -8660
- package/dist/index.d.ts +1013 -311
- package/dist/{pt-br-b1a08da0.mjs → pt-br-24583c8c.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +181 -177
- package/dist/unnnic.umd.js +33 -33
- package/package.json +1 -1
- package/src/assets/scss/scheme-colors.scss +223 -223
- package/src/components/Alert/__tests__/__snapshots__/Alert.spec.js.snap +1 -1
- package/src/components/ChartFunnel/DefaultFunnel/ChartDefaultFunnelBase.vue +1 -2
- package/src/components/ChartFunnel/SvgFunnel/ChartFunnelTwoRows.vue +60 -61
- package/src/components/Checkbox/Checkbox.vue +9 -3
- package/src/components/CheckboxGroup/CheckboxGroup.vue +7 -5
- package/src/components/Chip/Chip.vue +1 -1
- package/src/components/Drawer/Drawer.vue +20 -9
- package/src/components/Drawer/__tests__/Drawer.spec.js +11 -9
- package/src/components/Drawer/__tests__/__snapshots__/Drawer.spec.js.snap +9 -9
- package/src/components/FormElement/FormElement.vue +97 -88
- package/src/components/Input/BaseInput.vue +25 -5
- package/src/components/Input/Input.scss +2 -3
- package/src/components/Input/Input.vue +26 -3
- package/src/components/Input/TextInput.vue +64 -25
- package/src/components/Input/__test__/TextInput.spec.js +1 -1
- package/src/components/Input/__test__/__snapshots__/Input.spec.js.snap +5 -1
- package/src/components/Input/__test__/__snapshots__/TextInput.spec.js.snap +7 -1
- package/src/components/ModalDialog/ModalDialog.vue +11 -4
- package/src/components/MultiSelect/MultSelectOption.vue +49 -0
- package/src/components/MultiSelect/__tests__/MultiSelect.spec.js +557 -0
- package/src/components/MultiSelect/__tests__/MultiSelectOption.spec.js +229 -0
- package/src/components/MultiSelect/__tests__/__snapshots__/MultiSelect.spec.js.snap +87 -0
- package/src/components/MultiSelect/__tests__/__snapshots__/MultiSelectOption.spec.js.snap +51 -0
- package/src/components/MultiSelect/index.vue +265 -0
- package/src/components/Radio/Radio.vue +13 -7
- package/src/components/Radio/__test__/Radio.spec.js +3 -1
- package/src/components/RadioGroup/RadioGroup.vue +18 -10
- package/src/components/Select/__tests__/Select.spec.js +422 -0
- package/src/components/Select/__tests__/SelectItem.spec.js +330 -0
- package/src/components/Select/__tests__/__snapshots__/Popover.spec.js.snap +8 -0
- package/src/components/Select/__tests__/__snapshots__/Select.spec.js.snap +71 -0
- package/src/components/Select/__tests__/__snapshots__/SelectItem.spec.js.snap +15 -0
- package/src/components/Select/__tests__/__snapshots__/SelectOption.spec.js.snap +25 -0
- package/src/components/Select/__tests__/__snapshots__/SelectPopover.spec.js.snap +8 -0
- package/src/components/Select/index.vue +308 -0
- package/src/components/Switch/Switch.vue +11 -4
- package/src/components/TemplatePreview/TemplatePreview.vue +30 -27
- package/src/components/TemplatePreview/TemplatePreviewModal.vue +11 -11
- package/src/components/TemplatePreview/types.d.ts +3 -3
- package/src/components/Toast/Toast.vue +13 -9
- package/src/components/Toast/ToastManager.ts +1 -4
- package/src/components/Toast/__tests__/ToastManager.spec.js +6 -10
- package/src/components/ToolTip/ToolTip.vue +1 -1
- package/src/components/index.ts +10 -6
- package/src/components/ui/dialog/DialogContent.vue +5 -5
- package/src/components/ui/drawer/DrawerContent.vue +2 -4
- package/src/components/ui/popover/PopoverContent.vue +29 -13
- package/src/components/ui/popover/PopoverOption.vue +5 -1
- package/src/components/ui/tooltip/TooltipContent.vue +2 -5
- package/src/components/ui/tooltip/TooltipTrigger.vue +4 -2
- package/src/index.ts +2 -9
- package/src/lib/layer-manager.ts +52 -24
- package/src/locales/en.json +3 -1
- package/src/locales/es.json +3 -1
- package/src/locales/pt_br.json +3 -1
- package/src/stories/Input.mdx +3 -0
- package/src/stories/LayerManager.docs.mdx +9 -9
- package/src/stories/LayerManager.stories.js +11 -54
- package/src/stories/MultiSelect.stories.js +143 -45
- package/src/stories/Popover.stories.js +5 -0
- package/src/stories/Select.stories.js +161 -0
- package/src/stories/TemplatePreview.stories.js +27 -27
- package/src/stories/TemplatePreviewModal.stories.js +31 -31
- package/src/components/MultiSelect/MultiSelect.vue +0 -297
- package/src/lib/__tests__/teleport-target.spec.ts +0 -73
- package/src/lib/teleport-target.ts +0 -46
package/dist/index.d.ts
CHANGED
|
@@ -162,8 +162,6 @@ declare type TagSize = 'small' | 'medium';
|
|
|
162
162
|
|
|
163
163
|
declare type TagType = 'default' | 'brand' | 'next';
|
|
164
164
|
|
|
165
|
-
declare type TeleportTarget = string | HTMLElement;
|
|
166
|
-
|
|
167
165
|
declare interface ToastButton {
|
|
168
166
|
text: string;
|
|
169
167
|
action: () => void;
|
|
@@ -707,8 +705,8 @@ type: BooleanConstructor;
|
|
|
707
705
|
default: boolean;
|
|
708
706
|
};
|
|
709
707
|
}>> & Readonly<{}>, {
|
|
710
|
-
text: string;
|
|
711
708
|
side: string;
|
|
709
|
+
text: string;
|
|
712
710
|
enabled: boolean;
|
|
713
711
|
forceOpen: boolean;
|
|
714
712
|
maxWidth: string;
|
|
@@ -768,7 +766,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
768
766
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
769
767
|
pointerDownOutside: (event: Event) => any;
|
|
770
768
|
}, PublicProps, {
|
|
771
|
-
class: HTMLAttributes["class"];
|
|
772
769
|
sideOffset: number;
|
|
773
770
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
774
771
|
P: {};
|
|
@@ -783,7 +780,6 @@ class?: HTMLAttributes["class"];
|
|
|
783
780
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
784
781
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
785
782
|
}>, {}, {}, {}, {}, {
|
|
786
|
-
class: HTMLAttributes["class"];
|
|
787
783
|
sideOffset: number;
|
|
788
784
|
}>;
|
|
789
785
|
__isFragment?: never;
|
|
@@ -798,7 +794,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
798
794
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
799
795
|
pointerDownOutside: (event: Event) => any;
|
|
800
796
|
}, string, {
|
|
801
|
-
class: HTMLAttributes["class"];
|
|
802
797
|
sideOffset: number;
|
|
803
798
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
804
799
|
$slots: {
|
|
@@ -968,8 +963,8 @@ type: BooleanConstructor;
|
|
|
968
963
|
default: boolean;
|
|
969
964
|
};
|
|
970
965
|
}>> & Readonly<{}>, {
|
|
971
|
-
text: string;
|
|
972
966
|
side: string;
|
|
967
|
+
text: string;
|
|
973
968
|
enabled: boolean;
|
|
974
969
|
forceOpen: boolean;
|
|
975
970
|
maxWidth: string;
|
|
@@ -1029,7 +1024,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
1029
1024
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
1030
1025
|
pointerDownOutside: (event: Event) => any;
|
|
1031
1026
|
}, PublicProps, {
|
|
1032
|
-
class: HTMLAttributes["class"];
|
|
1033
1027
|
sideOffset: number;
|
|
1034
1028
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1035
1029
|
P: {};
|
|
@@ -1044,7 +1038,6 @@ class?: HTMLAttributes["class"];
|
|
|
1044
1038
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
1045
1039
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
1046
1040
|
}>, {}, {}, {}, {}, {
|
|
1047
|
-
class: HTMLAttributes["class"];
|
|
1048
1041
|
sideOffset: number;
|
|
1049
1042
|
}>;
|
|
1050
1043
|
__isFragment?: never;
|
|
@@ -1059,7 +1052,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
1059
1052
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
1060
1053
|
pointerDownOutside: (event: Event) => any;
|
|
1061
1054
|
}, string, {
|
|
1062
|
-
class: HTMLAttributes["class"];
|
|
1063
1055
|
sideOffset: number;
|
|
1064
1056
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1065
1057
|
$slots: {
|
|
@@ -1254,8 +1246,8 @@ type: BooleanConstructor;
|
|
|
1254
1246
|
default: boolean;
|
|
1255
1247
|
};
|
|
1256
1248
|
}>> & Readonly<{}>, {
|
|
1257
|
-
text: string;
|
|
1258
1249
|
side: string;
|
|
1250
|
+
text: string;
|
|
1259
1251
|
enabled: boolean;
|
|
1260
1252
|
forceOpen: boolean;
|
|
1261
1253
|
maxWidth: string;
|
|
@@ -1315,7 +1307,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
1315
1307
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
1316
1308
|
pointerDownOutside: (event: Event) => any;
|
|
1317
1309
|
}, PublicProps, {
|
|
1318
|
-
class: HTMLAttributes["class"];
|
|
1319
1310
|
sideOffset: number;
|
|
1320
1311
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1321
1312
|
P: {};
|
|
@@ -1330,7 +1321,6 @@ class?: HTMLAttributes["class"];
|
|
|
1330
1321
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
1331
1322
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
1332
1323
|
}>, {}, {}, {}, {}, {
|
|
1333
|
-
class: HTMLAttributes["class"];
|
|
1334
1324
|
sideOffset: number;
|
|
1335
1325
|
}>;
|
|
1336
1326
|
__isFragment?: never;
|
|
@@ -1345,7 +1335,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
1345
1335
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
1346
1336
|
pointerDownOutside: (event: Event) => any;
|
|
1347
1337
|
}, string, {
|
|
1348
|
-
class: HTMLAttributes["class"];
|
|
1349
1338
|
sideOffset: number;
|
|
1350
1339
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1351
1340
|
$slots: {
|
|
@@ -1515,8 +1504,8 @@ type: BooleanConstructor;
|
|
|
1515
1504
|
default: boolean;
|
|
1516
1505
|
};
|
|
1517
1506
|
}>> & Readonly<{}>, {
|
|
1518
|
-
text: string;
|
|
1519
1507
|
side: string;
|
|
1508
|
+
text: string;
|
|
1520
1509
|
enabled: boolean;
|
|
1521
1510
|
forceOpen: boolean;
|
|
1522
1511
|
maxWidth: string;
|
|
@@ -1576,7 +1565,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
1576
1565
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
1577
1566
|
pointerDownOutside: (event: Event) => any;
|
|
1578
1567
|
}, PublicProps, {
|
|
1579
|
-
class: HTMLAttributes["class"];
|
|
1580
1568
|
sideOffset: number;
|
|
1581
1569
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1582
1570
|
P: {};
|
|
@@ -1591,7 +1579,6 @@ class?: HTMLAttributes["class"];
|
|
|
1591
1579
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
1592
1580
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
1593
1581
|
}>, {}, {}, {}, {}, {
|
|
1594
|
-
class: HTMLAttributes["class"];
|
|
1595
1582
|
sideOffset: number;
|
|
1596
1583
|
}>;
|
|
1597
1584
|
__isFragment?: never;
|
|
@@ -1606,7 +1593,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
1606
1593
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
1607
1594
|
pointerDownOutside: (event: Event) => any;
|
|
1608
1595
|
}, string, {
|
|
1609
|
-
class: HTMLAttributes["class"];
|
|
1610
1596
|
sideOffset: number;
|
|
1611
1597
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1612
1598
|
$slots: {
|
|
@@ -2228,8 +2214,8 @@ export declare const UnnnicButton: {
|
|
|
2228
2214
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
2229
2215
|
disabled: boolean;
|
|
2230
2216
|
type: ButtonType;
|
|
2231
|
-
text: string;
|
|
2232
2217
|
size: ButtonSize;
|
|
2218
|
+
text: string;
|
|
2233
2219
|
iconLeft: string;
|
|
2234
2220
|
iconRight: string;
|
|
2235
2221
|
float: boolean;
|
|
@@ -2246,8 +2232,8 @@ export declare const UnnnicButton: {
|
|
|
2246
2232
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
2247
2233
|
disabled: boolean;
|
|
2248
2234
|
type: ButtonType;
|
|
2249
|
-
text: string;
|
|
2250
2235
|
size: ButtonSize;
|
|
2236
|
+
text: string;
|
|
2251
2237
|
iconLeft: string;
|
|
2252
2238
|
iconRight: string;
|
|
2253
2239
|
float: boolean;
|
|
@@ -2261,8 +2247,8 @@ export declare const UnnnicButton: {
|
|
|
2261
2247
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
2262
2248
|
disabled: boolean;
|
|
2263
2249
|
type: ButtonType;
|
|
2264
|
-
text: string;
|
|
2265
2250
|
size: ButtonSize;
|
|
2251
|
+
text: string;
|
|
2266
2252
|
iconLeft: string;
|
|
2267
2253
|
iconRight: string;
|
|
2268
2254
|
float: boolean;
|
|
@@ -2279,8 +2265,8 @@ export declare const unnnicButton: {
|
|
|
2279
2265
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
2280
2266
|
disabled: boolean;
|
|
2281
2267
|
type: ButtonType;
|
|
2282
|
-
text: string;
|
|
2283
2268
|
size: ButtonSize;
|
|
2269
|
+
text: string;
|
|
2284
2270
|
iconLeft: string;
|
|
2285
2271
|
iconRight: string;
|
|
2286
2272
|
float: boolean;
|
|
@@ -2297,8 +2283,8 @@ export declare const unnnicButton: {
|
|
|
2297
2283
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
2298
2284
|
disabled: boolean;
|
|
2299
2285
|
type: ButtonType;
|
|
2300
|
-
text: string;
|
|
2301
2286
|
size: ButtonSize;
|
|
2287
|
+
text: string;
|
|
2302
2288
|
iconLeft: string;
|
|
2303
2289
|
iconRight: string;
|
|
2304
2290
|
float: boolean;
|
|
@@ -2312,8 +2298,8 @@ export declare const unnnicButton: {
|
|
|
2312
2298
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
2313
2299
|
disabled: boolean;
|
|
2314
2300
|
type: ButtonType;
|
|
2315
|
-
text: string;
|
|
2316
2301
|
size: ButtonSize;
|
|
2302
|
+
text: string;
|
|
2317
2303
|
iconLeft: string;
|
|
2318
2304
|
iconRight: string;
|
|
2319
2305
|
float: boolean;
|
|
@@ -2573,10 +2559,10 @@ type: StringConstructor;
|
|
|
2573
2559
|
default: null;
|
|
2574
2560
|
};
|
|
2575
2561
|
}>> & Readonly<{}>, {
|
|
2576
|
-
value: number;
|
|
2577
2562
|
title: string;
|
|
2578
2563
|
icon: string;
|
|
2579
2564
|
scheme: string;
|
|
2565
|
+
value: number;
|
|
2580
2566
|
percent: number;
|
|
2581
2567
|
invertedPercentage: boolean;
|
|
2582
2568
|
}, {}, {
|
|
@@ -2732,8 +2718,8 @@ type: BooleanConstructor;
|
|
|
2732
2718
|
default: boolean;
|
|
2733
2719
|
};
|
|
2734
2720
|
}>> & Readonly<{}>, {
|
|
2735
|
-
title: string;
|
|
2736
2721
|
enabled: boolean;
|
|
2722
|
+
title: string;
|
|
2737
2723
|
info: string;
|
|
2738
2724
|
icon: string;
|
|
2739
2725
|
scheme: string;
|
|
@@ -2793,8 +2779,8 @@ type: BooleanConstructor;
|
|
|
2793
2779
|
default: boolean;
|
|
2794
2780
|
};
|
|
2795
2781
|
}>> & Readonly<{}>, {
|
|
2796
|
-
text: string;
|
|
2797
2782
|
side: string;
|
|
2783
|
+
text: string;
|
|
2798
2784
|
enabled: boolean;
|
|
2799
2785
|
forceOpen: boolean;
|
|
2800
2786
|
maxWidth: string;
|
|
@@ -2854,7 +2840,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
2854
2840
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
2855
2841
|
pointerDownOutside: (event: Event) => any;
|
|
2856
2842
|
}, PublicProps, {
|
|
2857
|
-
class: HTMLAttributes["class"];
|
|
2858
2843
|
sideOffset: number;
|
|
2859
2844
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
2860
2845
|
P: {};
|
|
@@ -2869,7 +2854,6 @@ class?: HTMLAttributes["class"];
|
|
|
2869
2854
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
2870
2855
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
2871
2856
|
}>, {}, {}, {}, {}, {
|
|
2872
|
-
class: HTMLAttributes["class"];
|
|
2873
2857
|
sideOffset: number;
|
|
2874
2858
|
}>;
|
|
2875
2859
|
__isFragment?: never;
|
|
@@ -2884,7 +2868,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
2884
2868
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
2885
2869
|
pointerDownOutside: (event: Event) => any;
|
|
2886
2870
|
}, string, {
|
|
2887
|
-
class: HTMLAttributes["class"];
|
|
2888
2871
|
sideOffset: number;
|
|
2889
2872
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
2890
2873
|
$slots: {
|
|
@@ -3014,8 +2997,8 @@ type: StringConstructor;
|
|
|
3014
2997
|
default: null;
|
|
3015
2998
|
};
|
|
3016
2999
|
}>> & Readonly<{}>, {
|
|
3017
|
-
title: string;
|
|
3018
3000
|
enabled: boolean;
|
|
3001
|
+
title: string;
|
|
3019
3002
|
icon: string;
|
|
3020
3003
|
scheme: string;
|
|
3021
3004
|
description: string;
|
|
@@ -3217,8 +3200,8 @@ type: BooleanConstructor;
|
|
|
3217
3200
|
default: boolean;
|
|
3218
3201
|
};
|
|
3219
3202
|
}>> & Readonly<{}>, {
|
|
3220
|
-
title: string;
|
|
3221
3203
|
enabled: boolean;
|
|
3204
|
+
title: string;
|
|
3222
3205
|
icon: string;
|
|
3223
3206
|
clickable: boolean;
|
|
3224
3207
|
description: string;
|
|
@@ -3411,14 +3394,14 @@ default: () => void;
|
|
|
3411
3394
|
};
|
|
3412
3395
|
}>> & Readonly<{}>, {
|
|
3413
3396
|
type: string;
|
|
3414
|
-
value: number;
|
|
3415
|
-
title: string;
|
|
3416
3397
|
text: string;
|
|
3417
3398
|
enabled: boolean;
|
|
3399
|
+
title: string;
|
|
3418
3400
|
info: string;
|
|
3419
3401
|
icon: string;
|
|
3420
3402
|
clickable: boolean;
|
|
3421
3403
|
scheme: string;
|
|
3404
|
+
value: number;
|
|
3422
3405
|
description: string;
|
|
3423
3406
|
percent: number;
|
|
3424
3407
|
invertedPercentage: boolean;
|
|
@@ -3571,10 +3554,10 @@ type: StringConstructor;
|
|
|
3571
3554
|
default: null;
|
|
3572
3555
|
};
|
|
3573
3556
|
}>> & Readonly<{}>, {
|
|
3574
|
-
value: number;
|
|
3575
3557
|
title: string;
|
|
3576
3558
|
icon: string;
|
|
3577
3559
|
scheme: string;
|
|
3560
|
+
value: number;
|
|
3578
3561
|
percent: number;
|
|
3579
3562
|
invertedPercentage: boolean;
|
|
3580
3563
|
}, {}, {
|
|
@@ -3730,8 +3713,8 @@ type: BooleanConstructor;
|
|
|
3730
3713
|
default: boolean;
|
|
3731
3714
|
};
|
|
3732
3715
|
}>> & Readonly<{}>, {
|
|
3733
|
-
title: string;
|
|
3734
3716
|
enabled: boolean;
|
|
3717
|
+
title: string;
|
|
3735
3718
|
info: string;
|
|
3736
3719
|
icon: string;
|
|
3737
3720
|
scheme: string;
|
|
@@ -3791,8 +3774,8 @@ type: BooleanConstructor;
|
|
|
3791
3774
|
default: boolean;
|
|
3792
3775
|
};
|
|
3793
3776
|
}>> & Readonly<{}>, {
|
|
3794
|
-
text: string;
|
|
3795
3777
|
side: string;
|
|
3778
|
+
text: string;
|
|
3796
3779
|
enabled: boolean;
|
|
3797
3780
|
forceOpen: boolean;
|
|
3798
3781
|
maxWidth: string;
|
|
@@ -3852,7 +3835,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
3852
3835
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
3853
3836
|
pointerDownOutside: (event: Event) => any;
|
|
3854
3837
|
}, PublicProps, {
|
|
3855
|
-
class: HTMLAttributes["class"];
|
|
3856
3838
|
sideOffset: number;
|
|
3857
3839
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
3858
3840
|
P: {};
|
|
@@ -3867,7 +3849,6 @@ class?: HTMLAttributes["class"];
|
|
|
3867
3849
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
3868
3850
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
3869
3851
|
}>, {}, {}, {}, {}, {
|
|
3870
|
-
class: HTMLAttributes["class"];
|
|
3871
3852
|
sideOffset: number;
|
|
3872
3853
|
}>;
|
|
3873
3854
|
__isFragment?: never;
|
|
@@ -3882,7 +3863,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
3882
3863
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
3883
3864
|
pointerDownOutside: (event: Event) => any;
|
|
3884
3865
|
}, string, {
|
|
3885
|
-
class: HTMLAttributes["class"];
|
|
3886
3866
|
sideOffset: number;
|
|
3887
3867
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
3888
3868
|
$slots: {
|
|
@@ -4012,8 +3992,8 @@ type: StringConstructor;
|
|
|
4012
3992
|
default: null;
|
|
4013
3993
|
};
|
|
4014
3994
|
}>> & Readonly<{}>, {
|
|
4015
|
-
title: string;
|
|
4016
3995
|
enabled: boolean;
|
|
3996
|
+
title: string;
|
|
4017
3997
|
icon: string;
|
|
4018
3998
|
scheme: string;
|
|
4019
3999
|
description: string;
|
|
@@ -4215,8 +4195,8 @@ type: BooleanConstructor;
|
|
|
4215
4195
|
default: boolean;
|
|
4216
4196
|
};
|
|
4217
4197
|
}>> & Readonly<{}>, {
|
|
4218
|
-
title: string;
|
|
4219
4198
|
enabled: boolean;
|
|
4199
|
+
title: string;
|
|
4220
4200
|
icon: string;
|
|
4221
4201
|
clickable: boolean;
|
|
4222
4202
|
description: string;
|
|
@@ -4409,14 +4389,14 @@ default: () => void;
|
|
|
4409
4389
|
};
|
|
4410
4390
|
}>> & Readonly<{}>, {
|
|
4411
4391
|
type: string;
|
|
4412
|
-
value: number;
|
|
4413
|
-
title: string;
|
|
4414
4392
|
text: string;
|
|
4415
4393
|
enabled: boolean;
|
|
4394
|
+
title: string;
|
|
4416
4395
|
info: string;
|
|
4417
4396
|
icon: string;
|
|
4418
4397
|
clickable: boolean;
|
|
4419
4398
|
scheme: string;
|
|
4399
|
+
value: number;
|
|
4420
4400
|
description: string;
|
|
4421
4401
|
percent: number;
|
|
4422
4402
|
invertedPercentage: boolean;
|
|
@@ -4468,8 +4448,8 @@ onClose?: (() => any) | undefined;
|
|
|
4468
4448
|
}>, {
|
|
4469
4449
|
disabled: boolean;
|
|
4470
4450
|
type: TagType;
|
|
4471
|
-
text: string;
|
|
4472
4451
|
size: TagSize;
|
|
4452
|
+
text: string;
|
|
4473
4453
|
scheme: string;
|
|
4474
4454
|
leftIcon: string;
|
|
4475
4455
|
hasCloseIcon: boolean;
|
|
@@ -4514,8 +4494,8 @@ onClose?: (() => any) | undefined;
|
|
|
4514
4494
|
}>, {
|
|
4515
4495
|
disabled: boolean;
|
|
4516
4496
|
type: TagType;
|
|
4517
|
-
text: string;
|
|
4518
4497
|
size: TagSize;
|
|
4498
|
+
text: string;
|
|
4519
4499
|
scheme: string;
|
|
4520
4500
|
leftIcon: string;
|
|
4521
4501
|
hasCloseIcon: boolean;
|
|
@@ -4886,8 +4866,8 @@ type: BooleanConstructor;
|
|
|
4886
4866
|
default: boolean;
|
|
4887
4867
|
};
|
|
4888
4868
|
}>> & Readonly<{}>, {
|
|
4889
|
-
text: string;
|
|
4890
4869
|
side: string;
|
|
4870
|
+
text: string;
|
|
4891
4871
|
enabled: boolean;
|
|
4892
4872
|
forceOpen: boolean;
|
|
4893
4873
|
maxWidth: string;
|
|
@@ -4947,7 +4927,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
4947
4927
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4948
4928
|
pointerDownOutside: (event: Event) => any;
|
|
4949
4929
|
}, PublicProps, {
|
|
4950
|
-
class: HTMLAttributes["class"];
|
|
4951
4930
|
sideOffset: number;
|
|
4952
4931
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
4953
4932
|
P: {};
|
|
@@ -4962,7 +4941,6 @@ class?: HTMLAttributes["class"];
|
|
|
4962
4941
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
4963
4942
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
4964
4943
|
}>, {}, {}, {}, {}, {
|
|
4965
|
-
class: HTMLAttributes["class"];
|
|
4966
4944
|
sideOffset: number;
|
|
4967
4945
|
}>;
|
|
4968
4946
|
__isFragment?: never;
|
|
@@ -4977,7 +4955,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
4977
4955
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
4978
4956
|
pointerDownOutside: (event: Event) => any;
|
|
4979
4957
|
}, string, {
|
|
4980
|
-
class: HTMLAttributes["class"];
|
|
4981
4958
|
sideOffset: number;
|
|
4982
4959
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
4983
4960
|
$slots: {
|
|
@@ -5255,8 +5232,8 @@ type: BooleanConstructor;
|
|
|
5255
5232
|
default: boolean;
|
|
5256
5233
|
};
|
|
5257
5234
|
}>> & Readonly<{}>, {
|
|
5258
|
-
text: string;
|
|
5259
5235
|
side: string;
|
|
5236
|
+
text: string;
|
|
5260
5237
|
enabled: boolean;
|
|
5261
5238
|
forceOpen: boolean;
|
|
5262
5239
|
maxWidth: string;
|
|
@@ -5316,7 +5293,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
5316
5293
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
5317
5294
|
pointerDownOutside: (event: Event) => any;
|
|
5318
5295
|
}, PublicProps, {
|
|
5319
|
-
class: HTMLAttributes["class"];
|
|
5320
5296
|
sideOffset: number;
|
|
5321
5297
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
5322
5298
|
P: {};
|
|
@@ -5331,7 +5307,6 @@ class?: HTMLAttributes["class"];
|
|
|
5331
5307
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
5332
5308
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
5333
5309
|
}>, {}, {}, {}, {}, {
|
|
5334
|
-
class: HTMLAttributes["class"];
|
|
5335
5310
|
sideOffset: number;
|
|
5336
5311
|
}>;
|
|
5337
5312
|
__isFragment?: never;
|
|
@@ -5346,7 +5321,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
5346
5321
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
5347
5322
|
pointerDownOutside: (event: Event) => any;
|
|
5348
5323
|
}, string, {
|
|
5349
|
-
class: HTMLAttributes["class"];
|
|
5350
5324
|
sideOffset: number;
|
|
5351
5325
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
5352
5326
|
$slots: {
|
|
@@ -5507,8 +5481,8 @@ onClose?: (() => any) | undefined;
|
|
|
5507
5481
|
}>, {
|
|
5508
5482
|
disabled: boolean;
|
|
5509
5483
|
type: TagType;
|
|
5510
|
-
text: string;
|
|
5511
5484
|
size: TagSize;
|
|
5485
|
+
text: string;
|
|
5512
5486
|
scheme: string;
|
|
5513
5487
|
leftIcon: string;
|
|
5514
5488
|
hasCloseIcon: boolean;
|
|
@@ -5631,8 +5605,8 @@ onClose?: (() => any) | undefined;
|
|
|
5631
5605
|
}>, {
|
|
5632
5606
|
disabled: boolean;
|
|
5633
5607
|
type: TagType;
|
|
5634
|
-
text: string;
|
|
5635
5608
|
size: TagSize;
|
|
5609
|
+
text: string;
|
|
5636
5610
|
scheme: string;
|
|
5637
5611
|
leftIcon: string;
|
|
5638
5612
|
hasCloseIcon: boolean;
|
|
@@ -5740,8 +5714,8 @@ UnnnicButton: {
|
|
|
5740
5714
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
5741
5715
|
disabled: boolean;
|
|
5742
5716
|
type: ButtonType;
|
|
5743
|
-
text: string;
|
|
5744
5717
|
size: ButtonSize;
|
|
5718
|
+
text: string;
|
|
5745
5719
|
iconLeft: string;
|
|
5746
5720
|
iconRight: string;
|
|
5747
5721
|
float: boolean;
|
|
@@ -5758,8 +5732,8 @@ Defaults: {};
|
|
|
5758
5732
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
5759
5733
|
disabled: boolean;
|
|
5760
5734
|
type: ButtonType;
|
|
5761
|
-
text: string;
|
|
5762
5735
|
size: ButtonSize;
|
|
5736
|
+
text: string;
|
|
5763
5737
|
iconLeft: string;
|
|
5764
5738
|
iconRight: string;
|
|
5765
5739
|
float: boolean;
|
|
@@ -5773,8 +5747,8 @@ __isSuspense?: never;
|
|
|
5773
5747
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
5774
5748
|
disabled: boolean;
|
|
5775
5749
|
type: ButtonType;
|
|
5776
|
-
text: string;
|
|
5777
5750
|
size: ButtonSize;
|
|
5751
|
+
text: string;
|
|
5778
5752
|
iconLeft: string;
|
|
5779
5753
|
iconRight: string;
|
|
5780
5754
|
float: boolean;
|
|
@@ -5839,8 +5813,8 @@ type: BooleanConstructor;
|
|
|
5839
5813
|
default: boolean;
|
|
5840
5814
|
};
|
|
5841
5815
|
}>> & Readonly<{}>, {
|
|
5842
|
-
text: string;
|
|
5843
5816
|
side: string;
|
|
5817
|
+
text: string;
|
|
5844
5818
|
enabled: boolean;
|
|
5845
5819
|
forceOpen: boolean;
|
|
5846
5820
|
maxWidth: string;
|
|
@@ -5900,7 +5874,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
5900
5874
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
5901
5875
|
pointerDownOutside: (event: Event) => any;
|
|
5902
5876
|
}, PublicProps, {
|
|
5903
|
-
class: HTMLAttributes["class"];
|
|
5904
5877
|
sideOffset: number;
|
|
5905
5878
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
5906
5879
|
P: {};
|
|
@@ -5915,7 +5888,6 @@ class?: HTMLAttributes["class"];
|
|
|
5915
5888
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
5916
5889
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
5917
5890
|
}>, {}, {}, {}, {}, {
|
|
5918
|
-
class: HTMLAttributes["class"];
|
|
5919
5891
|
sideOffset: number;
|
|
5920
5892
|
}>;
|
|
5921
5893
|
__isFragment?: never;
|
|
@@ -5930,7 +5902,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
5930
5902
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
5931
5903
|
pointerDownOutside: (event: Event) => any;
|
|
5932
5904
|
}, string, {
|
|
5933
|
-
class: HTMLAttributes["class"];
|
|
5934
5905
|
sideOffset: number;
|
|
5935
5906
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
5936
5907
|
$slots: {
|
|
@@ -5992,8 +5963,8 @@ UnnnicButton: {
|
|
|
5992
5963
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
5993
5964
|
disabled: boolean;
|
|
5994
5965
|
type: ButtonType;
|
|
5995
|
-
text: string;
|
|
5996
5966
|
size: ButtonSize;
|
|
5967
|
+
text: string;
|
|
5997
5968
|
iconLeft: string;
|
|
5998
5969
|
iconRight: string;
|
|
5999
5970
|
float: boolean;
|
|
@@ -6010,8 +5981,8 @@ Defaults: {};
|
|
|
6010
5981
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
6011
5982
|
disabled: boolean;
|
|
6012
5983
|
type: ButtonType;
|
|
6013
|
-
text: string;
|
|
6014
5984
|
size: ButtonSize;
|
|
5985
|
+
text: string;
|
|
6015
5986
|
iconLeft: string;
|
|
6016
5987
|
iconRight: string;
|
|
6017
5988
|
float: boolean;
|
|
@@ -6025,8 +5996,8 @@ __isSuspense?: never;
|
|
|
6025
5996
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
6026
5997
|
disabled: boolean;
|
|
6027
5998
|
type: ButtonType;
|
|
6028
|
-
text: string;
|
|
6029
5999
|
size: ButtonSize;
|
|
6000
|
+
text: string;
|
|
6030
6001
|
iconLeft: string;
|
|
6031
6002
|
iconRight: string;
|
|
6032
6003
|
float: boolean;
|
|
@@ -6091,8 +6062,8 @@ type: BooleanConstructor;
|
|
|
6091
6062
|
default: boolean;
|
|
6092
6063
|
};
|
|
6093
6064
|
}>> & Readonly<{}>, {
|
|
6094
|
-
text: string;
|
|
6095
6065
|
side: string;
|
|
6066
|
+
text: string;
|
|
6096
6067
|
enabled: boolean;
|
|
6097
6068
|
forceOpen: boolean;
|
|
6098
6069
|
maxWidth: string;
|
|
@@ -6152,7 +6123,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
6152
6123
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
6153
6124
|
pointerDownOutside: (event: Event) => any;
|
|
6154
6125
|
}, PublicProps, {
|
|
6155
|
-
class: HTMLAttributes["class"];
|
|
6156
6126
|
sideOffset: number;
|
|
6157
6127
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6158
6128
|
P: {};
|
|
@@ -6167,7 +6137,6 @@ class?: HTMLAttributes["class"];
|
|
|
6167
6137
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
6168
6138
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
6169
6139
|
}>, {}, {}, {}, {}, {
|
|
6170
|
-
class: HTMLAttributes["class"];
|
|
6171
6140
|
sideOffset: number;
|
|
6172
6141
|
}>;
|
|
6173
6142
|
__isFragment?: never;
|
|
@@ -6182,7 +6151,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
6182
6151
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
6183
6152
|
pointerDownOutside: (event: Event) => any;
|
|
6184
6153
|
}, string, {
|
|
6185
|
-
class: HTMLAttributes["class"];
|
|
6186
6154
|
sideOffset: number;
|
|
6187
6155
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
6188
6156
|
$slots: {
|
|
@@ -6270,8 +6238,8 @@ type: BooleanConstructor;
|
|
|
6270
6238
|
default: boolean;
|
|
6271
6239
|
};
|
|
6272
6240
|
}>> & Readonly<{}>, {
|
|
6273
|
-
text: string;
|
|
6274
6241
|
side: string;
|
|
6242
|
+
text: string;
|
|
6275
6243
|
enabled: boolean;
|
|
6276
6244
|
forceOpen: boolean;
|
|
6277
6245
|
maxWidth: string;
|
|
@@ -6331,7 +6299,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
6331
6299
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
6332
6300
|
pointerDownOutside: (event: Event) => any;
|
|
6333
6301
|
}, PublicProps, {
|
|
6334
|
-
class: HTMLAttributes["class"];
|
|
6335
6302
|
sideOffset: number;
|
|
6336
6303
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6337
6304
|
P: {};
|
|
@@ -6346,7 +6313,6 @@ class?: HTMLAttributes["class"];
|
|
|
6346
6313
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
6347
6314
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
6348
6315
|
}>, {}, {}, {}, {}, {
|
|
6349
|
-
class: HTMLAttributes["class"];
|
|
6350
6316
|
sideOffset: number;
|
|
6351
6317
|
}>;
|
|
6352
6318
|
__isFragment?: never;
|
|
@@ -6361,7 +6327,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
6361
6327
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
6362
6328
|
pointerDownOutside: (event: Event) => any;
|
|
6363
6329
|
}, string, {
|
|
6364
|
-
class: HTMLAttributes["class"];
|
|
6365
6330
|
sideOffset: number;
|
|
6366
6331
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
6367
6332
|
$slots: {
|
|
@@ -6445,8 +6410,8 @@ type: BooleanConstructor;
|
|
|
6445
6410
|
default: boolean;
|
|
6446
6411
|
};
|
|
6447
6412
|
}>> & Readonly<{}>, {
|
|
6448
|
-
text: string;
|
|
6449
6413
|
side: string;
|
|
6414
|
+
text: string;
|
|
6450
6415
|
enabled: boolean;
|
|
6451
6416
|
forceOpen: boolean;
|
|
6452
6417
|
maxWidth: string;
|
|
@@ -6506,7 +6471,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
6506
6471
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
6507
6472
|
pointerDownOutside: (event: Event) => any;
|
|
6508
6473
|
}, PublicProps, {
|
|
6509
|
-
class: HTMLAttributes["class"];
|
|
6510
6474
|
sideOffset: number;
|
|
6511
6475
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6512
6476
|
P: {};
|
|
@@ -6521,7 +6485,6 @@ class?: HTMLAttributes["class"];
|
|
|
6521
6485
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
6522
6486
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
6523
6487
|
}>, {}, {}, {}, {}, {
|
|
6524
|
-
class: HTMLAttributes["class"];
|
|
6525
6488
|
sideOffset: number;
|
|
6526
6489
|
}>;
|
|
6527
6490
|
__isFragment?: never;
|
|
@@ -6536,7 +6499,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
6536
6499
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
6537
6500
|
pointerDownOutside: (event: Event) => any;
|
|
6538
6501
|
}, string, {
|
|
6539
|
-
class: HTMLAttributes["class"];
|
|
6540
6502
|
sideOffset: number;
|
|
6541
6503
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
6542
6504
|
$slots: {
|
|
@@ -6913,8 +6875,8 @@ onClick?: ((...args: any[]) => any) | undefined;
|
|
|
6913
6875
|
onClickPin?: ((...args: any[]) => any) | undefined;
|
|
6914
6876
|
}>, {
|
|
6915
6877
|
disabled: boolean;
|
|
6916
|
-
title: string;
|
|
6917
6878
|
locale: string;
|
|
6879
|
+
title: string;
|
|
6918
6880
|
selected: boolean;
|
|
6919
6881
|
lastMessage: Record<string, any>;
|
|
6920
6882
|
lastInteractionTimePrefix: string;
|
|
@@ -7333,8 +7295,8 @@ onClick?: ((...args: any[]) => any) | undefined;
|
|
|
7333
7295
|
onClickPin?: ((...args: any[]) => any) | undefined;
|
|
7334
7296
|
}>, {
|
|
7335
7297
|
disabled: boolean;
|
|
7336
|
-
title: string;
|
|
7337
7298
|
locale: string;
|
|
7299
|
+
title: string;
|
|
7338
7300
|
selected: boolean;
|
|
7339
7301
|
lastMessage: Record<string, any>;
|
|
7340
7302
|
lastInteractionTimePrefix: string;
|
|
@@ -7979,8 +7941,8 @@ type: BooleanConstructor;
|
|
|
7979
7941
|
default: boolean;
|
|
7980
7942
|
};
|
|
7981
7943
|
}>> & Readonly<{}>, {
|
|
7982
|
-
text: string;
|
|
7983
7944
|
side: string;
|
|
7945
|
+
text: string;
|
|
7984
7946
|
enabled: boolean;
|
|
7985
7947
|
forceOpen: boolean;
|
|
7986
7948
|
maxWidth: string;
|
|
@@ -8040,7 +8002,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
8040
8002
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8041
8003
|
pointerDownOutside: (event: Event) => any;
|
|
8042
8004
|
}, PublicProps, {
|
|
8043
|
-
class: HTMLAttributes["class"];
|
|
8044
8005
|
sideOffset: number;
|
|
8045
8006
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
8046
8007
|
P: {};
|
|
@@ -8055,7 +8016,6 @@ class?: HTMLAttributes["class"];
|
|
|
8055
8016
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
8056
8017
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
8057
8018
|
}>, {}, {}, {}, {}, {
|
|
8058
|
-
class: HTMLAttributes["class"];
|
|
8059
8019
|
sideOffset: number;
|
|
8060
8020
|
}>;
|
|
8061
8021
|
__isFragment?: never;
|
|
@@ -8070,7 +8030,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
8070
8030
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8071
8031
|
pointerDownOutside: (event: Event) => any;
|
|
8072
8032
|
}, string, {
|
|
8073
|
-
class: HTMLAttributes["class"];
|
|
8074
8033
|
sideOffset: number;
|
|
8075
8034
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
8076
8035
|
$slots: {
|
|
@@ -8462,8 +8421,8 @@ type: BooleanConstructor;
|
|
|
8462
8421
|
default: boolean;
|
|
8463
8422
|
};
|
|
8464
8423
|
}>> & Readonly<{}>, {
|
|
8465
|
-
text: string;
|
|
8466
8424
|
side: string;
|
|
8425
|
+
text: string;
|
|
8467
8426
|
enabled: boolean;
|
|
8468
8427
|
forceOpen: boolean;
|
|
8469
8428
|
maxWidth: string;
|
|
@@ -8523,7 +8482,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
8523
8482
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8524
8483
|
pointerDownOutside: (event: Event) => any;
|
|
8525
8484
|
}, PublicProps, {
|
|
8526
|
-
class: HTMLAttributes["class"];
|
|
8527
8485
|
sideOffset: number;
|
|
8528
8486
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
8529
8487
|
P: {};
|
|
@@ -8538,7 +8496,6 @@ class?: HTMLAttributes["class"];
|
|
|
8538
8496
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
8539
8497
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
8540
8498
|
}>, {}, {}, {}, {}, {
|
|
8541
|
-
class: HTMLAttributes["class"];
|
|
8542
8499
|
sideOffset: number;
|
|
8543
8500
|
}>;
|
|
8544
8501
|
__isFragment?: never;
|
|
@@ -8553,7 +8510,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
8553
8510
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8554
8511
|
pointerDownOutside: (event: Event) => any;
|
|
8555
8512
|
}, string, {
|
|
8556
|
-
class: HTMLAttributes["class"];
|
|
8557
8513
|
sideOffset: number;
|
|
8558
8514
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
8559
8515
|
$slots: {
|
|
@@ -8943,8 +8899,8 @@ type: BooleanConstructor;
|
|
|
8943
8899
|
default: boolean;
|
|
8944
8900
|
};
|
|
8945
8901
|
}>> & Readonly<{}>, {
|
|
8946
|
-
text: string;
|
|
8947
8902
|
side: string;
|
|
8903
|
+
text: string;
|
|
8948
8904
|
enabled: boolean;
|
|
8949
8905
|
forceOpen: boolean;
|
|
8950
8906
|
maxWidth: string;
|
|
@@ -9004,7 +8960,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
9004
8960
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
9005
8961
|
pointerDownOutside: (event: Event) => any;
|
|
9006
8962
|
}, PublicProps, {
|
|
9007
|
-
class: HTMLAttributes["class"];
|
|
9008
8963
|
sideOffset: number;
|
|
9009
8964
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
9010
8965
|
P: {};
|
|
@@ -9019,7 +8974,6 @@ class?: HTMLAttributes["class"];
|
|
|
9019
8974
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
9020
8975
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
9021
8976
|
}>, {}, {}, {}, {}, {
|
|
9022
|
-
class: HTMLAttributes["class"];
|
|
9023
8977
|
sideOffset: number;
|
|
9024
8978
|
}>;
|
|
9025
8979
|
__isFragment?: never;
|
|
@@ -9034,7 +8988,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
9034
8988
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
9035
8989
|
pointerDownOutside: (event: Event) => any;
|
|
9036
8990
|
}, string, {
|
|
9037
|
-
class: HTMLAttributes["class"];
|
|
9038
8991
|
sideOffset: number;
|
|
9039
8992
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
9040
8993
|
$slots: {
|
|
@@ -9148,8 +9101,8 @@ type: BooleanConstructor;
|
|
|
9148
9101
|
default: boolean;
|
|
9149
9102
|
};
|
|
9150
9103
|
}>> & Readonly<{}>, {
|
|
9151
|
-
text: string;
|
|
9152
9104
|
side: string;
|
|
9105
|
+
text: string;
|
|
9153
9106
|
enabled: boolean;
|
|
9154
9107
|
forceOpen: boolean;
|
|
9155
9108
|
maxWidth: string;
|
|
@@ -9209,7 +9162,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
9209
9162
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
9210
9163
|
pointerDownOutside: (event: Event) => any;
|
|
9211
9164
|
}, PublicProps, {
|
|
9212
|
-
class: HTMLAttributes["class"];
|
|
9213
9165
|
sideOffset: number;
|
|
9214
9166
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
9215
9167
|
P: {};
|
|
@@ -9224,7 +9176,6 @@ class?: HTMLAttributes["class"];
|
|
|
9224
9176
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
9225
9177
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
9226
9178
|
}>, {}, {}, {}, {}, {
|
|
9227
|
-
class: HTMLAttributes["class"];
|
|
9228
9179
|
sideOffset: number;
|
|
9229
9180
|
}>;
|
|
9230
9181
|
__isFragment?: never;
|
|
@@ -9239,7 +9190,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
9239
9190
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
9240
9191
|
pointerDownOutside: (event: Event) => any;
|
|
9241
9192
|
}, string, {
|
|
9242
|
-
class: HTMLAttributes["class"];
|
|
9243
9193
|
sideOffset: number;
|
|
9244
9194
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
9245
9195
|
$slots: {
|
|
@@ -9713,9 +9663,9 @@ type: StringConstructor;
|
|
|
9713
9663
|
default: null;
|
|
9714
9664
|
};
|
|
9715
9665
|
}>> & Readonly<{}>, {
|
|
9666
|
+
text: string;
|
|
9716
9667
|
time: string;
|
|
9717
9668
|
title: string;
|
|
9718
|
-
text: string;
|
|
9719
9669
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9720
9670
|
|
|
9721
9671
|
export declare const unnnicComment: DefineComponent<ExtractPropTypes< {
|
|
@@ -9745,9 +9695,9 @@ type: StringConstructor;
|
|
|
9745
9695
|
default: null;
|
|
9746
9696
|
};
|
|
9747
9697
|
}>> & Readonly<{}>, {
|
|
9698
|
+
text: string;
|
|
9748
9699
|
time: string;
|
|
9749
9700
|
title: string;
|
|
9750
|
-
text: string;
|
|
9751
9701
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9752
9702
|
|
|
9753
9703
|
export declare const UnnnicDataArea: DefineComponent<ExtractPropTypes< {
|
|
@@ -9785,8 +9735,8 @@ type: StringConstructor;
|
|
|
9785
9735
|
default: string;
|
|
9786
9736
|
};
|
|
9787
9737
|
}>> & Readonly<{}>, {
|
|
9788
|
-
title: string;
|
|
9789
9738
|
text: string;
|
|
9739
|
+
title: string;
|
|
9790
9740
|
enableHover: boolean;
|
|
9791
9741
|
hoverText: string;
|
|
9792
9742
|
}, {}, {
|
|
@@ -9843,8 +9793,8 @@ type: BooleanConstructor;
|
|
|
9843
9793
|
default: boolean;
|
|
9844
9794
|
};
|
|
9845
9795
|
}>> & Readonly<{}>, {
|
|
9846
|
-
text: string;
|
|
9847
9796
|
side: string;
|
|
9797
|
+
text: string;
|
|
9848
9798
|
enabled: boolean;
|
|
9849
9799
|
forceOpen: boolean;
|
|
9850
9800
|
maxWidth: string;
|
|
@@ -9904,7 +9854,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
9904
9854
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
9905
9855
|
pointerDownOutside: (event: Event) => any;
|
|
9906
9856
|
}, PublicProps, {
|
|
9907
|
-
class: HTMLAttributes["class"];
|
|
9908
9857
|
sideOffset: number;
|
|
9909
9858
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
9910
9859
|
P: {};
|
|
@@ -9919,7 +9868,6 @@ class?: HTMLAttributes["class"];
|
|
|
9919
9868
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
9920
9869
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
9921
9870
|
}>, {}, {}, {}, {}, {
|
|
9922
|
-
class: HTMLAttributes["class"];
|
|
9923
9871
|
sideOffset: number;
|
|
9924
9872
|
}>;
|
|
9925
9873
|
__isFragment?: never;
|
|
@@ -9934,7 +9882,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
9934
9882
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
9935
9883
|
pointerDownOutside: (event: Event) => any;
|
|
9936
9884
|
}, string, {
|
|
9937
|
-
class: HTMLAttributes["class"];
|
|
9938
9885
|
sideOffset: number;
|
|
9939
9886
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
9940
9887
|
$slots: {
|
|
@@ -9979,8 +9926,8 @@ type: StringConstructor;
|
|
|
9979
9926
|
default: string;
|
|
9980
9927
|
};
|
|
9981
9928
|
}>> & Readonly<{}>, {
|
|
9982
|
-
title: string;
|
|
9983
9929
|
text: string;
|
|
9930
|
+
title: string;
|
|
9984
9931
|
enableHover: boolean;
|
|
9985
9932
|
hoverText: string;
|
|
9986
9933
|
}, {}, {
|
|
@@ -10037,8 +9984,8 @@ type: BooleanConstructor;
|
|
|
10037
9984
|
default: boolean;
|
|
10038
9985
|
};
|
|
10039
9986
|
}>> & Readonly<{}>, {
|
|
10040
|
-
text: string;
|
|
10041
9987
|
side: string;
|
|
9988
|
+
text: string;
|
|
10042
9989
|
enabled: boolean;
|
|
10043
9990
|
forceOpen: boolean;
|
|
10044
9991
|
maxWidth: string;
|
|
@@ -10098,7 +10045,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
10098
10045
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
10099
10046
|
pointerDownOutside: (event: Event) => any;
|
|
10100
10047
|
}, PublicProps, {
|
|
10101
|
-
class: HTMLAttributes["class"];
|
|
10102
10048
|
sideOffset: number;
|
|
10103
10049
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
10104
10050
|
P: {};
|
|
@@ -10113,7 +10059,6 @@ class?: HTMLAttributes["class"];
|
|
|
10113
10059
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
10114
10060
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
10115
10061
|
}>, {}, {}, {}, {}, {
|
|
10116
|
-
class: HTMLAttributes["class"];
|
|
10117
10062
|
sideOffset: number;
|
|
10118
10063
|
}>;
|
|
10119
10064
|
__isFragment?: never;
|
|
@@ -10128,7 +10073,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
10128
10073
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
10129
10074
|
pointerDownOutside: (event: Event) => any;
|
|
10130
10075
|
}, string, {
|
|
10131
|
-
class: HTMLAttributes["class"];
|
|
10132
10076
|
sideOffset: number;
|
|
10133
10077
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
10134
10078
|
$slots: {
|
|
@@ -10284,13 +10228,29 @@ disabled: {
|
|
|
10284
10228
|
type: BooleanConstructor;
|
|
10285
10229
|
default: boolean;
|
|
10286
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
|
+
};
|
|
10287
10247
|
}>, {}, {
|
|
10288
10248
|
val: string;
|
|
10289
10249
|
}, {
|
|
10290
10250
|
computedError(): string | boolean;
|
|
10291
10251
|
}, {
|
|
10292
10252
|
fullySanitize: fullySanitize;
|
|
10293
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
10253
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
10294
10254
|
placeholder: {
|
|
10295
10255
|
type: StringConstructor;
|
|
10296
10256
|
default: string;
|
|
@@ -10368,25 +10328,46 @@ disabled: {
|
|
|
10368
10328
|
type: BooleanConstructor;
|
|
10369
10329
|
default: boolean;
|
|
10370
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
|
+
};
|
|
10371
10347
|
}>> & Readonly<{
|
|
10372
10348
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
10349
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
10373
10350
|
}>, {
|
|
10374
10351
|
disabled: boolean;
|
|
10352
|
+
focus: boolean;
|
|
10375
10353
|
type: string;
|
|
10376
10354
|
placeholder: string;
|
|
10355
|
+
tooltip: string;
|
|
10377
10356
|
label: string;
|
|
10378
|
-
mask: string | unknown[];
|
|
10379
10357
|
size: string;
|
|
10380
|
-
|
|
10358
|
+
mask: string | unknown[];
|
|
10381
10359
|
message: string;
|
|
10382
10360
|
modelValue: string;
|
|
10383
10361
|
nativeType: string;
|
|
10384
10362
|
maxlength: number | null;
|
|
10363
|
+
readonly: boolean;
|
|
10364
|
+
useFocusProp: boolean;
|
|
10385
10365
|
iconLeft: string;
|
|
10386
10366
|
iconRight: string;
|
|
10387
10367
|
iconLeftClickable: boolean;
|
|
10388
10368
|
iconRightClickable: boolean;
|
|
10389
10369
|
allowTogglePassword: boolean;
|
|
10370
|
+
showClear: boolean;
|
|
10390
10371
|
errors: string | unknown[];
|
|
10391
10372
|
hasCloudyColor: boolean;
|
|
10392
10373
|
showMaxlengthCounter: boolean;
|
|
@@ -10441,6 +10422,22 @@ disabled: {
|
|
|
10441
10422
|
type: BooleanConstructor;
|
|
10442
10423
|
default: boolean;
|
|
10443
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
|
+
};
|
|
10444
10441
|
}>, {}, {
|
|
10445
10442
|
isFocused: boolean;
|
|
10446
10443
|
showPassword: boolean;
|
|
@@ -10450,12 +10447,13 @@ iconRightSvg(): string;
|
|
|
10450
10447
|
iconScheme(): "fg-base" | "fg-muted";
|
|
10451
10448
|
attributes(): any;
|
|
10452
10449
|
}, {
|
|
10453
|
-
|
|
10450
|
+
focusInput(): void;
|
|
10454
10451
|
onFocus(): void;
|
|
10455
10452
|
onBlur(): void;
|
|
10456
10453
|
onIconLeftClick(): void;
|
|
10454
|
+
onClearClick(): void;
|
|
10457
10455
|
onIconRightClick(): void;
|
|
10458
|
-
}, 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< {
|
|
10459
10457
|
placeholder: {
|
|
10460
10458
|
type: StringConstructor;
|
|
10461
10459
|
default: null;
|
|
@@ -10505,22 +10503,43 @@ disabled: {
|
|
|
10505
10503
|
type: BooleanConstructor;
|
|
10506
10504
|
default: boolean;
|
|
10507
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
|
+
};
|
|
10508
10522
|
}>> & Readonly<{
|
|
10523
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
10509
10524
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
10510
10525
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
10511
10526
|
}>, {
|
|
10512
10527
|
disabled: boolean;
|
|
10528
|
+
focus: boolean;
|
|
10513
10529
|
type: string;
|
|
10514
10530
|
placeholder: string;
|
|
10515
10531
|
size: string;
|
|
10516
10532
|
modelValue: string;
|
|
10517
10533
|
nativeType: string;
|
|
10518
10534
|
maxlength: number;
|
|
10535
|
+
readonly: boolean;
|
|
10536
|
+
useFocusProp: boolean;
|
|
10519
10537
|
iconLeft: string;
|
|
10520
10538
|
iconRight: string;
|
|
10521
10539
|
iconLeftClickable: boolean;
|
|
10522
10540
|
iconRightClickable: boolean;
|
|
10523
10541
|
allowTogglePassword: boolean;
|
|
10542
|
+
showClear: boolean;
|
|
10524
10543
|
}, {}, {
|
|
10525
10544
|
BaseInput: DefineComponent<ExtractPropTypes< {
|
|
10526
10545
|
type: {
|
|
@@ -10546,15 +10565,29 @@ default: string;
|
|
|
10546
10565
|
};
|
|
10547
10566
|
hasIconLeft: BooleanConstructor;
|
|
10548
10567
|
hasIconRight: BooleanConstructor;
|
|
10568
|
+
hasClearIcon: BooleanConstructor;
|
|
10549
10569
|
maxlength: {
|
|
10550
10570
|
type: NumberConstructor;
|
|
10551
10571
|
default: null;
|
|
10552
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
|
+
};
|
|
10553
10585
|
}>, {}, {}, {
|
|
10554
10586
|
attributes(): any;
|
|
10555
10587
|
classes(): (string | {
|
|
10556
10588
|
'input--has-icon-left': boolean;
|
|
10557
10589
|
'input--has-icon-right': boolean;
|
|
10590
|
+
'input--has-clear-icon': boolean;
|
|
10558
10591
|
})[];
|
|
10559
10592
|
}, {
|
|
10560
10593
|
fullySanitize: fullySanitize;
|
|
@@ -10582,21 +10615,38 @@ default: string;
|
|
|
10582
10615
|
};
|
|
10583
10616
|
hasIconLeft: BooleanConstructor;
|
|
10584
10617
|
hasIconRight: BooleanConstructor;
|
|
10618
|
+
hasClearIcon: BooleanConstructor;
|
|
10585
10619
|
maxlength: {
|
|
10586
10620
|
type: NumberConstructor;
|
|
10587
10621
|
default: null;
|
|
10588
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
|
+
};
|
|
10589
10635
|
}>> & Readonly<{
|
|
10590
10636
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
10591
10637
|
}>, {
|
|
10638
|
+
focus: boolean;
|
|
10592
10639
|
type: string;
|
|
10593
|
-
mask: string | unknown[];
|
|
10594
10640
|
size: string;
|
|
10641
|
+
mask: string | unknown[];
|
|
10595
10642
|
hasIconLeft: boolean;
|
|
10596
10643
|
hasIconRight: boolean;
|
|
10644
|
+
hasClearIcon: boolean;
|
|
10597
10645
|
modelValue: string;
|
|
10598
10646
|
nativeType: string;
|
|
10599
10647
|
maxlength: number;
|
|
10648
|
+
readonly: boolean;
|
|
10649
|
+
useFocusProp: boolean;
|
|
10600
10650
|
}, {}, {}, {
|
|
10601
10651
|
mask: any;
|
|
10602
10652
|
}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -10681,15 +10731,15 @@ default: string;
|
|
|
10681
10731
|
}>> & Readonly<{}>, {
|
|
10682
10732
|
disabled: boolean;
|
|
10683
10733
|
error: string | boolean;
|
|
10734
|
+
tooltip: string;
|
|
10684
10735
|
label: string;
|
|
10685
10736
|
size: string;
|
|
10686
|
-
tooltip: string;
|
|
10687
10737
|
fixedLabel: boolean;
|
|
10688
10738
|
message: string;
|
|
10689
10739
|
}, {}, {
|
|
10690
10740
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
10691
|
-
label: string;
|
|
10692
10741
|
tooltip: string;
|
|
10742
|
+
label: string;
|
|
10693
10743
|
useHtmlTooltip: boolean;
|
|
10694
10744
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
10695
10745
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -10838,16 +10888,32 @@ disabled: {
|
|
|
10838
10888
|
type: BooleanConstructor;
|
|
10839
10889
|
default: boolean;
|
|
10840
10890
|
};
|
|
10841
|
-
|
|
10842
|
-
|
|
10843
|
-
|
|
10844
|
-
|
|
10845
|
-
|
|
10846
|
-
|
|
10847
|
-
|
|
10848
|
-
|
|
10849
|
-
|
|
10850
|
-
|
|
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;
|
|
10851
10917
|
};
|
|
10852
10918
|
type: {
|
|
10853
10919
|
type: StringConstructor;
|
|
@@ -10922,25 +10988,46 @@ disabled: {
|
|
|
10922
10988
|
type: BooleanConstructor;
|
|
10923
10989
|
default: boolean;
|
|
10924
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
|
+
};
|
|
10925
11007
|
}>> & Readonly<{
|
|
10926
11008
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11009
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
10927
11010
|
}>, {
|
|
10928
11011
|
disabled: boolean;
|
|
11012
|
+
focus: boolean;
|
|
10929
11013
|
type: string;
|
|
10930
11014
|
placeholder: string;
|
|
11015
|
+
tooltip: string;
|
|
10931
11016
|
label: string;
|
|
10932
|
-
mask: string | unknown[];
|
|
10933
11017
|
size: string;
|
|
10934
|
-
|
|
11018
|
+
mask: string | unknown[];
|
|
10935
11019
|
message: string;
|
|
10936
11020
|
modelValue: string;
|
|
10937
11021
|
nativeType: string;
|
|
10938
11022
|
maxlength: number | null;
|
|
11023
|
+
readonly: boolean;
|
|
11024
|
+
useFocusProp: boolean;
|
|
10939
11025
|
iconLeft: string;
|
|
10940
11026
|
iconRight: string;
|
|
10941
11027
|
iconLeftClickable: boolean;
|
|
10942
11028
|
iconRightClickable: boolean;
|
|
10943
11029
|
allowTogglePassword: boolean;
|
|
11030
|
+
showClear: boolean;
|
|
10944
11031
|
errors: string | unknown[];
|
|
10945
11032
|
hasCloudyColor: boolean;
|
|
10946
11033
|
showMaxlengthCounter: boolean;
|
|
@@ -10995,6 +11082,22 @@ disabled: {
|
|
|
10995
11082
|
type: BooleanConstructor;
|
|
10996
11083
|
default: boolean;
|
|
10997
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
|
+
};
|
|
10998
11101
|
}>, {}, {
|
|
10999
11102
|
isFocused: boolean;
|
|
11000
11103
|
showPassword: boolean;
|
|
@@ -11004,12 +11107,13 @@ iconRightSvg(): string;
|
|
|
11004
11107
|
iconScheme(): "fg-base" | "fg-muted";
|
|
11005
11108
|
attributes(): any;
|
|
11006
11109
|
}, {
|
|
11007
|
-
|
|
11110
|
+
focusInput(): void;
|
|
11008
11111
|
onFocus(): void;
|
|
11009
11112
|
onBlur(): void;
|
|
11010
11113
|
onIconLeftClick(): void;
|
|
11114
|
+
onClearClick(): void;
|
|
11011
11115
|
onIconRightClick(): void;
|
|
11012
|
-
}, 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< {
|
|
11013
11117
|
placeholder: {
|
|
11014
11118
|
type: StringConstructor;
|
|
11015
11119
|
default: null;
|
|
@@ -11059,22 +11163,43 @@ disabled: {
|
|
|
11059
11163
|
type: BooleanConstructor;
|
|
11060
11164
|
default: boolean;
|
|
11061
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
|
+
};
|
|
11062
11182
|
}>> & Readonly<{
|
|
11183
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
11063
11184
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
11064
11185
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
11065
11186
|
}>, {
|
|
11066
11187
|
disabled: boolean;
|
|
11188
|
+
focus: boolean;
|
|
11067
11189
|
type: string;
|
|
11068
11190
|
placeholder: string;
|
|
11069
11191
|
size: string;
|
|
11070
11192
|
modelValue: string;
|
|
11071
11193
|
nativeType: string;
|
|
11072
11194
|
maxlength: number;
|
|
11195
|
+
readonly: boolean;
|
|
11196
|
+
useFocusProp: boolean;
|
|
11073
11197
|
iconLeft: string;
|
|
11074
11198
|
iconRight: string;
|
|
11075
11199
|
iconLeftClickable: boolean;
|
|
11076
11200
|
iconRightClickable: boolean;
|
|
11077
11201
|
allowTogglePassword: boolean;
|
|
11202
|
+
showClear: boolean;
|
|
11078
11203
|
}, {}, {
|
|
11079
11204
|
BaseInput: DefineComponent<ExtractPropTypes< {
|
|
11080
11205
|
type: {
|
|
@@ -11100,15 +11225,29 @@ default: string;
|
|
|
11100
11225
|
};
|
|
11101
11226
|
hasIconLeft: BooleanConstructor;
|
|
11102
11227
|
hasIconRight: BooleanConstructor;
|
|
11228
|
+
hasClearIcon: BooleanConstructor;
|
|
11103
11229
|
maxlength: {
|
|
11104
11230
|
type: NumberConstructor;
|
|
11105
11231
|
default: null;
|
|
11106
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
|
+
};
|
|
11107
11245
|
}>, {}, {}, {
|
|
11108
11246
|
attributes(): any;
|
|
11109
11247
|
classes(): (string | {
|
|
11110
11248
|
'input--has-icon-left': boolean;
|
|
11111
11249
|
'input--has-icon-right': boolean;
|
|
11250
|
+
'input--has-clear-icon': boolean;
|
|
11112
11251
|
})[];
|
|
11113
11252
|
}, {
|
|
11114
11253
|
fullySanitize: fullySanitize;
|
|
@@ -11136,21 +11275,38 @@ default: string;
|
|
|
11136
11275
|
};
|
|
11137
11276
|
hasIconLeft: BooleanConstructor;
|
|
11138
11277
|
hasIconRight: BooleanConstructor;
|
|
11278
|
+
hasClearIcon: BooleanConstructor;
|
|
11139
11279
|
maxlength: {
|
|
11140
11280
|
type: NumberConstructor;
|
|
11141
11281
|
default: null;
|
|
11142
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
|
+
};
|
|
11143
11295
|
}>> & Readonly<{
|
|
11144
11296
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11145
11297
|
}>, {
|
|
11298
|
+
focus: boolean;
|
|
11146
11299
|
type: string;
|
|
11147
|
-
mask: string | unknown[];
|
|
11148
11300
|
size: string;
|
|
11301
|
+
mask: string | unknown[];
|
|
11149
11302
|
hasIconLeft: boolean;
|
|
11150
11303
|
hasIconRight: boolean;
|
|
11304
|
+
hasClearIcon: boolean;
|
|
11151
11305
|
modelValue: string;
|
|
11152
11306
|
nativeType: string;
|
|
11153
11307
|
maxlength: number;
|
|
11308
|
+
readonly: boolean;
|
|
11309
|
+
useFocusProp: boolean;
|
|
11154
11310
|
}, {}, {}, {
|
|
11155
11311
|
mask: any;
|
|
11156
11312
|
}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -11235,15 +11391,15 @@ default: string;
|
|
|
11235
11391
|
}>> & Readonly<{}>, {
|
|
11236
11392
|
disabled: boolean;
|
|
11237
11393
|
error: string | boolean;
|
|
11394
|
+
tooltip: string;
|
|
11238
11395
|
label: string;
|
|
11239
11396
|
size: string;
|
|
11240
|
-
tooltip: string;
|
|
11241
11397
|
fixedLabel: boolean;
|
|
11242
11398
|
message: string;
|
|
11243
11399
|
}, {}, {
|
|
11244
11400
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
11245
|
-
label: string;
|
|
11246
11401
|
tooltip: string;
|
|
11402
|
+
label: string;
|
|
11247
11403
|
useHtmlTooltip: boolean;
|
|
11248
11404
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
11249
11405
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -11883,9 +12039,9 @@ iconColor: SchemeColor_2;
|
|
|
11883
12039
|
export declare const UnnnicDrawer: {
|
|
11884
12040
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
11885
12041
|
$emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
|
|
11886
|
-
title: string;
|
|
11887
12042
|
class: string;
|
|
11888
12043
|
size: string;
|
|
12044
|
+
title: string;
|
|
11889
12045
|
modelValue: boolean;
|
|
11890
12046
|
description: string;
|
|
11891
12047
|
closeIcon: string;
|
|
@@ -11899,9 +12055,9 @@ export declare const UnnnicDrawer: {
|
|
|
11899
12055
|
withoutOverlay: boolean;
|
|
11900
12056
|
distinctCloseBack: boolean;
|
|
11901
12057
|
$props: {
|
|
11902
|
-
readonly title?: string | undefined;
|
|
11903
12058
|
readonly class?: string | undefined;
|
|
11904
12059
|
readonly size?: string | undefined;
|
|
12060
|
+
readonly title?: string | undefined;
|
|
11905
12061
|
readonly modelValue?: boolean | undefined;
|
|
11906
12062
|
readonly description?: string | undefined;
|
|
11907
12063
|
readonly closeIcon?: string | undefined;
|
|
@@ -11924,9 +12080,9 @@ export declare const UnnnicDrawer: {
|
|
|
11924
12080
|
Defaults: {};
|
|
11925
12081
|
}, Readonly<{}> & Readonly<{}>, {
|
|
11926
12082
|
$emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
|
|
11927
|
-
title: string;
|
|
11928
12083
|
class: string;
|
|
11929
12084
|
size: string;
|
|
12085
|
+
title: string;
|
|
11930
12086
|
modelValue: boolean;
|
|
11931
12087
|
description: string;
|
|
11932
12088
|
closeIcon: string;
|
|
@@ -11940,9 +12096,9 @@ export declare const UnnnicDrawer: {
|
|
|
11940
12096
|
withoutOverlay: boolean;
|
|
11941
12097
|
distinctCloseBack: boolean;
|
|
11942
12098
|
$props: {
|
|
11943
|
-
readonly title?: string | undefined;
|
|
11944
12099
|
readonly class?: string | undefined;
|
|
11945
12100
|
readonly size?: string | undefined;
|
|
12101
|
+
readonly title?: string | undefined;
|
|
11946
12102
|
readonly modelValue?: boolean | undefined;
|
|
11947
12103
|
readonly description?: string | undefined;
|
|
11948
12104
|
readonly closeIcon?: string | undefined;
|
|
@@ -11962,9 +12118,9 @@ export declare const UnnnicDrawer: {
|
|
|
11962
12118
|
__isSuspense?: never;
|
|
11963
12119
|
} & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
11964
12120
|
$emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
|
|
11965
|
-
title: string;
|
|
11966
12121
|
class: string;
|
|
11967
12122
|
size: string;
|
|
12123
|
+
title: string;
|
|
11968
12124
|
modelValue: boolean;
|
|
11969
12125
|
description: string;
|
|
11970
12126
|
closeIcon: string;
|
|
@@ -11978,9 +12134,9 @@ secondaryButtonText: string;
|
|
|
11978
12134
|
withoutOverlay: boolean;
|
|
11979
12135
|
distinctCloseBack: boolean;
|
|
11980
12136
|
$props: {
|
|
11981
|
-
readonly title?: string | undefined;
|
|
11982
12137
|
readonly class?: string | undefined;
|
|
11983
12138
|
readonly size?: string | undefined;
|
|
12139
|
+
readonly title?: string | undefined;
|
|
11984
12140
|
readonly modelValue?: boolean | undefined;
|
|
11985
12141
|
readonly description?: string | undefined;
|
|
11986
12142
|
readonly closeIcon?: string | undefined;
|
|
@@ -12004,9 +12160,9 @@ readonly distinctCloseBack?: boolean | undefined;
|
|
|
12004
12160
|
export declare const unnnicDrawer: {
|
|
12005
12161
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
12006
12162
|
$emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
|
|
12007
|
-
title: string;
|
|
12008
12163
|
class: string;
|
|
12009
12164
|
size: string;
|
|
12165
|
+
title: string;
|
|
12010
12166
|
modelValue: boolean;
|
|
12011
12167
|
description: string;
|
|
12012
12168
|
closeIcon: string;
|
|
@@ -12020,9 +12176,9 @@ export declare const unnnicDrawer: {
|
|
|
12020
12176
|
withoutOverlay: boolean;
|
|
12021
12177
|
distinctCloseBack: boolean;
|
|
12022
12178
|
$props: {
|
|
12023
|
-
readonly title?: string | undefined;
|
|
12024
12179
|
readonly class?: string | undefined;
|
|
12025
12180
|
readonly size?: string | undefined;
|
|
12181
|
+
readonly title?: string | undefined;
|
|
12026
12182
|
readonly modelValue?: boolean | undefined;
|
|
12027
12183
|
readonly description?: string | undefined;
|
|
12028
12184
|
readonly closeIcon?: string | undefined;
|
|
@@ -12045,9 +12201,9 @@ export declare const unnnicDrawer: {
|
|
|
12045
12201
|
Defaults: {};
|
|
12046
12202
|
}, Readonly<{}> & Readonly<{}>, {
|
|
12047
12203
|
$emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
|
|
12048
|
-
title: string;
|
|
12049
12204
|
class: string;
|
|
12050
12205
|
size: string;
|
|
12206
|
+
title: string;
|
|
12051
12207
|
modelValue: boolean;
|
|
12052
12208
|
description: string;
|
|
12053
12209
|
closeIcon: string;
|
|
@@ -12061,9 +12217,9 @@ export declare const unnnicDrawer: {
|
|
|
12061
12217
|
withoutOverlay: boolean;
|
|
12062
12218
|
distinctCloseBack: boolean;
|
|
12063
12219
|
$props: {
|
|
12064
|
-
readonly title?: string | undefined;
|
|
12065
12220
|
readonly class?: string | undefined;
|
|
12066
12221
|
readonly size?: string | undefined;
|
|
12222
|
+
readonly title?: string | undefined;
|
|
12067
12223
|
readonly modelValue?: boolean | undefined;
|
|
12068
12224
|
readonly description?: string | undefined;
|
|
12069
12225
|
readonly closeIcon?: string | undefined;
|
|
@@ -12083,9 +12239,9 @@ export declare const unnnicDrawer: {
|
|
|
12083
12239
|
__isSuspense?: never;
|
|
12084
12240
|
} & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
12085
12241
|
$emit: (event: "close" | "back" | "primaryButtonClick" | "secondaryButtonClick", ...args: any[]) => void;
|
|
12086
|
-
title: string;
|
|
12087
12242
|
class: string;
|
|
12088
12243
|
size: string;
|
|
12244
|
+
title: string;
|
|
12089
12245
|
modelValue: boolean;
|
|
12090
12246
|
description: string;
|
|
12091
12247
|
closeIcon: string;
|
|
@@ -12099,9 +12255,9 @@ secondaryButtonText: string;
|
|
|
12099
12255
|
withoutOverlay: boolean;
|
|
12100
12256
|
distinctCloseBack: boolean;
|
|
12101
12257
|
$props: {
|
|
12102
|
-
readonly title?: string | undefined;
|
|
12103
12258
|
readonly class?: string | undefined;
|
|
12104
12259
|
readonly size?: string | undefined;
|
|
12260
|
+
readonly title?: string | undefined;
|
|
12105
12261
|
readonly modelValue?: boolean | undefined;
|
|
12106
12262
|
readonly description?: string | undefined;
|
|
12107
12263
|
readonly closeIcon?: string | undefined;
|
|
@@ -12909,15 +13065,15 @@ default: string;
|
|
|
12909
13065
|
}>> & Readonly<{}>, {
|
|
12910
13066
|
disabled: boolean;
|
|
12911
13067
|
error: string | boolean;
|
|
13068
|
+
tooltip: string;
|
|
12912
13069
|
label: string;
|
|
12913
13070
|
size: string;
|
|
12914
|
-
tooltip: string;
|
|
12915
13071
|
fixedLabel: boolean;
|
|
12916
13072
|
message: string;
|
|
12917
13073
|
}, {}, {
|
|
12918
13074
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
12919
|
-
label: string;
|
|
12920
13075
|
tooltip: string;
|
|
13076
|
+
label: string;
|
|
12921
13077
|
useHtmlTooltip: boolean;
|
|
12922
13078
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
12923
13079
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -12987,15 +13143,15 @@ default: string;
|
|
|
12987
13143
|
}>> & Readonly<{}>, {
|
|
12988
13144
|
disabled: boolean;
|
|
12989
13145
|
error: string | boolean;
|
|
13146
|
+
tooltip: string;
|
|
12990
13147
|
label: string;
|
|
12991
13148
|
size: string;
|
|
12992
|
-
tooltip: string;
|
|
12993
13149
|
fixedLabel: boolean;
|
|
12994
13150
|
message: string;
|
|
12995
13151
|
}, {}, {
|
|
12996
13152
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
12997
|
-
label: string;
|
|
12998
13153
|
tooltip: string;
|
|
13154
|
+
label: string;
|
|
12999
13155
|
useHtmlTooltip: boolean;
|
|
13000
13156
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
13001
13157
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -13228,8 +13384,8 @@ UnnnicButton: {
|
|
|
13228
13384
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
13229
13385
|
disabled: boolean;
|
|
13230
13386
|
type: ButtonType;
|
|
13231
|
-
text: string;
|
|
13232
13387
|
size: ButtonSize;
|
|
13388
|
+
text: string;
|
|
13233
13389
|
iconLeft: string;
|
|
13234
13390
|
iconRight: string;
|
|
13235
13391
|
float: boolean;
|
|
@@ -13246,8 +13402,8 @@ Defaults: {};
|
|
|
13246
13402
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
13247
13403
|
disabled: boolean;
|
|
13248
13404
|
type: ButtonType;
|
|
13249
|
-
text: string;
|
|
13250
13405
|
size: ButtonSize;
|
|
13406
|
+
text: string;
|
|
13251
13407
|
iconLeft: string;
|
|
13252
13408
|
iconRight: string;
|
|
13253
13409
|
float: boolean;
|
|
@@ -13261,8 +13417,8 @@ __isSuspense?: never;
|
|
|
13261
13417
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
13262
13418
|
disabled: boolean;
|
|
13263
13419
|
type: ButtonType;
|
|
13264
|
-
text: string;
|
|
13265
13420
|
size: ButtonSize;
|
|
13421
|
+
text: string;
|
|
13266
13422
|
iconLeft: string;
|
|
13267
13423
|
iconRight: string;
|
|
13268
13424
|
float: boolean;
|
|
@@ -13377,8 +13533,8 @@ UnnnicButton: {
|
|
|
13377
13533
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
13378
13534
|
disabled: boolean;
|
|
13379
13535
|
type: ButtonType;
|
|
13380
|
-
text: string;
|
|
13381
13536
|
size: ButtonSize;
|
|
13537
|
+
text: string;
|
|
13382
13538
|
iconLeft: string;
|
|
13383
13539
|
iconRight: string;
|
|
13384
13540
|
float: boolean;
|
|
@@ -13395,8 +13551,8 @@ Defaults: {};
|
|
|
13395
13551
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
13396
13552
|
disabled: boolean;
|
|
13397
13553
|
type: ButtonType;
|
|
13398
|
-
text: string;
|
|
13399
13554
|
size: ButtonSize;
|
|
13555
|
+
text: string;
|
|
13400
13556
|
iconLeft: string;
|
|
13401
13557
|
iconRight: string;
|
|
13402
13558
|
float: boolean;
|
|
@@ -13410,8 +13566,8 @@ __isSuspense?: never;
|
|
|
13410
13566
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
13411
13567
|
disabled: boolean;
|
|
13412
13568
|
type: ButtonType;
|
|
13413
|
-
text: string;
|
|
13414
13569
|
size: ButtonSize;
|
|
13570
|
+
text: string;
|
|
13415
13571
|
iconLeft: string;
|
|
13416
13572
|
iconRight: string;
|
|
13417
13573
|
float: boolean;
|
|
@@ -13584,13 +13740,29 @@ disabled: {
|
|
|
13584
13740
|
type: BooleanConstructor;
|
|
13585
13741
|
default: boolean;
|
|
13586
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
|
+
};
|
|
13587
13759
|
}>, {}, {
|
|
13588
13760
|
val: string;
|
|
13589
13761
|
}, {
|
|
13590
13762
|
computedError(): string | boolean;
|
|
13591
13763
|
}, {
|
|
13592
13764
|
fullySanitize: fullySanitize;
|
|
13593
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
13765
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
13594
13766
|
placeholder: {
|
|
13595
13767
|
type: StringConstructor;
|
|
13596
13768
|
default: string;
|
|
@@ -13668,25 +13840,46 @@ disabled: {
|
|
|
13668
13840
|
type: BooleanConstructor;
|
|
13669
13841
|
default: boolean;
|
|
13670
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
|
+
};
|
|
13671
13859
|
}>> & Readonly<{
|
|
13672
13860
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13861
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
13673
13862
|
}>, {
|
|
13674
13863
|
disabled: boolean;
|
|
13864
|
+
focus: boolean;
|
|
13675
13865
|
type: string;
|
|
13676
13866
|
placeholder: string;
|
|
13867
|
+
tooltip: string;
|
|
13677
13868
|
label: string;
|
|
13678
|
-
mask: string | unknown[];
|
|
13679
13869
|
size: string;
|
|
13680
|
-
|
|
13870
|
+
mask: string | unknown[];
|
|
13681
13871
|
message: string;
|
|
13682
13872
|
modelValue: string;
|
|
13683
13873
|
nativeType: string;
|
|
13684
13874
|
maxlength: number | null;
|
|
13875
|
+
readonly: boolean;
|
|
13876
|
+
useFocusProp: boolean;
|
|
13685
13877
|
iconLeft: string;
|
|
13686
13878
|
iconRight: string;
|
|
13687
13879
|
iconLeftClickable: boolean;
|
|
13688
13880
|
iconRightClickable: boolean;
|
|
13689
13881
|
allowTogglePassword: boolean;
|
|
13882
|
+
showClear: boolean;
|
|
13690
13883
|
errors: string | unknown[];
|
|
13691
13884
|
hasCloudyColor: boolean;
|
|
13692
13885
|
showMaxlengthCounter: boolean;
|
|
@@ -13741,6 +13934,22 @@ disabled: {
|
|
|
13741
13934
|
type: BooleanConstructor;
|
|
13742
13935
|
default: boolean;
|
|
13743
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
|
+
};
|
|
13744
13953
|
}>, {}, {
|
|
13745
13954
|
isFocused: boolean;
|
|
13746
13955
|
showPassword: boolean;
|
|
@@ -13750,12 +13959,13 @@ iconRightSvg(): string;
|
|
|
13750
13959
|
iconScheme(): "fg-base" | "fg-muted";
|
|
13751
13960
|
attributes(): any;
|
|
13752
13961
|
}, {
|
|
13753
|
-
|
|
13962
|
+
focusInput(): void;
|
|
13754
13963
|
onFocus(): void;
|
|
13755
13964
|
onBlur(): void;
|
|
13756
13965
|
onIconLeftClick(): void;
|
|
13966
|
+
onClearClick(): void;
|
|
13757
13967
|
onIconRightClick(): void;
|
|
13758
|
-
}, 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< {
|
|
13759
13969
|
placeholder: {
|
|
13760
13970
|
type: StringConstructor;
|
|
13761
13971
|
default: null;
|
|
@@ -13805,22 +14015,43 @@ disabled: {
|
|
|
13805
14015
|
type: BooleanConstructor;
|
|
13806
14016
|
default: boolean;
|
|
13807
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
|
+
};
|
|
13808
14034
|
}>> & Readonly<{
|
|
14035
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
13809
14036
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
13810
14037
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
13811
14038
|
}>, {
|
|
13812
14039
|
disabled: boolean;
|
|
14040
|
+
focus: boolean;
|
|
13813
14041
|
type: string;
|
|
13814
14042
|
placeholder: string;
|
|
13815
14043
|
size: string;
|
|
13816
14044
|
modelValue: string;
|
|
13817
14045
|
nativeType: string;
|
|
13818
14046
|
maxlength: number;
|
|
14047
|
+
readonly: boolean;
|
|
14048
|
+
useFocusProp: boolean;
|
|
13819
14049
|
iconLeft: string;
|
|
13820
14050
|
iconRight: string;
|
|
13821
14051
|
iconLeftClickable: boolean;
|
|
13822
14052
|
iconRightClickable: boolean;
|
|
13823
14053
|
allowTogglePassword: boolean;
|
|
14054
|
+
showClear: boolean;
|
|
13824
14055
|
}, {}, {
|
|
13825
14056
|
BaseInput: DefineComponent<ExtractPropTypes< {
|
|
13826
14057
|
type: {
|
|
@@ -13846,15 +14077,29 @@ default: string;
|
|
|
13846
14077
|
};
|
|
13847
14078
|
hasIconLeft: BooleanConstructor;
|
|
13848
14079
|
hasIconRight: BooleanConstructor;
|
|
14080
|
+
hasClearIcon: BooleanConstructor;
|
|
13849
14081
|
maxlength: {
|
|
13850
14082
|
type: NumberConstructor;
|
|
13851
14083
|
default: null;
|
|
13852
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
|
+
};
|
|
13853
14097
|
}>, {}, {}, {
|
|
13854
14098
|
attributes(): any;
|
|
13855
14099
|
classes(): (string | {
|
|
13856
14100
|
'input--has-icon-left': boolean;
|
|
13857
14101
|
'input--has-icon-right': boolean;
|
|
14102
|
+
'input--has-clear-icon': boolean;
|
|
13858
14103
|
})[];
|
|
13859
14104
|
}, {
|
|
13860
14105
|
fullySanitize: fullySanitize;
|
|
@@ -13882,21 +14127,38 @@ default: string;
|
|
|
13882
14127
|
};
|
|
13883
14128
|
hasIconLeft: BooleanConstructor;
|
|
13884
14129
|
hasIconRight: BooleanConstructor;
|
|
14130
|
+
hasClearIcon: BooleanConstructor;
|
|
13885
14131
|
maxlength: {
|
|
13886
14132
|
type: NumberConstructor;
|
|
13887
14133
|
default: null;
|
|
13888
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
|
+
};
|
|
13889
14147
|
}>> & Readonly<{
|
|
13890
14148
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13891
14149
|
}>, {
|
|
14150
|
+
focus: boolean;
|
|
13892
14151
|
type: string;
|
|
13893
|
-
mask: string | unknown[];
|
|
13894
14152
|
size: string;
|
|
14153
|
+
mask: string | unknown[];
|
|
13895
14154
|
hasIconLeft: boolean;
|
|
13896
14155
|
hasIconRight: boolean;
|
|
14156
|
+
hasClearIcon: boolean;
|
|
13897
14157
|
modelValue: string;
|
|
13898
14158
|
nativeType: string;
|
|
13899
14159
|
maxlength: number;
|
|
14160
|
+
readonly: boolean;
|
|
14161
|
+
useFocusProp: boolean;
|
|
13900
14162
|
}, {}, {}, {
|
|
13901
14163
|
mask: any;
|
|
13902
14164
|
}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -13981,15 +14243,15 @@ default: string;
|
|
|
13981
14243
|
}>> & Readonly<{}>, {
|
|
13982
14244
|
disabled: boolean;
|
|
13983
14245
|
error: string | boolean;
|
|
14246
|
+
tooltip: string;
|
|
13984
14247
|
label: string;
|
|
13985
14248
|
size: string;
|
|
13986
|
-
tooltip: string;
|
|
13987
14249
|
fixedLabel: boolean;
|
|
13988
14250
|
message: string;
|
|
13989
14251
|
}, {}, {
|
|
13990
14252
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
13991
|
-
label: string;
|
|
13992
14253
|
tooltip: string;
|
|
14254
|
+
label: string;
|
|
13993
14255
|
useHtmlTooltip: boolean;
|
|
13994
14256
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
13995
14257
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -14073,13 +14335,29 @@ disabled: {
|
|
|
14073
14335
|
type: BooleanConstructor;
|
|
14074
14336
|
default: boolean;
|
|
14075
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
|
+
};
|
|
14076
14354
|
}>, {}, {
|
|
14077
14355
|
val: string;
|
|
14078
14356
|
}, {
|
|
14079
14357
|
computedError(): string | boolean;
|
|
14080
14358
|
}, {
|
|
14081
14359
|
fullySanitize: fullySanitize;
|
|
14082
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
14360
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
14083
14361
|
placeholder: {
|
|
14084
14362
|
type: StringConstructor;
|
|
14085
14363
|
default: string;
|
|
@@ -14157,25 +14435,46 @@ disabled: {
|
|
|
14157
14435
|
type: BooleanConstructor;
|
|
14158
14436
|
default: boolean;
|
|
14159
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
|
+
};
|
|
14160
14454
|
}>> & Readonly<{
|
|
14161
14455
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
14456
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
14162
14457
|
}>, {
|
|
14163
14458
|
disabled: boolean;
|
|
14459
|
+
focus: boolean;
|
|
14164
14460
|
type: string;
|
|
14165
14461
|
placeholder: string;
|
|
14462
|
+
tooltip: string;
|
|
14166
14463
|
label: string;
|
|
14167
|
-
mask: string | unknown[];
|
|
14168
14464
|
size: string;
|
|
14169
|
-
|
|
14465
|
+
mask: string | unknown[];
|
|
14170
14466
|
message: string;
|
|
14171
14467
|
modelValue: string;
|
|
14172
14468
|
nativeType: string;
|
|
14173
14469
|
maxlength: number | null;
|
|
14470
|
+
readonly: boolean;
|
|
14471
|
+
useFocusProp: boolean;
|
|
14174
14472
|
iconLeft: string;
|
|
14175
14473
|
iconRight: string;
|
|
14176
14474
|
iconLeftClickable: boolean;
|
|
14177
14475
|
iconRightClickable: boolean;
|
|
14178
14476
|
allowTogglePassword: boolean;
|
|
14477
|
+
showClear: boolean;
|
|
14179
14478
|
errors: string | unknown[];
|
|
14180
14479
|
hasCloudyColor: boolean;
|
|
14181
14480
|
showMaxlengthCounter: boolean;
|
|
@@ -14230,6 +14529,22 @@ disabled: {
|
|
|
14230
14529
|
type: BooleanConstructor;
|
|
14231
14530
|
default: boolean;
|
|
14232
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
|
+
};
|
|
14233
14548
|
}>, {}, {
|
|
14234
14549
|
isFocused: boolean;
|
|
14235
14550
|
showPassword: boolean;
|
|
@@ -14239,12 +14554,13 @@ iconRightSvg(): string;
|
|
|
14239
14554
|
iconScheme(): "fg-base" | "fg-muted";
|
|
14240
14555
|
attributes(): any;
|
|
14241
14556
|
}, {
|
|
14242
|
-
|
|
14557
|
+
focusInput(): void;
|
|
14243
14558
|
onFocus(): void;
|
|
14244
14559
|
onBlur(): void;
|
|
14245
14560
|
onIconLeftClick(): void;
|
|
14561
|
+
onClearClick(): void;
|
|
14246
14562
|
onIconRightClick(): void;
|
|
14247
|
-
}, 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< {
|
|
14248
14564
|
placeholder: {
|
|
14249
14565
|
type: StringConstructor;
|
|
14250
14566
|
default: null;
|
|
@@ -14294,22 +14610,43 @@ disabled: {
|
|
|
14294
14610
|
type: BooleanConstructor;
|
|
14295
14611
|
default: boolean;
|
|
14296
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
|
+
};
|
|
14297
14629
|
}>> & Readonly<{
|
|
14630
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
14298
14631
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
14299
14632
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
14300
14633
|
}>, {
|
|
14301
14634
|
disabled: boolean;
|
|
14635
|
+
focus: boolean;
|
|
14302
14636
|
type: string;
|
|
14303
14637
|
placeholder: string;
|
|
14304
14638
|
size: string;
|
|
14305
14639
|
modelValue: string;
|
|
14306
14640
|
nativeType: string;
|
|
14307
14641
|
maxlength: number;
|
|
14642
|
+
readonly: boolean;
|
|
14643
|
+
useFocusProp: boolean;
|
|
14308
14644
|
iconLeft: string;
|
|
14309
14645
|
iconRight: string;
|
|
14310
14646
|
iconLeftClickable: boolean;
|
|
14311
14647
|
iconRightClickable: boolean;
|
|
14312
14648
|
allowTogglePassword: boolean;
|
|
14649
|
+
showClear: boolean;
|
|
14313
14650
|
}, {}, {
|
|
14314
14651
|
BaseInput: DefineComponent<ExtractPropTypes< {
|
|
14315
14652
|
type: {
|
|
@@ -14335,15 +14672,29 @@ default: string;
|
|
|
14335
14672
|
};
|
|
14336
14673
|
hasIconLeft: BooleanConstructor;
|
|
14337
14674
|
hasIconRight: BooleanConstructor;
|
|
14675
|
+
hasClearIcon: BooleanConstructor;
|
|
14338
14676
|
maxlength: {
|
|
14339
14677
|
type: NumberConstructor;
|
|
14340
14678
|
default: null;
|
|
14341
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
|
+
};
|
|
14342
14692
|
}>, {}, {}, {
|
|
14343
14693
|
attributes(): any;
|
|
14344
14694
|
classes(): (string | {
|
|
14345
14695
|
'input--has-icon-left': boolean;
|
|
14346
14696
|
'input--has-icon-right': boolean;
|
|
14697
|
+
'input--has-clear-icon': boolean;
|
|
14347
14698
|
})[];
|
|
14348
14699
|
}, {
|
|
14349
14700
|
fullySanitize: fullySanitize;
|
|
@@ -14371,21 +14722,38 @@ default: string;
|
|
|
14371
14722
|
};
|
|
14372
14723
|
hasIconLeft: BooleanConstructor;
|
|
14373
14724
|
hasIconRight: BooleanConstructor;
|
|
14725
|
+
hasClearIcon: BooleanConstructor;
|
|
14374
14726
|
maxlength: {
|
|
14375
14727
|
type: NumberConstructor;
|
|
14376
14728
|
default: null;
|
|
14377
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
|
+
};
|
|
14378
14742
|
}>> & Readonly<{
|
|
14379
14743
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
14380
14744
|
}>, {
|
|
14745
|
+
focus: boolean;
|
|
14381
14746
|
type: string;
|
|
14382
|
-
mask: string | unknown[];
|
|
14383
14747
|
size: string;
|
|
14748
|
+
mask: string | unknown[];
|
|
14384
14749
|
hasIconLeft: boolean;
|
|
14385
14750
|
hasIconRight: boolean;
|
|
14751
|
+
hasClearIcon: boolean;
|
|
14386
14752
|
modelValue: string;
|
|
14387
14753
|
nativeType: string;
|
|
14388
14754
|
maxlength: number;
|
|
14755
|
+
readonly: boolean;
|
|
14756
|
+
useFocusProp: boolean;
|
|
14389
14757
|
}, {}, {}, {
|
|
14390
14758
|
mask: any;
|
|
14391
14759
|
}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -14470,15 +14838,15 @@ default: string;
|
|
|
14470
14838
|
}>> & Readonly<{}>, {
|
|
14471
14839
|
disabled: boolean;
|
|
14472
14840
|
error: string | boolean;
|
|
14841
|
+
tooltip: string;
|
|
14473
14842
|
label: string;
|
|
14474
14843
|
size: string;
|
|
14475
|
-
tooltip: string;
|
|
14476
14844
|
fixedLabel: boolean;
|
|
14477
14845
|
message: string;
|
|
14478
14846
|
}, {}, {
|
|
14479
14847
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
14480
|
-
label: string;
|
|
14481
14848
|
tooltip: string;
|
|
14849
|
+
label: string;
|
|
14482
14850
|
useHtmlTooltip: boolean;
|
|
14483
14851
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
14484
14852
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -14570,8 +14938,8 @@ disabled: boolean;
|
|
|
14570
14938
|
type: string;
|
|
14571
14939
|
size: string;
|
|
14572
14940
|
nativeType: string;
|
|
14573
|
-
allowTogglePassword: boolean;
|
|
14574
14941
|
readonly: boolean;
|
|
14942
|
+
allowTogglePassword: boolean;
|
|
14575
14943
|
}, {}, {
|
|
14576
14944
|
UnnnicIcon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14577
14945
|
click: (event: Event) => any;
|
|
@@ -14672,8 +15040,8 @@ disabled: boolean;
|
|
|
14672
15040
|
type: string;
|
|
14673
15041
|
size: string;
|
|
14674
15042
|
nativeType: string;
|
|
14675
|
-
allowTogglePassword: boolean;
|
|
14676
15043
|
readonly: boolean;
|
|
15044
|
+
allowTogglePassword: boolean;
|
|
14677
15045
|
}, {}, {
|
|
14678
15046
|
UnnnicIcon: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
14679
15047
|
click: (event: Event) => any;
|
|
@@ -14972,6 +15340,7 @@ attention: string;
|
|
|
14972
15340
|
};
|
|
14973
15341
|
}, {}, {
|
|
14974
15342
|
close(): void;
|
|
15343
|
+
updateBodyOverflow(isHidden: any): void;
|
|
14975
15344
|
persistentHandler(event: any): void;
|
|
14976
15345
|
}, {
|
|
14977
15346
|
props: {
|
|
@@ -15042,8 +15411,8 @@ onPrimaryButtonClick?: ((...args: any[]) => any) | undefined;
|
|
|
15042
15411
|
onSecondaryButtonClick?: ((...args: any[]) => any) | undefined;
|
|
15043
15412
|
}>, {
|
|
15044
15413
|
type: string;
|
|
15045
|
-
title: string;
|
|
15046
15414
|
size: string;
|
|
15415
|
+
title: string;
|
|
15047
15416
|
icon: string;
|
|
15048
15417
|
iconScheme: string;
|
|
15049
15418
|
persistent: boolean;
|
|
@@ -15057,8 +15426,8 @@ UnnnicButton: {
|
|
|
15057
15426
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
15058
15427
|
disabled: boolean;
|
|
15059
15428
|
type: ButtonType;
|
|
15060
|
-
text: string;
|
|
15061
15429
|
size: ButtonSize;
|
|
15430
|
+
text: string;
|
|
15062
15431
|
iconLeft: string;
|
|
15063
15432
|
iconRight: string;
|
|
15064
15433
|
float: boolean;
|
|
@@ -15075,8 +15444,8 @@ Defaults: {};
|
|
|
15075
15444
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
15076
15445
|
disabled: boolean;
|
|
15077
15446
|
type: ButtonType;
|
|
15078
|
-
text: string;
|
|
15079
15447
|
size: ButtonSize;
|
|
15448
|
+
text: string;
|
|
15080
15449
|
iconLeft: string;
|
|
15081
15450
|
iconRight: string;
|
|
15082
15451
|
float: boolean;
|
|
@@ -15090,8 +15459,8 @@ __isSuspense?: never;
|
|
|
15090
15459
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
15091
15460
|
disabled: boolean;
|
|
15092
15461
|
type: ButtonType;
|
|
15093
|
-
text: string;
|
|
15094
15462
|
size: ButtonSize;
|
|
15463
|
+
text: string;
|
|
15095
15464
|
iconLeft: string;
|
|
15096
15465
|
iconRight: string;
|
|
15097
15466
|
float: boolean;
|
|
@@ -15373,6 +15742,7 @@ attention: string;
|
|
|
15373
15742
|
};
|
|
15374
15743
|
}, {}, {
|
|
15375
15744
|
close(): void;
|
|
15745
|
+
updateBodyOverflow(isHidden: any): void;
|
|
15376
15746
|
persistentHandler(event: any): void;
|
|
15377
15747
|
}, {
|
|
15378
15748
|
props: {
|
|
@@ -15443,8 +15813,8 @@ onPrimaryButtonClick?: ((...args: any[]) => any) | undefined;
|
|
|
15443
15813
|
onSecondaryButtonClick?: ((...args: any[]) => any) | undefined;
|
|
15444
15814
|
}>, {
|
|
15445
15815
|
type: string;
|
|
15446
|
-
title: string;
|
|
15447
15816
|
size: string;
|
|
15817
|
+
title: string;
|
|
15448
15818
|
icon: string;
|
|
15449
15819
|
iconScheme: string;
|
|
15450
15820
|
persistent: boolean;
|
|
@@ -15458,8 +15828,8 @@ UnnnicButton: {
|
|
|
15458
15828
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
15459
15829
|
disabled: boolean;
|
|
15460
15830
|
type: ButtonType;
|
|
15461
|
-
text: string;
|
|
15462
15831
|
size: ButtonSize;
|
|
15832
|
+
text: string;
|
|
15463
15833
|
iconLeft: string;
|
|
15464
15834
|
iconRight: string;
|
|
15465
15835
|
float: boolean;
|
|
@@ -15476,8 +15846,8 @@ Defaults: {};
|
|
|
15476
15846
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
15477
15847
|
disabled: boolean;
|
|
15478
15848
|
type: ButtonType;
|
|
15479
|
-
text: string;
|
|
15480
15849
|
size: ButtonSize;
|
|
15850
|
+
text: string;
|
|
15481
15851
|
iconLeft: string;
|
|
15482
15852
|
iconRight: string;
|
|
15483
15853
|
float: boolean;
|
|
@@ -15491,8 +15861,8 @@ __isSuspense?: never;
|
|
|
15491
15861
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
15492
15862
|
disabled: boolean;
|
|
15493
15863
|
type: ButtonType;
|
|
15494
|
-
text: string;
|
|
15495
15864
|
size: ButtonSize;
|
|
15865
|
+
text: string;
|
|
15496
15866
|
iconLeft: string;
|
|
15497
15867
|
iconRight: string;
|
|
15498
15868
|
float: boolean;
|
|
@@ -15861,13 +16231,29 @@ disabled: {
|
|
|
15861
16231
|
type: BooleanConstructor;
|
|
15862
16232
|
default: boolean;
|
|
15863
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
|
+
};
|
|
15864
16250
|
}>, {}, {
|
|
15865
16251
|
val: string;
|
|
15866
16252
|
}, {
|
|
15867
16253
|
computedError(): string | boolean;
|
|
15868
16254
|
}, {
|
|
15869
16255
|
fullySanitize: fullySanitize;
|
|
15870
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
16256
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
15871
16257
|
placeholder: {
|
|
15872
16258
|
type: StringConstructor;
|
|
15873
16259
|
default: string;
|
|
@@ -15945,25 +16331,46 @@ disabled: {
|
|
|
15945
16331
|
type: BooleanConstructor;
|
|
15946
16332
|
default: boolean;
|
|
15947
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
|
+
};
|
|
15948
16350
|
}>> & Readonly<{
|
|
15949
16351
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
16352
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
15950
16353
|
}>, {
|
|
15951
16354
|
disabled: boolean;
|
|
16355
|
+
focus: boolean;
|
|
15952
16356
|
type: string;
|
|
15953
16357
|
placeholder: string;
|
|
16358
|
+
tooltip: string;
|
|
15954
16359
|
label: string;
|
|
15955
|
-
mask: string | unknown[];
|
|
15956
16360
|
size: string;
|
|
15957
|
-
|
|
16361
|
+
mask: string | unknown[];
|
|
15958
16362
|
message: string;
|
|
15959
16363
|
modelValue: string;
|
|
15960
16364
|
nativeType: string;
|
|
15961
16365
|
maxlength: number | null;
|
|
16366
|
+
readonly: boolean;
|
|
16367
|
+
useFocusProp: boolean;
|
|
15962
16368
|
iconLeft: string;
|
|
15963
16369
|
iconRight: string;
|
|
15964
16370
|
iconLeftClickable: boolean;
|
|
15965
16371
|
iconRightClickable: boolean;
|
|
15966
16372
|
allowTogglePassword: boolean;
|
|
16373
|
+
showClear: boolean;
|
|
15967
16374
|
errors: string | unknown[];
|
|
15968
16375
|
hasCloudyColor: boolean;
|
|
15969
16376
|
showMaxlengthCounter: boolean;
|
|
@@ -16018,6 +16425,22 @@ disabled: {
|
|
|
16018
16425
|
type: BooleanConstructor;
|
|
16019
16426
|
default: boolean;
|
|
16020
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
|
+
};
|
|
16021
16444
|
}>, {}, {
|
|
16022
16445
|
isFocused: boolean;
|
|
16023
16446
|
showPassword: boolean;
|
|
@@ -16027,12 +16450,13 @@ iconRightSvg(): string;
|
|
|
16027
16450
|
iconScheme(): "fg-base" | "fg-muted";
|
|
16028
16451
|
attributes(): any;
|
|
16029
16452
|
}, {
|
|
16030
|
-
|
|
16453
|
+
focusInput(): void;
|
|
16031
16454
|
onFocus(): void;
|
|
16032
16455
|
onBlur(): void;
|
|
16033
16456
|
onIconLeftClick(): void;
|
|
16457
|
+
onClearClick(): void;
|
|
16034
16458
|
onIconRightClick(): void;
|
|
16035
|
-
}, 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< {
|
|
16036
16460
|
placeholder: {
|
|
16037
16461
|
type: StringConstructor;
|
|
16038
16462
|
default: null;
|
|
@@ -16082,22 +16506,43 @@ disabled: {
|
|
|
16082
16506
|
type: BooleanConstructor;
|
|
16083
16507
|
default: boolean;
|
|
16084
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
|
+
};
|
|
16085
16525
|
}>> & Readonly<{
|
|
16526
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
16086
16527
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
16087
16528
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
16088
16529
|
}>, {
|
|
16089
16530
|
disabled: boolean;
|
|
16531
|
+
focus: boolean;
|
|
16090
16532
|
type: string;
|
|
16091
16533
|
placeholder: string;
|
|
16092
16534
|
size: string;
|
|
16093
16535
|
modelValue: string;
|
|
16094
16536
|
nativeType: string;
|
|
16095
16537
|
maxlength: number;
|
|
16538
|
+
readonly: boolean;
|
|
16539
|
+
useFocusProp: boolean;
|
|
16096
16540
|
iconLeft: string;
|
|
16097
16541
|
iconRight: string;
|
|
16098
16542
|
iconLeftClickable: boolean;
|
|
16099
16543
|
iconRightClickable: boolean;
|
|
16100
16544
|
allowTogglePassword: boolean;
|
|
16545
|
+
showClear: boolean;
|
|
16101
16546
|
}, {}, {
|
|
16102
16547
|
BaseInput: DefineComponent<ExtractPropTypes< {
|
|
16103
16548
|
type: {
|
|
@@ -16123,15 +16568,29 @@ default: string;
|
|
|
16123
16568
|
};
|
|
16124
16569
|
hasIconLeft: BooleanConstructor;
|
|
16125
16570
|
hasIconRight: BooleanConstructor;
|
|
16571
|
+
hasClearIcon: BooleanConstructor;
|
|
16126
16572
|
maxlength: {
|
|
16127
16573
|
type: NumberConstructor;
|
|
16128
16574
|
default: null;
|
|
16129
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
|
+
};
|
|
16130
16588
|
}>, {}, {}, {
|
|
16131
16589
|
attributes(): any;
|
|
16132
16590
|
classes(): (string | {
|
|
16133
16591
|
'input--has-icon-left': boolean;
|
|
16134
16592
|
'input--has-icon-right': boolean;
|
|
16593
|
+
'input--has-clear-icon': boolean;
|
|
16135
16594
|
})[];
|
|
16136
16595
|
}, {
|
|
16137
16596
|
fullySanitize: fullySanitize;
|
|
@@ -16159,21 +16618,38 @@ default: string;
|
|
|
16159
16618
|
};
|
|
16160
16619
|
hasIconLeft: BooleanConstructor;
|
|
16161
16620
|
hasIconRight: BooleanConstructor;
|
|
16621
|
+
hasClearIcon: BooleanConstructor;
|
|
16162
16622
|
maxlength: {
|
|
16163
16623
|
type: NumberConstructor;
|
|
16164
16624
|
default: null;
|
|
16165
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
|
+
};
|
|
16166
16638
|
}>> & Readonly<{
|
|
16167
16639
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
16168
16640
|
}>, {
|
|
16641
|
+
focus: boolean;
|
|
16169
16642
|
type: string;
|
|
16170
|
-
mask: string | unknown[];
|
|
16171
16643
|
size: string;
|
|
16644
|
+
mask: string | unknown[];
|
|
16172
16645
|
hasIconLeft: boolean;
|
|
16173
16646
|
hasIconRight: boolean;
|
|
16647
|
+
hasClearIcon: boolean;
|
|
16174
16648
|
modelValue: string;
|
|
16175
16649
|
nativeType: string;
|
|
16176
16650
|
maxlength: number;
|
|
16651
|
+
readonly: boolean;
|
|
16652
|
+
useFocusProp: boolean;
|
|
16177
16653
|
}, {}, {}, {
|
|
16178
16654
|
mask: any;
|
|
16179
16655
|
}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -16258,15 +16734,15 @@ default: string;
|
|
|
16258
16734
|
}>> & Readonly<{}>, {
|
|
16259
16735
|
disabled: boolean;
|
|
16260
16736
|
error: string | boolean;
|
|
16737
|
+
tooltip: string;
|
|
16261
16738
|
label: string;
|
|
16262
16739
|
size: string;
|
|
16263
|
-
tooltip: string;
|
|
16264
16740
|
fixedLabel: boolean;
|
|
16265
16741
|
message: string;
|
|
16266
16742
|
}, {}, {
|
|
16267
16743
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
16268
|
-
label: string;
|
|
16269
16744
|
tooltip: string;
|
|
16745
|
+
label: string;
|
|
16270
16746
|
useHtmlTooltip: boolean;
|
|
16271
16747
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
16272
16748
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -16275,8 +16751,8 @@ UnnnicButton: {
|
|
|
16275
16751
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
16276
16752
|
disabled: boolean;
|
|
16277
16753
|
type: ButtonType;
|
|
16278
|
-
text: string;
|
|
16279
16754
|
size: ButtonSize;
|
|
16755
|
+
text: string;
|
|
16280
16756
|
iconLeft: string;
|
|
16281
16757
|
iconRight: string;
|
|
16282
16758
|
float: boolean;
|
|
@@ -16293,8 +16769,8 @@ Defaults: {};
|
|
|
16293
16769
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
16294
16770
|
disabled: boolean;
|
|
16295
16771
|
type: ButtonType;
|
|
16296
|
-
text: string;
|
|
16297
16772
|
size: ButtonSize;
|
|
16773
|
+
text: string;
|
|
16298
16774
|
iconLeft: string;
|
|
16299
16775
|
iconRight: string;
|
|
16300
16776
|
float: boolean;
|
|
@@ -16308,8 +16784,8 @@ __isSuspense?: never;
|
|
|
16308
16784
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
16309
16785
|
disabled: boolean;
|
|
16310
16786
|
type: ButtonType;
|
|
16311
|
-
text: string;
|
|
16312
16787
|
size: ButtonSize;
|
|
16788
|
+
text: string;
|
|
16313
16789
|
iconLeft: string;
|
|
16314
16790
|
iconRight: string;
|
|
16315
16791
|
float: boolean;
|
|
@@ -16476,13 +16952,29 @@ disabled: {
|
|
|
16476
16952
|
type: BooleanConstructor;
|
|
16477
16953
|
default: boolean;
|
|
16478
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
|
+
};
|
|
16479
16971
|
}>, {}, {
|
|
16480
16972
|
val: string;
|
|
16481
16973
|
}, {
|
|
16482
16974
|
computedError(): string | boolean;
|
|
16483
16975
|
}, {
|
|
16484
16976
|
fullySanitize: fullySanitize;
|
|
16485
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
16977
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "update:modelValue")[], "clear" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
16486
16978
|
placeholder: {
|
|
16487
16979
|
type: StringConstructor;
|
|
16488
16980
|
default: string;
|
|
@@ -16560,25 +17052,46 @@ disabled: {
|
|
|
16560
17052
|
type: BooleanConstructor;
|
|
16561
17053
|
default: boolean;
|
|
16562
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
|
+
};
|
|
16563
17071
|
}>> & Readonly<{
|
|
16564
17072
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17073
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
16565
17074
|
}>, {
|
|
16566
17075
|
disabled: boolean;
|
|
17076
|
+
focus: boolean;
|
|
16567
17077
|
type: string;
|
|
16568
17078
|
placeholder: string;
|
|
17079
|
+
tooltip: string;
|
|
16569
17080
|
label: string;
|
|
16570
|
-
mask: string | unknown[];
|
|
16571
17081
|
size: string;
|
|
16572
|
-
|
|
17082
|
+
mask: string | unknown[];
|
|
16573
17083
|
message: string;
|
|
16574
17084
|
modelValue: string;
|
|
16575
17085
|
nativeType: string;
|
|
16576
17086
|
maxlength: number | null;
|
|
17087
|
+
readonly: boolean;
|
|
17088
|
+
useFocusProp: boolean;
|
|
16577
17089
|
iconLeft: string;
|
|
16578
17090
|
iconRight: string;
|
|
16579
17091
|
iconLeftClickable: boolean;
|
|
16580
17092
|
iconRightClickable: boolean;
|
|
16581
17093
|
allowTogglePassword: boolean;
|
|
17094
|
+
showClear: boolean;
|
|
16582
17095
|
errors: string | unknown[];
|
|
16583
17096
|
hasCloudyColor: boolean;
|
|
16584
17097
|
showMaxlengthCounter: boolean;
|
|
@@ -16633,6 +17146,22 @@ disabled: {
|
|
|
16633
17146
|
type: BooleanConstructor;
|
|
16634
17147
|
default: boolean;
|
|
16635
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
|
+
};
|
|
16636
17165
|
}>, {}, {
|
|
16637
17166
|
isFocused: boolean;
|
|
16638
17167
|
showPassword: boolean;
|
|
@@ -16642,12 +17171,13 @@ iconRightSvg(): string;
|
|
|
16642
17171
|
iconScheme(): "fg-base" | "fg-muted";
|
|
16643
17172
|
attributes(): any;
|
|
16644
17173
|
}, {
|
|
16645
|
-
|
|
17174
|
+
focusInput(): void;
|
|
16646
17175
|
onFocus(): void;
|
|
16647
17176
|
onBlur(): void;
|
|
16648
17177
|
onIconLeftClick(): void;
|
|
17178
|
+
onClearClick(): void;
|
|
16649
17179
|
onIconRightClick(): void;
|
|
16650
|
-
}, 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< {
|
|
16651
17181
|
placeholder: {
|
|
16652
17182
|
type: StringConstructor;
|
|
16653
17183
|
default: null;
|
|
@@ -16697,22 +17227,43 @@ disabled: {
|
|
|
16697
17227
|
type: BooleanConstructor;
|
|
16698
17228
|
default: boolean;
|
|
16699
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
|
+
};
|
|
16700
17246
|
}>> & Readonly<{
|
|
17247
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
16701
17248
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
16702
17249
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
16703
17250
|
}>, {
|
|
16704
17251
|
disabled: boolean;
|
|
17252
|
+
focus: boolean;
|
|
16705
17253
|
type: string;
|
|
16706
17254
|
placeholder: string;
|
|
16707
17255
|
size: string;
|
|
16708
17256
|
modelValue: string;
|
|
16709
17257
|
nativeType: string;
|
|
16710
17258
|
maxlength: number;
|
|
17259
|
+
readonly: boolean;
|
|
17260
|
+
useFocusProp: boolean;
|
|
16711
17261
|
iconLeft: string;
|
|
16712
17262
|
iconRight: string;
|
|
16713
17263
|
iconLeftClickable: boolean;
|
|
16714
17264
|
iconRightClickable: boolean;
|
|
16715
17265
|
allowTogglePassword: boolean;
|
|
17266
|
+
showClear: boolean;
|
|
16716
17267
|
}, {}, {
|
|
16717
17268
|
BaseInput: DefineComponent<ExtractPropTypes< {
|
|
16718
17269
|
type: {
|
|
@@ -16738,15 +17289,29 @@ default: string;
|
|
|
16738
17289
|
};
|
|
16739
17290
|
hasIconLeft: BooleanConstructor;
|
|
16740
17291
|
hasIconRight: BooleanConstructor;
|
|
17292
|
+
hasClearIcon: BooleanConstructor;
|
|
16741
17293
|
maxlength: {
|
|
16742
17294
|
type: NumberConstructor;
|
|
16743
17295
|
default: null;
|
|
16744
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
|
+
};
|
|
16745
17309
|
}>, {}, {}, {
|
|
16746
17310
|
attributes(): any;
|
|
16747
17311
|
classes(): (string | {
|
|
16748
17312
|
'input--has-icon-left': boolean;
|
|
16749
17313
|
'input--has-icon-right': boolean;
|
|
17314
|
+
'input--has-clear-icon': boolean;
|
|
16750
17315
|
})[];
|
|
16751
17316
|
}, {
|
|
16752
17317
|
fullySanitize: fullySanitize;
|
|
@@ -16774,21 +17339,38 @@ default: string;
|
|
|
16774
17339
|
};
|
|
16775
17340
|
hasIconLeft: BooleanConstructor;
|
|
16776
17341
|
hasIconRight: BooleanConstructor;
|
|
17342
|
+
hasClearIcon: BooleanConstructor;
|
|
16777
17343
|
maxlength: {
|
|
16778
17344
|
type: NumberConstructor;
|
|
16779
17345
|
default: null;
|
|
16780
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
|
+
};
|
|
16781
17359
|
}>> & Readonly<{
|
|
16782
17360
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
16783
17361
|
}>, {
|
|
17362
|
+
focus: boolean;
|
|
16784
17363
|
type: string;
|
|
16785
|
-
mask: string | unknown[];
|
|
16786
17364
|
size: string;
|
|
17365
|
+
mask: string | unknown[];
|
|
16787
17366
|
hasIconLeft: boolean;
|
|
16788
17367
|
hasIconRight: boolean;
|
|
17368
|
+
hasClearIcon: boolean;
|
|
16789
17369
|
modelValue: string;
|
|
16790
17370
|
nativeType: string;
|
|
16791
17371
|
maxlength: number;
|
|
17372
|
+
readonly: boolean;
|
|
17373
|
+
useFocusProp: boolean;
|
|
16792
17374
|
}, {}, {}, {
|
|
16793
17375
|
mask: any;
|
|
16794
17376
|
}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -16873,15 +17455,15 @@ default: string;
|
|
|
16873
17455
|
}>> & Readonly<{}>, {
|
|
16874
17456
|
disabled: boolean;
|
|
16875
17457
|
error: string | boolean;
|
|
17458
|
+
tooltip: string;
|
|
16876
17459
|
label: string;
|
|
16877
17460
|
size: string;
|
|
16878
|
-
tooltip: string;
|
|
16879
17461
|
fixedLabel: boolean;
|
|
16880
17462
|
message: string;
|
|
16881
17463
|
}, {}, {
|
|
16882
17464
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
16883
|
-
label: string;
|
|
16884
17465
|
tooltip: string;
|
|
17466
|
+
label: string;
|
|
16885
17467
|
useHtmlTooltip: boolean;
|
|
16886
17468
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
16887
17469
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -16890,8 +17472,8 @@ UnnnicButton: {
|
|
|
16890
17472
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
16891
17473
|
disabled: boolean;
|
|
16892
17474
|
type: ButtonType;
|
|
16893
|
-
text: string;
|
|
16894
17475
|
size: ButtonSize;
|
|
17476
|
+
text: string;
|
|
16895
17477
|
iconLeft: string;
|
|
16896
17478
|
iconRight: string;
|
|
16897
17479
|
float: boolean;
|
|
@@ -16908,8 +17490,8 @@ Defaults: {};
|
|
|
16908
17490
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
16909
17491
|
disabled: boolean;
|
|
16910
17492
|
type: ButtonType;
|
|
16911
|
-
text: string;
|
|
16912
17493
|
size: ButtonSize;
|
|
17494
|
+
text: string;
|
|
16913
17495
|
iconLeft: string;
|
|
16914
17496
|
iconRight: string;
|
|
16915
17497
|
float: boolean;
|
|
@@ -16923,8 +17505,8 @@ __isSuspense?: never;
|
|
|
16923
17505
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
16924
17506
|
disabled: boolean;
|
|
16925
17507
|
type: ButtonType;
|
|
16926
|
-
text: string;
|
|
16927
17508
|
size: ButtonSize;
|
|
17509
|
+
text: string;
|
|
16928
17510
|
iconLeft: string;
|
|
16929
17511
|
iconRight: string;
|
|
16930
17512
|
float: boolean;
|
|
@@ -17346,8 +17928,8 @@ UnnnicButton: {
|
|
|
17346
17928
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
17347
17929
|
disabled: boolean;
|
|
17348
17930
|
type: ButtonType;
|
|
17349
|
-
text: string;
|
|
17350
17931
|
size: ButtonSize;
|
|
17932
|
+
text: string;
|
|
17351
17933
|
iconLeft: string;
|
|
17352
17934
|
iconRight: string;
|
|
17353
17935
|
float: boolean;
|
|
@@ -17364,8 +17946,8 @@ Defaults: {};
|
|
|
17364
17946
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
17365
17947
|
disabled: boolean;
|
|
17366
17948
|
type: ButtonType;
|
|
17367
|
-
text: string;
|
|
17368
17949
|
size: ButtonSize;
|
|
17950
|
+
text: string;
|
|
17369
17951
|
iconLeft: string;
|
|
17370
17952
|
iconRight: string;
|
|
17371
17953
|
float: boolean;
|
|
@@ -17379,8 +17961,8 @@ __isSuspense?: never;
|
|
|
17379
17961
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
17380
17962
|
disabled: boolean;
|
|
17381
17963
|
type: ButtonType;
|
|
17382
|
-
text: string;
|
|
17383
17964
|
size: ButtonSize;
|
|
17965
|
+
text: string;
|
|
17384
17966
|
iconLeft: string;
|
|
17385
17967
|
iconRight: string;
|
|
17386
17968
|
float: boolean;
|
|
@@ -17428,8 +18010,8 @@ UnnnicButton: {
|
|
|
17428
18010
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
17429
18011
|
disabled: boolean;
|
|
17430
18012
|
type: ButtonType;
|
|
17431
|
-
text: string;
|
|
17432
18013
|
size: ButtonSize;
|
|
18014
|
+
text: string;
|
|
17433
18015
|
iconLeft: string;
|
|
17434
18016
|
iconRight: string;
|
|
17435
18017
|
float: boolean;
|
|
@@ -17446,8 +18028,8 @@ Defaults: {};
|
|
|
17446
18028
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
17447
18029
|
disabled: boolean;
|
|
17448
18030
|
type: ButtonType;
|
|
17449
|
-
text: string;
|
|
17450
18031
|
size: ButtonSize;
|
|
18032
|
+
text: string;
|
|
17451
18033
|
iconLeft: string;
|
|
17452
18034
|
iconRight: string;
|
|
17453
18035
|
float: boolean;
|
|
@@ -17461,8 +18043,8 @@ __isSuspense?: never;
|
|
|
17461
18043
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
17462
18044
|
disabled: boolean;
|
|
17463
18045
|
type: ButtonType;
|
|
17464
|
-
text: string;
|
|
17465
18046
|
size: ButtonSize;
|
|
18047
|
+
text: string;
|
|
17466
18048
|
iconLeft: string;
|
|
17467
18049
|
iconRight: string;
|
|
17468
18050
|
float: boolean;
|
|
@@ -17884,8 +18466,8 @@ UnnnicButton: {
|
|
|
17884
18466
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
17885
18467
|
disabled: boolean;
|
|
17886
18468
|
type: ButtonType;
|
|
17887
|
-
text: string;
|
|
17888
18469
|
size: ButtonSize;
|
|
18470
|
+
text: string;
|
|
17889
18471
|
iconLeft: string;
|
|
17890
18472
|
iconRight: string;
|
|
17891
18473
|
float: boolean;
|
|
@@ -17902,8 +18484,8 @@ Defaults: {};
|
|
|
17902
18484
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
17903
18485
|
disabled: boolean;
|
|
17904
18486
|
type: ButtonType;
|
|
17905
|
-
text: string;
|
|
17906
18487
|
size: ButtonSize;
|
|
18488
|
+
text: string;
|
|
17907
18489
|
iconLeft: string;
|
|
17908
18490
|
iconRight: string;
|
|
17909
18491
|
float: boolean;
|
|
@@ -17917,8 +18499,8 @@ __isSuspense?: never;
|
|
|
17917
18499
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
17918
18500
|
disabled: boolean;
|
|
17919
18501
|
type: ButtonType;
|
|
17920
|
-
text: string;
|
|
17921
18502
|
size: ButtonSize;
|
|
18503
|
+
text: string;
|
|
17922
18504
|
iconLeft: string;
|
|
17923
18505
|
iconRight: string;
|
|
17924
18506
|
float: boolean;
|
|
@@ -17966,8 +18548,8 @@ UnnnicButton: {
|
|
|
17966
18548
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
17967
18549
|
disabled: boolean;
|
|
17968
18550
|
type: ButtonType;
|
|
17969
|
-
text: string;
|
|
17970
18551
|
size: ButtonSize;
|
|
18552
|
+
text: string;
|
|
17971
18553
|
iconLeft: string;
|
|
17972
18554
|
iconRight: string;
|
|
17973
18555
|
float: boolean;
|
|
@@ -17984,8 +18566,8 @@ Defaults: {};
|
|
|
17984
18566
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
17985
18567
|
disabled: boolean;
|
|
17986
18568
|
type: ButtonType;
|
|
17987
|
-
text: string;
|
|
17988
18569
|
size: ButtonSize;
|
|
18570
|
+
text: string;
|
|
17989
18571
|
iconLeft: string;
|
|
17990
18572
|
iconRight: string;
|
|
17991
18573
|
float: boolean;
|
|
@@ -17999,8 +18581,8 @@ __isSuspense?: never;
|
|
|
17999
18581
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
18000
18582
|
disabled: boolean;
|
|
18001
18583
|
type: ButtonType;
|
|
18002
|
-
text: string;
|
|
18003
18584
|
size: ButtonSize;
|
|
18585
|
+
text: string;
|
|
18004
18586
|
iconLeft: string;
|
|
18005
18587
|
iconRight: string;
|
|
18006
18588
|
float: boolean;
|
|
@@ -18096,8 +18678,8 @@ type: BooleanConstructor;
|
|
|
18096
18678
|
default: boolean;
|
|
18097
18679
|
};
|
|
18098
18680
|
}>> & Readonly<{}>, {
|
|
18099
|
-
text: string;
|
|
18100
18681
|
side: string;
|
|
18682
|
+
text: string;
|
|
18101
18683
|
enabled: boolean;
|
|
18102
18684
|
forceOpen: boolean;
|
|
18103
18685
|
maxWidth: string;
|
|
@@ -18157,7 +18739,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
18157
18739
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
18158
18740
|
pointerDownOutside: (event: Event) => any;
|
|
18159
18741
|
}, PublicProps, {
|
|
18160
|
-
class: HTMLAttributes["class"];
|
|
18161
18742
|
sideOffset: number;
|
|
18162
18743
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
18163
18744
|
P: {};
|
|
@@ -18172,7 +18753,6 @@ class?: HTMLAttributes["class"];
|
|
|
18172
18753
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
18173
18754
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
18174
18755
|
}>, {}, {}, {}, {}, {
|
|
18175
|
-
class: HTMLAttributes["class"];
|
|
18176
18756
|
sideOffset: number;
|
|
18177
18757
|
}>;
|
|
18178
18758
|
__isFragment?: never;
|
|
@@ -18187,7 +18767,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
18187
18767
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
18188
18768
|
pointerDownOutside: (event: Event) => any;
|
|
18189
18769
|
}, string, {
|
|
18190
|
-
class: HTMLAttributes["class"];
|
|
18191
18770
|
sideOffset: number;
|
|
18192
18771
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
18193
18772
|
$slots: {
|
|
@@ -18279,8 +18858,8 @@ type: BooleanConstructor;
|
|
|
18279
18858
|
default: boolean;
|
|
18280
18859
|
};
|
|
18281
18860
|
}>> & Readonly<{}>, {
|
|
18282
|
-
text: string;
|
|
18283
18861
|
side: string;
|
|
18862
|
+
text: string;
|
|
18284
18863
|
enabled: boolean;
|
|
18285
18864
|
forceOpen: boolean;
|
|
18286
18865
|
maxWidth: string;
|
|
@@ -18340,7 +18919,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
18340
18919
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
18341
18920
|
pointerDownOutside: (event: Event) => any;
|
|
18342
18921
|
}, PublicProps, {
|
|
18343
|
-
class: HTMLAttributes["class"];
|
|
18344
18922
|
sideOffset: number;
|
|
18345
18923
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
18346
18924
|
P: {};
|
|
@@ -18355,7 +18933,6 @@ class?: HTMLAttributes["class"];
|
|
|
18355
18933
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
18356
18934
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
18357
18935
|
}>, {}, {}, {}, {}, {
|
|
18358
|
-
class: HTMLAttributes["class"];
|
|
18359
18936
|
sideOffset: number;
|
|
18360
18937
|
}>;
|
|
18361
18938
|
__isFragment?: never;
|
|
@@ -18370,7 +18947,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
18370
18947
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
18371
18948
|
pointerDownOutside: (event: Event) => any;
|
|
18372
18949
|
}, string, {
|
|
18373
|
-
class: HTMLAttributes["class"];
|
|
18374
18950
|
sideOffset: number;
|
|
18375
18951
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
18376
18952
|
$slots: {
|
|
@@ -18563,8 +19139,8 @@ UnnnicButton: {
|
|
|
18563
19139
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
18564
19140
|
disabled: boolean;
|
|
18565
19141
|
type: ButtonType;
|
|
18566
|
-
text: string;
|
|
18567
19142
|
size: ButtonSize;
|
|
19143
|
+
text: string;
|
|
18568
19144
|
iconLeft: string;
|
|
18569
19145
|
iconRight: string;
|
|
18570
19146
|
float: boolean;
|
|
@@ -18581,8 +19157,8 @@ Defaults: {};
|
|
|
18581
19157
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
18582
19158
|
disabled: boolean;
|
|
18583
19159
|
type: ButtonType;
|
|
18584
|
-
text: string;
|
|
18585
19160
|
size: ButtonSize;
|
|
19161
|
+
text: string;
|
|
18586
19162
|
iconLeft: string;
|
|
18587
19163
|
iconRight: string;
|
|
18588
19164
|
float: boolean;
|
|
@@ -18596,8 +19172,8 @@ __isSuspense?: never;
|
|
|
18596
19172
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
18597
19173
|
disabled: boolean;
|
|
18598
19174
|
type: ButtonType;
|
|
18599
|
-
text: string;
|
|
18600
19175
|
size: ButtonSize;
|
|
19176
|
+
text: string;
|
|
18601
19177
|
iconLeft: string;
|
|
18602
19178
|
iconRight: string;
|
|
18603
19179
|
float: boolean;
|
|
@@ -18668,8 +19244,8 @@ UnnnicButton: {
|
|
|
18668
19244
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
18669
19245
|
disabled: boolean;
|
|
18670
19246
|
type: ButtonType;
|
|
18671
|
-
text: string;
|
|
18672
19247
|
size: ButtonSize;
|
|
19248
|
+
text: string;
|
|
18673
19249
|
iconLeft: string;
|
|
18674
19250
|
iconRight: string;
|
|
18675
19251
|
float: boolean;
|
|
@@ -18686,8 +19262,8 @@ Defaults: {};
|
|
|
18686
19262
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
18687
19263
|
disabled: boolean;
|
|
18688
19264
|
type: ButtonType;
|
|
18689
|
-
text: string;
|
|
18690
19265
|
size: ButtonSize;
|
|
19266
|
+
text: string;
|
|
18691
19267
|
iconLeft: string;
|
|
18692
19268
|
iconRight: string;
|
|
18693
19269
|
float: boolean;
|
|
@@ -18701,8 +19277,8 @@ __isSuspense?: never;
|
|
|
18701
19277
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
18702
19278
|
disabled: boolean;
|
|
18703
19279
|
type: ButtonType;
|
|
18704
|
-
text: string;
|
|
18705
19280
|
size: ButtonSize;
|
|
19281
|
+
text: string;
|
|
18706
19282
|
iconLeft: string;
|
|
18707
19283
|
iconRight: string;
|
|
18708
19284
|
float: boolean;
|
|
@@ -18717,14 +19293,10 @@ default?(_: {}): any;
|
|
|
18717
19293
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
18718
19294
|
|
|
18719
19295
|
declare interface UnnnicPlugin {
|
|
18720
|
-
install(app: App
|
|
19296
|
+
install(app: App): void;
|
|
18721
19297
|
[key: string]: any;
|
|
18722
19298
|
}
|
|
18723
19299
|
|
|
18724
|
-
export declare interface UnnnicPluginOptions {
|
|
18725
|
-
teleportTarget?: TeleportTarget | null;
|
|
18726
|
-
}
|
|
18727
|
-
|
|
18728
19300
|
export declare const UnnnicPopover: {
|
|
18729
19301
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<PopoverRootProps> & Readonly<{
|
|
18730
19302
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -18783,7 +19355,8 @@ export declare const unnnicPopover: {
|
|
|
18783
19355
|
|
|
18784
19356
|
export declare const UnnnicPopoverContent: DefineComponent<PopoverContentProps & {
|
|
18785
19357
|
class?: HTMLAttributes["class"];
|
|
18786
|
-
size?:
|
|
19358
|
+
size?: string;
|
|
19359
|
+
width?: string;
|
|
18787
19360
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
18788
19361
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
18789
19362
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
@@ -18793,7 +19366,8 @@ openAutoFocus: (event: Event) => any;
|
|
|
18793
19366
|
closeAutoFocus: (event: Event) => any;
|
|
18794
19367
|
}, string, PublicProps, Readonly<PopoverContentProps & {
|
|
18795
19368
|
class?: HTMLAttributes["class"];
|
|
18796
|
-
size?:
|
|
19369
|
+
size?: string;
|
|
19370
|
+
width?: string;
|
|
18797
19371
|
}> & Readonly<{
|
|
18798
19372
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
18799
19373
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
@@ -18804,13 +19378,15 @@ onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
|
18804
19378
|
}>, {
|
|
18805
19379
|
class: HTMLAttributes["class"];
|
|
18806
19380
|
sideOffset: number;
|
|
18807
|
-
align: "
|
|
18808
|
-
size:
|
|
19381
|
+
align: "start" | "center" | "end";
|
|
19382
|
+
size: string;
|
|
19383
|
+
width: string;
|
|
18809
19384
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
18810
19385
|
|
|
18811
19386
|
export declare const unnnicPopoverContent: DefineComponent<PopoverContentProps & {
|
|
18812
19387
|
class?: HTMLAttributes["class"];
|
|
18813
|
-
size?:
|
|
19388
|
+
size?: string;
|
|
19389
|
+
width?: string;
|
|
18814
19390
|
}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
18815
19391
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
18816
19392
|
pointerDownOutside: (event: PointerDownOutsideEvent) => any;
|
|
@@ -18820,7 +19396,8 @@ openAutoFocus: (event: Event) => any;
|
|
|
18820
19396
|
closeAutoFocus: (event: Event) => any;
|
|
18821
19397
|
}, string, PublicProps, Readonly<PopoverContentProps & {
|
|
18822
19398
|
class?: HTMLAttributes["class"];
|
|
18823
|
-
size?:
|
|
19399
|
+
size?: string;
|
|
19400
|
+
width?: string;
|
|
18824
19401
|
}> & Readonly<{
|
|
18825
19402
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
18826
19403
|
onPointerDownOutside?: ((event: PointerDownOutsideEvent) => any) | undefined;
|
|
@@ -18831,8 +19408,9 @@ onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
|
18831
19408
|
}>, {
|
|
18832
19409
|
class: HTMLAttributes["class"];
|
|
18833
19410
|
sideOffset: number;
|
|
18834
|
-
align: "
|
|
18835
|
-
size:
|
|
19411
|
+
align: "start" | "center" | "end";
|
|
19412
|
+
size: string;
|
|
19413
|
+
width: string;
|
|
18836
19414
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
18837
19415
|
|
|
18838
19416
|
export declare const UnnnicPopoverFooter: {
|
|
@@ -19043,17 +19621,17 @@ export declare const UnnnicRadio: {
|
|
|
19043
19621
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
19044
19622
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19045
19623
|
disabled: boolean;
|
|
19046
|
-
value: string | number;
|
|
19047
19624
|
label: string;
|
|
19048
19625
|
name: string;
|
|
19049
19626
|
modelValue: string | number;
|
|
19627
|
+
value: string | number;
|
|
19050
19628
|
helper: string;
|
|
19051
19629
|
$props: {
|
|
19052
19630
|
readonly disabled?: boolean | undefined;
|
|
19053
|
-
readonly value?: string | number | undefined;
|
|
19054
19631
|
readonly label?: string | undefined;
|
|
19055
19632
|
readonly name?: string | undefined;
|
|
19056
19633
|
readonly modelValue?: string | number | undefined;
|
|
19634
|
+
readonly value?: string | number | undefined;
|
|
19057
19635
|
readonly helper?: string | undefined;
|
|
19058
19636
|
};
|
|
19059
19637
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, {
|
|
@@ -19066,17 +19644,17 @@ export declare const UnnnicRadio: {
|
|
|
19066
19644
|
}, Readonly<{}> & Readonly<{}>, {
|
|
19067
19645
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19068
19646
|
disabled: boolean;
|
|
19069
|
-
value: string | number;
|
|
19070
19647
|
label: string;
|
|
19071
19648
|
name: string;
|
|
19072
19649
|
modelValue: string | number;
|
|
19650
|
+
value: string | number;
|
|
19073
19651
|
helper: string;
|
|
19074
19652
|
$props: {
|
|
19075
19653
|
readonly disabled?: boolean | undefined;
|
|
19076
|
-
readonly value?: string | number | undefined;
|
|
19077
19654
|
readonly label?: string | undefined;
|
|
19078
19655
|
readonly name?: string | undefined;
|
|
19079
19656
|
readonly modelValue?: string | number | undefined;
|
|
19657
|
+
readonly value?: string | number | undefined;
|
|
19080
19658
|
readonly helper?: string | undefined;
|
|
19081
19659
|
};
|
|
19082
19660
|
}, {}, {}, {}, {}>;
|
|
@@ -19086,17 +19664,17 @@ export declare const UnnnicRadio: {
|
|
|
19086
19664
|
} & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
19087
19665
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19088
19666
|
disabled: boolean;
|
|
19089
|
-
value: string | number;
|
|
19090
19667
|
label: string;
|
|
19091
19668
|
name: string;
|
|
19092
19669
|
modelValue: string | number;
|
|
19670
|
+
value: string | number;
|
|
19093
19671
|
helper: string;
|
|
19094
19672
|
$props: {
|
|
19095
19673
|
readonly disabled?: boolean | undefined;
|
|
19096
|
-
readonly value?: string | number | undefined;
|
|
19097
19674
|
readonly label?: string | undefined;
|
|
19098
19675
|
readonly name?: string | undefined;
|
|
19099
19676
|
readonly modelValue?: string | number | undefined;
|
|
19677
|
+
readonly value?: string | number | undefined;
|
|
19100
19678
|
readonly helper?: string | undefined;
|
|
19101
19679
|
};
|
|
19102
19680
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
@@ -19109,17 +19687,17 @@ export declare const unnnicRadio: {
|
|
|
19109
19687
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
19110
19688
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19111
19689
|
disabled: boolean;
|
|
19112
|
-
value: string | number;
|
|
19113
19690
|
label: string;
|
|
19114
19691
|
name: string;
|
|
19115
19692
|
modelValue: string | number;
|
|
19693
|
+
value: string | number;
|
|
19116
19694
|
helper: string;
|
|
19117
19695
|
$props: {
|
|
19118
19696
|
readonly disabled?: boolean | undefined;
|
|
19119
|
-
readonly value?: string | number | undefined;
|
|
19120
19697
|
readonly label?: string | undefined;
|
|
19121
19698
|
readonly name?: string | undefined;
|
|
19122
19699
|
readonly modelValue?: string | number | undefined;
|
|
19700
|
+
readonly value?: string | number | undefined;
|
|
19123
19701
|
readonly helper?: string | undefined;
|
|
19124
19702
|
};
|
|
19125
19703
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, {
|
|
@@ -19132,17 +19710,17 @@ export declare const unnnicRadio: {
|
|
|
19132
19710
|
}, Readonly<{}> & Readonly<{}>, {
|
|
19133
19711
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19134
19712
|
disabled: boolean;
|
|
19135
|
-
value: string | number;
|
|
19136
19713
|
label: string;
|
|
19137
19714
|
name: string;
|
|
19138
19715
|
modelValue: string | number;
|
|
19716
|
+
value: string | number;
|
|
19139
19717
|
helper: string;
|
|
19140
19718
|
$props: {
|
|
19141
19719
|
readonly disabled?: boolean | undefined;
|
|
19142
|
-
readonly value?: string | number | undefined;
|
|
19143
19720
|
readonly label?: string | undefined;
|
|
19144
19721
|
readonly name?: string | undefined;
|
|
19145
19722
|
readonly modelValue?: string | number | undefined;
|
|
19723
|
+
readonly value?: string | number | undefined;
|
|
19146
19724
|
readonly helper?: string | undefined;
|
|
19147
19725
|
};
|
|
19148
19726
|
}, {}, {}, {}, {}>;
|
|
@@ -19152,18 +19730,162 @@ export declare const unnnicRadio: {
|
|
|
19152
19730
|
} & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
19153
19731
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19154
19732
|
disabled: boolean;
|
|
19155
|
-
value: string | number;
|
|
19156
19733
|
label: string;
|
|
19157
19734
|
name: string;
|
|
19158
19735
|
modelValue: string | number;
|
|
19736
|
+
value: string | number;
|
|
19159
19737
|
helper: string;
|
|
19160
19738
|
$props: {
|
|
19161
19739
|
readonly disabled?: boolean | undefined;
|
|
19740
|
+
readonly label?: string | undefined;
|
|
19741
|
+
readonly name?: string | undefined;
|
|
19742
|
+
readonly modelValue?: string | number | undefined;
|
|
19162
19743
|
readonly value?: string | number | undefined;
|
|
19744
|
+
readonly helper?: string | undefined;
|
|
19745
|
+
};
|
|
19746
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
19747
|
+
$slots: {
|
|
19748
|
+
default?(_: {}): any;
|
|
19749
|
+
};
|
|
19750
|
+
});
|
|
19751
|
+
|
|
19752
|
+
export declare const UnnnicRadioGroup: {
|
|
19753
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
19754
|
+
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19755
|
+
name: string;
|
|
19756
|
+
modelValue: string | number;
|
|
19757
|
+
state: string;
|
|
19758
|
+
labelUseHtmlTooltip: boolean;
|
|
19759
|
+
label?: string | undefined;
|
|
19760
|
+
helper?: string | undefined;
|
|
19761
|
+
labelTooltip?: string | undefined;
|
|
19762
|
+
$props: {
|
|
19763
|
+
readonly name?: string | undefined;
|
|
19764
|
+
readonly modelValue?: string | number | undefined;
|
|
19765
|
+
readonly state?: string | undefined;
|
|
19766
|
+
readonly labelUseHtmlTooltip?: boolean | undefined;
|
|
19767
|
+
readonly label?: string | undefined;
|
|
19768
|
+
readonly helper?: string | undefined;
|
|
19769
|
+
readonly labelTooltip?: string | undefined;
|
|
19770
|
+
};
|
|
19771
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, {
|
|
19772
|
+
P: {};
|
|
19773
|
+
B: {};
|
|
19774
|
+
D: {};
|
|
19775
|
+
C: {};
|
|
19776
|
+
M: {};
|
|
19777
|
+
Defaults: {};
|
|
19778
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
19779
|
+
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19780
|
+
name: string;
|
|
19781
|
+
modelValue: string | number;
|
|
19782
|
+
state: string;
|
|
19783
|
+
labelUseHtmlTooltip: boolean;
|
|
19784
|
+
label?: string | undefined;
|
|
19785
|
+
helper?: string | undefined;
|
|
19786
|
+
labelTooltip?: string | undefined;
|
|
19787
|
+
$props: {
|
|
19788
|
+
readonly name?: string | undefined;
|
|
19789
|
+
readonly modelValue?: string | number | undefined;
|
|
19790
|
+
readonly state?: string | undefined;
|
|
19791
|
+
readonly labelUseHtmlTooltip?: boolean | undefined;
|
|
19792
|
+
readonly label?: string | undefined;
|
|
19793
|
+
readonly helper?: string | undefined;
|
|
19794
|
+
readonly labelTooltip?: string | undefined;
|
|
19795
|
+
};
|
|
19796
|
+
}, {}, {}, {}, {}>;
|
|
19797
|
+
__isFragment?: never;
|
|
19798
|
+
__isTeleport?: never;
|
|
19799
|
+
__isSuspense?: never;
|
|
19800
|
+
} & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
19801
|
+
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19802
|
+
name: string;
|
|
19803
|
+
modelValue: string | number;
|
|
19804
|
+
state: string;
|
|
19805
|
+
labelUseHtmlTooltip: boolean;
|
|
19806
|
+
label?: string | undefined;
|
|
19807
|
+
helper?: string | undefined;
|
|
19808
|
+
labelTooltip?: string | undefined;
|
|
19809
|
+
$props: {
|
|
19810
|
+
readonly name?: string | undefined;
|
|
19811
|
+
readonly modelValue?: string | number | undefined;
|
|
19812
|
+
readonly state?: string | undefined;
|
|
19813
|
+
readonly labelUseHtmlTooltip?: boolean | undefined;
|
|
19163
19814
|
readonly label?: string | undefined;
|
|
19815
|
+
readonly helper?: string | undefined;
|
|
19816
|
+
readonly labelTooltip?: string | undefined;
|
|
19817
|
+
};
|
|
19818
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
19819
|
+
$slots: {
|
|
19820
|
+
default?(_: {}): any;
|
|
19821
|
+
};
|
|
19822
|
+
});
|
|
19823
|
+
|
|
19824
|
+
export declare const unnnicRadioGroup: {
|
|
19825
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
19826
|
+
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19827
|
+
name: string;
|
|
19828
|
+
modelValue: string | number;
|
|
19829
|
+
state: string;
|
|
19830
|
+
labelUseHtmlTooltip: boolean;
|
|
19831
|
+
label?: string | undefined;
|
|
19832
|
+
helper?: string | undefined;
|
|
19833
|
+
labelTooltip?: string | undefined;
|
|
19834
|
+
$props: {
|
|
19835
|
+
readonly name?: string | undefined;
|
|
19836
|
+
readonly modelValue?: string | number | undefined;
|
|
19837
|
+
readonly state?: string | undefined;
|
|
19838
|
+
readonly labelUseHtmlTooltip?: boolean | undefined;
|
|
19839
|
+
readonly label?: string | undefined;
|
|
19840
|
+
readonly helper?: string | undefined;
|
|
19841
|
+
readonly labelTooltip?: string | undefined;
|
|
19842
|
+
};
|
|
19843
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLElement, ComponentProvideOptions, {
|
|
19844
|
+
P: {};
|
|
19845
|
+
B: {};
|
|
19846
|
+
D: {};
|
|
19847
|
+
C: {};
|
|
19848
|
+
M: {};
|
|
19849
|
+
Defaults: {};
|
|
19850
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
19851
|
+
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19852
|
+
name: string;
|
|
19853
|
+
modelValue: string | number;
|
|
19854
|
+
state: string;
|
|
19855
|
+
labelUseHtmlTooltip: boolean;
|
|
19856
|
+
label?: string | undefined;
|
|
19857
|
+
helper?: string | undefined;
|
|
19858
|
+
labelTooltip?: string | undefined;
|
|
19859
|
+
$props: {
|
|
19860
|
+
readonly name?: string | undefined;
|
|
19861
|
+
readonly modelValue?: string | number | undefined;
|
|
19862
|
+
readonly state?: string | undefined;
|
|
19863
|
+
readonly labelUseHtmlTooltip?: boolean | undefined;
|
|
19864
|
+
readonly label?: string | undefined;
|
|
19865
|
+
readonly helper?: string | undefined;
|
|
19866
|
+
readonly labelTooltip?: string | undefined;
|
|
19867
|
+
};
|
|
19868
|
+
}, {}, {}, {}, {}>;
|
|
19869
|
+
__isFragment?: never;
|
|
19870
|
+
__isTeleport?: never;
|
|
19871
|
+
__isSuspense?: never;
|
|
19872
|
+
} & ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
19873
|
+
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
19874
|
+
name: string;
|
|
19875
|
+
modelValue: string | number;
|
|
19876
|
+
state: string;
|
|
19877
|
+
labelUseHtmlTooltip: boolean;
|
|
19878
|
+
label?: string | undefined;
|
|
19879
|
+
helper?: string | undefined;
|
|
19880
|
+
labelTooltip?: string | undefined;
|
|
19881
|
+
$props: {
|
|
19164
19882
|
readonly name?: string | undefined;
|
|
19165
19883
|
readonly modelValue?: string | number | undefined;
|
|
19884
|
+
readonly state?: string | undefined;
|
|
19885
|
+
readonly labelUseHtmlTooltip?: boolean | undefined;
|
|
19886
|
+
readonly label?: string | undefined;
|
|
19166
19887
|
readonly helper?: string | undefined;
|
|
19888
|
+
readonly labelTooltip?: string | undefined;
|
|
19167
19889
|
};
|
|
19168
19890
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
19169
19891
|
$slots: {
|
|
@@ -19419,6 +20141,10 @@ class?: HTMLAttributes["class"];
|
|
|
19419
20141
|
};
|
|
19420
20142
|
});
|
|
19421
20143
|
|
|
20144
|
+
export declare const UnnnicSelect: VueComponent;
|
|
20145
|
+
|
|
20146
|
+
export declare const unnnicSelect: VueComponent;
|
|
20147
|
+
|
|
19422
20148
|
export declare const UnnnicSelectItem: DefineComponent<ExtractPropTypes< {
|
|
19423
20149
|
size: {
|
|
19424
20150
|
type: StringConstructor;
|
|
@@ -19708,8 +20434,8 @@ default: boolean;
|
|
|
19708
20434
|
}>> & Readonly<{
|
|
19709
20435
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
19710
20436
|
}>, {
|
|
19711
|
-
title: string;
|
|
19712
20437
|
text: string;
|
|
20438
|
+
title: string;
|
|
19713
20439
|
clickable: boolean;
|
|
19714
20440
|
titleSize: string;
|
|
19715
20441
|
titleTooltip: string;
|
|
@@ -19767,8 +20493,8 @@ type: BooleanConstructor;
|
|
|
19767
20493
|
default: boolean;
|
|
19768
20494
|
};
|
|
19769
20495
|
}>> & Readonly<{}>, {
|
|
19770
|
-
text: string;
|
|
19771
20496
|
side: string;
|
|
20497
|
+
text: string;
|
|
19772
20498
|
enabled: boolean;
|
|
19773
20499
|
forceOpen: boolean;
|
|
19774
20500
|
maxWidth: string;
|
|
@@ -19828,7 +20554,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
19828
20554
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
19829
20555
|
pointerDownOutside: (event: Event) => any;
|
|
19830
20556
|
}, PublicProps, {
|
|
19831
|
-
class: HTMLAttributes["class"];
|
|
19832
20557
|
sideOffset: number;
|
|
19833
20558
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
19834
20559
|
P: {};
|
|
@@ -19843,7 +20568,6 @@ class?: HTMLAttributes["class"];
|
|
|
19843
20568
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
19844
20569
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
19845
20570
|
}>, {}, {}, {}, {}, {
|
|
19846
|
-
class: HTMLAttributes["class"];
|
|
19847
20571
|
sideOffset: number;
|
|
19848
20572
|
}>;
|
|
19849
20573
|
__isFragment?: never;
|
|
@@ -19858,7 +20582,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
19858
20582
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
19859
20583
|
pointerDownOutside: (event: Event) => any;
|
|
19860
20584
|
}, string, {
|
|
19861
|
-
class: HTMLAttributes["class"];
|
|
19862
20585
|
sideOffset: number;
|
|
19863
20586
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
19864
20587
|
$slots: {
|
|
@@ -19928,8 +20651,8 @@ default: boolean;
|
|
|
19928
20651
|
}>> & Readonly<{
|
|
19929
20652
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
19930
20653
|
}>, {
|
|
19931
|
-
title: string;
|
|
19932
20654
|
text: string;
|
|
20655
|
+
title: string;
|
|
19933
20656
|
clickable: boolean;
|
|
19934
20657
|
titleSize: string;
|
|
19935
20658
|
titleTooltip: string;
|
|
@@ -19987,8 +20710,8 @@ type: BooleanConstructor;
|
|
|
19987
20710
|
default: boolean;
|
|
19988
20711
|
};
|
|
19989
20712
|
}>> & Readonly<{}>, {
|
|
19990
|
-
text: string;
|
|
19991
20713
|
side: string;
|
|
20714
|
+
text: string;
|
|
19992
20715
|
enabled: boolean;
|
|
19993
20716
|
forceOpen: boolean;
|
|
19994
20717
|
maxWidth: string;
|
|
@@ -20048,7 +20771,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
20048
20771
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
20049
20772
|
pointerDownOutside: (event: Event) => any;
|
|
20050
20773
|
}, PublicProps, {
|
|
20051
|
-
class: HTMLAttributes["class"];
|
|
20052
20774
|
sideOffset: number;
|
|
20053
20775
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
20054
20776
|
P: {};
|
|
@@ -20063,7 +20785,6 @@ class?: HTMLAttributes["class"];
|
|
|
20063
20785
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20064
20786
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
20065
20787
|
}>, {}, {}, {}, {}, {
|
|
20066
|
-
class: HTMLAttributes["class"];
|
|
20067
20788
|
sideOffset: number;
|
|
20068
20789
|
}>;
|
|
20069
20790
|
__isFragment?: never;
|
|
@@ -20078,7 +20799,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
20078
20799
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
20079
20800
|
pointerDownOutside: (event: Event) => any;
|
|
20080
20801
|
}, string, {
|
|
20081
|
-
class: HTMLAttributes["class"];
|
|
20082
20802
|
sideOffset: number;
|
|
20083
20803
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
20084
20804
|
$slots: {
|
|
@@ -20446,8 +21166,8 @@ type: BooleanConstructor;
|
|
|
20446
21166
|
default: boolean;
|
|
20447
21167
|
};
|
|
20448
21168
|
}>> & Readonly<{}>, {
|
|
20449
|
-
text: string;
|
|
20450
21169
|
side: string;
|
|
21170
|
+
text: string;
|
|
20451
21171
|
enabled: boolean;
|
|
20452
21172
|
forceOpen: boolean;
|
|
20453
21173
|
maxWidth: string;
|
|
@@ -20507,7 +21227,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
20507
21227
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
20508
21228
|
pointerDownOutside: (event: Event) => any;
|
|
20509
21229
|
}, PublicProps, {
|
|
20510
|
-
class: HTMLAttributes["class"];
|
|
20511
21230
|
sideOffset: number;
|
|
20512
21231
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
20513
21232
|
P: {};
|
|
@@ -20522,7 +21241,6 @@ class?: HTMLAttributes["class"];
|
|
|
20522
21241
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20523
21242
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
20524
21243
|
}>, {}, {}, {}, {}, {
|
|
20525
|
-
class: HTMLAttributes["class"];
|
|
20526
21244
|
sideOffset: number;
|
|
20527
21245
|
}>;
|
|
20528
21246
|
__isFragment?: never;
|
|
@@ -20537,7 +21255,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
20537
21255
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
20538
21256
|
pointerDownOutside: (event: Event) => any;
|
|
20539
21257
|
}, string, {
|
|
20540
|
-
class: HTMLAttributes["class"];
|
|
20541
21258
|
sideOffset: number;
|
|
20542
21259
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
20543
21260
|
$slots: {
|
|
@@ -20721,8 +21438,8 @@ type: BooleanConstructor;
|
|
|
20721
21438
|
default: boolean;
|
|
20722
21439
|
};
|
|
20723
21440
|
}>> & Readonly<{}>, {
|
|
20724
|
-
text: string;
|
|
20725
21441
|
side: string;
|
|
21442
|
+
text: string;
|
|
20726
21443
|
enabled: boolean;
|
|
20727
21444
|
forceOpen: boolean;
|
|
20728
21445
|
maxWidth: string;
|
|
@@ -20782,7 +21499,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
20782
21499
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
20783
21500
|
pointerDownOutside: (event: Event) => any;
|
|
20784
21501
|
}, PublicProps, {
|
|
20785
|
-
class: HTMLAttributes["class"];
|
|
20786
21502
|
sideOffset: number;
|
|
20787
21503
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
20788
21504
|
P: {};
|
|
@@ -20797,7 +21513,6 @@ class?: HTMLAttributes["class"];
|
|
|
20797
21513
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
20798
21514
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
20799
21515
|
}>, {}, {}, {}, {}, {
|
|
20800
|
-
class: HTMLAttributes["class"];
|
|
20801
21516
|
sideOffset: number;
|
|
20802
21517
|
}>;
|
|
20803
21518
|
__isFragment?: never;
|
|
@@ -20812,7 +21527,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
20812
21527
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
20813
21528
|
pointerDownOutside: (event: Event) => any;
|
|
20814
21529
|
}, string, {
|
|
20815
|
-
class: HTMLAttributes["class"];
|
|
20816
21530
|
sideOffset: number;
|
|
20817
21531
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
20818
21532
|
$slots: {
|
|
@@ -21026,8 +21740,8 @@ type: BooleanConstructor;
|
|
|
21026
21740
|
}>, {
|
|
21027
21741
|
disabled: boolean;
|
|
21028
21742
|
label: string;
|
|
21029
|
-
option: string;
|
|
21030
21743
|
size: string;
|
|
21744
|
+
option: string;
|
|
21031
21745
|
modelValue: boolean;
|
|
21032
21746
|
helper: string;
|
|
21033
21747
|
textRight: string;
|
|
@@ -21037,8 +21751,8 @@ textLeft: string;
|
|
|
21037
21751
|
useVModel: boolean;
|
|
21038
21752
|
}, {}, {
|
|
21039
21753
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
21040
|
-
label: string;
|
|
21041
21754
|
tooltip: string;
|
|
21755
|
+
label: string;
|
|
21042
21756
|
useHtmlTooltip: boolean;
|
|
21043
21757
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
21044
21758
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -21146,8 +21860,8 @@ type: BooleanConstructor;
|
|
|
21146
21860
|
}>, {
|
|
21147
21861
|
disabled: boolean;
|
|
21148
21862
|
label: string;
|
|
21149
|
-
option: string;
|
|
21150
21863
|
size: string;
|
|
21864
|
+
option: string;
|
|
21151
21865
|
modelValue: boolean;
|
|
21152
21866
|
helper: string;
|
|
21153
21867
|
textRight: string;
|
|
@@ -21157,8 +21871,8 @@ textLeft: string;
|
|
|
21157
21871
|
useVModel: boolean;
|
|
21158
21872
|
}, {}, {
|
|
21159
21873
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
21160
|
-
label: string;
|
|
21161
21874
|
tooltip: string;
|
|
21875
|
+
label: string;
|
|
21162
21876
|
useHtmlTooltip: boolean;
|
|
21163
21877
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
21164
21878
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -21295,8 +22009,8 @@ type: BooleanConstructor;
|
|
|
21295
22009
|
default: boolean;
|
|
21296
22010
|
};
|
|
21297
22011
|
}>> & Readonly<{}>, {
|
|
21298
|
-
text: string;
|
|
21299
22012
|
side: string;
|
|
22013
|
+
text: string;
|
|
21300
22014
|
enabled: boolean;
|
|
21301
22015
|
forceOpen: boolean;
|
|
21302
22016
|
maxWidth: string;
|
|
@@ -21356,7 +22070,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
21356
22070
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
21357
22071
|
pointerDownOutside: (event: Event) => any;
|
|
21358
22072
|
}, PublicProps, {
|
|
21359
|
-
class: HTMLAttributes["class"];
|
|
21360
22073
|
sideOffset: number;
|
|
21361
22074
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
21362
22075
|
P: {};
|
|
@@ -21371,7 +22084,6 @@ class?: HTMLAttributes["class"];
|
|
|
21371
22084
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21372
22085
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
21373
22086
|
}>, {}, {}, {}, {}, {
|
|
21374
|
-
class: HTMLAttributes["class"];
|
|
21375
22087
|
sideOffset: number;
|
|
21376
22088
|
}>;
|
|
21377
22089
|
__isFragment?: never;
|
|
@@ -21386,7 +22098,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
21386
22098
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
21387
22099
|
pointerDownOutside: (event: Event) => any;
|
|
21388
22100
|
}, string, {
|
|
21389
|
-
class: HTMLAttributes["class"];
|
|
21390
22101
|
sideOffset: number;
|
|
21391
22102
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
21392
22103
|
$slots: {
|
|
@@ -21528,8 +22239,8 @@ type: BooleanConstructor;
|
|
|
21528
22239
|
default: boolean;
|
|
21529
22240
|
};
|
|
21530
22241
|
}>> & Readonly<{}>, {
|
|
21531
|
-
text: string;
|
|
21532
22242
|
side: string;
|
|
22243
|
+
text: string;
|
|
21533
22244
|
enabled: boolean;
|
|
21534
22245
|
forceOpen: boolean;
|
|
21535
22246
|
maxWidth: string;
|
|
@@ -21589,7 +22300,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
21589
22300
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
21590
22301
|
pointerDownOutside: (event: Event) => any;
|
|
21591
22302
|
}, PublicProps, {
|
|
21592
|
-
class: HTMLAttributes["class"];
|
|
21593
22303
|
sideOffset: number;
|
|
21594
22304
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
21595
22305
|
P: {};
|
|
@@ -21604,7 +22314,6 @@ class?: HTMLAttributes["class"];
|
|
|
21604
22314
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
21605
22315
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
21606
22316
|
}>, {}, {}, {}, {}, {
|
|
21607
|
-
class: HTMLAttributes["class"];
|
|
21608
22317
|
sideOffset: number;
|
|
21609
22318
|
}>;
|
|
21610
22319
|
__isFragment?: never;
|
|
@@ -21619,7 +22328,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
21619
22328
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
21620
22329
|
pointerDownOutside: (event: Event) => any;
|
|
21621
22330
|
}, string, {
|
|
21622
|
-
class: HTMLAttributes["class"];
|
|
21623
22331
|
sideOffset: number;
|
|
21624
22332
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
21625
22333
|
$slots: {
|
|
@@ -21968,8 +22676,8 @@ onClose?: (() => any) | undefined;
|
|
|
21968
22676
|
}>, {
|
|
21969
22677
|
disabled: boolean;
|
|
21970
22678
|
type: TagType;
|
|
21971
|
-
text: string;
|
|
21972
22679
|
size: TagSize;
|
|
22680
|
+
text: string;
|
|
21973
22681
|
scheme: string;
|
|
21974
22682
|
leftIcon: string;
|
|
21975
22683
|
hasCloseIcon: boolean;
|
|
@@ -21984,8 +22692,8 @@ onClose?: (() => any) | undefined;
|
|
|
21984
22692
|
}>, {
|
|
21985
22693
|
disabled: boolean;
|
|
21986
22694
|
type: TagType;
|
|
21987
|
-
text: string;
|
|
21988
22695
|
size: TagSize;
|
|
22696
|
+
text: string;
|
|
21989
22697
|
scheme: string;
|
|
21990
22698
|
leftIcon: string;
|
|
21991
22699
|
hasCloseIcon: boolean;
|
|
@@ -22094,8 +22802,8 @@ default: () => never[];
|
|
|
22094
22802
|
disabled: boolean;
|
|
22095
22803
|
resize: string;
|
|
22096
22804
|
type: string;
|
|
22097
|
-
size: string;
|
|
22098
22805
|
tooltip: string;
|
|
22806
|
+
size: string;
|
|
22099
22807
|
message: string;
|
|
22100
22808
|
errors: unknown[] | null;
|
|
22101
22809
|
}, {}, {
|
|
@@ -22164,15 +22872,15 @@ default: string;
|
|
|
22164
22872
|
}>> & Readonly<{}>, {
|
|
22165
22873
|
disabled: boolean;
|
|
22166
22874
|
error: string | boolean;
|
|
22875
|
+
tooltip: string;
|
|
22167
22876
|
label: string;
|
|
22168
22877
|
size: string;
|
|
22169
|
-
tooltip: string;
|
|
22170
22878
|
fixedLabel: boolean;
|
|
22171
22879
|
message: string;
|
|
22172
22880
|
}, {}, {
|
|
22173
22881
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
22174
|
-
label: string;
|
|
22175
22882
|
tooltip: string;
|
|
22883
|
+
label: string;
|
|
22176
22884
|
useHtmlTooltip: boolean;
|
|
22177
22885
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
22178
22886
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -22273,8 +22981,8 @@ default: () => never[];
|
|
|
22273
22981
|
disabled: boolean;
|
|
22274
22982
|
resize: string;
|
|
22275
22983
|
type: string;
|
|
22276
|
-
size: string;
|
|
22277
22984
|
tooltip: string;
|
|
22985
|
+
size: string;
|
|
22278
22986
|
message: string;
|
|
22279
22987
|
errors: unknown[] | null;
|
|
22280
22988
|
}, {}, {
|
|
@@ -22343,15 +23051,15 @@ default: string;
|
|
|
22343
23051
|
}>> & Readonly<{}>, {
|
|
22344
23052
|
disabled: boolean;
|
|
22345
23053
|
error: string | boolean;
|
|
23054
|
+
tooltip: string;
|
|
22346
23055
|
label: string;
|
|
22347
23056
|
size: string;
|
|
22348
|
-
tooltip: string;
|
|
22349
23057
|
fixedLabel: boolean;
|
|
22350
23058
|
message: string;
|
|
22351
23059
|
}, {}, {
|
|
22352
23060
|
UnnnicLabel: DefineComponent<LabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<LabelProps> & Readonly<{}>, {
|
|
22353
|
-
label: string;
|
|
22354
23061
|
tooltip: string;
|
|
23062
|
+
label: string;
|
|
22355
23063
|
useHtmlTooltip: boolean;
|
|
22356
23064
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
22357
23065
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -22442,8 +23150,8 @@ type: BooleanConstructor;
|
|
|
22442
23150
|
default: boolean;
|
|
22443
23151
|
};
|
|
22444
23152
|
}>> & Readonly<{}>, {
|
|
22445
|
-
text: string;
|
|
22446
23153
|
side: string;
|
|
23154
|
+
text: string;
|
|
22447
23155
|
enabled: boolean;
|
|
22448
23156
|
forceOpen: boolean;
|
|
22449
23157
|
maxWidth: string;
|
|
@@ -22503,7 +23211,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
22503
23211
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
22504
23212
|
pointerDownOutside: (event: Event) => any;
|
|
22505
23213
|
}, PublicProps, {
|
|
22506
|
-
class: HTMLAttributes["class"];
|
|
22507
23214
|
sideOffset: number;
|
|
22508
23215
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
22509
23216
|
P: {};
|
|
@@ -22518,7 +23225,6 @@ class?: HTMLAttributes["class"];
|
|
|
22518
23225
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
22519
23226
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
22520
23227
|
}>, {}, {}, {}, {}, {
|
|
22521
|
-
class: HTMLAttributes["class"];
|
|
22522
23228
|
sideOffset: number;
|
|
22523
23229
|
}>;
|
|
22524
23230
|
__isFragment?: never;
|
|
@@ -22533,7 +23239,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
22533
23239
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
22534
23240
|
pointerDownOutside: (event: Event) => any;
|
|
22535
23241
|
}, string, {
|
|
22536
|
-
class: HTMLAttributes["class"];
|
|
22537
23242
|
sideOffset: number;
|
|
22538
23243
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
22539
23244
|
$slots: {
|
|
@@ -22595,8 +23300,8 @@ type: BooleanConstructor;
|
|
|
22595
23300
|
default: boolean;
|
|
22596
23301
|
};
|
|
22597
23302
|
}>> & Readonly<{}>, {
|
|
22598
|
-
text: string;
|
|
22599
23303
|
side: string;
|
|
23304
|
+
text: string;
|
|
22600
23305
|
enabled: boolean;
|
|
22601
23306
|
forceOpen: boolean;
|
|
22602
23307
|
maxWidth: string;
|
|
@@ -22656,7 +23361,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
22656
23361
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
22657
23362
|
pointerDownOutside: (event: Event) => any;
|
|
22658
23363
|
}, PublicProps, {
|
|
22659
|
-
class: HTMLAttributes["class"];
|
|
22660
23364
|
sideOffset: number;
|
|
22661
23365
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
22662
23366
|
P: {};
|
|
@@ -22671,7 +23375,6 @@ class?: HTMLAttributes["class"];
|
|
|
22671
23375
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
22672
23376
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
22673
23377
|
}>, {}, {}, {}, {}, {
|
|
22674
|
-
class: HTMLAttributes["class"];
|
|
22675
23378
|
sideOffset: number;
|
|
22676
23379
|
}>;
|
|
22677
23380
|
__isFragment?: never;
|
|
@@ -22686,7 +23389,6 @@ onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
|
22686
23389
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
22687
23390
|
pointerDownOutside: (event: Event) => any;
|
|
22688
23391
|
}, string, {
|
|
22689
|
-
class: HTMLAttributes["class"];
|
|
22690
23392
|
sideOffset: number;
|
|
22691
23393
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
22692
23394
|
$slots: {
|
|
@@ -22861,8 +23563,8 @@ UnnnicButton: {
|
|
|
22861
23563
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
22862
23564
|
disabled: boolean;
|
|
22863
23565
|
type: ButtonType;
|
|
22864
|
-
text: string;
|
|
22865
23566
|
size: ButtonSize;
|
|
23567
|
+
text: string;
|
|
22866
23568
|
iconLeft: string;
|
|
22867
23569
|
iconRight: string;
|
|
22868
23570
|
float: boolean;
|
|
@@ -22879,8 +23581,8 @@ Defaults: {};
|
|
|
22879
23581
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
22880
23582
|
disabled: boolean;
|
|
22881
23583
|
type: ButtonType;
|
|
22882
|
-
text: string;
|
|
22883
23584
|
size: ButtonSize;
|
|
23585
|
+
text: string;
|
|
22884
23586
|
iconLeft: string;
|
|
22885
23587
|
iconRight: string;
|
|
22886
23588
|
float: boolean;
|
|
@@ -22894,8 +23596,8 @@ __isSuspense?: never;
|
|
|
22894
23596
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
22895
23597
|
disabled: boolean;
|
|
22896
23598
|
type: ButtonType;
|
|
22897
|
-
text: string;
|
|
22898
23599
|
size: ButtonSize;
|
|
23600
|
+
text: string;
|
|
22899
23601
|
iconLeft: string;
|
|
22900
23602
|
iconRight: string;
|
|
22901
23603
|
float: boolean;
|
|
@@ -23076,8 +23778,8 @@ UnnnicButton: {
|
|
|
23076
23778
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
23077
23779
|
disabled: boolean;
|
|
23078
23780
|
type: ButtonType;
|
|
23079
|
-
text: string;
|
|
23080
23781
|
size: ButtonSize;
|
|
23782
|
+
text: string;
|
|
23081
23783
|
iconLeft: string;
|
|
23082
23784
|
iconRight: string;
|
|
23083
23785
|
float: boolean;
|
|
@@ -23094,8 +23796,8 @@ Defaults: {};
|
|
|
23094
23796
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
23095
23797
|
disabled: boolean;
|
|
23096
23798
|
type: ButtonType;
|
|
23097
|
-
text: string;
|
|
23098
23799
|
size: ButtonSize;
|
|
23800
|
+
text: string;
|
|
23099
23801
|
iconLeft: string;
|
|
23100
23802
|
iconRight: string;
|
|
23101
23803
|
float: boolean;
|
|
@@ -23109,8 +23811,8 @@ __isSuspense?: never;
|
|
|
23109
23811
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
23110
23812
|
disabled: boolean;
|
|
23111
23813
|
type: ButtonType;
|
|
23112
|
-
text: string;
|
|
23113
23814
|
size: ButtonSize;
|
|
23815
|
+
text: string;
|
|
23114
23816
|
iconLeft: string;
|
|
23115
23817
|
iconRight: string;
|
|
23116
23818
|
float: boolean;
|
|
@@ -23405,8 +24107,8 @@ UnnnicButton: {
|
|
|
23405
24107
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
23406
24108
|
disabled: boolean;
|
|
23407
24109
|
type: ButtonType;
|
|
23408
|
-
text: string;
|
|
23409
24110
|
size: ButtonSize;
|
|
24111
|
+
text: string;
|
|
23410
24112
|
iconLeft: string;
|
|
23411
24113
|
iconRight: string;
|
|
23412
24114
|
float: boolean;
|
|
@@ -23423,8 +24125,8 @@ Defaults: {};
|
|
|
23423
24125
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
23424
24126
|
disabled: boolean;
|
|
23425
24127
|
type: ButtonType;
|
|
23426
|
-
text: string;
|
|
23427
24128
|
size: ButtonSize;
|
|
24129
|
+
text: string;
|
|
23428
24130
|
iconLeft: string;
|
|
23429
24131
|
iconRight: string;
|
|
23430
24132
|
float: boolean;
|
|
@@ -23438,8 +24140,8 @@ __isSuspense?: never;
|
|
|
23438
24140
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
23439
24141
|
disabled: boolean;
|
|
23440
24142
|
type: ButtonType;
|
|
23441
|
-
text: string;
|
|
23442
24143
|
size: ButtonSize;
|
|
24144
|
+
text: string;
|
|
23443
24145
|
iconLeft: string;
|
|
23444
24146
|
iconRight: string;
|
|
23445
24147
|
float: boolean;
|
|
@@ -23749,8 +24451,8 @@ UnnnicButton: {
|
|
|
23749
24451
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
23750
24452
|
disabled: boolean;
|
|
23751
24453
|
type: ButtonType;
|
|
23752
|
-
text: string;
|
|
23753
24454
|
size: ButtonSize;
|
|
24455
|
+
text: string;
|
|
23754
24456
|
iconLeft: string;
|
|
23755
24457
|
iconRight: string;
|
|
23756
24458
|
float: boolean;
|
|
@@ -23767,8 +24469,8 @@ Defaults: {};
|
|
|
23767
24469
|
}, Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
23768
24470
|
disabled: boolean;
|
|
23769
24471
|
type: ButtonType;
|
|
23770
|
-
text: string;
|
|
23771
24472
|
size: ButtonSize;
|
|
24473
|
+
text: string;
|
|
23772
24474
|
iconLeft: string;
|
|
23773
24475
|
iconRight: string;
|
|
23774
24476
|
float: boolean;
|
|
@@ -23782,8 +24484,8 @@ __isSuspense?: never;
|
|
|
23782
24484
|
} & ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
23783
24485
|
disabled: boolean;
|
|
23784
24486
|
type: ButtonType;
|
|
23785
|
-
text: string;
|
|
23786
24487
|
size: ButtonSize;
|
|
24488
|
+
text: string;
|
|
23787
24489
|
iconLeft: string;
|
|
23788
24490
|
iconRight: string;
|
|
23789
24491
|
float: boolean;
|