@central-design-system/components 3.0.0-alpha.13 → 3.0.0-alpha.15
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/cds.css +1 -1
- package/dist/cds.d.ts +3 -1
- package/dist/cds.es.js +4432 -4144
- package/dist/cds.umd.js +3 -3
- package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +34 -4
- package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +22 -16
- package/dist/components/CdsMenu/CdsMenu.vue.d.ts +18 -0
- package/dist/components/CdsModal/CdsModal.vue.d.ts +18 -0
- package/dist/components/CdsNotification/CdsNotification.vue.d.ts +159 -0
- package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +788 -0
- package/dist/components/CdsNotification/composable/index.d.ts +1 -0
- package/dist/components/CdsNotification/composable/notification.d.ts +64 -0
- package/dist/components/CdsNotification/index.d.ts +2 -0
- package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +9 -0
- package/dist/components/CdsOverlay/composable/locationStrategies.d.ts +4 -0
- package/dist/components/CdsTable/CdsTable.vue.d.ts +18 -3
- package/dist/components/CdsTable/components/Table/InternalTable.d.ts +18 -3
- package/dist/components/CdsTable/components/TableProvider.d.ts +18 -3
- package/dist/components/CdsTable/composable/table.d.ts +10 -1
- package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +18 -0
- package/dist/components/index.d.ts +4 -1
- package/dist/composable/index.d.ts +1 -0
- package/dist/composable/overlay.d.ts +8 -0
- package/dist/composable/status.d.ts +5 -1
- package/dist/composable/variant.d.ts +26 -0
- package/dist/locale/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/scss/modules/_transition.scss +24 -0
- package/src/scss/themes/index.ts +1 -1
|
@@ -1037,7 +1037,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1037
1037
|
default: string;
|
|
1038
1038
|
};
|
|
1039
1039
|
origin: {
|
|
1040
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1040
|
+
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
|
|
1041
|
+
* Событие открытия меню
|
|
1042
|
+
* @type { boolean }
|
|
1043
|
+
*/
|
|
1041
1044
|
default: string;
|
|
1042
1045
|
};
|
|
1043
1046
|
offset: {
|
|
@@ -1128,6 +1131,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1128
1131
|
type: PropType<Record<string, unknown>>;
|
|
1129
1132
|
default: () => {};
|
|
1130
1133
|
};
|
|
1134
|
+
noClickAnimation: {
|
|
1135
|
+
type: PropType<boolean>;
|
|
1136
|
+
default: boolean;
|
|
1137
|
+
};
|
|
1131
1138
|
id: {
|
|
1132
1139
|
type: PropType<string>;
|
|
1133
1140
|
default: undefined;
|
|
@@ -1162,7 +1169,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1162
1169
|
default: string;
|
|
1163
1170
|
};
|
|
1164
1171
|
origin: {
|
|
1165
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1172
|
+
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
|
|
1173
|
+
* Событие открытия меню
|
|
1174
|
+
* @type { boolean }
|
|
1175
|
+
*/
|
|
1166
1176
|
default: string;
|
|
1167
1177
|
};
|
|
1168
1178
|
offset: {
|
|
@@ -1265,6 +1275,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1265
1275
|
type: PropType<Record<string, unknown>>;
|
|
1266
1276
|
default: () => {};
|
|
1267
1277
|
};
|
|
1278
|
+
noClickAnimation: {
|
|
1279
|
+
type: PropType<boolean>;
|
|
1280
|
+
default: boolean;
|
|
1281
|
+
};
|
|
1268
1282
|
absolute: {
|
|
1269
1283
|
type: PropType<boolean>;
|
|
1270
1284
|
default: boolean;
|
|
@@ -1308,7 +1322,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1308
1322
|
default: string;
|
|
1309
1323
|
};
|
|
1310
1324
|
origin: {
|
|
1311
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1325
|
+
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
|
|
1326
|
+
* Событие открытия меню
|
|
1327
|
+
* @type { boolean }
|
|
1328
|
+
*/
|
|
1312
1329
|
default: string;
|
|
1313
1330
|
};
|
|
1314
1331
|
offset: {
|
|
@@ -1411,6 +1428,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1411
1428
|
type: PropType<Record<string, unknown>>;
|
|
1412
1429
|
default: () => {};
|
|
1413
1430
|
};
|
|
1431
|
+
noClickAnimation: {
|
|
1432
|
+
type: PropType<boolean>;
|
|
1433
|
+
default: boolean;
|
|
1434
|
+
};
|
|
1414
1435
|
absolute: {
|
|
1415
1436
|
type: PropType<boolean>;
|
|
1416
1437
|
default: boolean;
|
|
@@ -1435,6 +1456,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1435
1456
|
zIndex: string | number;
|
|
1436
1457
|
contentClasses: string | string[] | Record<string, boolean>;
|
|
1437
1458
|
contentProps: Record<string, unknown>;
|
|
1459
|
+
noClickAnimation: boolean;
|
|
1438
1460
|
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
1439
1461
|
activatorProps: Record<string, any>;
|
|
1440
1462
|
openOnClick: boolean | undefined;
|
|
@@ -1523,7 +1545,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1523
1545
|
default: string;
|
|
1524
1546
|
};
|
|
1525
1547
|
origin: {
|
|
1526
|
-
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">;
|
|
1548
|
+
type: PropType<import('../../utils').TAnchor | "auto" | "overlap">; /**
|
|
1549
|
+
* Событие открытия меню
|
|
1550
|
+
* @type { boolean }
|
|
1551
|
+
*/
|
|
1527
1552
|
default: string;
|
|
1528
1553
|
};
|
|
1529
1554
|
offset: {
|
|
@@ -1614,6 +1639,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1614
1639
|
type: PropType<Record<string, unknown>>;
|
|
1615
1640
|
default: () => {};
|
|
1616
1641
|
};
|
|
1642
|
+
noClickAnimation: {
|
|
1643
|
+
type: PropType<boolean>;
|
|
1644
|
+
default: boolean;
|
|
1645
|
+
};
|
|
1617
1646
|
id: {
|
|
1618
1647
|
type: PropType<string>;
|
|
1619
1648
|
default: undefined;
|
|
@@ -1637,6 +1666,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1637
1666
|
zIndex: string | number;
|
|
1638
1667
|
contentClasses: string | string[] | Record<string, boolean>;
|
|
1639
1668
|
contentProps: Record<string, unknown>;
|
|
1669
|
+
noClickAnimation: boolean;
|
|
1640
1670
|
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
1641
1671
|
activatorProps: Record<string, any>;
|
|
1642
1672
|
openOnClick: boolean | undefined;
|
|
@@ -1012,10 +1012,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1012
1012
|
updateLocation: (event: Event) => void;
|
|
1013
1013
|
} | undefined)>;
|
|
1014
1014
|
default: string;
|
|
1015
|
-
validator: (value: any) => boolean;
|
|
1016
|
-
* Событие выбора всех элементов
|
|
1017
|
-
* @type { boolean }
|
|
1018
|
-
*/
|
|
1015
|
+
validator: (value: any) => boolean;
|
|
1019
1016
|
}, "default" | "type"> & {
|
|
1020
1017
|
type: import("vue").PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1021
1018
|
updateLocation: (event: Event) => void;
|
|
@@ -1123,6 +1120,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1123
1120
|
type: import("vue").PropType<Record<string, unknown>>;
|
|
1124
1121
|
default: () => {};
|
|
1125
1122
|
};
|
|
1123
|
+
noClickAnimation: {
|
|
1124
|
+
type: import("vue").PropType<boolean>;
|
|
1125
|
+
default: boolean;
|
|
1126
|
+
};
|
|
1126
1127
|
id: {
|
|
1127
1128
|
type: import("vue").PropType<string>;
|
|
1128
1129
|
default: undefined;
|
|
@@ -1150,10 +1151,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1150
1151
|
updateLocation: (event: Event) => void;
|
|
1151
1152
|
} | undefined)>;
|
|
1152
1153
|
default: string;
|
|
1153
|
-
validator: (value: any) => boolean;
|
|
1154
|
-
* Событие выбора всех элементов
|
|
1155
|
-
* @type { boolean }
|
|
1156
|
-
*/
|
|
1154
|
+
validator: (value: any) => boolean;
|
|
1157
1155
|
};
|
|
1158
1156
|
location: {
|
|
1159
1157
|
type: import("vue").PropType<import('../../utils').TAnchor>;
|
|
@@ -1266,6 +1264,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1266
1264
|
type: import("vue").PropType<Record<string, unknown>>;
|
|
1267
1265
|
default: () => {};
|
|
1268
1266
|
};
|
|
1267
|
+
noClickAnimation: {
|
|
1268
|
+
type: import("vue").PropType<boolean>;
|
|
1269
|
+
default: boolean;
|
|
1270
|
+
};
|
|
1269
1271
|
absolute: {
|
|
1270
1272
|
type: import("vue").PropType<boolean>;
|
|
1271
1273
|
default: boolean;
|
|
@@ -1302,10 +1304,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1302
1304
|
updateLocation: (event: Event) => void;
|
|
1303
1305
|
} | undefined)>;
|
|
1304
1306
|
default: string;
|
|
1305
|
-
validator: (value: any) => boolean;
|
|
1306
|
-
* Событие выбора всех элементов
|
|
1307
|
-
* @type { boolean }
|
|
1308
|
-
*/
|
|
1307
|
+
validator: (value: any) => boolean;
|
|
1309
1308
|
};
|
|
1310
1309
|
location: {
|
|
1311
1310
|
type: import("vue").PropType<import('../../utils').TAnchor>;
|
|
@@ -1418,6 +1417,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1418
1417
|
type: import("vue").PropType<Record<string, unknown>>;
|
|
1419
1418
|
default: () => {};
|
|
1420
1419
|
};
|
|
1420
|
+
noClickAnimation: {
|
|
1421
|
+
type: import("vue").PropType<boolean>;
|
|
1422
|
+
default: boolean;
|
|
1423
|
+
};
|
|
1421
1424
|
absolute: {
|
|
1422
1425
|
type: import("vue").PropType<boolean>;
|
|
1423
1426
|
default: boolean;
|
|
@@ -1442,6 +1445,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1442
1445
|
zIndex: string | number;
|
|
1443
1446
|
contentClasses: string | string[] | Record<string, boolean>;
|
|
1444
1447
|
contentProps: Record<string, unknown>;
|
|
1448
|
+
noClickAnimation: boolean;
|
|
1445
1449
|
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
1446
1450
|
activatorProps: Record<string, any>;
|
|
1447
1451
|
openOnClick: boolean | undefined;
|
|
@@ -1516,10 +1520,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1516
1520
|
updateLocation: (event: Event) => void;
|
|
1517
1521
|
} | undefined)>;
|
|
1518
1522
|
default: string;
|
|
1519
|
-
validator: (value: any) => boolean;
|
|
1520
|
-
* Событие выбора всех элементов
|
|
1521
|
-
* @type { boolean }
|
|
1522
|
-
*/
|
|
1523
|
+
validator: (value: any) => boolean;
|
|
1523
1524
|
}, "default" | "type"> & {
|
|
1524
1525
|
type: import("vue").PropType<NonNullable<"static" | "connected" | ((data: import("../CdsOverlay/composable").ILocationStrategyData, props: import("../CdsOverlay/composable").ILocationStrategyProps, contentStyles: import("vue").Ref<Record<string, string>>) => {
|
|
1525
1526
|
updateLocation: (event: Event) => void;
|
|
@@ -1627,6 +1628,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1627
1628
|
type: import("vue").PropType<Record<string, unknown>>;
|
|
1628
1629
|
default: () => {};
|
|
1629
1630
|
};
|
|
1631
|
+
noClickAnimation: {
|
|
1632
|
+
type: import("vue").PropType<boolean>;
|
|
1633
|
+
default: boolean;
|
|
1634
|
+
};
|
|
1630
1635
|
id: {
|
|
1631
1636
|
type: import("vue").PropType<string>;
|
|
1632
1637
|
default: undefined;
|
|
@@ -1650,6 +1655,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1650
1655
|
zIndex: string | number;
|
|
1651
1656
|
contentClasses: string | string[] | Record<string, boolean>;
|
|
1652
1657
|
contentProps: Record<string, unknown>;
|
|
1658
|
+
noClickAnimation: boolean;
|
|
1653
1659
|
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
1654
1660
|
activatorProps: Record<string, any>;
|
|
1655
1661
|
openOnClick: boolean | undefined;
|
|
@@ -154,6 +154,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
154
154
|
type: PropType<Record<string, unknown>>;
|
|
155
155
|
default: () => {};
|
|
156
156
|
};
|
|
157
|
+
noClickAnimation: {
|
|
158
|
+
type: PropType<boolean>;
|
|
159
|
+
default: boolean;
|
|
160
|
+
};
|
|
157
161
|
/**
|
|
158
162
|
* Уникальный идентификатор
|
|
159
163
|
*/
|
|
@@ -294,6 +298,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
294
298
|
type: PropType<Record<string, unknown>>;
|
|
295
299
|
default: () => {};
|
|
296
300
|
};
|
|
301
|
+
noClickAnimation: {
|
|
302
|
+
type: PropType<boolean>;
|
|
303
|
+
default: boolean;
|
|
304
|
+
};
|
|
297
305
|
absolute: {
|
|
298
306
|
type: PropType<boolean>;
|
|
299
307
|
default: boolean;
|
|
@@ -440,6 +448,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
440
448
|
type: PropType<Record<string, unknown>>;
|
|
441
449
|
default: () => {};
|
|
442
450
|
};
|
|
451
|
+
noClickAnimation: {
|
|
452
|
+
type: PropType<boolean>;
|
|
453
|
+
default: boolean;
|
|
454
|
+
};
|
|
443
455
|
absolute: {
|
|
444
456
|
type: PropType<boolean>;
|
|
445
457
|
default: boolean;
|
|
@@ -464,6 +476,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
464
476
|
zIndex: string | number;
|
|
465
477
|
contentClasses: string | string[] | Record<string, boolean>;
|
|
466
478
|
contentProps: Record<string, unknown>;
|
|
479
|
+
noClickAnimation: boolean;
|
|
467
480
|
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
468
481
|
activatorProps: Record<string, any>;
|
|
469
482
|
openOnClick: boolean | undefined;
|
|
@@ -647,6 +660,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
647
660
|
type: PropType<Record<string, unknown>>;
|
|
648
661
|
default: () => {};
|
|
649
662
|
};
|
|
663
|
+
noClickAnimation: {
|
|
664
|
+
type: PropType<boolean>;
|
|
665
|
+
default: boolean;
|
|
666
|
+
};
|
|
650
667
|
/**
|
|
651
668
|
* Уникальный идентификатор
|
|
652
669
|
*/
|
|
@@ -673,6 +690,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
673
690
|
zIndex: string | number;
|
|
674
691
|
contentClasses: string | string[] | Record<string, boolean>;
|
|
675
692
|
contentProps: Record<string, unknown>;
|
|
693
|
+
noClickAnimation: boolean;
|
|
676
694
|
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
677
695
|
activatorProps: Record<string, any>;
|
|
678
696
|
openOnClick: boolean | undefined;
|
|
@@ -95,6 +95,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
95
95
|
type: PropType<Record<string, unknown>>;
|
|
96
96
|
default: () => {};
|
|
97
97
|
};
|
|
98
|
+
noClickAnimation: {
|
|
99
|
+
type: PropType<boolean>;
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
98
102
|
size: {
|
|
99
103
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
100
104
|
default: string;
|
|
@@ -330,6 +334,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
330
334
|
type: PropType<Record<string, unknown>>;
|
|
331
335
|
default: () => {};
|
|
332
336
|
};
|
|
337
|
+
noClickAnimation: {
|
|
338
|
+
type: PropType<boolean>;
|
|
339
|
+
default: boolean;
|
|
340
|
+
};
|
|
333
341
|
absolute: {
|
|
334
342
|
type: PropType<boolean>;
|
|
335
343
|
default: boolean;
|
|
@@ -482,6 +490,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
482
490
|
type: PropType<Record<string, unknown>>;
|
|
483
491
|
default: () => {};
|
|
484
492
|
};
|
|
493
|
+
noClickAnimation: {
|
|
494
|
+
type: PropType<boolean>;
|
|
495
|
+
default: boolean;
|
|
496
|
+
};
|
|
485
497
|
absolute: {
|
|
486
498
|
type: PropType<boolean>;
|
|
487
499
|
default: boolean;
|
|
@@ -509,6 +521,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
509
521
|
zIndex: string | number;
|
|
510
522
|
contentClasses: string | string[] | Record<string, boolean>;
|
|
511
523
|
contentProps: Record<string, unknown>;
|
|
524
|
+
noClickAnimation: boolean;
|
|
512
525
|
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
513
526
|
activatorProps: Record<string, any>;
|
|
514
527
|
openOnClick: boolean | undefined;
|
|
@@ -632,6 +645,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
632
645
|
type: PropType<Record<string, unknown>>;
|
|
633
646
|
default: () => {};
|
|
634
647
|
};
|
|
648
|
+
noClickAnimation: {
|
|
649
|
+
type: PropType<boolean>;
|
|
650
|
+
default: boolean;
|
|
651
|
+
};
|
|
635
652
|
size: {
|
|
636
653
|
type: PropType<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
637
654
|
default: string;
|
|
@@ -753,6 +770,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
753
770
|
zIndex: NonNullable<string | number>;
|
|
754
771
|
contentClasses: string | string[] | Record<string, boolean>;
|
|
755
772
|
contentProps: Record<string, unknown>;
|
|
773
|
+
noClickAnimation: boolean;
|
|
756
774
|
activator: string | import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | Element;
|
|
757
775
|
activatorProps: Record<string, any>;
|
|
758
776
|
openOnClick: boolean | undefined;
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
export declare const componentName = "CdsNotification";
|
|
3
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
|
+
locale: {
|
|
5
|
+
type: PropType<"ru" | "en" | import("../../locale").ILocale>; /**
|
|
6
|
+
* Состояние уведомления
|
|
7
|
+
*/
|
|
8
|
+
default: undefined;
|
|
9
|
+
};
|
|
10
|
+
tag: {
|
|
11
|
+
type: PropType<string>;
|
|
12
|
+
default: string;
|
|
13
|
+
description: string;
|
|
14
|
+
};
|
|
15
|
+
status: {
|
|
16
|
+
type: PropType<"error" | "info" | "success" | "warning" | "progress">;
|
|
17
|
+
default: string;
|
|
18
|
+
available: readonly ["info", "success", "warning", "error", "progress"]; /**
|
|
19
|
+
* Состояние уведомления
|
|
20
|
+
*/
|
|
21
|
+
description: string;
|
|
22
|
+
validator: (value: "error" | "info" | "success" | "warning" | "progress") => boolean;
|
|
23
|
+
};
|
|
24
|
+
variant: {
|
|
25
|
+
type: PropType<any>;
|
|
26
|
+
default: string;
|
|
27
|
+
validator: (value: "default" | "important") => boolean;
|
|
28
|
+
};
|
|
29
|
+
icon: {
|
|
30
|
+
type: PropType<false | "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
31
|
+
default: null;
|
|
32
|
+
};
|
|
33
|
+
customIcon: {
|
|
34
|
+
type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined>;
|
|
35
|
+
default: undefined;
|
|
36
|
+
validator: (value?: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined) => boolean;
|
|
37
|
+
};
|
|
38
|
+
closable: {
|
|
39
|
+
type: BooleanConstructor;
|
|
40
|
+
default: boolean;
|
|
41
|
+
};
|
|
42
|
+
closeLabel: {
|
|
43
|
+
type: PropType<string>;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
closeIcon: {
|
|
47
|
+
type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
48
|
+
default: string;
|
|
49
|
+
validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
50
|
+
};
|
|
51
|
+
text: {
|
|
52
|
+
type: PropType<string>;
|
|
53
|
+
default: undefined;
|
|
54
|
+
};
|
|
55
|
+
title: {
|
|
56
|
+
type: PropType<string>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Состояние уведомления
|
|
61
|
+
*/
|
|
62
|
+
modelValue: {
|
|
63
|
+
type: PropType<boolean>;
|
|
64
|
+
default: boolean;
|
|
65
|
+
};
|
|
66
|
+
}, () => false | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
67
|
+
[key: string]: any;
|
|
68
|
+
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
69
|
+
/**
|
|
70
|
+
* Событие клика по кнопке закрытия
|
|
71
|
+
* @param event
|
|
72
|
+
*/
|
|
73
|
+
'click:close': (event: MouseEvent) => true;
|
|
74
|
+
/**
|
|
75
|
+
* Событие изменения состояния
|
|
76
|
+
* @param value
|
|
77
|
+
*/
|
|
78
|
+
'update:modelValue': (value: boolean) => true;
|
|
79
|
+
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
80
|
+
locale: {
|
|
81
|
+
type: PropType<"ru" | "en" | import("../../locale").ILocale>; /**
|
|
82
|
+
* Состояние уведомления
|
|
83
|
+
*/
|
|
84
|
+
default: undefined;
|
|
85
|
+
};
|
|
86
|
+
tag: {
|
|
87
|
+
type: PropType<string>;
|
|
88
|
+
default: string;
|
|
89
|
+
description: string;
|
|
90
|
+
};
|
|
91
|
+
status: {
|
|
92
|
+
type: PropType<"error" | "info" | "success" | "warning" | "progress">;
|
|
93
|
+
default: string;
|
|
94
|
+
available: readonly ["info", "success", "warning", "error", "progress"]; /**
|
|
95
|
+
* Состояние уведомления
|
|
96
|
+
*/
|
|
97
|
+
description: string;
|
|
98
|
+
validator: (value: "error" | "info" | "success" | "warning" | "progress") => boolean;
|
|
99
|
+
};
|
|
100
|
+
variant: {
|
|
101
|
+
type: PropType<any>;
|
|
102
|
+
default: string;
|
|
103
|
+
validator: (value: "default" | "important") => boolean;
|
|
104
|
+
};
|
|
105
|
+
icon: {
|
|
106
|
+
type: PropType<false | "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
107
|
+
default: null;
|
|
108
|
+
};
|
|
109
|
+
customIcon: {
|
|
110
|
+
type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined>;
|
|
111
|
+
default: undefined;
|
|
112
|
+
validator: (value?: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined) => boolean;
|
|
113
|
+
};
|
|
114
|
+
closable: {
|
|
115
|
+
type: BooleanConstructor;
|
|
116
|
+
default: boolean;
|
|
117
|
+
};
|
|
118
|
+
closeLabel: {
|
|
119
|
+
type: PropType<string>;
|
|
120
|
+
default: string;
|
|
121
|
+
};
|
|
122
|
+
closeIcon: {
|
|
123
|
+
type: PropType<"link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube">;
|
|
124
|
+
default: string;
|
|
125
|
+
validator: (value: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube") => boolean;
|
|
126
|
+
};
|
|
127
|
+
text: {
|
|
128
|
+
type: PropType<string>;
|
|
129
|
+
default: undefined;
|
|
130
|
+
};
|
|
131
|
+
title: {
|
|
132
|
+
type: PropType<string>;
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* Состояние уведомления
|
|
137
|
+
*/
|
|
138
|
+
modelValue: {
|
|
139
|
+
type: PropType<boolean>;
|
|
140
|
+
default: boolean;
|
|
141
|
+
};
|
|
142
|
+
}>> & {
|
|
143
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
144
|
+
"onClick:close"?: ((event: MouseEvent) => any) | undefined;
|
|
145
|
+
}, {
|
|
146
|
+
text: string;
|
|
147
|
+
tag: string;
|
|
148
|
+
title: string;
|
|
149
|
+
icon: false | "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
150
|
+
modelValue: boolean;
|
|
151
|
+
locale: "ru" | "en" | import("../../locale").ILocale;
|
|
152
|
+
variant: any;
|
|
153
|
+
customIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube" | undefined;
|
|
154
|
+
closable: boolean;
|
|
155
|
+
closeLabel: string;
|
|
156
|
+
closeIcon: "link" | "filters" | "search" | "add" | "alert-fill" | "alert" | "analog" | "arrow-down" | "arrow-left-bottom" | "arrow-left-top" | "arrow-left" | "arrow-right-bottom" | "arrow-right-top" | "arrow-right" | "arrow-up" | "arrows-vertical" | "calendar" | "card-bank" | "category" | "check-fill" | "check" | "checkbox-fill" | "checkbox" | "chevron-down" | "chevron-left" | "chevron-right" | "chevron-up" | "chocolate-menu" | "clock" | "comment" | "company" | "compare" | "copy" | "data-cards" | "delete" | "directory" | "doc-download" | "doc" | "download" | "draggable" | "edit" | "enter" | "error-fill" | "error" | "external" | "facebook-fill" | "facebook" | "flag" | "funnel" | "globe" | "infinity" | "info-fill" | "info" | "list-search" | "list" | "loader" | "location" | "locked" | "login" | "logout" | "menu" | "minus" | "notification" | "overflow-menu-horizontal" | "overflow-menu-vertical" | "password" | "pin" | "plus" | "printer" | "question-fill" | "question" | "refresh" | "remove" | "sandglass" | "save" | "settings" | "shopping-cart" | "sort-date" | "star-fill" | "star" | "telegram" | "timer" | "tool" | "truck" | "unlocked" | "upload" | "user-avatar" | "user-group" | "visibility-off" | "visibility-on" | "vk" | "winner" | "workspace" | "youtube";
|
|
157
|
+
status: "error" | "info" | "success" | "warning" | "progress";
|
|
158
|
+
}>;
|
|
159
|
+
export default _sfc_main;
|