@weni/unnnic-system 3.2.9-alpha.2 → 3.2.9-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/DateFilter/DateFilter.vue.d.ts +60 -93
- package/dist/components/Input/BaseInput.vue.d.ts +18 -0
- package/dist/components/Input/BaseInput.vue.d.ts.map +1 -1
- package/dist/components/Input/Input.vue.d.ts +60 -93
- package/dist/components/Input/Input.vue.d.ts.map +1 -1
- package/dist/components/Input/TextInput.vue.d.ts +36 -0
- package/dist/components/Input/TextInput.vue.d.ts.map +1 -1
- package/dist/components/InputDatePicker/InputDatePicker.vue.d.ts +60 -93
- package/dist/components/InputNext/InputNext.vue.d.ts +1 -1
- package/dist/components/Label/Label.vue.d.ts +2 -2
- package/dist/components/Label/Label.vue.d.ts.map +1 -1
- package/dist/components/ModalNext/ModalNext.vue.d.ts +60 -93
- package/dist/components/SelectSmart/SelectSmart.vue.d.ts +36 -0
- package/dist/components/SelectTime/index.vue.d.ts +36 -0
- package/dist/components/Tab/Tab.vue.d.ts +11 -0
- package/dist/components/index.d.ts +507 -749
- package/dist/components/index.d.ts.map +1 -1
- package/dist/{es-2735a8fb.js → es-0c19f636.js} +1 -1
- package/dist/{index-e012fa52.js → index-4b1fed3d.js} +2750 -2722
- package/dist/locales/en.json.d.ts +2 -1
- package/dist/locales/es.json.d.ts +2 -1
- package/dist/locales/pt_br.json.d.ts +2 -1
- package/dist/{pt-br-f38a8b9c.js → pt-br-688d3863.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.js +1 -1
- package/dist/unnnic.umd.cjs +32 -32
- package/package.json +1 -1
- package/src/components/Input/BaseInput.vue +12 -2
- package/src/components/Input/Input.scss +2 -1
- package/src/components/Input/Input.vue +17 -29
- package/src/components/Input/TextInput.vue +11 -1
- package/src/components/Input/__test__/__snapshots__/Input.spec.js.snap +2 -2
- package/src/components/Label/Label.vue +2 -2
- package/src/components/Popover/__tests__/Popover.spec.js +147 -0
- package/src/components/Popover/__tests__/__snapshots__/Popover.spec.js.snap +8 -0
- package/src/components/Popover/index.vue +146 -0
- package/src/components/Select/SelectOption.vue +57 -0
- package/src/components/Select/__tests__/Select.spec.js +412 -0
- package/src/components/Select/__tests__/SelectItem.spec.js +330 -0
- package/src/components/Select/__tests__/SelectOption.spec.js +174 -0
- package/src/components/Select/__tests__/__snapshots__/Select.spec.js.snap +93 -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/index.vue +187 -0
- package/src/components/Tab/Tab.vue +37 -23
- package/src/components/Tab/__test__/__snapshots__/Tab.spec.js.snap +1 -1
- package/src/locales/en.json +2 -1
- package/src/locales/es.json +2 -1
- package/src/locales/pt_br.json +2 -1
- package/src/stories/Popover.stories.js +39 -0
- package/src/stories/Select.stories.js +91 -0
- package/src/stories/Tab.stories.js +11 -4
|
@@ -145,6 +145,14 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
145
145
|
type: BooleanConstructor;
|
|
146
146
|
default: boolean;
|
|
147
147
|
};
|
|
148
|
+
readonly: {
|
|
149
|
+
type: BooleanConstructor;
|
|
150
|
+
default: boolean;
|
|
151
|
+
};
|
|
152
|
+
forceActiveStatus: {
|
|
153
|
+
type: BooleanConstructor;
|
|
154
|
+
default: boolean;
|
|
155
|
+
};
|
|
148
156
|
}>, {}, {
|
|
149
157
|
val: string;
|
|
150
158
|
}, {
|
|
@@ -229,6 +237,14 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
229
237
|
type: BooleanConstructor;
|
|
230
238
|
default: boolean;
|
|
231
239
|
};
|
|
240
|
+
readonly: {
|
|
241
|
+
type: BooleanConstructor;
|
|
242
|
+
default: boolean;
|
|
243
|
+
};
|
|
244
|
+
forceActiveStatus: {
|
|
245
|
+
type: BooleanConstructor;
|
|
246
|
+
default: boolean;
|
|
247
|
+
};
|
|
232
248
|
}>> & Readonly<{
|
|
233
249
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
234
250
|
}>, {
|
|
@@ -241,6 +257,8 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
241
257
|
modelValue: string;
|
|
242
258
|
nativeType: string;
|
|
243
259
|
maxlength: number | null;
|
|
260
|
+
readonly: boolean;
|
|
261
|
+
forceActiveStatus: boolean;
|
|
244
262
|
placeholder: string;
|
|
245
263
|
iconLeft: string;
|
|
246
264
|
iconRight: string;
|
|
@@ -248,8 +266,8 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
248
266
|
iconRightClickable: boolean;
|
|
249
267
|
allowTogglePassword: boolean;
|
|
250
268
|
hasCloudyColor: boolean;
|
|
251
|
-
errors: string | unknown[];
|
|
252
269
|
tooltip: string;
|
|
270
|
+
errors: string | unknown[];
|
|
253
271
|
showMaxlengthCounter: boolean;
|
|
254
272
|
}, {}, {
|
|
255
273
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -306,6 +324,14 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
306
324
|
type: BooleanConstructor;
|
|
307
325
|
default: boolean;
|
|
308
326
|
};
|
|
327
|
+
readonly: {
|
|
328
|
+
type: BooleanConstructor;
|
|
329
|
+
default: boolean;
|
|
330
|
+
};
|
|
331
|
+
forceActiveStatus: {
|
|
332
|
+
type: BooleanConstructor;
|
|
333
|
+
default: boolean;
|
|
334
|
+
};
|
|
309
335
|
}>, {}, {
|
|
310
336
|
isFocused: boolean;
|
|
311
337
|
showPassword: boolean;
|
|
@@ -374,6 +400,14 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
374
400
|
type: BooleanConstructor;
|
|
375
401
|
default: boolean;
|
|
376
402
|
};
|
|
403
|
+
readonly: {
|
|
404
|
+
type: BooleanConstructor;
|
|
405
|
+
default: boolean;
|
|
406
|
+
};
|
|
407
|
+
forceActiveStatus: {
|
|
408
|
+
type: BooleanConstructor;
|
|
409
|
+
default: boolean;
|
|
410
|
+
};
|
|
377
411
|
}>> & Readonly<{
|
|
378
412
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
379
413
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -384,6 +418,8 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
384
418
|
modelValue: string;
|
|
385
419
|
nativeType: string;
|
|
386
420
|
maxlength: number;
|
|
421
|
+
readonly: boolean;
|
|
422
|
+
forceActiveStatus: boolean;
|
|
387
423
|
placeholder: string;
|
|
388
424
|
iconLeft: string;
|
|
389
425
|
iconRight: string;
|
|
@@ -420,6 +456,14 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
420
456
|
type: NumberConstructor;
|
|
421
457
|
default: null;
|
|
422
458
|
};
|
|
459
|
+
readonly: {
|
|
460
|
+
type: BooleanConstructor;
|
|
461
|
+
default: boolean;
|
|
462
|
+
};
|
|
463
|
+
forceActiveStatus: {
|
|
464
|
+
type: BooleanConstructor;
|
|
465
|
+
default: boolean;
|
|
466
|
+
};
|
|
423
467
|
}>, {}, {}, {
|
|
424
468
|
attributes(): any;
|
|
425
469
|
classes(): (string | {
|
|
@@ -456,6 +500,14 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
456
500
|
type: NumberConstructor;
|
|
457
501
|
default: null;
|
|
458
502
|
};
|
|
503
|
+
readonly: {
|
|
504
|
+
type: BooleanConstructor;
|
|
505
|
+
default: boolean;
|
|
506
|
+
};
|
|
507
|
+
forceActiveStatus: {
|
|
508
|
+
type: BooleanConstructor;
|
|
509
|
+
default: boolean;
|
|
510
|
+
};
|
|
459
511
|
}>> & Readonly<{
|
|
460
512
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
461
513
|
}>, {
|
|
@@ -467,6 +519,8 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
467
519
|
modelValue: string;
|
|
468
520
|
nativeType: string;
|
|
469
521
|
maxlength: number;
|
|
522
|
+
readonly: boolean;
|
|
523
|
+
forceActiveStatus: boolean;
|
|
470
524
|
}, {}, {}, {
|
|
471
525
|
mask: any;
|
|
472
526
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -488,98 +542,11 @@ export declare const unnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
488
542
|
scheme: import('./Icon.vue').SchemeColor;
|
|
489
543
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
490
544
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
enabled: {
|
|
497
|
-
type: BooleanConstructor;
|
|
498
|
-
default: boolean;
|
|
499
|
-
};
|
|
500
|
-
forceOpen: {
|
|
501
|
-
type: BooleanConstructor;
|
|
502
|
-
default: boolean;
|
|
503
|
-
};
|
|
504
|
-
side: {
|
|
505
|
-
type: StringConstructor;
|
|
506
|
-
default: string;
|
|
507
|
-
validator(value: unknown): boolean;
|
|
508
|
-
};
|
|
509
|
-
maxWidth: {
|
|
510
|
-
type: StringConstructor;
|
|
511
|
-
default: string;
|
|
512
|
-
};
|
|
513
|
-
shortcutText: {
|
|
514
|
-
type: StringConstructor;
|
|
515
|
-
default: null;
|
|
516
|
-
};
|
|
517
|
-
enableHtml: {
|
|
518
|
-
type: BooleanConstructor;
|
|
519
|
-
default: boolean;
|
|
520
|
-
};
|
|
521
|
-
}>, {}, {
|
|
522
|
-
topPos: null;
|
|
523
|
-
leftPos: null;
|
|
524
|
-
}, {}, {
|
|
525
|
-
handleResize(): void;
|
|
526
|
-
getRightPost(element: any): void;
|
|
527
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
528
|
-
text: {
|
|
529
|
-
type: StringConstructor;
|
|
530
|
-
default: string;
|
|
531
|
-
};
|
|
532
|
-
enabled: {
|
|
533
|
-
type: BooleanConstructor;
|
|
534
|
-
default: boolean;
|
|
535
|
-
};
|
|
536
|
-
forceOpen: {
|
|
537
|
-
type: BooleanConstructor;
|
|
538
|
-
default: boolean;
|
|
539
|
-
};
|
|
540
|
-
side: {
|
|
541
|
-
type: StringConstructor;
|
|
542
|
-
default: string;
|
|
543
|
-
validator(value: unknown): boolean;
|
|
544
|
-
};
|
|
545
|
-
maxWidth: {
|
|
546
|
-
type: StringConstructor;
|
|
547
|
-
default: string;
|
|
548
|
-
};
|
|
549
|
-
shortcutText: {
|
|
550
|
-
type: StringConstructor;
|
|
551
|
-
default: null;
|
|
552
|
-
};
|
|
553
|
-
enableHtml: {
|
|
554
|
-
type: BooleanConstructor;
|
|
555
|
-
default: boolean;
|
|
556
|
-
};
|
|
557
|
-
}>> & Readonly<{}>, {
|
|
558
|
-
text: string;
|
|
559
|
-
enabled: boolean;
|
|
560
|
-
forceOpen: boolean;
|
|
561
|
-
side: string;
|
|
562
|
-
maxWidth: string;
|
|
563
|
-
shortcutText: string;
|
|
564
|
-
enableHtml: boolean;
|
|
565
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
566
|
-
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
567
|
-
click: (event: Event) => any;
|
|
568
|
-
mousedown: (event: Event) => any;
|
|
569
|
-
mouseup: (event: Event) => any;
|
|
570
|
-
}, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
|
|
571
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
572
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
573
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
574
|
-
}>, {
|
|
575
|
-
size: import('./Icon.vue').IconSize;
|
|
576
|
-
filled: boolean;
|
|
577
|
-
next: boolean;
|
|
578
|
-
icon: string | null;
|
|
579
|
-
clickable: boolean;
|
|
580
|
-
lineHeight: import('./Icon.vue').LineHeight | null;
|
|
581
|
-
scheme: import('./Icon.vue').SchemeColor;
|
|
582
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
545
|
+
UnnnicLabel: import('vue').DefineComponent<import('./Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
546
|
+
label: string;
|
|
547
|
+
tooltip: string;
|
|
548
|
+
useHtmlTooltip: boolean;
|
|
549
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
583
550
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
584
551
|
export declare const unnnicInputNext: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
585
552
|
modelValue: StringConstructor;
|
|
@@ -663,8 +630,8 @@ export declare const unnnicInputNext: import('vue').DefineComponent<import('vue'
|
|
|
663
630
|
type: string;
|
|
664
631
|
disabled: boolean;
|
|
665
632
|
nativeType: string;
|
|
666
|
-
allowTogglePassword: boolean;
|
|
667
633
|
readonly: boolean;
|
|
634
|
+
allowTogglePassword: boolean;
|
|
668
635
|
}, {}, {
|
|
669
636
|
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
670
637
|
click: (event: Event) => any;
|
|
@@ -934,6 +901,14 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
934
901
|
type: BooleanConstructor;
|
|
935
902
|
default: boolean;
|
|
936
903
|
};
|
|
904
|
+
readonly: {
|
|
905
|
+
type: BooleanConstructor;
|
|
906
|
+
default: boolean;
|
|
907
|
+
};
|
|
908
|
+
forceActiveStatus: {
|
|
909
|
+
type: BooleanConstructor;
|
|
910
|
+
default: boolean;
|
|
911
|
+
};
|
|
937
912
|
}>, {}, {
|
|
938
913
|
val: string;
|
|
939
914
|
}, {
|
|
@@ -1018,6 +993,14 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1018
993
|
type: BooleanConstructor;
|
|
1019
994
|
default: boolean;
|
|
1020
995
|
};
|
|
996
|
+
readonly: {
|
|
997
|
+
type: BooleanConstructor;
|
|
998
|
+
default: boolean;
|
|
999
|
+
};
|
|
1000
|
+
forceActiveStatus: {
|
|
1001
|
+
type: BooleanConstructor;
|
|
1002
|
+
default: boolean;
|
|
1003
|
+
};
|
|
1021
1004
|
}>> & Readonly<{
|
|
1022
1005
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1023
1006
|
}>, {
|
|
@@ -1030,6 +1013,8 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1030
1013
|
modelValue: string;
|
|
1031
1014
|
nativeType: string;
|
|
1032
1015
|
maxlength: number | null;
|
|
1016
|
+
readonly: boolean;
|
|
1017
|
+
forceActiveStatus: boolean;
|
|
1033
1018
|
placeholder: string;
|
|
1034
1019
|
iconLeft: string;
|
|
1035
1020
|
iconRight: string;
|
|
@@ -1037,8 +1022,8 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1037
1022
|
iconRightClickable: boolean;
|
|
1038
1023
|
allowTogglePassword: boolean;
|
|
1039
1024
|
hasCloudyColor: boolean;
|
|
1040
|
-
errors: string | unknown[];
|
|
1041
1025
|
tooltip: string;
|
|
1026
|
+
errors: string | unknown[];
|
|
1042
1027
|
showMaxlengthCounter: boolean;
|
|
1043
1028
|
}, {}, {
|
|
1044
1029
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -1095,6 +1080,14 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1095
1080
|
type: BooleanConstructor;
|
|
1096
1081
|
default: boolean;
|
|
1097
1082
|
};
|
|
1083
|
+
readonly: {
|
|
1084
|
+
type: BooleanConstructor;
|
|
1085
|
+
default: boolean;
|
|
1086
|
+
};
|
|
1087
|
+
forceActiveStatus: {
|
|
1088
|
+
type: BooleanConstructor;
|
|
1089
|
+
default: boolean;
|
|
1090
|
+
};
|
|
1098
1091
|
}>, {}, {
|
|
1099
1092
|
isFocused: boolean;
|
|
1100
1093
|
showPassword: boolean;
|
|
@@ -1163,6 +1156,14 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1163
1156
|
type: BooleanConstructor;
|
|
1164
1157
|
default: boolean;
|
|
1165
1158
|
};
|
|
1159
|
+
readonly: {
|
|
1160
|
+
type: BooleanConstructor;
|
|
1161
|
+
default: boolean;
|
|
1162
|
+
};
|
|
1163
|
+
forceActiveStatus: {
|
|
1164
|
+
type: BooleanConstructor;
|
|
1165
|
+
default: boolean;
|
|
1166
|
+
};
|
|
1166
1167
|
}>> & Readonly<{
|
|
1167
1168
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
1168
1169
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1173,6 +1174,8 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1173
1174
|
modelValue: string;
|
|
1174
1175
|
nativeType: string;
|
|
1175
1176
|
maxlength: number;
|
|
1177
|
+
readonly: boolean;
|
|
1178
|
+
forceActiveStatus: boolean;
|
|
1176
1179
|
placeholder: string;
|
|
1177
1180
|
iconLeft: string;
|
|
1178
1181
|
iconRight: string;
|
|
@@ -1209,6 +1212,14 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1209
1212
|
type: NumberConstructor;
|
|
1210
1213
|
default: null;
|
|
1211
1214
|
};
|
|
1215
|
+
readonly: {
|
|
1216
|
+
type: BooleanConstructor;
|
|
1217
|
+
default: boolean;
|
|
1218
|
+
};
|
|
1219
|
+
forceActiveStatus: {
|
|
1220
|
+
type: BooleanConstructor;
|
|
1221
|
+
default: boolean;
|
|
1222
|
+
};
|
|
1212
1223
|
}>, {}, {}, {
|
|
1213
1224
|
attributes(): any;
|
|
1214
1225
|
classes(): (string | {
|
|
@@ -1245,6 +1256,14 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1245
1256
|
type: NumberConstructor;
|
|
1246
1257
|
default: null;
|
|
1247
1258
|
};
|
|
1259
|
+
readonly: {
|
|
1260
|
+
type: BooleanConstructor;
|
|
1261
|
+
default: boolean;
|
|
1262
|
+
};
|
|
1263
|
+
forceActiveStatus: {
|
|
1264
|
+
type: BooleanConstructor;
|
|
1265
|
+
default: boolean;
|
|
1266
|
+
};
|
|
1248
1267
|
}>> & Readonly<{
|
|
1249
1268
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1250
1269
|
}>, {
|
|
@@ -1256,6 +1275,8 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1256
1275
|
modelValue: string;
|
|
1257
1276
|
nativeType: string;
|
|
1258
1277
|
maxlength: number;
|
|
1278
|
+
readonly: boolean;
|
|
1279
|
+
forceActiveStatus: boolean;
|
|
1259
1280
|
}, {}, {}, {
|
|
1260
1281
|
mask: any;
|
|
1261
1282
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -1277,98 +1298,11 @@ export declare const unnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
1277
1298
|
scheme: import('./Icon.vue').SchemeColor;
|
|
1278
1299
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
1279
1300
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
enabled: {
|
|
1286
|
-
type: BooleanConstructor;
|
|
1287
|
-
default: boolean;
|
|
1288
|
-
};
|
|
1289
|
-
forceOpen: {
|
|
1290
|
-
type: BooleanConstructor;
|
|
1291
|
-
default: boolean;
|
|
1292
|
-
};
|
|
1293
|
-
side: {
|
|
1294
|
-
type: StringConstructor;
|
|
1295
|
-
default: string;
|
|
1296
|
-
validator(value: unknown): boolean;
|
|
1297
|
-
};
|
|
1298
|
-
maxWidth: {
|
|
1299
|
-
type: StringConstructor;
|
|
1300
|
-
default: string;
|
|
1301
|
-
};
|
|
1302
|
-
shortcutText: {
|
|
1303
|
-
type: StringConstructor;
|
|
1304
|
-
default: null;
|
|
1305
|
-
};
|
|
1306
|
-
enableHtml: {
|
|
1307
|
-
type: BooleanConstructor;
|
|
1308
|
-
default: boolean;
|
|
1309
|
-
};
|
|
1310
|
-
}>, {}, {
|
|
1311
|
-
topPos: null;
|
|
1312
|
-
leftPos: null;
|
|
1313
|
-
}, {}, {
|
|
1314
|
-
handleResize(): void;
|
|
1315
|
-
getRightPost(element: any): void;
|
|
1316
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1317
|
-
text: {
|
|
1318
|
-
type: StringConstructor;
|
|
1319
|
-
default: string;
|
|
1320
|
-
};
|
|
1321
|
-
enabled: {
|
|
1322
|
-
type: BooleanConstructor;
|
|
1323
|
-
default: boolean;
|
|
1324
|
-
};
|
|
1325
|
-
forceOpen: {
|
|
1326
|
-
type: BooleanConstructor;
|
|
1327
|
-
default: boolean;
|
|
1328
|
-
};
|
|
1329
|
-
side: {
|
|
1330
|
-
type: StringConstructor;
|
|
1331
|
-
default: string;
|
|
1332
|
-
validator(value: unknown): boolean;
|
|
1333
|
-
};
|
|
1334
|
-
maxWidth: {
|
|
1335
|
-
type: StringConstructor;
|
|
1336
|
-
default: string;
|
|
1337
|
-
};
|
|
1338
|
-
shortcutText: {
|
|
1339
|
-
type: StringConstructor;
|
|
1340
|
-
default: null;
|
|
1341
|
-
};
|
|
1342
|
-
enableHtml: {
|
|
1343
|
-
type: BooleanConstructor;
|
|
1344
|
-
default: boolean;
|
|
1345
|
-
};
|
|
1346
|
-
}>> & Readonly<{}>, {
|
|
1347
|
-
text: string;
|
|
1348
|
-
enabled: boolean;
|
|
1349
|
-
forceOpen: boolean;
|
|
1350
|
-
side: string;
|
|
1351
|
-
maxWidth: string;
|
|
1352
|
-
shortcutText: string;
|
|
1353
|
-
enableHtml: boolean;
|
|
1354
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1355
|
-
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1356
|
-
click: (event: Event) => any;
|
|
1357
|
-
mousedown: (event: Event) => any;
|
|
1358
|
-
mouseup: (event: Event) => any;
|
|
1359
|
-
}, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
|
|
1360
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
1361
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
1362
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
1363
|
-
}>, {
|
|
1364
|
-
size: import('./Icon.vue').IconSize;
|
|
1365
|
-
filled: boolean;
|
|
1366
|
-
next: boolean;
|
|
1367
|
-
icon: string | null;
|
|
1368
|
-
clickable: boolean;
|
|
1369
|
-
lineHeight: import('./Icon.vue').LineHeight | null;
|
|
1370
|
-
scheme: import('./Icon.vue').SchemeColor;
|
|
1371
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
1301
|
+
UnnnicLabel: import('vue').DefineComponent<import('./Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
1302
|
+
label: string;
|
|
1303
|
+
tooltip: string;
|
|
1304
|
+
useHtmlTooltip: boolean;
|
|
1305
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
1372
1306
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1373
1307
|
UnnnicDatePicker: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
1374
1308
|
initialStartDate: {
|
|
@@ -4632,6 +4566,14 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4632
4566
|
type: BooleanConstructor;
|
|
4633
4567
|
default: boolean;
|
|
4634
4568
|
};
|
|
4569
|
+
readonly: {
|
|
4570
|
+
type: BooleanConstructor;
|
|
4571
|
+
default: boolean;
|
|
4572
|
+
};
|
|
4573
|
+
forceActiveStatus: {
|
|
4574
|
+
type: BooleanConstructor;
|
|
4575
|
+
default: boolean;
|
|
4576
|
+
};
|
|
4635
4577
|
}>, {}, {
|
|
4636
4578
|
val: string;
|
|
4637
4579
|
}, {
|
|
@@ -4716,6 +4658,14 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4716
4658
|
type: BooleanConstructor;
|
|
4717
4659
|
default: boolean;
|
|
4718
4660
|
};
|
|
4661
|
+
readonly: {
|
|
4662
|
+
type: BooleanConstructor;
|
|
4663
|
+
default: boolean;
|
|
4664
|
+
};
|
|
4665
|
+
forceActiveStatus: {
|
|
4666
|
+
type: BooleanConstructor;
|
|
4667
|
+
default: boolean;
|
|
4668
|
+
};
|
|
4719
4669
|
}>> & Readonly<{
|
|
4720
4670
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4721
4671
|
}>, {
|
|
@@ -4728,6 +4678,8 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4728
4678
|
modelValue: string;
|
|
4729
4679
|
nativeType: string;
|
|
4730
4680
|
maxlength: number | null;
|
|
4681
|
+
readonly: boolean;
|
|
4682
|
+
forceActiveStatus: boolean;
|
|
4731
4683
|
placeholder: string;
|
|
4732
4684
|
iconLeft: string;
|
|
4733
4685
|
iconRight: string;
|
|
@@ -4735,8 +4687,8 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4735
4687
|
iconRightClickable: boolean;
|
|
4736
4688
|
allowTogglePassword: boolean;
|
|
4737
4689
|
hasCloudyColor: boolean;
|
|
4738
|
-
errors: string | unknown[];
|
|
4739
4690
|
tooltip: string;
|
|
4691
|
+
errors: string | unknown[];
|
|
4740
4692
|
showMaxlengthCounter: boolean;
|
|
4741
4693
|
}, {}, {
|
|
4742
4694
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -4793,6 +4745,14 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4793
4745
|
type: BooleanConstructor;
|
|
4794
4746
|
default: boolean;
|
|
4795
4747
|
};
|
|
4748
|
+
readonly: {
|
|
4749
|
+
type: BooleanConstructor;
|
|
4750
|
+
default: boolean;
|
|
4751
|
+
};
|
|
4752
|
+
forceActiveStatus: {
|
|
4753
|
+
type: BooleanConstructor;
|
|
4754
|
+
default: boolean;
|
|
4755
|
+
};
|
|
4796
4756
|
}>, {}, {
|
|
4797
4757
|
isFocused: boolean;
|
|
4798
4758
|
showPassword: boolean;
|
|
@@ -4861,6 +4821,14 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4861
4821
|
type: BooleanConstructor;
|
|
4862
4822
|
default: boolean;
|
|
4863
4823
|
};
|
|
4824
|
+
readonly: {
|
|
4825
|
+
type: BooleanConstructor;
|
|
4826
|
+
default: boolean;
|
|
4827
|
+
};
|
|
4828
|
+
forceActiveStatus: {
|
|
4829
|
+
type: BooleanConstructor;
|
|
4830
|
+
default: boolean;
|
|
4831
|
+
};
|
|
4864
4832
|
}>> & Readonly<{
|
|
4865
4833
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
4866
4834
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -4871,6 +4839,8 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4871
4839
|
modelValue: string;
|
|
4872
4840
|
nativeType: string;
|
|
4873
4841
|
maxlength: number;
|
|
4842
|
+
readonly: boolean;
|
|
4843
|
+
forceActiveStatus: boolean;
|
|
4874
4844
|
placeholder: string;
|
|
4875
4845
|
iconLeft: string;
|
|
4876
4846
|
iconRight: string;
|
|
@@ -4907,6 +4877,14 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4907
4877
|
type: NumberConstructor;
|
|
4908
4878
|
default: null;
|
|
4909
4879
|
};
|
|
4880
|
+
readonly: {
|
|
4881
|
+
type: BooleanConstructor;
|
|
4882
|
+
default: boolean;
|
|
4883
|
+
};
|
|
4884
|
+
forceActiveStatus: {
|
|
4885
|
+
type: BooleanConstructor;
|
|
4886
|
+
default: boolean;
|
|
4887
|
+
};
|
|
4910
4888
|
}>, {}, {}, {
|
|
4911
4889
|
attributes(): any;
|
|
4912
4890
|
classes(): (string | {
|
|
@@ -4943,6 +4921,14 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4943
4921
|
type: NumberConstructor;
|
|
4944
4922
|
default: null;
|
|
4945
4923
|
};
|
|
4924
|
+
readonly: {
|
|
4925
|
+
type: BooleanConstructor;
|
|
4926
|
+
default: boolean;
|
|
4927
|
+
};
|
|
4928
|
+
forceActiveStatus: {
|
|
4929
|
+
type: BooleanConstructor;
|
|
4930
|
+
default: boolean;
|
|
4931
|
+
};
|
|
4946
4932
|
}>> & Readonly<{
|
|
4947
4933
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4948
4934
|
}>, {
|
|
@@ -4954,6 +4940,8 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4954
4940
|
modelValue: string;
|
|
4955
4941
|
nativeType: string;
|
|
4956
4942
|
maxlength: number;
|
|
4943
|
+
readonly: boolean;
|
|
4944
|
+
forceActiveStatus: boolean;
|
|
4957
4945
|
}, {}, {}, {
|
|
4958
4946
|
mask: any;
|
|
4959
4947
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -4975,98 +4963,11 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4975
4963
|
scheme: import('./Icon.vue').SchemeColor;
|
|
4976
4964
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
4977
4965
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
enabled: {
|
|
4984
|
-
type: BooleanConstructor;
|
|
4985
|
-
default: boolean;
|
|
4986
|
-
};
|
|
4987
|
-
forceOpen: {
|
|
4988
|
-
type: BooleanConstructor;
|
|
4989
|
-
default: boolean;
|
|
4990
|
-
};
|
|
4991
|
-
side: {
|
|
4992
|
-
type: StringConstructor;
|
|
4993
|
-
default: string;
|
|
4994
|
-
validator(value: unknown): boolean;
|
|
4995
|
-
};
|
|
4996
|
-
maxWidth: {
|
|
4997
|
-
type: StringConstructor;
|
|
4998
|
-
default: string;
|
|
4999
|
-
};
|
|
5000
|
-
shortcutText: {
|
|
5001
|
-
type: StringConstructor;
|
|
5002
|
-
default: null;
|
|
5003
|
-
};
|
|
5004
|
-
enableHtml: {
|
|
5005
|
-
type: BooleanConstructor;
|
|
5006
|
-
default: boolean;
|
|
5007
|
-
};
|
|
5008
|
-
}>, {}, {
|
|
5009
|
-
topPos: null;
|
|
5010
|
-
leftPos: null;
|
|
5011
|
-
}, {}, {
|
|
5012
|
-
handleResize(): void;
|
|
5013
|
-
getRightPost(element: any): void;
|
|
5014
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
5015
|
-
text: {
|
|
5016
|
-
type: StringConstructor;
|
|
5017
|
-
default: string;
|
|
5018
|
-
};
|
|
5019
|
-
enabled: {
|
|
5020
|
-
type: BooleanConstructor;
|
|
5021
|
-
default: boolean;
|
|
5022
|
-
};
|
|
5023
|
-
forceOpen: {
|
|
5024
|
-
type: BooleanConstructor;
|
|
5025
|
-
default: boolean;
|
|
5026
|
-
};
|
|
5027
|
-
side: {
|
|
5028
|
-
type: StringConstructor;
|
|
5029
|
-
default: string;
|
|
5030
|
-
validator(value: unknown): boolean;
|
|
5031
|
-
};
|
|
5032
|
-
maxWidth: {
|
|
5033
|
-
type: StringConstructor;
|
|
5034
|
-
default: string;
|
|
5035
|
-
};
|
|
5036
|
-
shortcutText: {
|
|
5037
|
-
type: StringConstructor;
|
|
5038
|
-
default: null;
|
|
5039
|
-
};
|
|
5040
|
-
enableHtml: {
|
|
5041
|
-
type: BooleanConstructor;
|
|
5042
|
-
default: boolean;
|
|
5043
|
-
};
|
|
5044
|
-
}>> & Readonly<{}>, {
|
|
5045
|
-
text: string;
|
|
5046
|
-
enabled: boolean;
|
|
5047
|
-
forceOpen: boolean;
|
|
5048
|
-
side: string;
|
|
5049
|
-
maxWidth: string;
|
|
5050
|
-
shortcutText: string;
|
|
5051
|
-
enableHtml: boolean;
|
|
5052
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
5053
|
-
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5054
|
-
click: (event: Event) => any;
|
|
5055
|
-
mousedown: (event: Event) => any;
|
|
5056
|
-
mouseup: (event: Event) => any;
|
|
5057
|
-
}, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
|
|
5058
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
5059
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
5060
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
5061
|
-
}>, {
|
|
5062
|
-
size: import('./Icon.vue').IconSize;
|
|
5063
|
-
filled: boolean;
|
|
5064
|
-
next: boolean;
|
|
5065
|
-
icon: string | null;
|
|
5066
|
-
clickable: boolean;
|
|
5067
|
-
lineHeight: import('./Icon.vue').LineHeight | null;
|
|
5068
|
-
scheme: import('./Icon.vue').SchemeColor;
|
|
5069
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
4966
|
+
UnnnicLabel: import('vue').DefineComponent<import('./Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
4967
|
+
label: string;
|
|
4968
|
+
tooltip: string;
|
|
4969
|
+
useHtmlTooltip: boolean;
|
|
4970
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
5070
4971
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
5071
4972
|
UnnnicButton: {
|
|
5072
4973
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Button/types').ButtonProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
@@ -6974,6 +6875,11 @@ export declare const unnnicTab: import('vue').DefineComponent<import('vue').Extr
|
|
|
6974
6875
|
tabs: {
|
|
6975
6876
|
type: ArrayConstructor;
|
|
6976
6877
|
default: null;
|
|
6878
|
+
validator: (tabs: unknown) => any;
|
|
6879
|
+
};
|
|
6880
|
+
disabledTabs: {
|
|
6881
|
+
type: ArrayConstructor;
|
|
6882
|
+
default: null;
|
|
6977
6883
|
};
|
|
6978
6884
|
}>, {}, {
|
|
6979
6885
|
localValue: string;
|
|
@@ -7001,6 +6907,11 @@ export declare const unnnicTab: import('vue').DefineComponent<import('vue').Extr
|
|
|
7001
6907
|
tabs: {
|
|
7002
6908
|
type: ArrayConstructor;
|
|
7003
6909
|
default: null;
|
|
6910
|
+
validator: (tabs: unknown) => any;
|
|
6911
|
+
};
|
|
6912
|
+
disabledTabs: {
|
|
6913
|
+
type: ArrayConstructor;
|
|
6914
|
+
default: null;
|
|
7004
6915
|
};
|
|
7005
6916
|
}>> & Readonly<{
|
|
7006
6917
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -7009,6 +6920,7 @@ export declare const unnnicTab: import('vue').DefineComponent<import('vue').Extr
|
|
|
7009
6920
|
activeTab: string;
|
|
7010
6921
|
initialTab: string;
|
|
7011
6922
|
tabs: unknown[];
|
|
6923
|
+
disabledTabs: unknown[];
|
|
7012
6924
|
}, {}, {
|
|
7013
6925
|
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7014
6926
|
click: (event: Event) => any;
|
|
@@ -8899,6 +8811,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
8899
8811
|
type: BooleanConstructor;
|
|
8900
8812
|
default: boolean;
|
|
8901
8813
|
};
|
|
8814
|
+
readonly: {
|
|
8815
|
+
type: BooleanConstructor;
|
|
8816
|
+
default: boolean;
|
|
8817
|
+
};
|
|
8818
|
+
forceActiveStatus: {
|
|
8819
|
+
type: BooleanConstructor;
|
|
8820
|
+
default: boolean;
|
|
8821
|
+
};
|
|
8902
8822
|
}>, {}, {
|
|
8903
8823
|
val: string;
|
|
8904
8824
|
}, {
|
|
@@ -8983,6 +8903,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
8983
8903
|
type: BooleanConstructor;
|
|
8984
8904
|
default: boolean;
|
|
8985
8905
|
};
|
|
8906
|
+
readonly: {
|
|
8907
|
+
type: BooleanConstructor;
|
|
8908
|
+
default: boolean;
|
|
8909
|
+
};
|
|
8910
|
+
forceActiveStatus: {
|
|
8911
|
+
type: BooleanConstructor;
|
|
8912
|
+
default: boolean;
|
|
8913
|
+
};
|
|
8986
8914
|
}>> & Readonly<{
|
|
8987
8915
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8988
8916
|
}>, {
|
|
@@ -8995,6 +8923,8 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
8995
8923
|
modelValue: string;
|
|
8996
8924
|
nativeType: string;
|
|
8997
8925
|
maxlength: number | null;
|
|
8926
|
+
readonly: boolean;
|
|
8927
|
+
forceActiveStatus: boolean;
|
|
8998
8928
|
placeholder: string;
|
|
8999
8929
|
iconLeft: string;
|
|
9000
8930
|
iconRight: string;
|
|
@@ -9002,8 +8932,8 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9002
8932
|
iconRightClickable: boolean;
|
|
9003
8933
|
allowTogglePassword: boolean;
|
|
9004
8934
|
hasCloudyColor: boolean;
|
|
9005
|
-
errors: string | unknown[];
|
|
9006
8935
|
tooltip: string;
|
|
8936
|
+
errors: string | unknown[];
|
|
9007
8937
|
showMaxlengthCounter: boolean;
|
|
9008
8938
|
}, {}, {
|
|
9009
8939
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -9060,6 +8990,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9060
8990
|
type: BooleanConstructor;
|
|
9061
8991
|
default: boolean;
|
|
9062
8992
|
};
|
|
8993
|
+
readonly: {
|
|
8994
|
+
type: BooleanConstructor;
|
|
8995
|
+
default: boolean;
|
|
8996
|
+
};
|
|
8997
|
+
forceActiveStatus: {
|
|
8998
|
+
type: BooleanConstructor;
|
|
8999
|
+
default: boolean;
|
|
9000
|
+
};
|
|
9063
9001
|
}>, {}, {
|
|
9064
9002
|
isFocused: boolean;
|
|
9065
9003
|
showPassword: boolean;
|
|
@@ -9128,6 +9066,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9128
9066
|
type: BooleanConstructor;
|
|
9129
9067
|
default: boolean;
|
|
9130
9068
|
};
|
|
9069
|
+
readonly: {
|
|
9070
|
+
type: BooleanConstructor;
|
|
9071
|
+
default: boolean;
|
|
9072
|
+
};
|
|
9073
|
+
forceActiveStatus: {
|
|
9074
|
+
type: BooleanConstructor;
|
|
9075
|
+
default: boolean;
|
|
9076
|
+
};
|
|
9131
9077
|
}>> & Readonly<{
|
|
9132
9078
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
9133
9079
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -9138,6 +9084,8 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9138
9084
|
modelValue: string;
|
|
9139
9085
|
nativeType: string;
|
|
9140
9086
|
maxlength: number;
|
|
9087
|
+
readonly: boolean;
|
|
9088
|
+
forceActiveStatus: boolean;
|
|
9141
9089
|
placeholder: string;
|
|
9142
9090
|
iconLeft: string;
|
|
9143
9091
|
iconRight: string;
|
|
@@ -9174,6 +9122,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9174
9122
|
type: NumberConstructor;
|
|
9175
9123
|
default: null;
|
|
9176
9124
|
};
|
|
9125
|
+
readonly: {
|
|
9126
|
+
type: BooleanConstructor;
|
|
9127
|
+
default: boolean;
|
|
9128
|
+
};
|
|
9129
|
+
forceActiveStatus: {
|
|
9130
|
+
type: BooleanConstructor;
|
|
9131
|
+
default: boolean;
|
|
9132
|
+
};
|
|
9177
9133
|
}>, {}, {}, {
|
|
9178
9134
|
attributes(): any;
|
|
9179
9135
|
classes(): (string | {
|
|
@@ -9210,6 +9166,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9210
9166
|
type: NumberConstructor;
|
|
9211
9167
|
default: null;
|
|
9212
9168
|
};
|
|
9169
|
+
readonly: {
|
|
9170
|
+
type: BooleanConstructor;
|
|
9171
|
+
default: boolean;
|
|
9172
|
+
};
|
|
9173
|
+
forceActiveStatus: {
|
|
9174
|
+
type: BooleanConstructor;
|
|
9175
|
+
default: boolean;
|
|
9176
|
+
};
|
|
9213
9177
|
}>> & Readonly<{
|
|
9214
9178
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9215
9179
|
}>, {
|
|
@@ -9221,6 +9185,8 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9221
9185
|
modelValue: string;
|
|
9222
9186
|
nativeType: string;
|
|
9223
9187
|
maxlength: number;
|
|
9188
|
+
readonly: boolean;
|
|
9189
|
+
forceActiveStatus: boolean;
|
|
9224
9190
|
}, {}, {}, {
|
|
9225
9191
|
mask: any;
|
|
9226
9192
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -9242,98 +9208,11 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9242
9208
|
scheme: import('./Icon.vue').SchemeColor;
|
|
9243
9209
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9244
9210
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
9245
|
-
|
|
9246
|
-
|
|
9247
|
-
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
enabled: {
|
|
9251
|
-
type: BooleanConstructor;
|
|
9252
|
-
default: boolean;
|
|
9253
|
-
};
|
|
9254
|
-
forceOpen: {
|
|
9255
|
-
type: BooleanConstructor;
|
|
9256
|
-
default: boolean;
|
|
9257
|
-
};
|
|
9258
|
-
side: {
|
|
9259
|
-
type: StringConstructor;
|
|
9260
|
-
default: string;
|
|
9261
|
-
validator(value: unknown): boolean;
|
|
9262
|
-
};
|
|
9263
|
-
maxWidth: {
|
|
9264
|
-
type: StringConstructor;
|
|
9265
|
-
default: string;
|
|
9266
|
-
};
|
|
9267
|
-
shortcutText: {
|
|
9268
|
-
type: StringConstructor;
|
|
9269
|
-
default: null;
|
|
9270
|
-
};
|
|
9271
|
-
enableHtml: {
|
|
9272
|
-
type: BooleanConstructor;
|
|
9273
|
-
default: boolean;
|
|
9274
|
-
};
|
|
9275
|
-
}>, {}, {
|
|
9276
|
-
topPos: null;
|
|
9277
|
-
leftPos: null;
|
|
9278
|
-
}, {}, {
|
|
9279
|
-
handleResize(): void;
|
|
9280
|
-
getRightPost(element: any): void;
|
|
9281
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
9282
|
-
text: {
|
|
9283
|
-
type: StringConstructor;
|
|
9284
|
-
default: string;
|
|
9285
|
-
};
|
|
9286
|
-
enabled: {
|
|
9287
|
-
type: BooleanConstructor;
|
|
9288
|
-
default: boolean;
|
|
9289
|
-
};
|
|
9290
|
-
forceOpen: {
|
|
9291
|
-
type: BooleanConstructor;
|
|
9292
|
-
default: boolean;
|
|
9293
|
-
};
|
|
9294
|
-
side: {
|
|
9295
|
-
type: StringConstructor;
|
|
9296
|
-
default: string;
|
|
9297
|
-
validator(value: unknown): boolean;
|
|
9298
|
-
};
|
|
9299
|
-
maxWidth: {
|
|
9300
|
-
type: StringConstructor;
|
|
9301
|
-
default: string;
|
|
9302
|
-
};
|
|
9303
|
-
shortcutText: {
|
|
9304
|
-
type: StringConstructor;
|
|
9305
|
-
default: null;
|
|
9306
|
-
};
|
|
9307
|
-
enableHtml: {
|
|
9308
|
-
type: BooleanConstructor;
|
|
9309
|
-
default: boolean;
|
|
9310
|
-
};
|
|
9311
|
-
}>> & Readonly<{}>, {
|
|
9312
|
-
text: string;
|
|
9313
|
-
enabled: boolean;
|
|
9314
|
-
forceOpen: boolean;
|
|
9315
|
-
side: string;
|
|
9316
|
-
maxWidth: string;
|
|
9317
|
-
shortcutText: string;
|
|
9318
|
-
enableHtml: boolean;
|
|
9319
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
9320
|
-
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9321
|
-
click: (event: Event) => any;
|
|
9322
|
-
mousedown: (event: Event) => any;
|
|
9323
|
-
mouseup: (event: Event) => any;
|
|
9324
|
-
}, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
|
|
9325
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
9326
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
9327
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
9328
|
-
}>, {
|
|
9329
|
-
size: import('./Icon.vue').IconSize;
|
|
9330
|
-
filled: boolean;
|
|
9331
|
-
next: boolean;
|
|
9332
|
-
icon: string | null;
|
|
9333
|
-
clickable: boolean;
|
|
9334
|
-
lineHeight: import('./Icon.vue').LineHeight | null;
|
|
9335
|
-
scheme: import('./Icon.vue').SchemeColor;
|
|
9336
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9211
|
+
UnnnicLabel: import('vue').DefineComponent<import('./Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
9212
|
+
label: string;
|
|
9213
|
+
tooltip: string;
|
|
9214
|
+
useHtmlTooltip: boolean;
|
|
9215
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
9337
9216
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
9338
9217
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
9339
9218
|
export declare const unnnicChatText: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -12685,6 +12564,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12685
12564
|
type: BooleanConstructor;
|
|
12686
12565
|
default: boolean;
|
|
12687
12566
|
};
|
|
12567
|
+
readonly: {
|
|
12568
|
+
type: BooleanConstructor;
|
|
12569
|
+
default: boolean;
|
|
12570
|
+
};
|
|
12571
|
+
forceActiveStatus: {
|
|
12572
|
+
type: BooleanConstructor;
|
|
12573
|
+
default: boolean;
|
|
12574
|
+
};
|
|
12688
12575
|
}>, {}, {
|
|
12689
12576
|
val: string;
|
|
12690
12577
|
}, {
|
|
@@ -12769,6 +12656,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12769
12656
|
type: BooleanConstructor;
|
|
12770
12657
|
default: boolean;
|
|
12771
12658
|
};
|
|
12659
|
+
readonly: {
|
|
12660
|
+
type: BooleanConstructor;
|
|
12661
|
+
default: boolean;
|
|
12662
|
+
};
|
|
12663
|
+
forceActiveStatus: {
|
|
12664
|
+
type: BooleanConstructor;
|
|
12665
|
+
default: boolean;
|
|
12666
|
+
};
|
|
12772
12667
|
}>> & Readonly<{
|
|
12773
12668
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12774
12669
|
}>, {
|
|
@@ -12781,6 +12676,8 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12781
12676
|
modelValue: string;
|
|
12782
12677
|
nativeType: string;
|
|
12783
12678
|
maxlength: number | null;
|
|
12679
|
+
readonly: boolean;
|
|
12680
|
+
forceActiveStatus: boolean;
|
|
12784
12681
|
placeholder: string;
|
|
12785
12682
|
iconLeft: string;
|
|
12786
12683
|
iconRight: string;
|
|
@@ -12788,8 +12685,8 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12788
12685
|
iconRightClickable: boolean;
|
|
12789
12686
|
allowTogglePassword: boolean;
|
|
12790
12687
|
hasCloudyColor: boolean;
|
|
12791
|
-
errors: string | unknown[];
|
|
12792
12688
|
tooltip: string;
|
|
12689
|
+
errors: string | unknown[];
|
|
12793
12690
|
showMaxlengthCounter: boolean;
|
|
12794
12691
|
}, {}, {
|
|
12795
12692
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -12846,6 +12743,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12846
12743
|
type: BooleanConstructor;
|
|
12847
12744
|
default: boolean;
|
|
12848
12745
|
};
|
|
12746
|
+
readonly: {
|
|
12747
|
+
type: BooleanConstructor;
|
|
12748
|
+
default: boolean;
|
|
12749
|
+
};
|
|
12750
|
+
forceActiveStatus: {
|
|
12751
|
+
type: BooleanConstructor;
|
|
12752
|
+
default: boolean;
|
|
12753
|
+
};
|
|
12849
12754
|
}>, {}, {
|
|
12850
12755
|
isFocused: boolean;
|
|
12851
12756
|
showPassword: boolean;
|
|
@@ -12910,7 +12815,15 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12910
12815
|
type: NumberConstructor;
|
|
12911
12816
|
default: null;
|
|
12912
12817
|
};
|
|
12913
|
-
disabled: {
|
|
12818
|
+
disabled: {
|
|
12819
|
+
type: BooleanConstructor;
|
|
12820
|
+
default: boolean;
|
|
12821
|
+
};
|
|
12822
|
+
readonly: {
|
|
12823
|
+
type: BooleanConstructor;
|
|
12824
|
+
default: boolean;
|
|
12825
|
+
};
|
|
12826
|
+
forceActiveStatus: {
|
|
12914
12827
|
type: BooleanConstructor;
|
|
12915
12828
|
default: boolean;
|
|
12916
12829
|
};
|
|
@@ -12924,6 +12837,8 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12924
12837
|
modelValue: string;
|
|
12925
12838
|
nativeType: string;
|
|
12926
12839
|
maxlength: number;
|
|
12840
|
+
readonly: boolean;
|
|
12841
|
+
forceActiveStatus: boolean;
|
|
12927
12842
|
placeholder: string;
|
|
12928
12843
|
iconLeft: string;
|
|
12929
12844
|
iconRight: string;
|
|
@@ -12960,6 +12875,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12960
12875
|
type: NumberConstructor;
|
|
12961
12876
|
default: null;
|
|
12962
12877
|
};
|
|
12878
|
+
readonly: {
|
|
12879
|
+
type: BooleanConstructor;
|
|
12880
|
+
default: boolean;
|
|
12881
|
+
};
|
|
12882
|
+
forceActiveStatus: {
|
|
12883
|
+
type: BooleanConstructor;
|
|
12884
|
+
default: boolean;
|
|
12885
|
+
};
|
|
12963
12886
|
}>, {}, {}, {
|
|
12964
12887
|
attributes(): any;
|
|
12965
12888
|
classes(): (string | {
|
|
@@ -12996,6 +12919,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12996
12919
|
type: NumberConstructor;
|
|
12997
12920
|
default: null;
|
|
12998
12921
|
};
|
|
12922
|
+
readonly: {
|
|
12923
|
+
type: BooleanConstructor;
|
|
12924
|
+
default: boolean;
|
|
12925
|
+
};
|
|
12926
|
+
forceActiveStatus: {
|
|
12927
|
+
type: BooleanConstructor;
|
|
12928
|
+
default: boolean;
|
|
12929
|
+
};
|
|
12999
12930
|
}>> & Readonly<{
|
|
13000
12931
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13001
12932
|
}>, {
|
|
@@ -13007,6 +12938,8 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
13007
12938
|
modelValue: string;
|
|
13008
12939
|
nativeType: string;
|
|
13009
12940
|
maxlength: number;
|
|
12941
|
+
readonly: boolean;
|
|
12942
|
+
forceActiveStatus: boolean;
|
|
13010
12943
|
}, {}, {}, {
|
|
13011
12944
|
mask: any;
|
|
13012
12945
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -13028,98 +12961,11 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
13028
12961
|
scheme: import('./Icon.vue').SchemeColor;
|
|
13029
12962
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13030
12963
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13031
|
-
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
|
|
13035
|
-
|
|
13036
|
-
enabled: {
|
|
13037
|
-
type: BooleanConstructor;
|
|
13038
|
-
default: boolean;
|
|
13039
|
-
};
|
|
13040
|
-
forceOpen: {
|
|
13041
|
-
type: BooleanConstructor;
|
|
13042
|
-
default: boolean;
|
|
13043
|
-
};
|
|
13044
|
-
side: {
|
|
13045
|
-
type: StringConstructor;
|
|
13046
|
-
default: string;
|
|
13047
|
-
validator(value: unknown): boolean;
|
|
13048
|
-
};
|
|
13049
|
-
maxWidth: {
|
|
13050
|
-
type: StringConstructor;
|
|
13051
|
-
default: string;
|
|
13052
|
-
};
|
|
13053
|
-
shortcutText: {
|
|
13054
|
-
type: StringConstructor;
|
|
13055
|
-
default: null;
|
|
13056
|
-
};
|
|
13057
|
-
enableHtml: {
|
|
13058
|
-
type: BooleanConstructor;
|
|
13059
|
-
default: boolean;
|
|
13060
|
-
};
|
|
13061
|
-
}>, {}, {
|
|
13062
|
-
topPos: null;
|
|
13063
|
-
leftPos: null;
|
|
13064
|
-
}, {}, {
|
|
13065
|
-
handleResize(): void;
|
|
13066
|
-
getRightPost(element: any): void;
|
|
13067
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
13068
|
-
text: {
|
|
13069
|
-
type: StringConstructor;
|
|
13070
|
-
default: string;
|
|
13071
|
-
};
|
|
13072
|
-
enabled: {
|
|
13073
|
-
type: BooleanConstructor;
|
|
13074
|
-
default: boolean;
|
|
13075
|
-
};
|
|
13076
|
-
forceOpen: {
|
|
13077
|
-
type: BooleanConstructor;
|
|
13078
|
-
default: boolean;
|
|
13079
|
-
};
|
|
13080
|
-
side: {
|
|
13081
|
-
type: StringConstructor;
|
|
13082
|
-
default: string;
|
|
13083
|
-
validator(value: unknown): boolean;
|
|
13084
|
-
};
|
|
13085
|
-
maxWidth: {
|
|
13086
|
-
type: StringConstructor;
|
|
13087
|
-
default: string;
|
|
13088
|
-
};
|
|
13089
|
-
shortcutText: {
|
|
13090
|
-
type: StringConstructor;
|
|
13091
|
-
default: null;
|
|
13092
|
-
};
|
|
13093
|
-
enableHtml: {
|
|
13094
|
-
type: BooleanConstructor;
|
|
13095
|
-
default: boolean;
|
|
13096
|
-
};
|
|
13097
|
-
}>> & Readonly<{}>, {
|
|
13098
|
-
text: string;
|
|
13099
|
-
enabled: boolean;
|
|
13100
|
-
forceOpen: boolean;
|
|
13101
|
-
side: string;
|
|
13102
|
-
maxWidth: string;
|
|
13103
|
-
shortcutText: string;
|
|
13104
|
-
enableHtml: boolean;
|
|
13105
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13106
|
-
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13107
|
-
click: (event: Event) => any;
|
|
13108
|
-
mousedown: (event: Event) => any;
|
|
13109
|
-
mouseup: (event: Event) => any;
|
|
13110
|
-
}, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
|
|
13111
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
13112
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
13113
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
13114
|
-
}>, {
|
|
13115
|
-
size: import('./Icon.vue').IconSize;
|
|
13116
|
-
filled: boolean;
|
|
13117
|
-
next: boolean;
|
|
13118
|
-
icon: string | null;
|
|
13119
|
-
clickable: boolean;
|
|
13120
|
-
lineHeight: import('./Icon.vue').LineHeight | null;
|
|
13121
|
-
scheme: import('./Icon.vue').SchemeColor;
|
|
13122
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12964
|
+
UnnnicLabel: import('vue').DefineComponent<import('./Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
12965
|
+
label: string;
|
|
12966
|
+
tooltip: string;
|
|
12967
|
+
useHtmlTooltip: boolean;
|
|
12968
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
13123
12969
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13124
12970
|
export declare const UnnnicInputNext: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13125
12971
|
modelValue: StringConstructor;
|
|
@@ -13203,8 +13049,8 @@ export declare const UnnnicInputNext: import('vue').DefineComponent<import('vue'
|
|
|
13203
13049
|
type: string;
|
|
13204
13050
|
disabled: boolean;
|
|
13205
13051
|
nativeType: string;
|
|
13206
|
-
allowTogglePassword: boolean;
|
|
13207
13052
|
readonly: boolean;
|
|
13053
|
+
allowTogglePassword: boolean;
|
|
13208
13054
|
}, {}, {
|
|
13209
13055
|
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13210
13056
|
click: (event: Event) => any;
|
|
@@ -13474,6 +13320,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13474
13320
|
type: BooleanConstructor;
|
|
13475
13321
|
default: boolean;
|
|
13476
13322
|
};
|
|
13323
|
+
readonly: {
|
|
13324
|
+
type: BooleanConstructor;
|
|
13325
|
+
default: boolean;
|
|
13326
|
+
};
|
|
13327
|
+
forceActiveStatus: {
|
|
13328
|
+
type: BooleanConstructor;
|
|
13329
|
+
default: boolean;
|
|
13330
|
+
};
|
|
13477
13331
|
}>, {}, {
|
|
13478
13332
|
val: string;
|
|
13479
13333
|
}, {
|
|
@@ -13558,6 +13412,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13558
13412
|
type: BooleanConstructor;
|
|
13559
13413
|
default: boolean;
|
|
13560
13414
|
};
|
|
13415
|
+
readonly: {
|
|
13416
|
+
type: BooleanConstructor;
|
|
13417
|
+
default: boolean;
|
|
13418
|
+
};
|
|
13419
|
+
forceActiveStatus: {
|
|
13420
|
+
type: BooleanConstructor;
|
|
13421
|
+
default: boolean;
|
|
13422
|
+
};
|
|
13561
13423
|
}>> & Readonly<{
|
|
13562
13424
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13563
13425
|
}>, {
|
|
@@ -13570,6 +13432,8 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13570
13432
|
modelValue: string;
|
|
13571
13433
|
nativeType: string;
|
|
13572
13434
|
maxlength: number | null;
|
|
13435
|
+
readonly: boolean;
|
|
13436
|
+
forceActiveStatus: boolean;
|
|
13573
13437
|
placeholder: string;
|
|
13574
13438
|
iconLeft: string;
|
|
13575
13439
|
iconRight: string;
|
|
@@ -13577,8 +13441,8 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13577
13441
|
iconRightClickable: boolean;
|
|
13578
13442
|
allowTogglePassword: boolean;
|
|
13579
13443
|
hasCloudyColor: boolean;
|
|
13580
|
-
errors: string | unknown[];
|
|
13581
13444
|
tooltip: string;
|
|
13445
|
+
errors: string | unknown[];
|
|
13582
13446
|
showMaxlengthCounter: boolean;
|
|
13583
13447
|
}, {}, {
|
|
13584
13448
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -13635,6 +13499,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13635
13499
|
type: BooleanConstructor;
|
|
13636
13500
|
default: boolean;
|
|
13637
13501
|
};
|
|
13502
|
+
readonly: {
|
|
13503
|
+
type: BooleanConstructor;
|
|
13504
|
+
default: boolean;
|
|
13505
|
+
};
|
|
13506
|
+
forceActiveStatus: {
|
|
13507
|
+
type: BooleanConstructor;
|
|
13508
|
+
default: boolean;
|
|
13509
|
+
};
|
|
13638
13510
|
}>, {}, {
|
|
13639
13511
|
isFocused: boolean;
|
|
13640
13512
|
showPassword: boolean;
|
|
@@ -13703,6 +13575,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13703
13575
|
type: BooleanConstructor;
|
|
13704
13576
|
default: boolean;
|
|
13705
13577
|
};
|
|
13578
|
+
readonly: {
|
|
13579
|
+
type: BooleanConstructor;
|
|
13580
|
+
default: boolean;
|
|
13581
|
+
};
|
|
13582
|
+
forceActiveStatus: {
|
|
13583
|
+
type: BooleanConstructor;
|
|
13584
|
+
default: boolean;
|
|
13585
|
+
};
|
|
13706
13586
|
}>> & Readonly<{
|
|
13707
13587
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
13708
13588
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -13713,6 +13593,8 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13713
13593
|
modelValue: string;
|
|
13714
13594
|
nativeType: string;
|
|
13715
13595
|
maxlength: number;
|
|
13596
|
+
readonly: boolean;
|
|
13597
|
+
forceActiveStatus: boolean;
|
|
13716
13598
|
placeholder: string;
|
|
13717
13599
|
iconLeft: string;
|
|
13718
13600
|
iconRight: string;
|
|
@@ -13749,6 +13631,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13749
13631
|
type: NumberConstructor;
|
|
13750
13632
|
default: null;
|
|
13751
13633
|
};
|
|
13634
|
+
readonly: {
|
|
13635
|
+
type: BooleanConstructor;
|
|
13636
|
+
default: boolean;
|
|
13637
|
+
};
|
|
13638
|
+
forceActiveStatus: {
|
|
13639
|
+
type: BooleanConstructor;
|
|
13640
|
+
default: boolean;
|
|
13641
|
+
};
|
|
13752
13642
|
}>, {}, {}, {
|
|
13753
13643
|
attributes(): any;
|
|
13754
13644
|
classes(): (string | {
|
|
@@ -13785,6 +13675,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13785
13675
|
type: NumberConstructor;
|
|
13786
13676
|
default: null;
|
|
13787
13677
|
};
|
|
13678
|
+
readonly: {
|
|
13679
|
+
type: BooleanConstructor;
|
|
13680
|
+
default: boolean;
|
|
13681
|
+
};
|
|
13682
|
+
forceActiveStatus: {
|
|
13683
|
+
type: BooleanConstructor;
|
|
13684
|
+
default: boolean;
|
|
13685
|
+
};
|
|
13788
13686
|
}>> & Readonly<{
|
|
13789
13687
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13790
13688
|
}>, {
|
|
@@ -13796,6 +13694,8 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13796
13694
|
modelValue: string;
|
|
13797
13695
|
nativeType: string;
|
|
13798
13696
|
maxlength: number;
|
|
13697
|
+
readonly: boolean;
|
|
13698
|
+
forceActiveStatus: boolean;
|
|
13799
13699
|
}, {}, {}, {
|
|
13800
13700
|
mask: any;
|
|
13801
13701
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -13817,98 +13717,11 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13817
13717
|
scheme: import('./Icon.vue').SchemeColor;
|
|
13818
13718
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13819
13719
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13820
|
-
|
|
13821
|
-
|
|
13822
|
-
|
|
13823
|
-
|
|
13824
|
-
|
|
13825
|
-
enabled: {
|
|
13826
|
-
type: BooleanConstructor;
|
|
13827
|
-
default: boolean;
|
|
13828
|
-
};
|
|
13829
|
-
forceOpen: {
|
|
13830
|
-
type: BooleanConstructor;
|
|
13831
|
-
default: boolean;
|
|
13832
|
-
};
|
|
13833
|
-
side: {
|
|
13834
|
-
type: StringConstructor;
|
|
13835
|
-
default: string;
|
|
13836
|
-
validator(value: unknown): boolean;
|
|
13837
|
-
};
|
|
13838
|
-
maxWidth: {
|
|
13839
|
-
type: StringConstructor;
|
|
13840
|
-
default: string;
|
|
13841
|
-
};
|
|
13842
|
-
shortcutText: {
|
|
13843
|
-
type: StringConstructor;
|
|
13844
|
-
default: null;
|
|
13845
|
-
};
|
|
13846
|
-
enableHtml: {
|
|
13847
|
-
type: BooleanConstructor;
|
|
13848
|
-
default: boolean;
|
|
13849
|
-
};
|
|
13850
|
-
}>, {}, {
|
|
13851
|
-
topPos: null;
|
|
13852
|
-
leftPos: null;
|
|
13853
|
-
}, {}, {
|
|
13854
|
-
handleResize(): void;
|
|
13855
|
-
getRightPost(element: any): void;
|
|
13856
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
13857
|
-
text: {
|
|
13858
|
-
type: StringConstructor;
|
|
13859
|
-
default: string;
|
|
13860
|
-
};
|
|
13861
|
-
enabled: {
|
|
13862
|
-
type: BooleanConstructor;
|
|
13863
|
-
default: boolean;
|
|
13864
|
-
};
|
|
13865
|
-
forceOpen: {
|
|
13866
|
-
type: BooleanConstructor;
|
|
13867
|
-
default: boolean;
|
|
13868
|
-
};
|
|
13869
|
-
side: {
|
|
13870
|
-
type: StringConstructor;
|
|
13871
|
-
default: string;
|
|
13872
|
-
validator(value: unknown): boolean;
|
|
13873
|
-
};
|
|
13874
|
-
maxWidth: {
|
|
13875
|
-
type: StringConstructor;
|
|
13876
|
-
default: string;
|
|
13877
|
-
};
|
|
13878
|
-
shortcutText: {
|
|
13879
|
-
type: StringConstructor;
|
|
13880
|
-
default: null;
|
|
13881
|
-
};
|
|
13882
|
-
enableHtml: {
|
|
13883
|
-
type: BooleanConstructor;
|
|
13884
|
-
default: boolean;
|
|
13885
|
-
};
|
|
13886
|
-
}>> & Readonly<{}>, {
|
|
13887
|
-
text: string;
|
|
13888
|
-
enabled: boolean;
|
|
13889
|
-
forceOpen: boolean;
|
|
13890
|
-
side: string;
|
|
13891
|
-
maxWidth: string;
|
|
13892
|
-
shortcutText: string;
|
|
13893
|
-
enableHtml: boolean;
|
|
13894
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13895
|
-
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13896
|
-
click: (event: Event) => any;
|
|
13897
|
-
mousedown: (event: Event) => any;
|
|
13898
|
-
mouseup: (event: Event) => any;
|
|
13899
|
-
}, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
|
|
13900
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
13901
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
13902
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
13903
|
-
}>, {
|
|
13904
|
-
size: import('./Icon.vue').IconSize;
|
|
13905
|
-
filled: boolean;
|
|
13906
|
-
next: boolean;
|
|
13907
|
-
icon: string | null;
|
|
13908
|
-
clickable: boolean;
|
|
13909
|
-
lineHeight: import('./Icon.vue').LineHeight | null;
|
|
13910
|
-
scheme: import('./Icon.vue').SchemeColor;
|
|
13911
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13720
|
+
UnnnicLabel: import('vue').DefineComponent<import('./Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
13721
|
+
label: string;
|
|
13722
|
+
tooltip: string;
|
|
13723
|
+
useHtmlTooltip: boolean;
|
|
13724
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
13912
13725
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13913
13726
|
UnnnicDatePicker: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13914
13727
|
initialStartDate: {
|
|
@@ -17172,6 +16985,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17172
16985
|
type: BooleanConstructor;
|
|
17173
16986
|
default: boolean;
|
|
17174
16987
|
};
|
|
16988
|
+
readonly: {
|
|
16989
|
+
type: BooleanConstructor;
|
|
16990
|
+
default: boolean;
|
|
16991
|
+
};
|
|
16992
|
+
forceActiveStatus: {
|
|
16993
|
+
type: BooleanConstructor;
|
|
16994
|
+
default: boolean;
|
|
16995
|
+
};
|
|
17175
16996
|
}>, {}, {
|
|
17176
16997
|
val: string;
|
|
17177
16998
|
}, {
|
|
@@ -17248,11 +17069,19 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17248
17069
|
type: (NumberConstructor | null)[];
|
|
17249
17070
|
default: null;
|
|
17250
17071
|
};
|
|
17251
|
-
showMaxlengthCounter: {
|
|
17072
|
+
showMaxlengthCounter: {
|
|
17073
|
+
type: BooleanConstructor;
|
|
17074
|
+
default: boolean;
|
|
17075
|
+
};
|
|
17076
|
+
disabled: {
|
|
17077
|
+
type: BooleanConstructor;
|
|
17078
|
+
default: boolean;
|
|
17079
|
+
};
|
|
17080
|
+
readonly: {
|
|
17252
17081
|
type: BooleanConstructor;
|
|
17253
17082
|
default: boolean;
|
|
17254
17083
|
};
|
|
17255
|
-
|
|
17084
|
+
forceActiveStatus: {
|
|
17256
17085
|
type: BooleanConstructor;
|
|
17257
17086
|
default: boolean;
|
|
17258
17087
|
};
|
|
@@ -17268,6 +17097,8 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17268
17097
|
modelValue: string;
|
|
17269
17098
|
nativeType: string;
|
|
17270
17099
|
maxlength: number | null;
|
|
17100
|
+
readonly: boolean;
|
|
17101
|
+
forceActiveStatus: boolean;
|
|
17271
17102
|
placeholder: string;
|
|
17272
17103
|
iconLeft: string;
|
|
17273
17104
|
iconRight: string;
|
|
@@ -17275,8 +17106,8 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17275
17106
|
iconRightClickable: boolean;
|
|
17276
17107
|
allowTogglePassword: boolean;
|
|
17277
17108
|
hasCloudyColor: boolean;
|
|
17278
|
-
errors: string | unknown[];
|
|
17279
17109
|
tooltip: string;
|
|
17110
|
+
errors: string | unknown[];
|
|
17280
17111
|
showMaxlengthCounter: boolean;
|
|
17281
17112
|
}, {}, {
|
|
17282
17113
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -17333,6 +17164,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17333
17164
|
type: BooleanConstructor;
|
|
17334
17165
|
default: boolean;
|
|
17335
17166
|
};
|
|
17167
|
+
readonly: {
|
|
17168
|
+
type: BooleanConstructor;
|
|
17169
|
+
default: boolean;
|
|
17170
|
+
};
|
|
17171
|
+
forceActiveStatus: {
|
|
17172
|
+
type: BooleanConstructor;
|
|
17173
|
+
default: boolean;
|
|
17174
|
+
};
|
|
17336
17175
|
}>, {}, {
|
|
17337
17176
|
isFocused: boolean;
|
|
17338
17177
|
showPassword: boolean;
|
|
@@ -17401,6 +17240,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17401
17240
|
type: BooleanConstructor;
|
|
17402
17241
|
default: boolean;
|
|
17403
17242
|
};
|
|
17243
|
+
readonly: {
|
|
17244
|
+
type: BooleanConstructor;
|
|
17245
|
+
default: boolean;
|
|
17246
|
+
};
|
|
17247
|
+
forceActiveStatus: {
|
|
17248
|
+
type: BooleanConstructor;
|
|
17249
|
+
default: boolean;
|
|
17250
|
+
};
|
|
17404
17251
|
}>> & Readonly<{
|
|
17405
17252
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
17406
17253
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -17411,6 +17258,8 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17411
17258
|
modelValue: string;
|
|
17412
17259
|
nativeType: string;
|
|
17413
17260
|
maxlength: number;
|
|
17261
|
+
readonly: boolean;
|
|
17262
|
+
forceActiveStatus: boolean;
|
|
17414
17263
|
placeholder: string;
|
|
17415
17264
|
iconLeft: string;
|
|
17416
17265
|
iconRight: string;
|
|
@@ -17447,6 +17296,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17447
17296
|
type: NumberConstructor;
|
|
17448
17297
|
default: null;
|
|
17449
17298
|
};
|
|
17299
|
+
readonly: {
|
|
17300
|
+
type: BooleanConstructor;
|
|
17301
|
+
default: boolean;
|
|
17302
|
+
};
|
|
17303
|
+
forceActiveStatus: {
|
|
17304
|
+
type: BooleanConstructor;
|
|
17305
|
+
default: boolean;
|
|
17306
|
+
};
|
|
17450
17307
|
}>, {}, {}, {
|
|
17451
17308
|
attributes(): any;
|
|
17452
17309
|
classes(): (string | {
|
|
@@ -17483,6 +17340,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17483
17340
|
type: NumberConstructor;
|
|
17484
17341
|
default: null;
|
|
17485
17342
|
};
|
|
17343
|
+
readonly: {
|
|
17344
|
+
type: BooleanConstructor;
|
|
17345
|
+
default: boolean;
|
|
17346
|
+
};
|
|
17347
|
+
forceActiveStatus: {
|
|
17348
|
+
type: BooleanConstructor;
|
|
17349
|
+
default: boolean;
|
|
17350
|
+
};
|
|
17486
17351
|
}>> & Readonly<{
|
|
17487
17352
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17488
17353
|
}>, {
|
|
@@ -17494,6 +17359,8 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17494
17359
|
modelValue: string;
|
|
17495
17360
|
nativeType: string;
|
|
17496
17361
|
maxlength: number;
|
|
17362
|
+
readonly: boolean;
|
|
17363
|
+
forceActiveStatus: boolean;
|
|
17497
17364
|
}, {}, {}, {
|
|
17498
17365
|
mask: any;
|
|
17499
17366
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -17515,98 +17382,11 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17515
17382
|
scheme: import('./Icon.vue').SchemeColor;
|
|
17516
17383
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17517
17384
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17518
|
-
|
|
17519
|
-
|
|
17520
|
-
|
|
17521
|
-
|
|
17522
|
-
|
|
17523
|
-
enabled: {
|
|
17524
|
-
type: BooleanConstructor;
|
|
17525
|
-
default: boolean;
|
|
17526
|
-
};
|
|
17527
|
-
forceOpen: {
|
|
17528
|
-
type: BooleanConstructor;
|
|
17529
|
-
default: boolean;
|
|
17530
|
-
};
|
|
17531
|
-
side: {
|
|
17532
|
-
type: StringConstructor;
|
|
17533
|
-
default: string;
|
|
17534
|
-
validator(value: unknown): boolean;
|
|
17535
|
-
};
|
|
17536
|
-
maxWidth: {
|
|
17537
|
-
type: StringConstructor;
|
|
17538
|
-
default: string;
|
|
17539
|
-
};
|
|
17540
|
-
shortcutText: {
|
|
17541
|
-
type: StringConstructor;
|
|
17542
|
-
default: null;
|
|
17543
|
-
};
|
|
17544
|
-
enableHtml: {
|
|
17545
|
-
type: BooleanConstructor;
|
|
17546
|
-
default: boolean;
|
|
17547
|
-
};
|
|
17548
|
-
}>, {}, {
|
|
17549
|
-
topPos: null;
|
|
17550
|
-
leftPos: null;
|
|
17551
|
-
}, {}, {
|
|
17552
|
-
handleResize(): void;
|
|
17553
|
-
getRightPost(element: any): void;
|
|
17554
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
17555
|
-
text: {
|
|
17556
|
-
type: StringConstructor;
|
|
17557
|
-
default: string;
|
|
17558
|
-
};
|
|
17559
|
-
enabled: {
|
|
17560
|
-
type: BooleanConstructor;
|
|
17561
|
-
default: boolean;
|
|
17562
|
-
};
|
|
17563
|
-
forceOpen: {
|
|
17564
|
-
type: BooleanConstructor;
|
|
17565
|
-
default: boolean;
|
|
17566
|
-
};
|
|
17567
|
-
side: {
|
|
17568
|
-
type: StringConstructor;
|
|
17569
|
-
default: string;
|
|
17570
|
-
validator(value: unknown): boolean;
|
|
17571
|
-
};
|
|
17572
|
-
maxWidth: {
|
|
17573
|
-
type: StringConstructor;
|
|
17574
|
-
default: string;
|
|
17575
|
-
};
|
|
17576
|
-
shortcutText: {
|
|
17577
|
-
type: StringConstructor;
|
|
17578
|
-
default: null;
|
|
17579
|
-
};
|
|
17580
|
-
enableHtml: {
|
|
17581
|
-
type: BooleanConstructor;
|
|
17582
|
-
default: boolean;
|
|
17583
|
-
};
|
|
17584
|
-
}>> & Readonly<{}>, {
|
|
17585
|
-
text: string;
|
|
17586
|
-
enabled: boolean;
|
|
17587
|
-
forceOpen: boolean;
|
|
17588
|
-
side: string;
|
|
17589
|
-
maxWidth: string;
|
|
17590
|
-
shortcutText: string;
|
|
17591
|
-
enableHtml: boolean;
|
|
17592
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17593
|
-
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17594
|
-
click: (event: Event) => any;
|
|
17595
|
-
mousedown: (event: Event) => any;
|
|
17596
|
-
mouseup: (event: Event) => any;
|
|
17597
|
-
}, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
|
|
17598
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
17599
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
17600
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
17601
|
-
}>, {
|
|
17602
|
-
size: import('./Icon.vue').IconSize;
|
|
17603
|
-
filled: boolean;
|
|
17604
|
-
next: boolean;
|
|
17605
|
-
icon: string | null;
|
|
17606
|
-
clickable: boolean;
|
|
17607
|
-
lineHeight: import('./Icon.vue').LineHeight | null;
|
|
17608
|
-
scheme: import('./Icon.vue').SchemeColor;
|
|
17609
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17385
|
+
UnnnicLabel: import('vue').DefineComponent<import('./Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
17386
|
+
label: string;
|
|
17387
|
+
tooltip: string;
|
|
17388
|
+
useHtmlTooltip: boolean;
|
|
17389
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
17610
17390
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17611
17391
|
UnnnicButton: {
|
|
17612
17392
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Button/types').ButtonProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
@@ -19514,6 +19294,11 @@ export declare const UnnnicTab: import('vue').DefineComponent<import('vue').Extr
|
|
|
19514
19294
|
tabs: {
|
|
19515
19295
|
type: ArrayConstructor;
|
|
19516
19296
|
default: null;
|
|
19297
|
+
validator: (tabs: unknown) => any;
|
|
19298
|
+
};
|
|
19299
|
+
disabledTabs: {
|
|
19300
|
+
type: ArrayConstructor;
|
|
19301
|
+
default: null;
|
|
19517
19302
|
};
|
|
19518
19303
|
}>, {}, {
|
|
19519
19304
|
localValue: string;
|
|
@@ -19541,6 +19326,11 @@ export declare const UnnnicTab: import('vue').DefineComponent<import('vue').Extr
|
|
|
19541
19326
|
tabs: {
|
|
19542
19327
|
type: ArrayConstructor;
|
|
19543
19328
|
default: null;
|
|
19329
|
+
validator: (tabs: unknown) => any;
|
|
19330
|
+
};
|
|
19331
|
+
disabledTabs: {
|
|
19332
|
+
type: ArrayConstructor;
|
|
19333
|
+
default: null;
|
|
19544
19334
|
};
|
|
19545
19335
|
}>> & Readonly<{
|
|
19546
19336
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -19549,6 +19339,7 @@ export declare const UnnnicTab: import('vue').DefineComponent<import('vue').Extr
|
|
|
19549
19339
|
activeTab: string;
|
|
19550
19340
|
initialTab: string;
|
|
19551
19341
|
tabs: unknown[];
|
|
19342
|
+
disabledTabs: unknown[];
|
|
19552
19343
|
}, {}, {
|
|
19553
19344
|
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19554
19345
|
click: (event: Event) => any;
|
|
@@ -21439,6 +21230,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21439
21230
|
type: BooleanConstructor;
|
|
21440
21231
|
default: boolean;
|
|
21441
21232
|
};
|
|
21233
|
+
readonly: {
|
|
21234
|
+
type: BooleanConstructor;
|
|
21235
|
+
default: boolean;
|
|
21236
|
+
};
|
|
21237
|
+
forceActiveStatus: {
|
|
21238
|
+
type: BooleanConstructor;
|
|
21239
|
+
default: boolean;
|
|
21240
|
+
};
|
|
21442
21241
|
}>, {}, {
|
|
21443
21242
|
val: string;
|
|
21444
21243
|
}, {
|
|
@@ -21523,6 +21322,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21523
21322
|
type: BooleanConstructor;
|
|
21524
21323
|
default: boolean;
|
|
21525
21324
|
};
|
|
21325
|
+
readonly: {
|
|
21326
|
+
type: BooleanConstructor;
|
|
21327
|
+
default: boolean;
|
|
21328
|
+
};
|
|
21329
|
+
forceActiveStatus: {
|
|
21330
|
+
type: BooleanConstructor;
|
|
21331
|
+
default: boolean;
|
|
21332
|
+
};
|
|
21526
21333
|
}>> & Readonly<{
|
|
21527
21334
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
21528
21335
|
}>, {
|
|
@@ -21535,6 +21342,8 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21535
21342
|
modelValue: string;
|
|
21536
21343
|
nativeType: string;
|
|
21537
21344
|
maxlength: number | null;
|
|
21345
|
+
readonly: boolean;
|
|
21346
|
+
forceActiveStatus: boolean;
|
|
21538
21347
|
placeholder: string;
|
|
21539
21348
|
iconLeft: string;
|
|
21540
21349
|
iconRight: string;
|
|
@@ -21542,8 +21351,8 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21542
21351
|
iconRightClickable: boolean;
|
|
21543
21352
|
allowTogglePassword: boolean;
|
|
21544
21353
|
hasCloudyColor: boolean;
|
|
21545
|
-
errors: string | unknown[];
|
|
21546
21354
|
tooltip: string;
|
|
21355
|
+
errors: string | unknown[];
|
|
21547
21356
|
showMaxlengthCounter: boolean;
|
|
21548
21357
|
}, {}, {
|
|
21549
21358
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -21600,6 +21409,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21600
21409
|
type: BooleanConstructor;
|
|
21601
21410
|
default: boolean;
|
|
21602
21411
|
};
|
|
21412
|
+
readonly: {
|
|
21413
|
+
type: BooleanConstructor;
|
|
21414
|
+
default: boolean;
|
|
21415
|
+
};
|
|
21416
|
+
forceActiveStatus: {
|
|
21417
|
+
type: BooleanConstructor;
|
|
21418
|
+
default: boolean;
|
|
21419
|
+
};
|
|
21603
21420
|
}>, {}, {
|
|
21604
21421
|
isFocused: boolean;
|
|
21605
21422
|
showPassword: boolean;
|
|
@@ -21668,6 +21485,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21668
21485
|
type: BooleanConstructor;
|
|
21669
21486
|
default: boolean;
|
|
21670
21487
|
};
|
|
21488
|
+
readonly: {
|
|
21489
|
+
type: BooleanConstructor;
|
|
21490
|
+
default: boolean;
|
|
21491
|
+
};
|
|
21492
|
+
forceActiveStatus: {
|
|
21493
|
+
type: BooleanConstructor;
|
|
21494
|
+
default: boolean;
|
|
21495
|
+
};
|
|
21671
21496
|
}>> & Readonly<{
|
|
21672
21497
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
21673
21498
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -21678,6 +21503,8 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21678
21503
|
modelValue: string;
|
|
21679
21504
|
nativeType: string;
|
|
21680
21505
|
maxlength: number;
|
|
21506
|
+
readonly: boolean;
|
|
21507
|
+
forceActiveStatus: boolean;
|
|
21681
21508
|
placeholder: string;
|
|
21682
21509
|
iconLeft: string;
|
|
21683
21510
|
iconRight: string;
|
|
@@ -21714,6 +21541,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21714
21541
|
type: NumberConstructor;
|
|
21715
21542
|
default: null;
|
|
21716
21543
|
};
|
|
21544
|
+
readonly: {
|
|
21545
|
+
type: BooleanConstructor;
|
|
21546
|
+
default: boolean;
|
|
21547
|
+
};
|
|
21548
|
+
forceActiveStatus: {
|
|
21549
|
+
type: BooleanConstructor;
|
|
21550
|
+
default: boolean;
|
|
21551
|
+
};
|
|
21717
21552
|
}>, {}, {}, {
|
|
21718
21553
|
attributes(): any;
|
|
21719
21554
|
classes(): (string | {
|
|
@@ -21750,6 +21585,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21750
21585
|
type: NumberConstructor;
|
|
21751
21586
|
default: null;
|
|
21752
21587
|
};
|
|
21588
|
+
readonly: {
|
|
21589
|
+
type: BooleanConstructor;
|
|
21590
|
+
default: boolean;
|
|
21591
|
+
};
|
|
21592
|
+
forceActiveStatus: {
|
|
21593
|
+
type: BooleanConstructor;
|
|
21594
|
+
default: boolean;
|
|
21595
|
+
};
|
|
21753
21596
|
}>> & Readonly<{
|
|
21754
21597
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
21755
21598
|
}>, {
|
|
@@ -21761,6 +21604,8 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21761
21604
|
modelValue: string;
|
|
21762
21605
|
nativeType: string;
|
|
21763
21606
|
maxlength: number;
|
|
21607
|
+
readonly: boolean;
|
|
21608
|
+
forceActiveStatus: boolean;
|
|
21764
21609
|
}, {}, {}, {
|
|
21765
21610
|
mask: any;
|
|
21766
21611
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -21782,98 +21627,11 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21782
21627
|
scheme: import('./Icon.vue').SchemeColor;
|
|
21783
21628
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
21784
21629
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21785
|
-
|
|
21786
|
-
|
|
21787
|
-
|
|
21788
|
-
|
|
21789
|
-
|
|
21790
|
-
enabled: {
|
|
21791
|
-
type: BooleanConstructor;
|
|
21792
|
-
default: boolean;
|
|
21793
|
-
};
|
|
21794
|
-
forceOpen: {
|
|
21795
|
-
type: BooleanConstructor;
|
|
21796
|
-
default: boolean;
|
|
21797
|
-
};
|
|
21798
|
-
side: {
|
|
21799
|
-
type: StringConstructor;
|
|
21800
|
-
default: string;
|
|
21801
|
-
validator(value: unknown): boolean;
|
|
21802
|
-
};
|
|
21803
|
-
maxWidth: {
|
|
21804
|
-
type: StringConstructor;
|
|
21805
|
-
default: string;
|
|
21806
|
-
};
|
|
21807
|
-
shortcutText: {
|
|
21808
|
-
type: StringConstructor;
|
|
21809
|
-
default: null;
|
|
21810
|
-
};
|
|
21811
|
-
enableHtml: {
|
|
21812
|
-
type: BooleanConstructor;
|
|
21813
|
-
default: boolean;
|
|
21814
|
-
};
|
|
21815
|
-
}>, {}, {
|
|
21816
|
-
topPos: null;
|
|
21817
|
-
leftPos: null;
|
|
21818
|
-
}, {}, {
|
|
21819
|
-
handleResize(): void;
|
|
21820
|
-
getRightPost(element: any): void;
|
|
21821
|
-
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
21822
|
-
text: {
|
|
21823
|
-
type: StringConstructor;
|
|
21824
|
-
default: string;
|
|
21825
|
-
};
|
|
21826
|
-
enabled: {
|
|
21827
|
-
type: BooleanConstructor;
|
|
21828
|
-
default: boolean;
|
|
21829
|
-
};
|
|
21830
|
-
forceOpen: {
|
|
21831
|
-
type: BooleanConstructor;
|
|
21832
|
-
default: boolean;
|
|
21833
|
-
};
|
|
21834
|
-
side: {
|
|
21835
|
-
type: StringConstructor;
|
|
21836
|
-
default: string;
|
|
21837
|
-
validator(value: unknown): boolean;
|
|
21838
|
-
};
|
|
21839
|
-
maxWidth: {
|
|
21840
|
-
type: StringConstructor;
|
|
21841
|
-
default: string;
|
|
21842
|
-
};
|
|
21843
|
-
shortcutText: {
|
|
21844
|
-
type: StringConstructor;
|
|
21845
|
-
default: null;
|
|
21846
|
-
};
|
|
21847
|
-
enableHtml: {
|
|
21848
|
-
type: BooleanConstructor;
|
|
21849
|
-
default: boolean;
|
|
21850
|
-
};
|
|
21851
|
-
}>> & Readonly<{}>, {
|
|
21852
|
-
text: string;
|
|
21853
|
-
enabled: boolean;
|
|
21854
|
-
forceOpen: boolean;
|
|
21855
|
-
side: string;
|
|
21856
|
-
maxWidth: string;
|
|
21857
|
-
shortcutText: string;
|
|
21858
|
-
enableHtml: boolean;
|
|
21859
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21860
|
-
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
21861
|
-
click: (event: Event) => any;
|
|
21862
|
-
mousedown: (event: Event) => any;
|
|
21863
|
-
mouseup: (event: Event) => any;
|
|
21864
|
-
}, string, import('vue').PublicProps, Readonly<import('./Icon.vue').IconProps> & Readonly<{
|
|
21865
|
-
onClick?: ((event: Event) => any) | undefined;
|
|
21866
|
-
onMousedown?: ((event: Event) => any) | undefined;
|
|
21867
|
-
onMouseup?: ((event: Event) => any) | undefined;
|
|
21868
|
-
}>, {
|
|
21869
|
-
size: import('./Icon.vue').IconSize;
|
|
21870
|
-
filled: boolean;
|
|
21871
|
-
next: boolean;
|
|
21872
|
-
icon: string | null;
|
|
21873
|
-
clickable: boolean;
|
|
21874
|
-
lineHeight: import('./Icon.vue').LineHeight | null;
|
|
21875
|
-
scheme: import('./Icon.vue').SchemeColor;
|
|
21876
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
21630
|
+
UnnnicLabel: import('vue').DefineComponent<import('./Label/Label.vue').LabelProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('./Label/Label.vue').LabelProps> & Readonly<{}>, {
|
|
21631
|
+
label: string;
|
|
21632
|
+
tooltip: string;
|
|
21633
|
+
useHtmlTooltip: boolean;
|
|
21634
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
21877
21635
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21878
21636
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21879
21637
|
export declare const UnnnicChatText: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|