@wizleap-inc/wiz-ui-next 3.18.0 → 3.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/base/card/card.stories.d.ts +114 -0
- package/dist/components/base/card/card.vue.d.ts +9 -0
- package/dist/components/base/graphs/line/line.stories.d.ts +2 -0
- package/dist/components/base/graphs/line/line.vue.d.ts +24 -0
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +1980 -1961
- package/dist/wiz-ui.umd.js +11 -11
- package/package.json +2 -2
|
@@ -44,6 +44,10 @@ export declare const Default: StoryFn<{
|
|
|
44
44
|
type: BooleanConstructor;
|
|
45
45
|
required: false;
|
|
46
46
|
};
|
|
47
|
+
hexpand: {
|
|
48
|
+
type: BooleanConstructor;
|
|
49
|
+
required: false;
|
|
50
|
+
};
|
|
47
51
|
maxWidth: {
|
|
48
52
|
type: StringConstructor;
|
|
49
53
|
required: false;
|
|
@@ -94,6 +98,10 @@ export declare const Default: StoryFn<{
|
|
|
94
98
|
type: BooleanConstructor;
|
|
95
99
|
required: false;
|
|
96
100
|
};
|
|
101
|
+
hexpand: {
|
|
102
|
+
type: BooleanConstructor;
|
|
103
|
+
required: false;
|
|
104
|
+
};
|
|
97
105
|
maxWidth: {
|
|
98
106
|
type: StringConstructor;
|
|
99
107
|
required: false;
|
|
@@ -112,6 +120,7 @@ export declare const Default: StoryFn<{
|
|
|
112
120
|
align: "stretch" | "center" | "end" | "start";
|
|
113
121
|
shadow: boolean;
|
|
114
122
|
fit: boolean;
|
|
123
|
+
hexpand: boolean;
|
|
115
124
|
}, true, {}, {}, {
|
|
116
125
|
P: {};
|
|
117
126
|
B: {};
|
|
@@ -160,6 +169,10 @@ export declare const Default: StoryFn<{
|
|
|
160
169
|
type: BooleanConstructor;
|
|
161
170
|
required: false;
|
|
162
171
|
};
|
|
172
|
+
hexpand: {
|
|
173
|
+
type: BooleanConstructor;
|
|
174
|
+
required: false;
|
|
175
|
+
};
|
|
163
176
|
maxWidth: {
|
|
164
177
|
type: StringConstructor;
|
|
165
178
|
required: false;
|
|
@@ -178,6 +191,7 @@ export declare const Default: StoryFn<{
|
|
|
178
191
|
align: "stretch" | "center" | "end" | "start";
|
|
179
192
|
shadow: boolean;
|
|
180
193
|
fit: boolean;
|
|
194
|
+
hexpand: boolean;
|
|
181
195
|
}>;
|
|
182
196
|
__isFragment?: never;
|
|
183
197
|
__isTeleport?: never;
|
|
@@ -223,6 +237,10 @@ export declare const Default: StoryFn<{
|
|
|
223
237
|
type: BooleanConstructor;
|
|
224
238
|
required: false;
|
|
225
239
|
};
|
|
240
|
+
hexpand: {
|
|
241
|
+
type: BooleanConstructor;
|
|
242
|
+
required: false;
|
|
243
|
+
};
|
|
226
244
|
maxWidth: {
|
|
227
245
|
type: StringConstructor;
|
|
228
246
|
required: false;
|
|
@@ -241,6 +259,7 @@ export declare const Default: StoryFn<{
|
|
|
241
259
|
align: "stretch" | "center" | "end" | "start";
|
|
242
260
|
shadow: boolean;
|
|
243
261
|
fit: boolean;
|
|
262
|
+
hexpand: boolean;
|
|
244
263
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
245
264
|
$slots: {
|
|
246
265
|
mainHeaderArea?(_: {}): any;
|
|
@@ -291,6 +310,10 @@ export declare const Shadow: StoryFn<{
|
|
|
291
310
|
type: BooleanConstructor;
|
|
292
311
|
required: false;
|
|
293
312
|
};
|
|
313
|
+
hexpand: {
|
|
314
|
+
type: BooleanConstructor;
|
|
315
|
+
required: false;
|
|
316
|
+
};
|
|
294
317
|
maxWidth: {
|
|
295
318
|
type: StringConstructor;
|
|
296
319
|
required: false;
|
|
@@ -341,6 +364,10 @@ export declare const Shadow: StoryFn<{
|
|
|
341
364
|
type: BooleanConstructor;
|
|
342
365
|
required: false;
|
|
343
366
|
};
|
|
367
|
+
hexpand: {
|
|
368
|
+
type: BooleanConstructor;
|
|
369
|
+
required: false;
|
|
370
|
+
};
|
|
344
371
|
maxWidth: {
|
|
345
372
|
type: StringConstructor;
|
|
346
373
|
required: false;
|
|
@@ -359,6 +386,7 @@ export declare const Shadow: StoryFn<{
|
|
|
359
386
|
align: "stretch" | "center" | "end" | "start";
|
|
360
387
|
shadow: boolean;
|
|
361
388
|
fit: boolean;
|
|
389
|
+
hexpand: boolean;
|
|
362
390
|
}, true, {}, {}, {
|
|
363
391
|
P: {};
|
|
364
392
|
B: {};
|
|
@@ -407,6 +435,10 @@ export declare const Shadow: StoryFn<{
|
|
|
407
435
|
type: BooleanConstructor;
|
|
408
436
|
required: false;
|
|
409
437
|
};
|
|
438
|
+
hexpand: {
|
|
439
|
+
type: BooleanConstructor;
|
|
440
|
+
required: false;
|
|
441
|
+
};
|
|
410
442
|
maxWidth: {
|
|
411
443
|
type: StringConstructor;
|
|
412
444
|
required: false;
|
|
@@ -425,6 +457,7 @@ export declare const Shadow: StoryFn<{
|
|
|
425
457
|
align: "stretch" | "center" | "end" | "start";
|
|
426
458
|
shadow: boolean;
|
|
427
459
|
fit: boolean;
|
|
460
|
+
hexpand: boolean;
|
|
428
461
|
}>;
|
|
429
462
|
__isFragment?: never;
|
|
430
463
|
__isTeleport?: never;
|
|
@@ -470,6 +503,10 @@ export declare const Shadow: StoryFn<{
|
|
|
470
503
|
type: BooleanConstructor;
|
|
471
504
|
required: false;
|
|
472
505
|
};
|
|
506
|
+
hexpand: {
|
|
507
|
+
type: BooleanConstructor;
|
|
508
|
+
required: false;
|
|
509
|
+
};
|
|
473
510
|
maxWidth: {
|
|
474
511
|
type: StringConstructor;
|
|
475
512
|
required: false;
|
|
@@ -488,6 +525,7 @@ export declare const Shadow: StoryFn<{
|
|
|
488
525
|
align: "stretch" | "center" | "end" | "start";
|
|
489
526
|
shadow: boolean;
|
|
490
527
|
fit: boolean;
|
|
528
|
+
hexpand: boolean;
|
|
491
529
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
492
530
|
$slots: {
|
|
493
531
|
mainHeaderArea?(_: {}): any;
|
|
@@ -538,6 +576,10 @@ export declare const Border: StoryFn<{
|
|
|
538
576
|
type: BooleanConstructor;
|
|
539
577
|
required: false;
|
|
540
578
|
};
|
|
579
|
+
hexpand: {
|
|
580
|
+
type: BooleanConstructor;
|
|
581
|
+
required: false;
|
|
582
|
+
};
|
|
541
583
|
maxWidth: {
|
|
542
584
|
type: StringConstructor;
|
|
543
585
|
required: false;
|
|
@@ -588,6 +630,10 @@ export declare const Border: StoryFn<{
|
|
|
588
630
|
type: BooleanConstructor;
|
|
589
631
|
required: false;
|
|
590
632
|
};
|
|
633
|
+
hexpand: {
|
|
634
|
+
type: BooleanConstructor;
|
|
635
|
+
required: false;
|
|
636
|
+
};
|
|
591
637
|
maxWidth: {
|
|
592
638
|
type: StringConstructor;
|
|
593
639
|
required: false;
|
|
@@ -606,6 +652,7 @@ export declare const Border: StoryFn<{
|
|
|
606
652
|
align: "stretch" | "center" | "end" | "start";
|
|
607
653
|
shadow: boolean;
|
|
608
654
|
fit: boolean;
|
|
655
|
+
hexpand: boolean;
|
|
609
656
|
}, true, {}, {}, {
|
|
610
657
|
P: {};
|
|
611
658
|
B: {};
|
|
@@ -654,6 +701,10 @@ export declare const Border: StoryFn<{
|
|
|
654
701
|
type: BooleanConstructor;
|
|
655
702
|
required: false;
|
|
656
703
|
};
|
|
704
|
+
hexpand: {
|
|
705
|
+
type: BooleanConstructor;
|
|
706
|
+
required: false;
|
|
707
|
+
};
|
|
657
708
|
maxWidth: {
|
|
658
709
|
type: StringConstructor;
|
|
659
710
|
required: false;
|
|
@@ -672,6 +723,7 @@ export declare const Border: StoryFn<{
|
|
|
672
723
|
align: "stretch" | "center" | "end" | "start";
|
|
673
724
|
shadow: boolean;
|
|
674
725
|
fit: boolean;
|
|
726
|
+
hexpand: boolean;
|
|
675
727
|
}>;
|
|
676
728
|
__isFragment?: never;
|
|
677
729
|
__isTeleport?: never;
|
|
@@ -717,6 +769,10 @@ export declare const Border: StoryFn<{
|
|
|
717
769
|
type: BooleanConstructor;
|
|
718
770
|
required: false;
|
|
719
771
|
};
|
|
772
|
+
hexpand: {
|
|
773
|
+
type: BooleanConstructor;
|
|
774
|
+
required: false;
|
|
775
|
+
};
|
|
720
776
|
maxWidth: {
|
|
721
777
|
type: StringConstructor;
|
|
722
778
|
required: false;
|
|
@@ -735,6 +791,7 @@ export declare const Border: StoryFn<{
|
|
|
735
791
|
align: "stretch" | "center" | "end" | "start";
|
|
736
792
|
shadow: boolean;
|
|
737
793
|
fit: boolean;
|
|
794
|
+
hexpand: boolean;
|
|
738
795
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
739
796
|
$slots: {
|
|
740
797
|
mainHeaderArea?(_: {}): any;
|
|
@@ -785,6 +842,10 @@ export declare const BorderColor: StoryFn<{
|
|
|
785
842
|
type: BooleanConstructor;
|
|
786
843
|
required: false;
|
|
787
844
|
};
|
|
845
|
+
hexpand: {
|
|
846
|
+
type: BooleanConstructor;
|
|
847
|
+
required: false;
|
|
848
|
+
};
|
|
788
849
|
maxWidth: {
|
|
789
850
|
type: StringConstructor;
|
|
790
851
|
required: false;
|
|
@@ -835,6 +896,10 @@ export declare const BorderColor: StoryFn<{
|
|
|
835
896
|
type: BooleanConstructor;
|
|
836
897
|
required: false;
|
|
837
898
|
};
|
|
899
|
+
hexpand: {
|
|
900
|
+
type: BooleanConstructor;
|
|
901
|
+
required: false;
|
|
902
|
+
};
|
|
838
903
|
maxWidth: {
|
|
839
904
|
type: StringConstructor;
|
|
840
905
|
required: false;
|
|
@@ -853,6 +918,7 @@ export declare const BorderColor: StoryFn<{
|
|
|
853
918
|
align: "stretch" | "center" | "end" | "start";
|
|
854
919
|
shadow: boolean;
|
|
855
920
|
fit: boolean;
|
|
921
|
+
hexpand: boolean;
|
|
856
922
|
}, true, {}, {}, {
|
|
857
923
|
P: {};
|
|
858
924
|
B: {};
|
|
@@ -901,6 +967,10 @@ export declare const BorderColor: StoryFn<{
|
|
|
901
967
|
type: BooleanConstructor;
|
|
902
968
|
required: false;
|
|
903
969
|
};
|
|
970
|
+
hexpand: {
|
|
971
|
+
type: BooleanConstructor;
|
|
972
|
+
required: false;
|
|
973
|
+
};
|
|
904
974
|
maxWidth: {
|
|
905
975
|
type: StringConstructor;
|
|
906
976
|
required: false;
|
|
@@ -919,6 +989,7 @@ export declare const BorderColor: StoryFn<{
|
|
|
919
989
|
align: "stretch" | "center" | "end" | "start";
|
|
920
990
|
shadow: boolean;
|
|
921
991
|
fit: boolean;
|
|
992
|
+
hexpand: boolean;
|
|
922
993
|
}>;
|
|
923
994
|
__isFragment?: never;
|
|
924
995
|
__isTeleport?: never;
|
|
@@ -964,6 +1035,10 @@ export declare const BorderColor: StoryFn<{
|
|
|
964
1035
|
type: BooleanConstructor;
|
|
965
1036
|
required: false;
|
|
966
1037
|
};
|
|
1038
|
+
hexpand: {
|
|
1039
|
+
type: BooleanConstructor;
|
|
1040
|
+
required: false;
|
|
1041
|
+
};
|
|
967
1042
|
maxWidth: {
|
|
968
1043
|
type: StringConstructor;
|
|
969
1044
|
required: false;
|
|
@@ -982,6 +1057,7 @@ export declare const BorderColor: StoryFn<{
|
|
|
982
1057
|
align: "stretch" | "center" | "end" | "start";
|
|
983
1058
|
shadow: boolean;
|
|
984
1059
|
fit: boolean;
|
|
1060
|
+
hexpand: boolean;
|
|
985
1061
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
986
1062
|
$slots: {
|
|
987
1063
|
mainHeaderArea?(_: {}): any;
|
|
@@ -1032,6 +1108,10 @@ export declare const Align: StoryFn<{
|
|
|
1032
1108
|
type: BooleanConstructor;
|
|
1033
1109
|
required: false;
|
|
1034
1110
|
};
|
|
1111
|
+
hexpand: {
|
|
1112
|
+
type: BooleanConstructor;
|
|
1113
|
+
required: false;
|
|
1114
|
+
};
|
|
1035
1115
|
maxWidth: {
|
|
1036
1116
|
type: StringConstructor;
|
|
1037
1117
|
required: false;
|
|
@@ -1082,6 +1162,10 @@ export declare const Align: StoryFn<{
|
|
|
1082
1162
|
type: BooleanConstructor;
|
|
1083
1163
|
required: false;
|
|
1084
1164
|
};
|
|
1165
|
+
hexpand: {
|
|
1166
|
+
type: BooleanConstructor;
|
|
1167
|
+
required: false;
|
|
1168
|
+
};
|
|
1085
1169
|
maxWidth: {
|
|
1086
1170
|
type: StringConstructor;
|
|
1087
1171
|
required: false;
|
|
@@ -1100,6 +1184,7 @@ export declare const Align: StoryFn<{
|
|
|
1100
1184
|
align: "stretch" | "center" | "end" | "start";
|
|
1101
1185
|
shadow: boolean;
|
|
1102
1186
|
fit: boolean;
|
|
1187
|
+
hexpand: boolean;
|
|
1103
1188
|
}, true, {}, {}, {
|
|
1104
1189
|
P: {};
|
|
1105
1190
|
B: {};
|
|
@@ -1148,6 +1233,10 @@ export declare const Align: StoryFn<{
|
|
|
1148
1233
|
type: BooleanConstructor;
|
|
1149
1234
|
required: false;
|
|
1150
1235
|
};
|
|
1236
|
+
hexpand: {
|
|
1237
|
+
type: BooleanConstructor;
|
|
1238
|
+
required: false;
|
|
1239
|
+
};
|
|
1151
1240
|
maxWidth: {
|
|
1152
1241
|
type: StringConstructor;
|
|
1153
1242
|
required: false;
|
|
@@ -1166,6 +1255,7 @@ export declare const Align: StoryFn<{
|
|
|
1166
1255
|
align: "stretch" | "center" | "end" | "start";
|
|
1167
1256
|
shadow: boolean;
|
|
1168
1257
|
fit: boolean;
|
|
1258
|
+
hexpand: boolean;
|
|
1169
1259
|
}>;
|
|
1170
1260
|
__isFragment?: never;
|
|
1171
1261
|
__isTeleport?: never;
|
|
@@ -1211,6 +1301,10 @@ export declare const Align: StoryFn<{
|
|
|
1211
1301
|
type: BooleanConstructor;
|
|
1212
1302
|
required: false;
|
|
1213
1303
|
};
|
|
1304
|
+
hexpand: {
|
|
1305
|
+
type: BooleanConstructor;
|
|
1306
|
+
required: false;
|
|
1307
|
+
};
|
|
1214
1308
|
maxWidth: {
|
|
1215
1309
|
type: StringConstructor;
|
|
1216
1310
|
required: false;
|
|
@@ -1229,6 +1323,7 @@ export declare const Align: StoryFn<{
|
|
|
1229
1323
|
align: "stretch" | "center" | "end" | "start";
|
|
1230
1324
|
shadow: boolean;
|
|
1231
1325
|
fit: boolean;
|
|
1326
|
+
hexpand: boolean;
|
|
1232
1327
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1233
1328
|
$slots: {
|
|
1234
1329
|
mainHeaderArea?(_: {}): any;
|
|
@@ -1279,6 +1374,10 @@ export declare const Gap: StoryFn<{
|
|
|
1279
1374
|
type: BooleanConstructor;
|
|
1280
1375
|
required: false;
|
|
1281
1376
|
};
|
|
1377
|
+
hexpand: {
|
|
1378
|
+
type: BooleanConstructor;
|
|
1379
|
+
required: false;
|
|
1380
|
+
};
|
|
1282
1381
|
maxWidth: {
|
|
1283
1382
|
type: StringConstructor;
|
|
1284
1383
|
required: false;
|
|
@@ -1329,6 +1428,10 @@ export declare const Gap: StoryFn<{
|
|
|
1329
1428
|
type: BooleanConstructor;
|
|
1330
1429
|
required: false;
|
|
1331
1430
|
};
|
|
1431
|
+
hexpand: {
|
|
1432
|
+
type: BooleanConstructor;
|
|
1433
|
+
required: false;
|
|
1434
|
+
};
|
|
1332
1435
|
maxWidth: {
|
|
1333
1436
|
type: StringConstructor;
|
|
1334
1437
|
required: false;
|
|
@@ -1347,6 +1450,7 @@ export declare const Gap: StoryFn<{
|
|
|
1347
1450
|
align: "stretch" | "center" | "end" | "start";
|
|
1348
1451
|
shadow: boolean;
|
|
1349
1452
|
fit: boolean;
|
|
1453
|
+
hexpand: boolean;
|
|
1350
1454
|
}, true, {}, {}, {
|
|
1351
1455
|
P: {};
|
|
1352
1456
|
B: {};
|
|
@@ -1395,6 +1499,10 @@ export declare const Gap: StoryFn<{
|
|
|
1395
1499
|
type: BooleanConstructor;
|
|
1396
1500
|
required: false;
|
|
1397
1501
|
};
|
|
1502
|
+
hexpand: {
|
|
1503
|
+
type: BooleanConstructor;
|
|
1504
|
+
required: false;
|
|
1505
|
+
};
|
|
1398
1506
|
maxWidth: {
|
|
1399
1507
|
type: StringConstructor;
|
|
1400
1508
|
required: false;
|
|
@@ -1413,6 +1521,7 @@ export declare const Gap: StoryFn<{
|
|
|
1413
1521
|
align: "stretch" | "center" | "end" | "start";
|
|
1414
1522
|
shadow: boolean;
|
|
1415
1523
|
fit: boolean;
|
|
1524
|
+
hexpand: boolean;
|
|
1416
1525
|
}>;
|
|
1417
1526
|
__isFragment?: never;
|
|
1418
1527
|
__isTeleport?: never;
|
|
@@ -1458,6 +1567,10 @@ export declare const Gap: StoryFn<{
|
|
|
1458
1567
|
type: BooleanConstructor;
|
|
1459
1568
|
required: false;
|
|
1460
1569
|
};
|
|
1570
|
+
hexpand: {
|
|
1571
|
+
type: BooleanConstructor;
|
|
1572
|
+
required: false;
|
|
1573
|
+
};
|
|
1461
1574
|
maxWidth: {
|
|
1462
1575
|
type: StringConstructor;
|
|
1463
1576
|
required: false;
|
|
@@ -1476,6 +1589,7 @@ export declare const Gap: StoryFn<{
|
|
|
1476
1589
|
align: "stretch" | "center" | "end" | "start";
|
|
1477
1590
|
shadow: boolean;
|
|
1478
1591
|
fit: boolean;
|
|
1592
|
+
hexpand: boolean;
|
|
1479
1593
|
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
1480
1594
|
$slots: {
|
|
1481
1595
|
mainHeaderArea?(_: {}): any;
|
|
@@ -53,6 +53,10 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
53
53
|
type: BooleanConstructor;
|
|
54
54
|
required: false;
|
|
55
55
|
};
|
|
56
|
+
hexpand: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
required: false;
|
|
59
|
+
};
|
|
56
60
|
maxWidth: {
|
|
57
61
|
type: StringConstructor;
|
|
58
62
|
required: false;
|
|
@@ -103,6 +107,10 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
103
107
|
type: BooleanConstructor;
|
|
104
108
|
required: false;
|
|
105
109
|
};
|
|
110
|
+
hexpand: {
|
|
111
|
+
type: BooleanConstructor;
|
|
112
|
+
required: false;
|
|
113
|
+
};
|
|
106
114
|
maxWidth: {
|
|
107
115
|
type: StringConstructor;
|
|
108
116
|
required: false;
|
|
@@ -121,6 +129,7 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
|
121
129
|
align: "stretch" | "center" | "end" | "start";
|
|
122
130
|
shadow: boolean;
|
|
123
131
|
fit: boolean;
|
|
132
|
+
hexpand: boolean;
|
|
124
133
|
}, {}>;
|
|
125
134
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
126
135
|
export default _default;
|
|
@@ -4,3 +4,5 @@ declare const _default: Meta<typeof WizLineGraph>;
|
|
|
4
4
|
export default _default;
|
|
5
5
|
export declare const Default: StoryFn<typeof WizLineGraph>;
|
|
6
6
|
export declare const HiddenBg: StoryFn<typeof WizLineGraph>;
|
|
7
|
+
export declare const ActiveColor: StoryFn<typeof WizLineGraph>;
|
|
8
|
+
export declare const Size: StoryFn<typeof WizLineGraph>;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { ColorKeys } from '@wizleap-inc/wiz-ui-constants';
|
|
2
|
+
import { PropType } from 'vue';
|
|
1
3
|
declare const _default: import('vue').DefineComponent<{
|
|
2
4
|
percentage: {
|
|
3
5
|
type: NumberConstructor;
|
|
@@ -8,6 +10,16 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
8
10
|
required: false;
|
|
9
11
|
default: boolean;
|
|
10
12
|
};
|
|
13
|
+
activeColor: {
|
|
14
|
+
type: PropType<ColorKeys>;
|
|
15
|
+
required: false;
|
|
16
|
+
default: string;
|
|
17
|
+
};
|
|
18
|
+
size: {
|
|
19
|
+
type: PropType<"sm" | "md">;
|
|
20
|
+
required: false;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
11
23
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
12
24
|
percentage: {
|
|
13
25
|
type: NumberConstructor;
|
|
@@ -18,7 +30,19 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
18
30
|
required: false;
|
|
19
31
|
default: boolean;
|
|
20
32
|
};
|
|
33
|
+
activeColor: {
|
|
34
|
+
type: PropType<ColorKeys>;
|
|
35
|
+
required: false;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
size: {
|
|
39
|
+
type: PropType<"sm" | "md">;
|
|
40
|
+
required: false;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
21
43
|
}>>, {
|
|
44
|
+
size: "sm" | "md";
|
|
22
45
|
hiddenBg: boolean;
|
|
46
|
+
activeColor: ColorKeys;
|
|
23
47
|
}, {}>;
|
|
24
48
|
export default _default;
|