@uzum-tech/ui 1.8.0 → 1.8.2
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/index.js +378 -197
- package/dist/index.prod.js +3 -3
- package/es/_internal/scrollbar/src/Scrollbar.js +1 -1
- package/es/button/src/Button.d.ts +72 -0
- package/es/button/src/Button.js +13 -7
- package/es/button/src/styles/index.cssr.js +1 -2
- package/es/button/styles/light.d.ts +8 -0
- package/es/button/styles/light.js +7 -7
- package/es/calendar/src/Calendar.d.ts +80 -0
- package/es/calendar/styles/light.d.ts +8 -0
- package/es/chat/index.d.ts +2 -1
- package/es/chat/index.js +1 -0
- package/es/chat/src/Chat.d.ts +87 -7
- package/es/chat/src/Chat.js +12 -12
- package/es/chat/src/ChatListItems.d.ts +1847 -4
- package/es/chat/src/ChatListItems.js +16 -12
- package/es/chat/src/ChatMessages.d.ts +1848 -4
- package/es/chat/src/ChatMessages.js +27 -10
- package/es/chat/src/ChatParts/MainArea.js +10 -10
- package/es/chat/src/ChatParts/Sidebar.js +2 -2
- package/es/chat/src/interface.d.ts +4 -0
- package/es/chat/src/styles/index.cssr.js +14 -17
- package/es/chat/styles/dark.d.ts +8 -0
- package/es/chat/styles/light.d.ts +9 -1
- package/es/chat/styles/light.js +15 -3
- package/es/color-picker/src/ColorInputUnit.d.ts +8 -0
- package/es/color-picker/src/ColorPicker.d.ts +72 -0
- package/es/color-picker/styles/light.d.ts +8 -0
- package/es/data-table/src/DataTable.d.ts +56 -0
- package/es/data-table/src/HeaderButton/FilterButton.d.ts +8 -0
- package/es/data-table/src/HeaderButton/FilterMenu.d.ts +8 -0
- package/es/data-table/src/TableParts/Body.d.ts +8 -0
- package/es/data-table/src/TableParts/Header.d.ts +8 -0
- package/es/data-table/src/interface.d.ts +24 -0
- package/es/data-table/styles/light.d.ts +8 -0
- package/es/date-picker/src/DatePicker.d.ts +168 -0
- package/es/date-picker/src/panel/date.d.ts +24 -0
- package/es/date-picker/src/panel/daterange.d.ts +24 -0
- package/es/date-picker/src/panel/datetime.d.ts +24 -0
- package/es/date-picker/src/panel/datetimerange.d.ts +24 -0
- package/es/date-picker/src/panel/panelMonth.d.ts +48 -0
- package/es/date-picker/src/panel/panelMonthContent.d.ts +24 -0
- package/es/date-picker/src/panel/panelYear.d.ts +48 -0
- package/es/date-picker/src/panel/panelYearContent.d.ts +24 -0
- package/es/date-picker/src/panel/use-calendar.d.ts +24 -0
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +24 -0
- package/es/date-picker/src/panel/use-panel-common.d.ts +24 -0
- package/es/date-picker/styles/light.d.ts +16 -0
- package/es/dialog/src/Dialog.d.ts +56 -0
- package/es/dialog/src/DialogProvider.d.ts +16 -0
- package/es/dialog/styles/light.d.ts +8 -0
- package/es/dynamic-input/src/DynamicInput.d.ts +80 -0
- package/es/dynamic-input/src/InputPreset.d.ts +8 -0
- package/es/dynamic-input/src/PairPreset.d.ts +8 -0
- package/es/dynamic-input/styles/light.d.ts +8 -0
- package/es/dynamic-tags/src/DynamicTags.d.ts +80 -0
- package/es/dynamic-tags/styles/light.d.ts +8 -0
- package/es/input-number/src/InputNumber.d.ts +80 -0
- package/es/input-number/styles/light.d.ts +8 -0
- package/es/legacy-transfer/src/Transfer.d.ts +80 -0
- package/es/legacy-transfer/src/TransferFilter.d.ts +8 -0
- package/es/legacy-transfer/src/TransferList.d.ts +8 -0
- package/es/legacy-transfer/src/TransferListItem.d.ts +8 -0
- package/es/legacy-transfer/styles/light.d.ts +8 -0
- package/es/modal/src/BodyWrapper.d.ts +16 -0
- package/es/modal/src/Modal.d.ts +72 -0
- package/es/modal/styles/light.d.ts +8 -0
- package/es/notification/src/Notification.d.ts +5 -0
- package/es/notification/src/Notification.js +16 -6
- package/es/notification/src/NotificationContainer.d.ts +12 -0
- package/es/notification/src/NotificationProvider.d.ts +108 -0
- package/es/notification/src/styles/index.cssr.js +12 -8
- package/es/notification/styles/light.d.ts +24 -0
- package/es/notification/styles/light.js +9 -8
- package/es/popconfirm/src/Popconfirm.d.ts +80 -0
- package/es/popconfirm/styles/light.d.ts +8 -0
- package/es/time-picker/src/Panel.d.ts +8 -0
- package/es/time-picker/src/TimePicker.d.ts +80 -0
- package/es/time-picker/styles/light.d.ts +8 -0
- package/es/transfer/src/Transfer.d.ts +80 -0
- package/es/transfer/src/TransferFilter.d.ts +8 -0
- package/es/transfer/src/TransferList.d.ts +8 -0
- package/es/transfer/src/TransferListItem.d.ts +8 -0
- package/es/transfer/styles/light.d.ts +8 -0
- package/es/upload/src/Upload.d.ts +90 -0
- package/es/upload/src/Upload.js +2 -1
- package/es/upload/src/UploadFile.d.ts +9 -0
- package/es/upload/src/UploadProgress.d.ts +9 -0
- package/es/upload/src/styles/index.cssr.js +1 -0
- package/es/upload/src/useUploadActionsRender.js +5 -1
- package/es/upload/styles/light.d.ts +10 -0
- package/es/upload/styles/light.js +6 -5
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/scrollbar/src/Scrollbar.js +1 -1
- package/lib/button/src/Button.d.ts +72 -0
- package/lib/button/src/Button.js +13 -7
- package/lib/button/src/styles/index.cssr.js +1 -2
- package/lib/button/styles/light.d.ts +8 -0
- package/lib/button/styles/light.js +7 -7
- package/lib/calendar/src/Calendar.d.ts +80 -0
- package/lib/calendar/styles/light.d.ts +8 -0
- package/lib/chat/index.d.ts +2 -1
- package/lib/chat/index.js +5 -1
- package/lib/chat/src/Chat.d.ts +87 -7
- package/lib/chat/src/Chat.js +12 -12
- package/lib/chat/src/ChatListItems.d.ts +1847 -4
- package/lib/chat/src/ChatListItems.js +14 -10
- package/lib/chat/src/ChatMessages.d.ts +1848 -4
- package/lib/chat/src/ChatMessages.js +25 -8
- package/lib/chat/src/ChatParts/MainArea.js +10 -10
- package/lib/chat/src/ChatParts/Sidebar.js +2 -2
- package/lib/chat/src/interface.d.ts +4 -0
- package/lib/chat/src/styles/index.cssr.js +14 -17
- package/lib/chat/styles/dark.d.ts +8 -0
- package/lib/chat/styles/light.d.ts +9 -1
- package/lib/chat/styles/light.js +15 -3
- package/lib/color-picker/src/ColorInputUnit.d.ts +8 -0
- package/lib/color-picker/src/ColorPicker.d.ts +72 -0
- package/lib/color-picker/styles/light.d.ts +8 -0
- package/lib/data-table/src/DataTable.d.ts +56 -0
- package/lib/data-table/src/HeaderButton/FilterButton.d.ts +8 -0
- package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +8 -0
- package/lib/data-table/src/TableParts/Body.d.ts +8 -0
- package/lib/data-table/src/TableParts/Header.d.ts +8 -0
- package/lib/data-table/src/interface.d.ts +24 -0
- package/lib/data-table/styles/light.d.ts +8 -0
- package/lib/date-picker/src/DatePicker.d.ts +168 -0
- package/lib/date-picker/src/panel/date.d.ts +24 -0
- package/lib/date-picker/src/panel/daterange.d.ts +24 -0
- package/lib/date-picker/src/panel/datetime.d.ts +24 -0
- package/lib/date-picker/src/panel/datetimerange.d.ts +24 -0
- package/lib/date-picker/src/panel/panelMonth.d.ts +48 -0
- package/lib/date-picker/src/panel/panelMonthContent.d.ts +24 -0
- package/lib/date-picker/src/panel/panelYear.d.ts +48 -0
- package/lib/date-picker/src/panel/panelYearContent.d.ts +24 -0
- package/lib/date-picker/src/panel/use-calendar.d.ts +24 -0
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +24 -0
- package/lib/date-picker/src/panel/use-panel-common.d.ts +24 -0
- package/lib/date-picker/styles/light.d.ts +16 -0
- package/lib/dialog/src/Dialog.d.ts +56 -0
- package/lib/dialog/src/DialogProvider.d.ts +16 -0
- package/lib/dialog/styles/light.d.ts +8 -0
- package/lib/dynamic-input/src/DynamicInput.d.ts +80 -0
- package/lib/dynamic-input/src/InputPreset.d.ts +8 -0
- package/lib/dynamic-input/src/PairPreset.d.ts +8 -0
- package/lib/dynamic-input/styles/light.d.ts +8 -0
- package/lib/dynamic-tags/src/DynamicTags.d.ts +80 -0
- package/lib/dynamic-tags/styles/light.d.ts +8 -0
- package/lib/input-number/src/InputNumber.d.ts +80 -0
- package/lib/input-number/styles/light.d.ts +8 -0
- package/lib/legacy-transfer/src/Transfer.d.ts +80 -0
- package/lib/legacy-transfer/src/TransferFilter.d.ts +8 -0
- package/lib/legacy-transfer/src/TransferList.d.ts +8 -0
- package/lib/legacy-transfer/src/TransferListItem.d.ts +8 -0
- package/lib/legacy-transfer/styles/light.d.ts +8 -0
- package/lib/modal/src/BodyWrapper.d.ts +16 -0
- package/lib/modal/src/Modal.d.ts +72 -0
- package/lib/modal/styles/light.d.ts +8 -0
- package/lib/notification/src/Notification.d.ts +5 -0
- package/lib/notification/src/Notification.js +14 -4
- package/lib/notification/src/NotificationContainer.d.ts +12 -0
- package/lib/notification/src/NotificationProvider.d.ts +108 -0
- package/lib/notification/src/styles/index.cssr.js +12 -8
- package/lib/notification/styles/light.d.ts +24 -0
- package/lib/notification/styles/light.js +9 -8
- package/lib/popconfirm/src/Popconfirm.d.ts +80 -0
- package/lib/popconfirm/styles/light.d.ts +8 -0
- package/lib/time-picker/src/Panel.d.ts +8 -0
- package/lib/time-picker/src/TimePicker.d.ts +80 -0
- package/lib/time-picker/styles/light.d.ts +8 -0
- package/lib/transfer/src/Transfer.d.ts +80 -0
- package/lib/transfer/src/TransferFilter.d.ts +8 -0
- package/lib/transfer/src/TransferList.d.ts +8 -0
- package/lib/transfer/src/TransferListItem.d.ts +8 -0
- package/lib/transfer/styles/light.d.ts +8 -0
- package/lib/upload/src/Upload.d.ts +90 -0
- package/lib/upload/src/Upload.js +2 -1
- package/lib/upload/src/UploadFile.d.ts +9 -0
- package/lib/upload/src/UploadProgress.d.ts +9 -0
- package/lib/upload/src/styles/index.cssr.js +1 -0
- package/lib/upload/src/useUploadActionsRender.js +5 -1
- package/lib/upload/styles/light.d.ts +10 -0
- package/lib/upload/styles/light.js +6 -5
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +4 -4
|
@@ -241,16 +241,24 @@ export declare const transferProps: {
|
|
|
241
241
|
colorSecondary: string;
|
|
242
242
|
colorSecondaryHover: string;
|
|
243
243
|
colorSecondaryPressed: string;
|
|
244
|
+
colorSecondaryFocus: string;
|
|
245
|
+
colorSecondaryDisabled: string;
|
|
246
|
+
textColorSecondaryDisabled: string;
|
|
244
247
|
waveColorSecondary: string;
|
|
245
248
|
colorTertiary: string;
|
|
246
249
|
colorTertiaryHover: string;
|
|
247
250
|
colorTertiaryPressed: string;
|
|
251
|
+
colorTertiaryFocus: string;
|
|
248
252
|
colorTertiaryDisalbed: string;
|
|
249
253
|
waveColorTertiary: string;
|
|
250
254
|
textColorTextTertiary: string;
|
|
255
|
+
rippleColorTertiary: string;
|
|
251
256
|
colorQuaternary: string;
|
|
252
257
|
colorQuaternaryHover: string;
|
|
253
258
|
colorQuaternaryPressed: string;
|
|
259
|
+
colorQuaternaryFocus: string;
|
|
260
|
+
rippleColorQuaternary: string;
|
|
261
|
+
waveColorQuaternary: string;
|
|
254
262
|
color: string;
|
|
255
263
|
colorHover: string;
|
|
256
264
|
colorPressed: string;
|
|
@@ -629,16 +637,24 @@ export declare const transferProps: {
|
|
|
629
637
|
colorSecondary: string;
|
|
630
638
|
colorSecondaryHover: string;
|
|
631
639
|
colorSecondaryPressed: string;
|
|
640
|
+
colorSecondaryFocus: string;
|
|
641
|
+
colorSecondaryDisabled: string;
|
|
642
|
+
textColorSecondaryDisabled: string;
|
|
632
643
|
waveColorSecondary: string;
|
|
633
644
|
colorTertiary: string;
|
|
634
645
|
colorTertiaryHover: string;
|
|
635
646
|
colorTertiaryPressed: string;
|
|
647
|
+
colorTertiaryFocus: string;
|
|
636
648
|
colorTertiaryDisalbed: string;
|
|
637
649
|
waveColorTertiary: string;
|
|
638
650
|
textColorTextTertiary: string;
|
|
651
|
+
rippleColorTertiary: string;
|
|
639
652
|
colorQuaternary: string;
|
|
640
653
|
colorQuaternaryHover: string;
|
|
641
654
|
colorQuaternaryPressed: string;
|
|
655
|
+
colorQuaternaryFocus: string;
|
|
656
|
+
rippleColorQuaternary: string;
|
|
657
|
+
waveColorQuaternary: string;
|
|
642
658
|
color: string;
|
|
643
659
|
colorHover: string;
|
|
644
660
|
colorPressed: string;
|
|
@@ -1017,16 +1033,24 @@ export declare const transferProps: {
|
|
|
1017
1033
|
colorSecondary: string;
|
|
1018
1034
|
colorSecondaryHover: string;
|
|
1019
1035
|
colorSecondaryPressed: string;
|
|
1036
|
+
colorSecondaryFocus: string;
|
|
1037
|
+
colorSecondaryDisabled: string;
|
|
1038
|
+
textColorSecondaryDisabled: string;
|
|
1020
1039
|
waveColorSecondary: string;
|
|
1021
1040
|
colorTertiary: string;
|
|
1022
1041
|
colorTertiaryHover: string;
|
|
1023
1042
|
colorTertiaryPressed: string;
|
|
1043
|
+
colorTertiaryFocus: string;
|
|
1024
1044
|
colorTertiaryDisalbed: string;
|
|
1025
1045
|
waveColorTertiary: string;
|
|
1026
1046
|
textColorTextTertiary: string;
|
|
1047
|
+
rippleColorTertiary: string;
|
|
1027
1048
|
colorQuaternary: string;
|
|
1028
1049
|
colorQuaternaryHover: string;
|
|
1029
1050
|
colorQuaternaryPressed: string;
|
|
1051
|
+
colorQuaternaryFocus: string;
|
|
1052
|
+
rippleColorQuaternary: string;
|
|
1053
|
+
waveColorQuaternary: string;
|
|
1030
1054
|
color: string;
|
|
1031
1055
|
colorHover: string;
|
|
1032
1056
|
colorPressed: string;
|
|
@@ -1450,16 +1474,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1450
1474
|
colorSecondary: string;
|
|
1451
1475
|
colorSecondaryHover: string;
|
|
1452
1476
|
colorSecondaryPressed: string;
|
|
1477
|
+
colorSecondaryFocus: string;
|
|
1478
|
+
colorSecondaryDisabled: string;
|
|
1479
|
+
textColorSecondaryDisabled: string;
|
|
1453
1480
|
waveColorSecondary: string;
|
|
1454
1481
|
colorTertiary: string;
|
|
1455
1482
|
colorTertiaryHover: string;
|
|
1456
1483
|
colorTertiaryPressed: string;
|
|
1484
|
+
colorTertiaryFocus: string;
|
|
1457
1485
|
colorTertiaryDisalbed: string;
|
|
1458
1486
|
waveColorTertiary: string;
|
|
1459
1487
|
textColorTextTertiary: string;
|
|
1488
|
+
rippleColorTertiary: string;
|
|
1460
1489
|
colorQuaternary: string;
|
|
1461
1490
|
colorQuaternaryHover: string;
|
|
1462
1491
|
colorQuaternaryPressed: string;
|
|
1492
|
+
colorQuaternaryFocus: string;
|
|
1493
|
+
rippleColorQuaternary: string;
|
|
1494
|
+
waveColorQuaternary: string;
|
|
1463
1495
|
color: string;
|
|
1464
1496
|
colorHover: string;
|
|
1465
1497
|
colorPressed: string;
|
|
@@ -1838,16 +1870,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1838
1870
|
colorSecondary: string;
|
|
1839
1871
|
colorSecondaryHover: string;
|
|
1840
1872
|
colorSecondaryPressed: string;
|
|
1873
|
+
colorSecondaryFocus: string;
|
|
1874
|
+
colorSecondaryDisabled: string;
|
|
1875
|
+
textColorSecondaryDisabled: string;
|
|
1841
1876
|
waveColorSecondary: string;
|
|
1842
1877
|
colorTertiary: string;
|
|
1843
1878
|
colorTertiaryHover: string;
|
|
1844
1879
|
colorTertiaryPressed: string;
|
|
1880
|
+
colorTertiaryFocus: string;
|
|
1845
1881
|
colorTertiaryDisalbed: string;
|
|
1846
1882
|
waveColorTertiary: string;
|
|
1847
1883
|
textColorTextTertiary: string;
|
|
1884
|
+
rippleColorTertiary: string;
|
|
1848
1885
|
colorQuaternary: string;
|
|
1849
1886
|
colorQuaternaryHover: string;
|
|
1850
1887
|
colorQuaternaryPressed: string;
|
|
1888
|
+
colorQuaternaryFocus: string;
|
|
1889
|
+
rippleColorQuaternary: string;
|
|
1890
|
+
waveColorQuaternary: string;
|
|
1851
1891
|
color: string;
|
|
1852
1892
|
colorHover: string;
|
|
1853
1893
|
colorPressed: string;
|
|
@@ -2226,16 +2266,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2226
2266
|
colorSecondary: string;
|
|
2227
2267
|
colorSecondaryHover: string;
|
|
2228
2268
|
colorSecondaryPressed: string;
|
|
2269
|
+
colorSecondaryFocus: string;
|
|
2270
|
+
colorSecondaryDisabled: string;
|
|
2271
|
+
textColorSecondaryDisabled: string;
|
|
2229
2272
|
waveColorSecondary: string;
|
|
2230
2273
|
colorTertiary: string;
|
|
2231
2274
|
colorTertiaryHover: string;
|
|
2232
2275
|
colorTertiaryPressed: string;
|
|
2276
|
+
colorTertiaryFocus: string;
|
|
2233
2277
|
colorTertiaryDisalbed: string;
|
|
2234
2278
|
waveColorTertiary: string;
|
|
2235
2279
|
textColorTextTertiary: string;
|
|
2280
|
+
rippleColorTertiary: string;
|
|
2236
2281
|
colorQuaternary: string;
|
|
2237
2282
|
colorQuaternaryHover: string;
|
|
2238
2283
|
colorQuaternaryPressed: string;
|
|
2284
|
+
colorQuaternaryFocus: string;
|
|
2285
|
+
rippleColorQuaternary: string;
|
|
2286
|
+
waveColorQuaternary: string;
|
|
2239
2287
|
color: string;
|
|
2240
2288
|
colorHover: string;
|
|
2241
2289
|
colorPressed: string;
|
|
@@ -2622,16 +2670,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2622
2670
|
colorSecondary: string;
|
|
2623
2671
|
colorSecondaryHover: string;
|
|
2624
2672
|
colorSecondaryPressed: string;
|
|
2673
|
+
colorSecondaryFocus: string;
|
|
2674
|
+
colorSecondaryDisabled: string;
|
|
2675
|
+
textColorSecondaryDisabled: string;
|
|
2625
2676
|
waveColorSecondary: string;
|
|
2626
2677
|
colorTertiary: string;
|
|
2627
2678
|
colorTertiaryHover: string;
|
|
2628
2679
|
colorTertiaryPressed: string;
|
|
2680
|
+
colorTertiaryFocus: string;
|
|
2629
2681
|
colorTertiaryDisalbed: string;
|
|
2630
2682
|
waveColorTertiary: string;
|
|
2631
2683
|
textColorTextTertiary: string;
|
|
2684
|
+
rippleColorTertiary: string;
|
|
2632
2685
|
colorQuaternary: string;
|
|
2633
2686
|
colorQuaternaryHover: string;
|
|
2634
2687
|
colorQuaternaryPressed: string;
|
|
2688
|
+
colorQuaternaryFocus: string;
|
|
2689
|
+
rippleColorQuaternary: string;
|
|
2690
|
+
waveColorQuaternary: string;
|
|
2635
2691
|
color: string;
|
|
2636
2692
|
colorHover: string;
|
|
2637
2693
|
colorPressed: string;
|
|
@@ -3121,16 +3177,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3121
3177
|
colorSecondary: string;
|
|
3122
3178
|
colorSecondaryHover: string;
|
|
3123
3179
|
colorSecondaryPressed: string;
|
|
3180
|
+
colorSecondaryFocus: string;
|
|
3181
|
+
colorSecondaryDisabled: string;
|
|
3182
|
+
textColorSecondaryDisabled: string;
|
|
3124
3183
|
waveColorSecondary: string;
|
|
3125
3184
|
colorTertiary: string;
|
|
3126
3185
|
colorTertiaryHover: string;
|
|
3127
3186
|
colorTertiaryPressed: string;
|
|
3187
|
+
colorTertiaryFocus: string;
|
|
3128
3188
|
colorTertiaryDisalbed: string;
|
|
3129
3189
|
waveColorTertiary: string;
|
|
3130
3190
|
textColorTextTertiary: string;
|
|
3191
|
+
rippleColorTertiary: string;
|
|
3131
3192
|
colorQuaternary: string;
|
|
3132
3193
|
colorQuaternaryHover: string;
|
|
3133
3194
|
colorQuaternaryPressed: string;
|
|
3195
|
+
colorQuaternaryFocus: string;
|
|
3196
|
+
rippleColorQuaternary: string;
|
|
3197
|
+
waveColorQuaternary: string;
|
|
3134
3198
|
color: string;
|
|
3135
3199
|
colorHover: string;
|
|
3136
3200
|
colorPressed: string;
|
|
@@ -3509,16 +3573,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3509
3573
|
colorSecondary: string;
|
|
3510
3574
|
colorSecondaryHover: string;
|
|
3511
3575
|
colorSecondaryPressed: string;
|
|
3576
|
+
colorSecondaryFocus: string;
|
|
3577
|
+
colorSecondaryDisabled: string;
|
|
3578
|
+
textColorSecondaryDisabled: string;
|
|
3512
3579
|
waveColorSecondary: string;
|
|
3513
3580
|
colorTertiary: string;
|
|
3514
3581
|
colorTertiaryHover: string;
|
|
3515
3582
|
colorTertiaryPressed: string;
|
|
3583
|
+
colorTertiaryFocus: string;
|
|
3516
3584
|
colorTertiaryDisalbed: string;
|
|
3517
3585
|
waveColorTertiary: string;
|
|
3518
3586
|
textColorTextTertiary: string;
|
|
3587
|
+
rippleColorTertiary: string;
|
|
3519
3588
|
colorQuaternary: string;
|
|
3520
3589
|
colorQuaternaryHover: string;
|
|
3521
3590
|
colorQuaternaryPressed: string;
|
|
3591
|
+
colorQuaternaryFocus: string;
|
|
3592
|
+
rippleColorQuaternary: string;
|
|
3593
|
+
waveColorQuaternary: string;
|
|
3522
3594
|
color: string;
|
|
3523
3595
|
colorHover: string;
|
|
3524
3596
|
colorPressed: string;
|
|
@@ -3897,16 +3969,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
3897
3969
|
colorSecondary: string;
|
|
3898
3970
|
colorSecondaryHover: string;
|
|
3899
3971
|
colorSecondaryPressed: string;
|
|
3972
|
+
colorSecondaryFocus: string;
|
|
3973
|
+
colorSecondaryDisabled: string;
|
|
3974
|
+
textColorSecondaryDisabled: string;
|
|
3900
3975
|
waveColorSecondary: string;
|
|
3901
3976
|
colorTertiary: string;
|
|
3902
3977
|
colorTertiaryHover: string;
|
|
3903
3978
|
colorTertiaryPressed: string;
|
|
3979
|
+
colorTertiaryFocus: string;
|
|
3904
3980
|
colorTertiaryDisalbed: string;
|
|
3905
3981
|
waveColorTertiary: string;
|
|
3906
3982
|
textColorTextTertiary: string;
|
|
3983
|
+
rippleColorTertiary: string;
|
|
3907
3984
|
colorQuaternary: string;
|
|
3908
3985
|
colorQuaternaryHover: string;
|
|
3909
3986
|
colorQuaternaryPressed: string;
|
|
3987
|
+
colorQuaternaryFocus: string;
|
|
3988
|
+
rippleColorQuaternary: string;
|
|
3989
|
+
waveColorQuaternary: string;
|
|
3910
3990
|
color: string;
|
|
3911
3991
|
colorHover: string;
|
|
3912
3992
|
colorPressed: string;
|
|
@@ -209,16 +209,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
209
209
|
colorSecondary: string;
|
|
210
210
|
colorSecondaryHover: string;
|
|
211
211
|
colorSecondaryPressed: string;
|
|
212
|
+
colorSecondaryFocus: string;
|
|
213
|
+
colorSecondaryDisabled: string;
|
|
214
|
+
textColorSecondaryDisabled: string;
|
|
212
215
|
waveColorSecondary: string;
|
|
213
216
|
colorTertiary: string;
|
|
214
217
|
colorTertiaryHover: string;
|
|
215
218
|
colorTertiaryPressed: string;
|
|
219
|
+
colorTertiaryFocus: string;
|
|
216
220
|
colorTertiaryDisalbed: string;
|
|
217
221
|
waveColorTertiary: string;
|
|
218
222
|
textColorTextTertiary: string;
|
|
223
|
+
rippleColorTertiary: string;
|
|
219
224
|
colorQuaternary: string;
|
|
220
225
|
colorQuaternaryHover: string;
|
|
221
226
|
colorQuaternaryPressed: string;
|
|
227
|
+
colorQuaternaryFocus: string;
|
|
228
|
+
rippleColorQuaternary: string;
|
|
229
|
+
waveColorQuaternary: string;
|
|
222
230
|
color: string;
|
|
223
231
|
colorHover: string;
|
|
224
232
|
colorPressed: string;
|
|
@@ -219,16 +219,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
219
219
|
colorSecondary: string;
|
|
220
220
|
colorSecondaryHover: string;
|
|
221
221
|
colorSecondaryPressed: string;
|
|
222
|
+
colorSecondaryFocus: string;
|
|
223
|
+
colorSecondaryDisabled: string;
|
|
224
|
+
textColorSecondaryDisabled: string;
|
|
222
225
|
waveColorSecondary: string;
|
|
223
226
|
colorTertiary: string;
|
|
224
227
|
colorTertiaryHover: string;
|
|
225
228
|
colorTertiaryPressed: string;
|
|
229
|
+
colorTertiaryFocus: string;
|
|
226
230
|
colorTertiaryDisalbed: string;
|
|
227
231
|
waveColorTertiary: string;
|
|
228
232
|
textColorTextTertiary: string;
|
|
233
|
+
rippleColorTertiary: string;
|
|
229
234
|
colorQuaternary: string;
|
|
230
235
|
colorQuaternaryHover: string;
|
|
231
236
|
colorQuaternaryPressed: string;
|
|
237
|
+
colorQuaternaryFocus: string;
|
|
238
|
+
rippleColorQuaternary: string;
|
|
239
|
+
waveColorQuaternary: string;
|
|
232
240
|
color: string;
|
|
233
241
|
colorHover: string;
|
|
234
242
|
colorPressed: string;
|
|
@@ -217,16 +217,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
217
217
|
colorSecondary: string;
|
|
218
218
|
colorSecondaryHover: string;
|
|
219
219
|
colorSecondaryPressed: string;
|
|
220
|
+
colorSecondaryFocus: string;
|
|
221
|
+
colorSecondaryDisabled: string;
|
|
222
|
+
textColorSecondaryDisabled: string;
|
|
220
223
|
waveColorSecondary: string;
|
|
221
224
|
colorTertiary: string;
|
|
222
225
|
colorTertiaryHover: string;
|
|
223
226
|
colorTertiaryPressed: string;
|
|
227
|
+
colorTertiaryFocus: string;
|
|
224
228
|
colorTertiaryDisalbed: string;
|
|
225
229
|
waveColorTertiary: string;
|
|
226
230
|
textColorTextTertiary: string;
|
|
231
|
+
rippleColorTertiary: string;
|
|
227
232
|
colorQuaternary: string;
|
|
228
233
|
colorQuaternaryHover: string;
|
|
229
234
|
colorQuaternaryPressed: string;
|
|
235
|
+
colorQuaternaryFocus: string;
|
|
236
|
+
rippleColorQuaternary: string;
|
|
237
|
+
waveColorQuaternary: string;
|
|
230
238
|
color: string;
|
|
231
239
|
colorHover: string;
|
|
232
240
|
colorPressed: string;
|
|
@@ -234,16 +234,24 @@ declare const transferLight: import("../../_mixins").Theme<"Transfer", {
|
|
|
234
234
|
colorSecondary: string;
|
|
235
235
|
colorSecondaryHover: string;
|
|
236
236
|
colorSecondaryPressed: string;
|
|
237
|
+
colorSecondaryFocus: string;
|
|
238
|
+
colorSecondaryDisabled: string;
|
|
239
|
+
textColorSecondaryDisabled: string;
|
|
237
240
|
waveColorSecondary: string;
|
|
238
241
|
colorTertiary: string;
|
|
239
242
|
colorTertiaryHover: string;
|
|
240
243
|
colorTertiaryPressed: string;
|
|
244
|
+
colorTertiaryFocus: string;
|
|
241
245
|
colorTertiaryDisalbed: string;
|
|
242
246
|
waveColorTertiary: string;
|
|
243
247
|
textColorTextTertiary: string;
|
|
248
|
+
rippleColorTertiary: string;
|
|
244
249
|
colorQuaternary: string;
|
|
245
250
|
colorQuaternaryHover: string;
|
|
246
251
|
colorQuaternaryPressed: string;
|
|
252
|
+
colorQuaternaryFocus: string;
|
|
253
|
+
rippleColorQuaternary: string;
|
|
254
|
+
waveColorQuaternary: string;
|
|
247
255
|
color: string;
|
|
248
256
|
colorHover: string;
|
|
249
257
|
colorPressed: string;
|
|
@@ -116,6 +116,7 @@ export declare const uploadProps: {
|
|
|
116
116
|
draggerColor: string;
|
|
117
117
|
draggerBorder: string;
|
|
118
118
|
draggerBorderHover: string;
|
|
119
|
+
draggerShadowFocus: string;
|
|
119
120
|
itemColorHover: string;
|
|
120
121
|
itemColorHoverError: string;
|
|
121
122
|
itemTextColor: string;
|
|
@@ -158,16 +159,24 @@ export declare const uploadProps: {
|
|
|
158
159
|
colorSecondary: string;
|
|
159
160
|
colorSecondaryHover: string;
|
|
160
161
|
colorSecondaryPressed: string;
|
|
162
|
+
colorSecondaryFocus: string;
|
|
163
|
+
colorSecondaryDisabled: string;
|
|
164
|
+
textColorSecondaryDisabled: string;
|
|
161
165
|
waveColorSecondary: string;
|
|
162
166
|
colorTertiary: string;
|
|
163
167
|
colorTertiaryHover: string;
|
|
164
168
|
colorTertiaryPressed: string;
|
|
169
|
+
colorTertiaryFocus: string;
|
|
165
170
|
colorTertiaryDisalbed: string;
|
|
166
171
|
waveColorTertiary: string;
|
|
167
172
|
textColorTextTertiary: string;
|
|
173
|
+
rippleColorTertiary: string;
|
|
168
174
|
colorQuaternary: string;
|
|
169
175
|
colorQuaternaryHover: string;
|
|
170
176
|
colorQuaternaryPressed: string;
|
|
177
|
+
colorQuaternaryFocus: string;
|
|
178
|
+
rippleColorQuaternary: string;
|
|
179
|
+
waveColorQuaternary: string;
|
|
171
180
|
color: string;
|
|
172
181
|
colorHover: string;
|
|
173
182
|
colorPressed: string;
|
|
@@ -380,6 +389,7 @@ export declare const uploadProps: {
|
|
|
380
389
|
draggerColor: string;
|
|
381
390
|
draggerBorder: string;
|
|
382
391
|
draggerBorderHover: string;
|
|
392
|
+
draggerShadowFocus: string;
|
|
383
393
|
itemColorHover: string;
|
|
384
394
|
itemColorHoverError: string;
|
|
385
395
|
itemTextColor: string;
|
|
@@ -422,16 +432,24 @@ export declare const uploadProps: {
|
|
|
422
432
|
colorSecondary: string;
|
|
423
433
|
colorSecondaryHover: string;
|
|
424
434
|
colorSecondaryPressed: string;
|
|
435
|
+
colorSecondaryFocus: string;
|
|
436
|
+
colorSecondaryDisabled: string;
|
|
437
|
+
textColorSecondaryDisabled: string;
|
|
425
438
|
waveColorSecondary: string;
|
|
426
439
|
colorTertiary: string;
|
|
427
440
|
colorTertiaryHover: string;
|
|
428
441
|
colorTertiaryPressed: string;
|
|
442
|
+
colorTertiaryFocus: string;
|
|
429
443
|
colorTertiaryDisalbed: string;
|
|
430
444
|
waveColorTertiary: string;
|
|
431
445
|
textColorTextTertiary: string;
|
|
446
|
+
rippleColorTertiary: string;
|
|
432
447
|
colorQuaternary: string;
|
|
433
448
|
colorQuaternaryHover: string;
|
|
434
449
|
colorQuaternaryPressed: string;
|
|
450
|
+
colorQuaternaryFocus: string;
|
|
451
|
+
rippleColorQuaternary: string;
|
|
452
|
+
waveColorQuaternary: string;
|
|
435
453
|
color: string;
|
|
436
454
|
colorHover: string;
|
|
437
455
|
colorPressed: string;
|
|
@@ -644,6 +662,7 @@ export declare const uploadProps: {
|
|
|
644
662
|
draggerColor: string;
|
|
645
663
|
draggerBorder: string;
|
|
646
664
|
draggerBorderHover: string;
|
|
665
|
+
draggerShadowFocus: string;
|
|
647
666
|
itemColorHover: string;
|
|
648
667
|
itemColorHoverError: string;
|
|
649
668
|
itemTextColor: string;
|
|
@@ -686,16 +705,24 @@ export declare const uploadProps: {
|
|
|
686
705
|
colorSecondary: string;
|
|
687
706
|
colorSecondaryHover: string;
|
|
688
707
|
colorSecondaryPressed: string;
|
|
708
|
+
colorSecondaryFocus: string;
|
|
709
|
+
colorSecondaryDisabled: string;
|
|
710
|
+
textColorSecondaryDisabled: string;
|
|
689
711
|
waveColorSecondary: string;
|
|
690
712
|
colorTertiary: string;
|
|
691
713
|
colorTertiaryHover: string;
|
|
692
714
|
colorTertiaryPressed: string;
|
|
715
|
+
colorTertiaryFocus: string;
|
|
693
716
|
colorTertiaryDisalbed: string;
|
|
694
717
|
waveColorTertiary: string;
|
|
695
718
|
textColorTextTertiary: string;
|
|
719
|
+
rippleColorTertiary: string;
|
|
696
720
|
colorQuaternary: string;
|
|
697
721
|
colorQuaternaryHover: string;
|
|
698
722
|
colorQuaternaryPressed: string;
|
|
723
|
+
colorQuaternaryFocus: string;
|
|
724
|
+
rippleColorQuaternary: string;
|
|
725
|
+
waveColorQuaternary: string;
|
|
699
726
|
color: string;
|
|
700
727
|
colorHover: string;
|
|
701
728
|
colorPressed: string;
|
|
@@ -1016,6 +1043,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1016
1043
|
draggerColor: string;
|
|
1017
1044
|
draggerBorder: string;
|
|
1018
1045
|
draggerBorderHover: string;
|
|
1046
|
+
draggerShadowFocus: string;
|
|
1019
1047
|
itemColorHover: string;
|
|
1020
1048
|
itemColorHoverError: string;
|
|
1021
1049
|
itemTextColor: string;
|
|
@@ -1058,16 +1086,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1058
1086
|
colorSecondary: string;
|
|
1059
1087
|
colorSecondaryHover: string;
|
|
1060
1088
|
colorSecondaryPressed: string;
|
|
1089
|
+
colorSecondaryFocus: string;
|
|
1090
|
+
colorSecondaryDisabled: string;
|
|
1091
|
+
textColorSecondaryDisabled: string;
|
|
1061
1092
|
waveColorSecondary: string;
|
|
1062
1093
|
colorTertiary: string;
|
|
1063
1094
|
colorTertiaryHover: string;
|
|
1064
1095
|
colorTertiaryPressed: string;
|
|
1096
|
+
colorTertiaryFocus: string;
|
|
1065
1097
|
colorTertiaryDisalbed: string;
|
|
1066
1098
|
waveColorTertiary: string;
|
|
1067
1099
|
textColorTextTertiary: string;
|
|
1100
|
+
rippleColorTertiary: string;
|
|
1068
1101
|
colorQuaternary: string;
|
|
1069
1102
|
colorQuaternaryHover: string;
|
|
1070
1103
|
colorQuaternaryPressed: string;
|
|
1104
|
+
colorQuaternaryFocus: string;
|
|
1105
|
+
rippleColorQuaternary: string;
|
|
1106
|
+
waveColorQuaternary: string;
|
|
1071
1107
|
color: string;
|
|
1072
1108
|
colorHover: string;
|
|
1073
1109
|
colorPressed: string;
|
|
@@ -1280,6 +1316,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1280
1316
|
draggerColor: string;
|
|
1281
1317
|
draggerBorder: string;
|
|
1282
1318
|
draggerBorderHover: string;
|
|
1319
|
+
draggerShadowFocus: string;
|
|
1283
1320
|
itemColorHover: string;
|
|
1284
1321
|
itemColorHoverError: string;
|
|
1285
1322
|
itemTextColor: string;
|
|
@@ -1322,16 +1359,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1322
1359
|
colorSecondary: string;
|
|
1323
1360
|
colorSecondaryHover: string;
|
|
1324
1361
|
colorSecondaryPressed: string;
|
|
1362
|
+
colorSecondaryFocus: string;
|
|
1363
|
+
colorSecondaryDisabled: string;
|
|
1364
|
+
textColorSecondaryDisabled: string;
|
|
1325
1365
|
waveColorSecondary: string;
|
|
1326
1366
|
colorTertiary: string;
|
|
1327
1367
|
colorTertiaryHover: string;
|
|
1328
1368
|
colorTertiaryPressed: string;
|
|
1369
|
+
colorTertiaryFocus: string;
|
|
1329
1370
|
colorTertiaryDisalbed: string;
|
|
1330
1371
|
waveColorTertiary: string;
|
|
1331
1372
|
textColorTextTertiary: string;
|
|
1373
|
+
rippleColorTertiary: string;
|
|
1332
1374
|
colorQuaternary: string;
|
|
1333
1375
|
colorQuaternaryHover: string;
|
|
1334
1376
|
colorQuaternaryPressed: string;
|
|
1377
|
+
colorQuaternaryFocus: string;
|
|
1378
|
+
rippleColorQuaternary: string;
|
|
1379
|
+
waveColorQuaternary: string;
|
|
1335
1380
|
color: string;
|
|
1336
1381
|
colorHover: string;
|
|
1337
1382
|
colorPressed: string;
|
|
@@ -1544,6 +1589,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1544
1589
|
draggerColor: string;
|
|
1545
1590
|
draggerBorder: string;
|
|
1546
1591
|
draggerBorderHover: string;
|
|
1592
|
+
draggerShadowFocus: string;
|
|
1547
1593
|
itemColorHover: string;
|
|
1548
1594
|
itemColorHoverError: string;
|
|
1549
1595
|
itemTextColor: string;
|
|
@@ -1586,16 +1632,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1586
1632
|
colorSecondary: string;
|
|
1587
1633
|
colorSecondaryHover: string;
|
|
1588
1634
|
colorSecondaryPressed: string;
|
|
1635
|
+
colorSecondaryFocus: string;
|
|
1636
|
+
colorSecondaryDisabled: string;
|
|
1637
|
+
textColorSecondaryDisabled: string;
|
|
1589
1638
|
waveColorSecondary: string;
|
|
1590
1639
|
colorTertiary: string;
|
|
1591
1640
|
colorTertiaryHover: string;
|
|
1592
1641
|
colorTertiaryPressed: string;
|
|
1642
|
+
colorTertiaryFocus: string;
|
|
1593
1643
|
colorTertiaryDisalbed: string;
|
|
1594
1644
|
waveColorTertiary: string;
|
|
1595
1645
|
textColorTextTertiary: string;
|
|
1646
|
+
rippleColorTertiary: string;
|
|
1596
1647
|
colorQuaternary: string;
|
|
1597
1648
|
colorQuaternaryHover: string;
|
|
1598
1649
|
colorQuaternaryPressed: string;
|
|
1650
|
+
colorQuaternaryFocus: string;
|
|
1651
|
+
rippleColorQuaternary: string;
|
|
1652
|
+
waveColorQuaternary: string;
|
|
1599
1653
|
color: string;
|
|
1600
1654
|
colorHover: string;
|
|
1601
1655
|
colorPressed: string;
|
|
@@ -1825,6 +1879,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1825
1879
|
draggerColor: string;
|
|
1826
1880
|
draggerBorder: string;
|
|
1827
1881
|
draggerBorderHover: string;
|
|
1882
|
+
draggerShadowFocus: string;
|
|
1828
1883
|
itemColorHover: string;
|
|
1829
1884
|
itemColorHoverError: string;
|
|
1830
1885
|
itemTextColor: string;
|
|
@@ -1868,16 +1923,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
1868
1923
|
colorSecondary: string;
|
|
1869
1924
|
colorSecondaryHover: string;
|
|
1870
1925
|
colorSecondaryPressed: string;
|
|
1926
|
+
colorSecondaryFocus: string;
|
|
1927
|
+
colorSecondaryDisabled: string;
|
|
1928
|
+
textColorSecondaryDisabled: string;
|
|
1871
1929
|
waveColorSecondary: string;
|
|
1872
1930
|
colorTertiary: string;
|
|
1873
1931
|
colorTertiaryHover: string;
|
|
1874
1932
|
colorTertiaryPressed: string;
|
|
1933
|
+
colorTertiaryFocus: string;
|
|
1875
1934
|
colorTertiaryDisalbed: string;
|
|
1876
1935
|
waveColorTertiary: string;
|
|
1877
1936
|
textColorTextTertiary: string;
|
|
1937
|
+
rippleColorTertiary: string;
|
|
1878
1938
|
colorQuaternary: string;
|
|
1879
1939
|
colorQuaternaryHover: string;
|
|
1880
1940
|
colorQuaternaryPressed: string;
|
|
1941
|
+
colorQuaternaryFocus: string;
|
|
1942
|
+
rippleColorQuaternary: string;
|
|
1943
|
+
waveColorQuaternary: string;
|
|
1881
1944
|
color: string;
|
|
1882
1945
|
colorHover: string;
|
|
1883
1946
|
colorPressed: string;
|
|
@@ -2215,6 +2278,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2215
2278
|
draggerColor: string;
|
|
2216
2279
|
draggerBorder: string;
|
|
2217
2280
|
draggerBorderHover: string;
|
|
2281
|
+
draggerShadowFocus: string;
|
|
2218
2282
|
itemColorHover: string;
|
|
2219
2283
|
itemColorHoverError: string;
|
|
2220
2284
|
itemTextColor: string;
|
|
@@ -2257,16 +2321,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2257
2321
|
colorSecondary: string;
|
|
2258
2322
|
colorSecondaryHover: string;
|
|
2259
2323
|
colorSecondaryPressed: string;
|
|
2324
|
+
colorSecondaryFocus: string;
|
|
2325
|
+
colorSecondaryDisabled: string;
|
|
2326
|
+
textColorSecondaryDisabled: string;
|
|
2260
2327
|
waveColorSecondary: string;
|
|
2261
2328
|
colorTertiary: string;
|
|
2262
2329
|
colorTertiaryHover: string;
|
|
2263
2330
|
colorTertiaryPressed: string;
|
|
2331
|
+
colorTertiaryFocus: string;
|
|
2264
2332
|
colorTertiaryDisalbed: string;
|
|
2265
2333
|
waveColorTertiary: string;
|
|
2266
2334
|
textColorTextTertiary: string;
|
|
2335
|
+
rippleColorTertiary: string;
|
|
2267
2336
|
colorQuaternary: string;
|
|
2268
2337
|
colorQuaternaryHover: string;
|
|
2269
2338
|
colorQuaternaryPressed: string;
|
|
2339
|
+
colorQuaternaryFocus: string;
|
|
2340
|
+
rippleColorQuaternary: string;
|
|
2341
|
+
waveColorQuaternary: string;
|
|
2270
2342
|
color: string;
|
|
2271
2343
|
colorHover: string;
|
|
2272
2344
|
colorPressed: string;
|
|
@@ -2479,6 +2551,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2479
2551
|
draggerColor: string;
|
|
2480
2552
|
draggerBorder: string;
|
|
2481
2553
|
draggerBorderHover: string;
|
|
2554
|
+
draggerShadowFocus: string;
|
|
2482
2555
|
itemColorHover: string;
|
|
2483
2556
|
itemColorHoverError: string;
|
|
2484
2557
|
itemTextColor: string;
|
|
@@ -2521,16 +2594,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2521
2594
|
colorSecondary: string;
|
|
2522
2595
|
colorSecondaryHover: string;
|
|
2523
2596
|
colorSecondaryPressed: string;
|
|
2597
|
+
colorSecondaryFocus: string;
|
|
2598
|
+
colorSecondaryDisabled: string;
|
|
2599
|
+
textColorSecondaryDisabled: string;
|
|
2524
2600
|
waveColorSecondary: string;
|
|
2525
2601
|
colorTertiary: string;
|
|
2526
2602
|
colorTertiaryHover: string;
|
|
2527
2603
|
colorTertiaryPressed: string;
|
|
2604
|
+
colorTertiaryFocus: string;
|
|
2528
2605
|
colorTertiaryDisalbed: string;
|
|
2529
2606
|
waveColorTertiary: string;
|
|
2530
2607
|
textColorTextTertiary: string;
|
|
2608
|
+
rippleColorTertiary: string;
|
|
2531
2609
|
colorQuaternary: string;
|
|
2532
2610
|
colorQuaternaryHover: string;
|
|
2533
2611
|
colorQuaternaryPressed: string;
|
|
2612
|
+
colorQuaternaryFocus: string;
|
|
2613
|
+
rippleColorQuaternary: string;
|
|
2614
|
+
waveColorQuaternary: string;
|
|
2534
2615
|
color: string;
|
|
2535
2616
|
colorHover: string;
|
|
2536
2617
|
colorPressed: string;
|
|
@@ -2743,6 +2824,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2743
2824
|
draggerColor: string;
|
|
2744
2825
|
draggerBorder: string;
|
|
2745
2826
|
draggerBorderHover: string;
|
|
2827
|
+
draggerShadowFocus: string;
|
|
2746
2828
|
itemColorHover: string;
|
|
2747
2829
|
itemColorHoverError: string;
|
|
2748
2830
|
itemTextColor: string;
|
|
@@ -2785,16 +2867,24 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
2785
2867
|
colorSecondary: string;
|
|
2786
2868
|
colorSecondaryHover: string;
|
|
2787
2869
|
colorSecondaryPressed: string;
|
|
2870
|
+
colorSecondaryFocus: string;
|
|
2871
|
+
colorSecondaryDisabled: string;
|
|
2872
|
+
textColorSecondaryDisabled: string;
|
|
2788
2873
|
waveColorSecondary: string;
|
|
2789
2874
|
colorTertiary: string;
|
|
2790
2875
|
colorTertiaryHover: string;
|
|
2791
2876
|
colorTertiaryPressed: string;
|
|
2877
|
+
colorTertiaryFocus: string;
|
|
2792
2878
|
colorTertiaryDisalbed: string;
|
|
2793
2879
|
waveColorTertiary: string;
|
|
2794
2880
|
textColorTextTertiary: string;
|
|
2881
|
+
rippleColorTertiary: string;
|
|
2795
2882
|
colorQuaternary: string;
|
|
2796
2883
|
colorQuaternaryHover: string;
|
|
2797
2884
|
colorQuaternaryPressed: string;
|
|
2885
|
+
colorQuaternaryFocus: string;
|
|
2886
|
+
rippleColorQuaternary: string;
|
|
2887
|
+
waveColorQuaternary: string;
|
|
2798
2888
|
color: string;
|
|
2799
2889
|
colorHover: string;
|
|
2800
2890
|
colorPressed: string;
|