@weni/unnnic-system 3.2.9-alpha.2 → 3.2.9-alpha.3
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/index.d.ts +486 -750
- package/dist/components/index.d.ts.map +1 -1
- package/dist/{es-2735a8fb.js → es-6e7b12d4.js} +1 -1
- package/dist/{index-e012fa52.js → index-531ad3f6.js} +2715 -2696
- 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-9c8a0c50.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/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
|
@@ -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;
|
|
@@ -4857,7 +4817,15 @@ export declare const unnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
4857
4817
|
type: NumberConstructor;
|
|
4858
4818
|
default: null;
|
|
4859
4819
|
};
|
|
4860
|
-
disabled: {
|
|
4820
|
+
disabled: {
|
|
4821
|
+
type: BooleanConstructor;
|
|
4822
|
+
default: boolean;
|
|
4823
|
+
};
|
|
4824
|
+
readonly: {
|
|
4825
|
+
type: BooleanConstructor;
|
|
4826
|
+
default: boolean;
|
|
4827
|
+
};
|
|
4828
|
+
forceActiveStatus: {
|
|
4861
4829
|
type: BooleanConstructor;
|
|
4862
4830
|
default: boolean;
|
|
4863
4831
|
};
|
|
@@ -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, {
|
|
@@ -8899,6 +8800,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
8899
8800
|
type: BooleanConstructor;
|
|
8900
8801
|
default: boolean;
|
|
8901
8802
|
};
|
|
8803
|
+
readonly: {
|
|
8804
|
+
type: BooleanConstructor;
|
|
8805
|
+
default: boolean;
|
|
8806
|
+
};
|
|
8807
|
+
forceActiveStatus: {
|
|
8808
|
+
type: BooleanConstructor;
|
|
8809
|
+
default: boolean;
|
|
8810
|
+
};
|
|
8902
8811
|
}>, {}, {
|
|
8903
8812
|
val: string;
|
|
8904
8813
|
}, {
|
|
@@ -8983,6 +8892,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
8983
8892
|
type: BooleanConstructor;
|
|
8984
8893
|
default: boolean;
|
|
8985
8894
|
};
|
|
8895
|
+
readonly: {
|
|
8896
|
+
type: BooleanConstructor;
|
|
8897
|
+
default: boolean;
|
|
8898
|
+
};
|
|
8899
|
+
forceActiveStatus: {
|
|
8900
|
+
type: BooleanConstructor;
|
|
8901
|
+
default: boolean;
|
|
8902
|
+
};
|
|
8986
8903
|
}>> & Readonly<{
|
|
8987
8904
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8988
8905
|
}>, {
|
|
@@ -8995,6 +8912,8 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
8995
8912
|
modelValue: string;
|
|
8996
8913
|
nativeType: string;
|
|
8997
8914
|
maxlength: number | null;
|
|
8915
|
+
readonly: boolean;
|
|
8916
|
+
forceActiveStatus: boolean;
|
|
8998
8917
|
placeholder: string;
|
|
8999
8918
|
iconLeft: string;
|
|
9000
8919
|
iconRight: string;
|
|
@@ -9002,8 +8921,8 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9002
8921
|
iconRightClickable: boolean;
|
|
9003
8922
|
allowTogglePassword: boolean;
|
|
9004
8923
|
hasCloudyColor: boolean;
|
|
9005
|
-
errors: string | unknown[];
|
|
9006
8924
|
tooltip: string;
|
|
8925
|
+
errors: string | unknown[];
|
|
9007
8926
|
showMaxlengthCounter: boolean;
|
|
9008
8927
|
}, {}, {
|
|
9009
8928
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -9060,6 +8979,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9060
8979
|
type: BooleanConstructor;
|
|
9061
8980
|
default: boolean;
|
|
9062
8981
|
};
|
|
8982
|
+
readonly: {
|
|
8983
|
+
type: BooleanConstructor;
|
|
8984
|
+
default: boolean;
|
|
8985
|
+
};
|
|
8986
|
+
forceActiveStatus: {
|
|
8987
|
+
type: BooleanConstructor;
|
|
8988
|
+
default: boolean;
|
|
8989
|
+
};
|
|
9063
8990
|
}>, {}, {
|
|
9064
8991
|
isFocused: boolean;
|
|
9065
8992
|
showPassword: boolean;
|
|
@@ -9128,6 +9055,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9128
9055
|
type: BooleanConstructor;
|
|
9129
9056
|
default: boolean;
|
|
9130
9057
|
};
|
|
9058
|
+
readonly: {
|
|
9059
|
+
type: BooleanConstructor;
|
|
9060
|
+
default: boolean;
|
|
9061
|
+
};
|
|
9062
|
+
forceActiveStatus: {
|
|
9063
|
+
type: BooleanConstructor;
|
|
9064
|
+
default: boolean;
|
|
9065
|
+
};
|
|
9131
9066
|
}>> & Readonly<{
|
|
9132
9067
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
9133
9068
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -9138,6 +9073,8 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9138
9073
|
modelValue: string;
|
|
9139
9074
|
nativeType: string;
|
|
9140
9075
|
maxlength: number;
|
|
9076
|
+
readonly: boolean;
|
|
9077
|
+
forceActiveStatus: boolean;
|
|
9141
9078
|
placeholder: string;
|
|
9142
9079
|
iconLeft: string;
|
|
9143
9080
|
iconRight: string;
|
|
@@ -9174,6 +9111,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9174
9111
|
type: NumberConstructor;
|
|
9175
9112
|
default: null;
|
|
9176
9113
|
};
|
|
9114
|
+
readonly: {
|
|
9115
|
+
type: BooleanConstructor;
|
|
9116
|
+
default: boolean;
|
|
9117
|
+
};
|
|
9118
|
+
forceActiveStatus: {
|
|
9119
|
+
type: BooleanConstructor;
|
|
9120
|
+
default: boolean;
|
|
9121
|
+
};
|
|
9177
9122
|
}>, {}, {}, {
|
|
9178
9123
|
attributes(): any;
|
|
9179
9124
|
classes(): (string | {
|
|
@@ -9210,6 +9155,14 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9210
9155
|
type: NumberConstructor;
|
|
9211
9156
|
default: null;
|
|
9212
9157
|
};
|
|
9158
|
+
readonly: {
|
|
9159
|
+
type: BooleanConstructor;
|
|
9160
|
+
default: boolean;
|
|
9161
|
+
};
|
|
9162
|
+
forceActiveStatus: {
|
|
9163
|
+
type: BooleanConstructor;
|
|
9164
|
+
default: boolean;
|
|
9165
|
+
};
|
|
9213
9166
|
}>> & Readonly<{
|
|
9214
9167
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9215
9168
|
}>, {
|
|
@@ -9221,6 +9174,8 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9221
9174
|
modelValue: string;
|
|
9222
9175
|
nativeType: string;
|
|
9223
9176
|
maxlength: number;
|
|
9177
|
+
readonly: boolean;
|
|
9178
|
+
forceActiveStatus: boolean;
|
|
9224
9179
|
}, {}, {}, {
|
|
9225
9180
|
mask: any;
|
|
9226
9181
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -9242,98 +9197,11 @@ export declare const unnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
9242
9197
|
scheme: import('./Icon.vue').SchemeColor;
|
|
9243
9198
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
9244
9199
|
}, {}, 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>;
|
|
9200
|
+
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<{}>, {
|
|
9201
|
+
label: string;
|
|
9202
|
+
tooltip: string;
|
|
9203
|
+
useHtmlTooltip: boolean;
|
|
9204
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
9337
9205
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
9338
9206
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
9339
9207
|
export declare const unnnicChatText: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -12685,6 +12553,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12685
12553
|
type: BooleanConstructor;
|
|
12686
12554
|
default: boolean;
|
|
12687
12555
|
};
|
|
12556
|
+
readonly: {
|
|
12557
|
+
type: BooleanConstructor;
|
|
12558
|
+
default: boolean;
|
|
12559
|
+
};
|
|
12560
|
+
forceActiveStatus: {
|
|
12561
|
+
type: BooleanConstructor;
|
|
12562
|
+
default: boolean;
|
|
12563
|
+
};
|
|
12688
12564
|
}>, {}, {
|
|
12689
12565
|
val: string;
|
|
12690
12566
|
}, {
|
|
@@ -12769,6 +12645,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12769
12645
|
type: BooleanConstructor;
|
|
12770
12646
|
default: boolean;
|
|
12771
12647
|
};
|
|
12648
|
+
readonly: {
|
|
12649
|
+
type: BooleanConstructor;
|
|
12650
|
+
default: boolean;
|
|
12651
|
+
};
|
|
12652
|
+
forceActiveStatus: {
|
|
12653
|
+
type: BooleanConstructor;
|
|
12654
|
+
default: boolean;
|
|
12655
|
+
};
|
|
12772
12656
|
}>> & Readonly<{
|
|
12773
12657
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12774
12658
|
}>, {
|
|
@@ -12781,6 +12665,8 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12781
12665
|
modelValue: string;
|
|
12782
12666
|
nativeType: string;
|
|
12783
12667
|
maxlength: number | null;
|
|
12668
|
+
readonly: boolean;
|
|
12669
|
+
forceActiveStatus: boolean;
|
|
12784
12670
|
placeholder: string;
|
|
12785
12671
|
iconLeft: string;
|
|
12786
12672
|
iconRight: string;
|
|
@@ -12788,8 +12674,8 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12788
12674
|
iconRightClickable: boolean;
|
|
12789
12675
|
allowTogglePassword: boolean;
|
|
12790
12676
|
hasCloudyColor: boolean;
|
|
12791
|
-
errors: string | unknown[];
|
|
12792
12677
|
tooltip: string;
|
|
12678
|
+
errors: string | unknown[];
|
|
12793
12679
|
showMaxlengthCounter: boolean;
|
|
12794
12680
|
}, {}, {
|
|
12795
12681
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -12842,7 +12728,15 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12842
12728
|
type: NumberConstructor;
|
|
12843
12729
|
default: null;
|
|
12844
12730
|
};
|
|
12845
|
-
disabled: {
|
|
12731
|
+
disabled: {
|
|
12732
|
+
type: BooleanConstructor;
|
|
12733
|
+
default: boolean;
|
|
12734
|
+
};
|
|
12735
|
+
readonly: {
|
|
12736
|
+
type: BooleanConstructor;
|
|
12737
|
+
default: boolean;
|
|
12738
|
+
};
|
|
12739
|
+
forceActiveStatus: {
|
|
12846
12740
|
type: BooleanConstructor;
|
|
12847
12741
|
default: boolean;
|
|
12848
12742
|
};
|
|
@@ -12914,6 +12808,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12914
12808
|
type: BooleanConstructor;
|
|
12915
12809
|
default: boolean;
|
|
12916
12810
|
};
|
|
12811
|
+
readonly: {
|
|
12812
|
+
type: BooleanConstructor;
|
|
12813
|
+
default: boolean;
|
|
12814
|
+
};
|
|
12815
|
+
forceActiveStatus: {
|
|
12816
|
+
type: BooleanConstructor;
|
|
12817
|
+
default: boolean;
|
|
12818
|
+
};
|
|
12917
12819
|
}>> & Readonly<{
|
|
12918
12820
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
12919
12821
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -12924,6 +12826,8 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12924
12826
|
modelValue: string;
|
|
12925
12827
|
nativeType: string;
|
|
12926
12828
|
maxlength: number;
|
|
12829
|
+
readonly: boolean;
|
|
12830
|
+
forceActiveStatus: boolean;
|
|
12927
12831
|
placeholder: string;
|
|
12928
12832
|
iconLeft: string;
|
|
12929
12833
|
iconRight: string;
|
|
@@ -12960,6 +12864,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12960
12864
|
type: NumberConstructor;
|
|
12961
12865
|
default: null;
|
|
12962
12866
|
};
|
|
12867
|
+
readonly: {
|
|
12868
|
+
type: BooleanConstructor;
|
|
12869
|
+
default: boolean;
|
|
12870
|
+
};
|
|
12871
|
+
forceActiveStatus: {
|
|
12872
|
+
type: BooleanConstructor;
|
|
12873
|
+
default: boolean;
|
|
12874
|
+
};
|
|
12963
12875
|
}>, {}, {}, {
|
|
12964
12876
|
attributes(): any;
|
|
12965
12877
|
classes(): (string | {
|
|
@@ -12996,6 +12908,14 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
12996
12908
|
type: NumberConstructor;
|
|
12997
12909
|
default: null;
|
|
12998
12910
|
};
|
|
12911
|
+
readonly: {
|
|
12912
|
+
type: BooleanConstructor;
|
|
12913
|
+
default: boolean;
|
|
12914
|
+
};
|
|
12915
|
+
forceActiveStatus: {
|
|
12916
|
+
type: BooleanConstructor;
|
|
12917
|
+
default: boolean;
|
|
12918
|
+
};
|
|
12999
12919
|
}>> & Readonly<{
|
|
13000
12920
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13001
12921
|
}>, {
|
|
@@ -13007,6 +12927,8 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
13007
12927
|
modelValue: string;
|
|
13008
12928
|
nativeType: string;
|
|
13009
12929
|
maxlength: number;
|
|
12930
|
+
readonly: boolean;
|
|
12931
|
+
forceActiveStatus: boolean;
|
|
13010
12932
|
}, {}, {}, {
|
|
13011
12933
|
mask: any;
|
|
13012
12934
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -13028,98 +12950,11 @@ export declare const UnnnicInput: import('vue').DefineComponent<import('vue').Ex
|
|
|
13028
12950
|
scheme: import('./Icon.vue').SchemeColor;
|
|
13029
12951
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13030
12952
|
}, {}, 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>;
|
|
12953
|
+
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<{}>, {
|
|
12954
|
+
label: string;
|
|
12955
|
+
tooltip: string;
|
|
12956
|
+
useHtmlTooltip: boolean;
|
|
12957
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
13123
12958
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13124
12959
|
export declare const UnnnicInputNext: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13125
12960
|
modelValue: StringConstructor;
|
|
@@ -13203,8 +13038,8 @@ export declare const UnnnicInputNext: import('vue').DefineComponent<import('vue'
|
|
|
13203
13038
|
type: string;
|
|
13204
13039
|
disabled: boolean;
|
|
13205
13040
|
nativeType: string;
|
|
13206
|
-
allowTogglePassword: boolean;
|
|
13207
13041
|
readonly: boolean;
|
|
13042
|
+
allowTogglePassword: boolean;
|
|
13208
13043
|
}, {}, {
|
|
13209
13044
|
UnnnicIcon: import('vue').DefineComponent<import('./Icon.vue').IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
13210
13045
|
click: (event: Event) => any;
|
|
@@ -13474,6 +13309,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13474
13309
|
type: BooleanConstructor;
|
|
13475
13310
|
default: boolean;
|
|
13476
13311
|
};
|
|
13312
|
+
readonly: {
|
|
13313
|
+
type: BooleanConstructor;
|
|
13314
|
+
default: boolean;
|
|
13315
|
+
};
|
|
13316
|
+
forceActiveStatus: {
|
|
13317
|
+
type: BooleanConstructor;
|
|
13318
|
+
default: boolean;
|
|
13319
|
+
};
|
|
13477
13320
|
}>, {}, {
|
|
13478
13321
|
val: string;
|
|
13479
13322
|
}, {
|
|
@@ -13558,6 +13401,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13558
13401
|
type: BooleanConstructor;
|
|
13559
13402
|
default: boolean;
|
|
13560
13403
|
};
|
|
13404
|
+
readonly: {
|
|
13405
|
+
type: BooleanConstructor;
|
|
13406
|
+
default: boolean;
|
|
13407
|
+
};
|
|
13408
|
+
forceActiveStatus: {
|
|
13409
|
+
type: BooleanConstructor;
|
|
13410
|
+
default: boolean;
|
|
13411
|
+
};
|
|
13561
13412
|
}>> & Readonly<{
|
|
13562
13413
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13563
13414
|
}>, {
|
|
@@ -13570,6 +13421,8 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13570
13421
|
modelValue: string;
|
|
13571
13422
|
nativeType: string;
|
|
13572
13423
|
maxlength: number | null;
|
|
13424
|
+
readonly: boolean;
|
|
13425
|
+
forceActiveStatus: boolean;
|
|
13573
13426
|
placeholder: string;
|
|
13574
13427
|
iconLeft: string;
|
|
13575
13428
|
iconRight: string;
|
|
@@ -13577,8 +13430,8 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13577
13430
|
iconRightClickable: boolean;
|
|
13578
13431
|
allowTogglePassword: boolean;
|
|
13579
13432
|
hasCloudyColor: boolean;
|
|
13580
|
-
errors: string | unknown[];
|
|
13581
13433
|
tooltip: string;
|
|
13434
|
+
errors: string | unknown[];
|
|
13582
13435
|
showMaxlengthCounter: boolean;
|
|
13583
13436
|
}, {}, {
|
|
13584
13437
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -13635,6 +13488,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13635
13488
|
type: BooleanConstructor;
|
|
13636
13489
|
default: boolean;
|
|
13637
13490
|
};
|
|
13491
|
+
readonly: {
|
|
13492
|
+
type: BooleanConstructor;
|
|
13493
|
+
default: boolean;
|
|
13494
|
+
};
|
|
13495
|
+
forceActiveStatus: {
|
|
13496
|
+
type: BooleanConstructor;
|
|
13497
|
+
default: boolean;
|
|
13498
|
+
};
|
|
13638
13499
|
}>, {}, {
|
|
13639
13500
|
isFocused: boolean;
|
|
13640
13501
|
showPassword: boolean;
|
|
@@ -13703,6 +13564,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13703
13564
|
type: BooleanConstructor;
|
|
13704
13565
|
default: boolean;
|
|
13705
13566
|
};
|
|
13567
|
+
readonly: {
|
|
13568
|
+
type: BooleanConstructor;
|
|
13569
|
+
default: boolean;
|
|
13570
|
+
};
|
|
13571
|
+
forceActiveStatus: {
|
|
13572
|
+
type: BooleanConstructor;
|
|
13573
|
+
default: boolean;
|
|
13574
|
+
};
|
|
13706
13575
|
}>> & Readonly<{
|
|
13707
13576
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
13708
13577
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -13713,6 +13582,8 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13713
13582
|
modelValue: string;
|
|
13714
13583
|
nativeType: string;
|
|
13715
13584
|
maxlength: number;
|
|
13585
|
+
readonly: boolean;
|
|
13586
|
+
forceActiveStatus: boolean;
|
|
13716
13587
|
placeholder: string;
|
|
13717
13588
|
iconLeft: string;
|
|
13718
13589
|
iconRight: string;
|
|
@@ -13749,6 +13620,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13749
13620
|
type: NumberConstructor;
|
|
13750
13621
|
default: null;
|
|
13751
13622
|
};
|
|
13623
|
+
readonly: {
|
|
13624
|
+
type: BooleanConstructor;
|
|
13625
|
+
default: boolean;
|
|
13626
|
+
};
|
|
13627
|
+
forceActiveStatus: {
|
|
13628
|
+
type: BooleanConstructor;
|
|
13629
|
+
default: boolean;
|
|
13630
|
+
};
|
|
13752
13631
|
}>, {}, {}, {
|
|
13753
13632
|
attributes(): any;
|
|
13754
13633
|
classes(): (string | {
|
|
@@ -13785,6 +13664,14 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13785
13664
|
type: NumberConstructor;
|
|
13786
13665
|
default: null;
|
|
13787
13666
|
};
|
|
13667
|
+
readonly: {
|
|
13668
|
+
type: BooleanConstructor;
|
|
13669
|
+
default: boolean;
|
|
13670
|
+
};
|
|
13671
|
+
forceActiveStatus: {
|
|
13672
|
+
type: BooleanConstructor;
|
|
13673
|
+
default: boolean;
|
|
13674
|
+
};
|
|
13788
13675
|
}>> & Readonly<{
|
|
13789
13676
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13790
13677
|
}>, {
|
|
@@ -13796,6 +13683,8 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13796
13683
|
modelValue: string;
|
|
13797
13684
|
nativeType: string;
|
|
13798
13685
|
maxlength: number;
|
|
13686
|
+
readonly: boolean;
|
|
13687
|
+
forceActiveStatus: boolean;
|
|
13799
13688
|
}, {}, {}, {
|
|
13800
13689
|
mask: any;
|
|
13801
13690
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -13817,98 +13706,11 @@ export declare const UnnnicInputDatePicker: import('vue').DefineComponent<import
|
|
|
13817
13706
|
scheme: import('./Icon.vue').SchemeColor;
|
|
13818
13707
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13819
13708
|
}, {}, 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>;
|
|
13709
|
+
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<{}>, {
|
|
13710
|
+
label: string;
|
|
13711
|
+
tooltip: string;
|
|
13712
|
+
useHtmlTooltip: boolean;
|
|
13713
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
13912
13714
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
13913
13715
|
UnnnicDatePicker: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
13914
13716
|
initialStartDate: {
|
|
@@ -17164,11 +16966,19 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17164
16966
|
type: (NumberConstructor | null)[];
|
|
17165
16967
|
default: null;
|
|
17166
16968
|
};
|
|
17167
|
-
showMaxlengthCounter: {
|
|
16969
|
+
showMaxlengthCounter: {
|
|
16970
|
+
type: BooleanConstructor;
|
|
16971
|
+
default: boolean;
|
|
16972
|
+
};
|
|
16973
|
+
disabled: {
|
|
16974
|
+
type: BooleanConstructor;
|
|
16975
|
+
default: boolean;
|
|
16976
|
+
};
|
|
16977
|
+
readonly: {
|
|
17168
16978
|
type: BooleanConstructor;
|
|
17169
16979
|
default: boolean;
|
|
17170
16980
|
};
|
|
17171
|
-
|
|
16981
|
+
forceActiveStatus: {
|
|
17172
16982
|
type: BooleanConstructor;
|
|
17173
16983
|
default: boolean;
|
|
17174
16984
|
};
|
|
@@ -17256,6 +17066,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17256
17066
|
type: BooleanConstructor;
|
|
17257
17067
|
default: boolean;
|
|
17258
17068
|
};
|
|
17069
|
+
readonly: {
|
|
17070
|
+
type: BooleanConstructor;
|
|
17071
|
+
default: boolean;
|
|
17072
|
+
};
|
|
17073
|
+
forceActiveStatus: {
|
|
17074
|
+
type: BooleanConstructor;
|
|
17075
|
+
default: boolean;
|
|
17076
|
+
};
|
|
17259
17077
|
}>> & Readonly<{
|
|
17260
17078
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17261
17079
|
}>, {
|
|
@@ -17268,6 +17086,8 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17268
17086
|
modelValue: string;
|
|
17269
17087
|
nativeType: string;
|
|
17270
17088
|
maxlength: number | null;
|
|
17089
|
+
readonly: boolean;
|
|
17090
|
+
forceActiveStatus: boolean;
|
|
17271
17091
|
placeholder: string;
|
|
17272
17092
|
iconLeft: string;
|
|
17273
17093
|
iconRight: string;
|
|
@@ -17275,8 +17095,8 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17275
17095
|
iconRightClickable: boolean;
|
|
17276
17096
|
allowTogglePassword: boolean;
|
|
17277
17097
|
hasCloudyColor: boolean;
|
|
17278
|
-
errors: string | unknown[];
|
|
17279
17098
|
tooltip: string;
|
|
17099
|
+
errors: string | unknown[];
|
|
17280
17100
|
showMaxlengthCounter: boolean;
|
|
17281
17101
|
}, {}, {
|
|
17282
17102
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -17333,6 +17153,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17333
17153
|
type: BooleanConstructor;
|
|
17334
17154
|
default: boolean;
|
|
17335
17155
|
};
|
|
17156
|
+
readonly: {
|
|
17157
|
+
type: BooleanConstructor;
|
|
17158
|
+
default: boolean;
|
|
17159
|
+
};
|
|
17160
|
+
forceActiveStatus: {
|
|
17161
|
+
type: BooleanConstructor;
|
|
17162
|
+
default: boolean;
|
|
17163
|
+
};
|
|
17336
17164
|
}>, {}, {
|
|
17337
17165
|
isFocused: boolean;
|
|
17338
17166
|
showPassword: boolean;
|
|
@@ -17401,6 +17229,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17401
17229
|
type: BooleanConstructor;
|
|
17402
17230
|
default: boolean;
|
|
17403
17231
|
};
|
|
17232
|
+
readonly: {
|
|
17233
|
+
type: BooleanConstructor;
|
|
17234
|
+
default: boolean;
|
|
17235
|
+
};
|
|
17236
|
+
forceActiveStatus: {
|
|
17237
|
+
type: BooleanConstructor;
|
|
17238
|
+
default: boolean;
|
|
17239
|
+
};
|
|
17404
17240
|
}>> & Readonly<{
|
|
17405
17241
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
17406
17242
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -17411,6 +17247,8 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17411
17247
|
modelValue: string;
|
|
17412
17248
|
nativeType: string;
|
|
17413
17249
|
maxlength: number;
|
|
17250
|
+
readonly: boolean;
|
|
17251
|
+
forceActiveStatus: boolean;
|
|
17414
17252
|
placeholder: string;
|
|
17415
17253
|
iconLeft: string;
|
|
17416
17254
|
iconRight: string;
|
|
@@ -17447,6 +17285,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17447
17285
|
type: NumberConstructor;
|
|
17448
17286
|
default: null;
|
|
17449
17287
|
};
|
|
17288
|
+
readonly: {
|
|
17289
|
+
type: BooleanConstructor;
|
|
17290
|
+
default: boolean;
|
|
17291
|
+
};
|
|
17292
|
+
forceActiveStatus: {
|
|
17293
|
+
type: BooleanConstructor;
|
|
17294
|
+
default: boolean;
|
|
17295
|
+
};
|
|
17450
17296
|
}>, {}, {}, {
|
|
17451
17297
|
attributes(): any;
|
|
17452
17298
|
classes(): (string | {
|
|
@@ -17483,6 +17329,14 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17483
17329
|
type: NumberConstructor;
|
|
17484
17330
|
default: null;
|
|
17485
17331
|
};
|
|
17332
|
+
readonly: {
|
|
17333
|
+
type: BooleanConstructor;
|
|
17334
|
+
default: boolean;
|
|
17335
|
+
};
|
|
17336
|
+
forceActiveStatus: {
|
|
17337
|
+
type: BooleanConstructor;
|
|
17338
|
+
default: boolean;
|
|
17339
|
+
};
|
|
17486
17340
|
}>> & Readonly<{
|
|
17487
17341
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
17488
17342
|
}>, {
|
|
@@ -17494,6 +17348,8 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17494
17348
|
modelValue: string;
|
|
17495
17349
|
nativeType: string;
|
|
17496
17350
|
maxlength: number;
|
|
17351
|
+
readonly: boolean;
|
|
17352
|
+
forceActiveStatus: boolean;
|
|
17497
17353
|
}, {}, {}, {
|
|
17498
17354
|
mask: any;
|
|
17499
17355
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -17515,98 +17371,11 @@ export declare const UnnnicModalNext: import('vue').DefineComponent<import('vue'
|
|
|
17515
17371
|
scheme: import('./Icon.vue').SchemeColor;
|
|
17516
17372
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17517
17373
|
}, {}, 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>;
|
|
17374
|
+
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<{}>, {
|
|
17375
|
+
label: string;
|
|
17376
|
+
tooltip: string;
|
|
17377
|
+
useHtmlTooltip: boolean;
|
|
17378
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
17610
17379
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
17611
17380
|
UnnnicButton: {
|
|
17612
17381
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Button/types').ButtonProps> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
@@ -21439,6 +21208,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21439
21208
|
type: BooleanConstructor;
|
|
21440
21209
|
default: boolean;
|
|
21441
21210
|
};
|
|
21211
|
+
readonly: {
|
|
21212
|
+
type: BooleanConstructor;
|
|
21213
|
+
default: boolean;
|
|
21214
|
+
};
|
|
21215
|
+
forceActiveStatus: {
|
|
21216
|
+
type: BooleanConstructor;
|
|
21217
|
+
default: boolean;
|
|
21218
|
+
};
|
|
21442
21219
|
}>, {}, {
|
|
21443
21220
|
val: string;
|
|
21444
21221
|
}, {
|
|
@@ -21523,6 +21300,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21523
21300
|
type: BooleanConstructor;
|
|
21524
21301
|
default: boolean;
|
|
21525
21302
|
};
|
|
21303
|
+
readonly: {
|
|
21304
|
+
type: BooleanConstructor;
|
|
21305
|
+
default: boolean;
|
|
21306
|
+
};
|
|
21307
|
+
forceActiveStatus: {
|
|
21308
|
+
type: BooleanConstructor;
|
|
21309
|
+
default: boolean;
|
|
21310
|
+
};
|
|
21526
21311
|
}>> & Readonly<{
|
|
21527
21312
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
21528
21313
|
}>, {
|
|
@@ -21535,6 +21320,8 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21535
21320
|
modelValue: string;
|
|
21536
21321
|
nativeType: string;
|
|
21537
21322
|
maxlength: number | null;
|
|
21323
|
+
readonly: boolean;
|
|
21324
|
+
forceActiveStatus: boolean;
|
|
21538
21325
|
placeholder: string;
|
|
21539
21326
|
iconLeft: string;
|
|
21540
21327
|
iconRight: string;
|
|
@@ -21542,8 +21329,8 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21542
21329
|
iconRightClickable: boolean;
|
|
21543
21330
|
allowTogglePassword: boolean;
|
|
21544
21331
|
hasCloudyColor: boolean;
|
|
21545
|
-
errors: string | unknown[];
|
|
21546
21332
|
tooltip: string;
|
|
21333
|
+
errors: string | unknown[];
|
|
21547
21334
|
showMaxlengthCounter: boolean;
|
|
21548
21335
|
}, {}, {
|
|
21549
21336
|
TextInput: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
@@ -21600,6 +21387,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21600
21387
|
type: BooleanConstructor;
|
|
21601
21388
|
default: boolean;
|
|
21602
21389
|
};
|
|
21390
|
+
readonly: {
|
|
21391
|
+
type: BooleanConstructor;
|
|
21392
|
+
default: boolean;
|
|
21393
|
+
};
|
|
21394
|
+
forceActiveStatus: {
|
|
21395
|
+
type: BooleanConstructor;
|
|
21396
|
+
default: boolean;
|
|
21397
|
+
};
|
|
21603
21398
|
}>, {}, {
|
|
21604
21399
|
isFocused: boolean;
|
|
21605
21400
|
showPassword: boolean;
|
|
@@ -21668,6 +21463,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21668
21463
|
type: BooleanConstructor;
|
|
21669
21464
|
default: boolean;
|
|
21670
21465
|
};
|
|
21466
|
+
readonly: {
|
|
21467
|
+
type: BooleanConstructor;
|
|
21468
|
+
default: boolean;
|
|
21469
|
+
};
|
|
21470
|
+
forceActiveStatus: {
|
|
21471
|
+
type: BooleanConstructor;
|
|
21472
|
+
default: boolean;
|
|
21473
|
+
};
|
|
21671
21474
|
}>> & Readonly<{
|
|
21672
21475
|
"onIcon-left-click"?: ((...args: any[]) => any) | undefined;
|
|
21673
21476
|
"onIcon-right-click"?: ((...args: any[]) => any) | undefined;
|
|
@@ -21678,6 +21481,8 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21678
21481
|
modelValue: string;
|
|
21679
21482
|
nativeType: string;
|
|
21680
21483
|
maxlength: number;
|
|
21484
|
+
readonly: boolean;
|
|
21485
|
+
forceActiveStatus: boolean;
|
|
21681
21486
|
placeholder: string;
|
|
21682
21487
|
iconLeft: string;
|
|
21683
21488
|
iconRight: string;
|
|
@@ -21714,6 +21519,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21714
21519
|
type: NumberConstructor;
|
|
21715
21520
|
default: null;
|
|
21716
21521
|
};
|
|
21522
|
+
readonly: {
|
|
21523
|
+
type: BooleanConstructor;
|
|
21524
|
+
default: boolean;
|
|
21525
|
+
};
|
|
21526
|
+
forceActiveStatus: {
|
|
21527
|
+
type: BooleanConstructor;
|
|
21528
|
+
default: boolean;
|
|
21529
|
+
};
|
|
21717
21530
|
}>, {}, {}, {
|
|
21718
21531
|
attributes(): any;
|
|
21719
21532
|
classes(): (string | {
|
|
@@ -21750,6 +21563,14 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21750
21563
|
type: NumberConstructor;
|
|
21751
21564
|
default: null;
|
|
21752
21565
|
};
|
|
21566
|
+
readonly: {
|
|
21567
|
+
type: BooleanConstructor;
|
|
21568
|
+
default: boolean;
|
|
21569
|
+
};
|
|
21570
|
+
forceActiveStatus: {
|
|
21571
|
+
type: BooleanConstructor;
|
|
21572
|
+
default: boolean;
|
|
21573
|
+
};
|
|
21753
21574
|
}>> & Readonly<{
|
|
21754
21575
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
21755
21576
|
}>, {
|
|
@@ -21761,6 +21582,8 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21761
21582
|
modelValue: string;
|
|
21762
21583
|
nativeType: string;
|
|
21763
21584
|
maxlength: number;
|
|
21585
|
+
readonly: boolean;
|
|
21586
|
+
forceActiveStatus: boolean;
|
|
21764
21587
|
}, {}, {}, {
|
|
21765
21588
|
mask: any;
|
|
21766
21589
|
}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -21782,98 +21605,11 @@ export declare const UnnnicDateFilter: import('vue').DefineComponent<import('vue
|
|
|
21782
21605
|
scheme: import('./Icon.vue').SchemeColor;
|
|
21783
21606
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
21784
21607
|
}, {}, 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>;
|
|
21608
|
+
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<{}>, {
|
|
21609
|
+
label: string;
|
|
21610
|
+
tooltip: string;
|
|
21611
|
+
useHtmlTooltip: boolean;
|
|
21612
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
21877
21613
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21878
21614
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21879
21615
|
export declare const UnnnicChatText: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|