@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.
Files changed (188) hide show
  1. package/dist/index.js +378 -197
  2. package/dist/index.prod.js +3 -3
  3. package/es/_internal/scrollbar/src/Scrollbar.js +1 -1
  4. package/es/button/src/Button.d.ts +72 -0
  5. package/es/button/src/Button.js +13 -7
  6. package/es/button/src/styles/index.cssr.js +1 -2
  7. package/es/button/styles/light.d.ts +8 -0
  8. package/es/button/styles/light.js +7 -7
  9. package/es/calendar/src/Calendar.d.ts +80 -0
  10. package/es/calendar/styles/light.d.ts +8 -0
  11. package/es/chat/index.d.ts +2 -1
  12. package/es/chat/index.js +1 -0
  13. package/es/chat/src/Chat.d.ts +87 -7
  14. package/es/chat/src/Chat.js +12 -12
  15. package/es/chat/src/ChatListItems.d.ts +1847 -4
  16. package/es/chat/src/ChatListItems.js +16 -12
  17. package/es/chat/src/ChatMessages.d.ts +1848 -4
  18. package/es/chat/src/ChatMessages.js +27 -10
  19. package/es/chat/src/ChatParts/MainArea.js +10 -10
  20. package/es/chat/src/ChatParts/Sidebar.js +2 -2
  21. package/es/chat/src/interface.d.ts +4 -0
  22. package/es/chat/src/styles/index.cssr.js +14 -17
  23. package/es/chat/styles/dark.d.ts +8 -0
  24. package/es/chat/styles/light.d.ts +9 -1
  25. package/es/chat/styles/light.js +15 -3
  26. package/es/color-picker/src/ColorInputUnit.d.ts +8 -0
  27. package/es/color-picker/src/ColorPicker.d.ts +72 -0
  28. package/es/color-picker/styles/light.d.ts +8 -0
  29. package/es/data-table/src/DataTable.d.ts +56 -0
  30. package/es/data-table/src/HeaderButton/FilterButton.d.ts +8 -0
  31. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +8 -0
  32. package/es/data-table/src/TableParts/Body.d.ts +8 -0
  33. package/es/data-table/src/TableParts/Header.d.ts +8 -0
  34. package/es/data-table/src/interface.d.ts +24 -0
  35. package/es/data-table/styles/light.d.ts +8 -0
  36. package/es/date-picker/src/DatePicker.d.ts +168 -0
  37. package/es/date-picker/src/panel/date.d.ts +24 -0
  38. package/es/date-picker/src/panel/daterange.d.ts +24 -0
  39. package/es/date-picker/src/panel/datetime.d.ts +24 -0
  40. package/es/date-picker/src/panel/datetimerange.d.ts +24 -0
  41. package/es/date-picker/src/panel/panelMonth.d.ts +48 -0
  42. package/es/date-picker/src/panel/panelMonthContent.d.ts +24 -0
  43. package/es/date-picker/src/panel/panelYear.d.ts +48 -0
  44. package/es/date-picker/src/panel/panelYearContent.d.ts +24 -0
  45. package/es/date-picker/src/panel/use-calendar.d.ts +24 -0
  46. package/es/date-picker/src/panel/use-dual-calendar.d.ts +24 -0
  47. package/es/date-picker/src/panel/use-panel-common.d.ts +24 -0
  48. package/es/date-picker/styles/light.d.ts +16 -0
  49. package/es/dialog/src/Dialog.d.ts +56 -0
  50. package/es/dialog/src/DialogProvider.d.ts +16 -0
  51. package/es/dialog/styles/light.d.ts +8 -0
  52. package/es/dynamic-input/src/DynamicInput.d.ts +80 -0
  53. package/es/dynamic-input/src/InputPreset.d.ts +8 -0
  54. package/es/dynamic-input/src/PairPreset.d.ts +8 -0
  55. package/es/dynamic-input/styles/light.d.ts +8 -0
  56. package/es/dynamic-tags/src/DynamicTags.d.ts +80 -0
  57. package/es/dynamic-tags/styles/light.d.ts +8 -0
  58. package/es/input-number/src/InputNumber.d.ts +80 -0
  59. package/es/input-number/styles/light.d.ts +8 -0
  60. package/es/legacy-transfer/src/Transfer.d.ts +80 -0
  61. package/es/legacy-transfer/src/TransferFilter.d.ts +8 -0
  62. package/es/legacy-transfer/src/TransferList.d.ts +8 -0
  63. package/es/legacy-transfer/src/TransferListItem.d.ts +8 -0
  64. package/es/legacy-transfer/styles/light.d.ts +8 -0
  65. package/es/modal/src/BodyWrapper.d.ts +16 -0
  66. package/es/modal/src/Modal.d.ts +72 -0
  67. package/es/modal/styles/light.d.ts +8 -0
  68. package/es/notification/src/Notification.d.ts +5 -0
  69. package/es/notification/src/Notification.js +16 -6
  70. package/es/notification/src/NotificationContainer.d.ts +12 -0
  71. package/es/notification/src/NotificationProvider.d.ts +108 -0
  72. package/es/notification/src/styles/index.cssr.js +12 -8
  73. package/es/notification/styles/light.d.ts +24 -0
  74. package/es/notification/styles/light.js +9 -8
  75. package/es/popconfirm/src/Popconfirm.d.ts +80 -0
  76. package/es/popconfirm/styles/light.d.ts +8 -0
  77. package/es/time-picker/src/Panel.d.ts +8 -0
  78. package/es/time-picker/src/TimePicker.d.ts +80 -0
  79. package/es/time-picker/styles/light.d.ts +8 -0
  80. package/es/transfer/src/Transfer.d.ts +80 -0
  81. package/es/transfer/src/TransferFilter.d.ts +8 -0
  82. package/es/transfer/src/TransferList.d.ts +8 -0
  83. package/es/transfer/src/TransferListItem.d.ts +8 -0
  84. package/es/transfer/styles/light.d.ts +8 -0
  85. package/es/upload/src/Upload.d.ts +90 -0
  86. package/es/upload/src/Upload.js +2 -1
  87. package/es/upload/src/UploadFile.d.ts +9 -0
  88. package/es/upload/src/UploadProgress.d.ts +9 -0
  89. package/es/upload/src/styles/index.cssr.js +1 -0
  90. package/es/upload/src/useUploadActionsRender.js +5 -1
  91. package/es/upload/styles/light.d.ts +10 -0
  92. package/es/upload/styles/light.js +6 -5
  93. package/es/version.d.ts +1 -1
  94. package/es/version.js +1 -1
  95. package/lib/_internal/scrollbar/src/Scrollbar.js +1 -1
  96. package/lib/button/src/Button.d.ts +72 -0
  97. package/lib/button/src/Button.js +13 -7
  98. package/lib/button/src/styles/index.cssr.js +1 -2
  99. package/lib/button/styles/light.d.ts +8 -0
  100. package/lib/button/styles/light.js +7 -7
  101. package/lib/calendar/src/Calendar.d.ts +80 -0
  102. package/lib/calendar/styles/light.d.ts +8 -0
  103. package/lib/chat/index.d.ts +2 -1
  104. package/lib/chat/index.js +5 -1
  105. package/lib/chat/src/Chat.d.ts +87 -7
  106. package/lib/chat/src/Chat.js +12 -12
  107. package/lib/chat/src/ChatListItems.d.ts +1847 -4
  108. package/lib/chat/src/ChatListItems.js +14 -10
  109. package/lib/chat/src/ChatMessages.d.ts +1848 -4
  110. package/lib/chat/src/ChatMessages.js +25 -8
  111. package/lib/chat/src/ChatParts/MainArea.js +10 -10
  112. package/lib/chat/src/ChatParts/Sidebar.js +2 -2
  113. package/lib/chat/src/interface.d.ts +4 -0
  114. package/lib/chat/src/styles/index.cssr.js +14 -17
  115. package/lib/chat/styles/dark.d.ts +8 -0
  116. package/lib/chat/styles/light.d.ts +9 -1
  117. package/lib/chat/styles/light.js +15 -3
  118. package/lib/color-picker/src/ColorInputUnit.d.ts +8 -0
  119. package/lib/color-picker/src/ColorPicker.d.ts +72 -0
  120. package/lib/color-picker/styles/light.d.ts +8 -0
  121. package/lib/data-table/src/DataTable.d.ts +56 -0
  122. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +8 -0
  123. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +8 -0
  124. package/lib/data-table/src/TableParts/Body.d.ts +8 -0
  125. package/lib/data-table/src/TableParts/Header.d.ts +8 -0
  126. package/lib/data-table/src/interface.d.ts +24 -0
  127. package/lib/data-table/styles/light.d.ts +8 -0
  128. package/lib/date-picker/src/DatePicker.d.ts +168 -0
  129. package/lib/date-picker/src/panel/date.d.ts +24 -0
  130. package/lib/date-picker/src/panel/daterange.d.ts +24 -0
  131. package/lib/date-picker/src/panel/datetime.d.ts +24 -0
  132. package/lib/date-picker/src/panel/datetimerange.d.ts +24 -0
  133. package/lib/date-picker/src/panel/panelMonth.d.ts +48 -0
  134. package/lib/date-picker/src/panel/panelMonthContent.d.ts +24 -0
  135. package/lib/date-picker/src/panel/panelYear.d.ts +48 -0
  136. package/lib/date-picker/src/panel/panelYearContent.d.ts +24 -0
  137. package/lib/date-picker/src/panel/use-calendar.d.ts +24 -0
  138. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +24 -0
  139. package/lib/date-picker/src/panel/use-panel-common.d.ts +24 -0
  140. package/lib/date-picker/styles/light.d.ts +16 -0
  141. package/lib/dialog/src/Dialog.d.ts +56 -0
  142. package/lib/dialog/src/DialogProvider.d.ts +16 -0
  143. package/lib/dialog/styles/light.d.ts +8 -0
  144. package/lib/dynamic-input/src/DynamicInput.d.ts +80 -0
  145. package/lib/dynamic-input/src/InputPreset.d.ts +8 -0
  146. package/lib/dynamic-input/src/PairPreset.d.ts +8 -0
  147. package/lib/dynamic-input/styles/light.d.ts +8 -0
  148. package/lib/dynamic-tags/src/DynamicTags.d.ts +80 -0
  149. package/lib/dynamic-tags/styles/light.d.ts +8 -0
  150. package/lib/input-number/src/InputNumber.d.ts +80 -0
  151. package/lib/input-number/styles/light.d.ts +8 -0
  152. package/lib/legacy-transfer/src/Transfer.d.ts +80 -0
  153. package/lib/legacy-transfer/src/TransferFilter.d.ts +8 -0
  154. package/lib/legacy-transfer/src/TransferList.d.ts +8 -0
  155. package/lib/legacy-transfer/src/TransferListItem.d.ts +8 -0
  156. package/lib/legacy-transfer/styles/light.d.ts +8 -0
  157. package/lib/modal/src/BodyWrapper.d.ts +16 -0
  158. package/lib/modal/src/Modal.d.ts +72 -0
  159. package/lib/modal/styles/light.d.ts +8 -0
  160. package/lib/notification/src/Notification.d.ts +5 -0
  161. package/lib/notification/src/Notification.js +14 -4
  162. package/lib/notification/src/NotificationContainer.d.ts +12 -0
  163. package/lib/notification/src/NotificationProvider.d.ts +108 -0
  164. package/lib/notification/src/styles/index.cssr.js +12 -8
  165. package/lib/notification/styles/light.d.ts +24 -0
  166. package/lib/notification/styles/light.js +9 -8
  167. package/lib/popconfirm/src/Popconfirm.d.ts +80 -0
  168. package/lib/popconfirm/styles/light.d.ts +8 -0
  169. package/lib/time-picker/src/Panel.d.ts +8 -0
  170. package/lib/time-picker/src/TimePicker.d.ts +80 -0
  171. package/lib/time-picker/styles/light.d.ts +8 -0
  172. package/lib/transfer/src/Transfer.d.ts +80 -0
  173. package/lib/transfer/src/TransferFilter.d.ts +8 -0
  174. package/lib/transfer/src/TransferList.d.ts +8 -0
  175. package/lib/transfer/src/TransferListItem.d.ts +8 -0
  176. package/lib/transfer/styles/light.d.ts +8 -0
  177. package/lib/upload/src/Upload.d.ts +90 -0
  178. package/lib/upload/src/Upload.js +2 -1
  179. package/lib/upload/src/UploadFile.d.ts +9 -0
  180. package/lib/upload/src/UploadProgress.d.ts +9 -0
  181. package/lib/upload/src/styles/index.cssr.js +1 -0
  182. package/lib/upload/src/useUploadActionsRender.js +5 -1
  183. package/lib/upload/styles/light.d.ts +10 -0
  184. package/lib/upload/styles/light.js +6 -5
  185. package/lib/version.d.ts +1 -1
  186. package/lib/version.js +1 -1
  187. package/package.json +1 -1
  188. package/web-types.json +4 -4
@@ -84,16 +84,24 @@ export declare const inputNumberProps: {
84
84
  colorSecondary: string;
85
85
  colorSecondaryHover: string;
86
86
  colorSecondaryPressed: string;
87
+ colorSecondaryFocus: string;
88
+ colorSecondaryDisabled: string;
89
+ textColorSecondaryDisabled: string;
87
90
  waveColorSecondary: string;
88
91
  colorTertiary: string;
89
92
  colorTertiaryHover: string;
90
93
  colorTertiaryPressed: string;
94
+ colorTertiaryFocus: string;
91
95
  colorTertiaryDisalbed: string;
92
96
  waveColorTertiary: string;
93
97
  textColorTextTertiary: string;
98
+ rippleColorTertiary: string;
94
99
  colorQuaternary: string;
95
100
  colorQuaternaryHover: string;
96
101
  colorQuaternaryPressed: string;
102
+ colorQuaternaryFocus: string;
103
+ rippleColorQuaternary: string;
104
+ waveColorQuaternary: string;
97
105
  color: string;
98
106
  colorHover: string;
99
107
  colorPressed: string;
@@ -361,16 +369,24 @@ export declare const inputNumberProps: {
361
369
  colorSecondary: string;
362
370
  colorSecondaryHover: string;
363
371
  colorSecondaryPressed: string;
372
+ colorSecondaryFocus: string;
373
+ colorSecondaryDisabled: string;
374
+ textColorSecondaryDisabled: string;
364
375
  waveColorSecondary: string;
365
376
  colorTertiary: string;
366
377
  colorTertiaryHover: string;
367
378
  colorTertiaryPressed: string;
379
+ colorTertiaryFocus: string;
368
380
  colorTertiaryDisalbed: string;
369
381
  waveColorTertiary: string;
370
382
  textColorTextTertiary: string;
383
+ rippleColorTertiary: string;
371
384
  colorQuaternary: string;
372
385
  colorQuaternaryHover: string;
373
386
  colorQuaternaryPressed: string;
387
+ colorQuaternaryFocus: string;
388
+ rippleColorQuaternary: string;
389
+ waveColorQuaternary: string;
374
390
  color: string;
375
391
  colorHover: string;
376
392
  colorPressed: string;
@@ -638,16 +654,24 @@ export declare const inputNumberProps: {
638
654
  colorSecondary: string;
639
655
  colorSecondaryHover: string;
640
656
  colorSecondaryPressed: string;
657
+ colorSecondaryFocus: string;
658
+ colorSecondaryDisabled: string;
659
+ textColorSecondaryDisabled: string;
641
660
  waveColorSecondary: string;
642
661
  colorTertiary: string;
643
662
  colorTertiaryHover: string;
644
663
  colorTertiaryPressed: string;
664
+ colorTertiaryFocus: string;
645
665
  colorTertiaryDisalbed: string;
646
666
  waveColorTertiary: string;
647
667
  textColorTextTertiary: string;
668
+ rippleColorTertiary: string;
648
669
  colorQuaternary: string;
649
670
  colorQuaternaryHover: string;
650
671
  colorQuaternaryPressed: string;
672
+ colorQuaternaryFocus: string;
673
+ rippleColorQuaternary: string;
674
+ waveColorQuaternary: string;
651
675
  color: string;
652
676
  colorHover: string;
653
677
  colorPressed: string;
@@ -976,16 +1000,24 @@ declare const _default: import("vue").DefineComponent<{
976
1000
  colorSecondary: string;
977
1001
  colorSecondaryHover: string;
978
1002
  colorSecondaryPressed: string;
1003
+ colorSecondaryFocus: string;
1004
+ colorSecondaryDisabled: string;
1005
+ textColorSecondaryDisabled: string;
979
1006
  waveColorSecondary: string;
980
1007
  colorTertiary: string;
981
1008
  colorTertiaryHover: string;
982
1009
  colorTertiaryPressed: string;
1010
+ colorTertiaryFocus: string;
983
1011
  colorTertiaryDisalbed: string;
984
1012
  waveColorTertiary: string;
985
1013
  textColorTextTertiary: string;
1014
+ rippleColorTertiary: string;
986
1015
  colorQuaternary: string;
987
1016
  colorQuaternaryHover: string;
988
1017
  colorQuaternaryPressed: string;
1018
+ colorQuaternaryFocus: string;
1019
+ rippleColorQuaternary: string;
1020
+ waveColorQuaternary: string;
989
1021
  color: string;
990
1022
  colorHover: string;
991
1023
  colorPressed: string;
@@ -1253,16 +1285,24 @@ declare const _default: import("vue").DefineComponent<{
1253
1285
  colorSecondary: string;
1254
1286
  colorSecondaryHover: string;
1255
1287
  colorSecondaryPressed: string;
1288
+ colorSecondaryFocus: string;
1289
+ colorSecondaryDisabled: string;
1290
+ textColorSecondaryDisabled: string;
1256
1291
  waveColorSecondary: string;
1257
1292
  colorTertiary: string;
1258
1293
  colorTertiaryHover: string;
1259
1294
  colorTertiaryPressed: string;
1295
+ colorTertiaryFocus: string;
1260
1296
  colorTertiaryDisalbed: string;
1261
1297
  waveColorTertiary: string;
1262
1298
  textColorTextTertiary: string;
1299
+ rippleColorTertiary: string;
1263
1300
  colorQuaternary: string;
1264
1301
  colorQuaternaryHover: string;
1265
1302
  colorQuaternaryPressed: string;
1303
+ colorQuaternaryFocus: string;
1304
+ rippleColorQuaternary: string;
1305
+ waveColorQuaternary: string;
1266
1306
  color: string;
1267
1307
  colorHover: string;
1268
1308
  colorPressed: string;
@@ -1530,16 +1570,24 @@ declare const _default: import("vue").DefineComponent<{
1530
1570
  colorSecondary: string;
1531
1571
  colorSecondaryHover: string;
1532
1572
  colorSecondaryPressed: string;
1573
+ colorSecondaryFocus: string;
1574
+ colorSecondaryDisabled: string;
1575
+ textColorSecondaryDisabled: string;
1533
1576
  waveColorSecondary: string;
1534
1577
  colorTertiary: string;
1535
1578
  colorTertiaryHover: string;
1536
1579
  colorTertiaryPressed: string;
1580
+ colorTertiaryFocus: string;
1537
1581
  colorTertiaryDisalbed: string;
1538
1582
  waveColorTertiary: string;
1539
1583
  textColorTextTertiary: string;
1584
+ rippleColorTertiary: string;
1540
1585
  colorQuaternary: string;
1541
1586
  colorQuaternaryHover: string;
1542
1587
  colorQuaternaryPressed: string;
1588
+ colorQuaternaryFocus: string;
1589
+ rippleColorQuaternary: string;
1590
+ waveColorQuaternary: string;
1543
1591
  color: string;
1544
1592
  colorHover: string;
1545
1593
  colorPressed: string;
@@ -1852,16 +1900,24 @@ declare const _default: import("vue").DefineComponent<{
1852
1900
  colorSecondary: string;
1853
1901
  colorSecondaryHover: string;
1854
1902
  colorSecondaryPressed: string;
1903
+ colorSecondaryFocus: string;
1904
+ colorSecondaryDisabled: string;
1905
+ textColorSecondaryDisabled: string;
1855
1906
  waveColorSecondary: string;
1856
1907
  colorTertiary: string;
1857
1908
  colorTertiaryHover: string;
1858
1909
  colorTertiaryPressed: string;
1910
+ colorTertiaryFocus: string;
1859
1911
  colorTertiaryDisalbed: string;
1860
1912
  waveColorTertiary: string;
1861
1913
  textColorTextTertiary: string;
1914
+ rippleColorTertiary: string;
1862
1915
  colorQuaternary: string;
1863
1916
  colorQuaternaryHover: string;
1864
1917
  colorQuaternaryPressed: string;
1918
+ colorQuaternaryFocus: string;
1919
+ rippleColorQuaternary: string;
1920
+ waveColorQuaternary: string;
1865
1921
  color: string;
1866
1922
  colorHover: string;
1867
1923
  colorPressed: string;
@@ -2209,16 +2265,24 @@ declare const _default: import("vue").DefineComponent<{
2209
2265
  colorSecondary: string;
2210
2266
  colorSecondaryHover: string;
2211
2267
  colorSecondaryPressed: string;
2268
+ colorSecondaryFocus: string;
2269
+ colorSecondaryDisabled: string;
2270
+ textColorSecondaryDisabled: string;
2212
2271
  waveColorSecondary: string;
2213
2272
  colorTertiary: string;
2214
2273
  colorTertiaryHover: string;
2215
2274
  colorTertiaryPressed: string;
2275
+ colorTertiaryFocus: string;
2216
2276
  colorTertiaryDisalbed: string;
2217
2277
  waveColorTertiary: string;
2218
2278
  textColorTextTertiary: string;
2279
+ rippleColorTertiary: string;
2219
2280
  colorQuaternary: string;
2220
2281
  colorQuaternaryHover: string;
2221
2282
  colorQuaternaryPressed: string;
2283
+ colorQuaternaryFocus: string;
2284
+ rippleColorQuaternary: string;
2285
+ waveColorQuaternary: string;
2222
2286
  color: string;
2223
2287
  colorHover: string;
2224
2288
  colorPressed: string;
@@ -2486,16 +2550,24 @@ declare const _default: import("vue").DefineComponent<{
2486
2550
  colorSecondary: string;
2487
2551
  colorSecondaryHover: string;
2488
2552
  colorSecondaryPressed: string;
2553
+ colorSecondaryFocus: string;
2554
+ colorSecondaryDisabled: string;
2555
+ textColorSecondaryDisabled: string;
2489
2556
  waveColorSecondary: string;
2490
2557
  colorTertiary: string;
2491
2558
  colorTertiaryHover: string;
2492
2559
  colorTertiaryPressed: string;
2560
+ colorTertiaryFocus: string;
2493
2561
  colorTertiaryDisalbed: string;
2494
2562
  waveColorTertiary: string;
2495
2563
  textColorTextTertiary: string;
2564
+ rippleColorTertiary: string;
2496
2565
  colorQuaternary: string;
2497
2566
  colorQuaternaryHover: string;
2498
2567
  colorQuaternaryPressed: string;
2568
+ colorQuaternaryFocus: string;
2569
+ rippleColorQuaternary: string;
2570
+ waveColorQuaternary: string;
2499
2571
  color: string;
2500
2572
  colorHover: string;
2501
2573
  colorPressed: string;
@@ -2763,16 +2835,24 @@ declare const _default: import("vue").DefineComponent<{
2763
2835
  colorSecondary: string;
2764
2836
  colorSecondaryHover: string;
2765
2837
  colorSecondaryPressed: string;
2838
+ colorSecondaryFocus: string;
2839
+ colorSecondaryDisabled: string;
2840
+ textColorSecondaryDisabled: string;
2766
2841
  waveColorSecondary: string;
2767
2842
  colorTertiary: string;
2768
2843
  colorTertiaryHover: string;
2769
2844
  colorTertiaryPressed: string;
2845
+ colorTertiaryFocus: string;
2770
2846
  colorTertiaryDisalbed: string;
2771
2847
  waveColorTertiary: string;
2772
2848
  textColorTextTertiary: string;
2849
+ rippleColorTertiary: string;
2773
2850
  colorQuaternary: string;
2774
2851
  colorQuaternaryHover: string;
2775
2852
  colorQuaternaryPressed: string;
2853
+ colorQuaternaryFocus: string;
2854
+ rippleColorQuaternary: string;
2855
+ waveColorQuaternary: string;
2776
2856
  color: string;
2777
2857
  colorHover: string;
2778
2858
  colorPressed: string;
@@ -23,16 +23,24 @@ declare const inputNumberLight: import("../../_mixins").Theme<"InputNumber", {},
23
23
  colorSecondary: string;
24
24
  colorSecondaryHover: string;
25
25
  colorSecondaryPressed: string;
26
+ colorSecondaryFocus: string;
27
+ colorSecondaryDisabled: string;
28
+ textColorSecondaryDisabled: string;
26
29
  waveColorSecondary: string;
27
30
  colorTertiary: string;
28
31
  colorTertiaryHover: string;
29
32
  colorTertiaryPressed: string;
33
+ colorTertiaryFocus: string;
30
34
  colorTertiaryDisalbed: string;
31
35
  waveColorTertiary: string;
32
36
  textColorTextTertiary: string;
37
+ rippleColorTertiary: string;
33
38
  colorQuaternary: string;
34
39
  colorQuaternaryHover: string;
35
40
  colorQuaternaryPressed: string;
41
+ colorQuaternaryFocus: string;
42
+ rippleColorQuaternary: string;
43
+ waveColorQuaternary: string;
36
44
  color: string;
37
45
  colorHover: string;
38
46
  colorPressed: string;
@@ -213,16 +213,24 @@ export declare const transferProps: {
213
213
  colorSecondary: string;
214
214
  colorSecondaryHover: string;
215
215
  colorSecondaryPressed: string;
216
+ colorSecondaryFocus: string;
217
+ colorSecondaryDisabled: string;
218
+ textColorSecondaryDisabled: string;
216
219
  waveColorSecondary: string;
217
220
  colorTertiary: string;
218
221
  colorTertiaryHover: string;
219
222
  colorTertiaryPressed: string;
223
+ colorTertiaryFocus: string;
220
224
  colorTertiaryDisalbed: string;
221
225
  waveColorTertiary: string;
222
226
  textColorTextTertiary: string;
227
+ rippleColorTertiary: string;
223
228
  colorQuaternary: string;
224
229
  colorQuaternaryHover: string;
225
230
  colorQuaternaryPressed: string;
231
+ colorQuaternaryFocus: string;
232
+ rippleColorQuaternary: string;
233
+ waveColorQuaternary: string;
226
234
  color: string;
227
235
  colorHover: string;
228
236
  colorPressed: string;
@@ -588,16 +596,24 @@ export declare const transferProps: {
588
596
  colorSecondary: string;
589
597
  colorSecondaryHover: string;
590
598
  colorSecondaryPressed: string;
599
+ colorSecondaryFocus: string;
600
+ colorSecondaryDisabled: string;
601
+ textColorSecondaryDisabled: string;
591
602
  waveColorSecondary: string;
592
603
  colorTertiary: string;
593
604
  colorTertiaryHover: string;
594
605
  colorTertiaryPressed: string;
606
+ colorTertiaryFocus: string;
595
607
  colorTertiaryDisalbed: string;
596
608
  waveColorTertiary: string;
597
609
  textColorTextTertiary: string;
610
+ rippleColorTertiary: string;
598
611
  colorQuaternary: string;
599
612
  colorQuaternaryHover: string;
600
613
  colorQuaternaryPressed: string;
614
+ colorQuaternaryFocus: string;
615
+ rippleColorQuaternary: string;
616
+ waveColorQuaternary: string;
601
617
  color: string;
602
618
  colorHover: string;
603
619
  colorPressed: string;
@@ -963,16 +979,24 @@ export declare const transferProps: {
963
979
  colorSecondary: string;
964
980
  colorSecondaryHover: string;
965
981
  colorSecondaryPressed: string;
982
+ colorSecondaryFocus: string;
983
+ colorSecondaryDisabled: string;
984
+ textColorSecondaryDisabled: string;
966
985
  waveColorSecondary: string;
967
986
  colorTertiary: string;
968
987
  colorTertiaryHover: string;
969
988
  colorTertiaryPressed: string;
989
+ colorTertiaryFocus: string;
970
990
  colorTertiaryDisalbed: string;
971
991
  waveColorTertiary: string;
972
992
  textColorTextTertiary: string;
993
+ rippleColorTertiary: string;
973
994
  colorQuaternary: string;
974
995
  colorQuaternaryHover: string;
975
996
  colorQuaternaryPressed: string;
997
+ colorQuaternaryFocus: string;
998
+ rippleColorQuaternary: string;
999
+ waveColorQuaternary: string;
976
1000
  color: string;
977
1001
  colorHover: string;
978
1002
  colorPressed: string;
@@ -1368,16 +1392,24 @@ declare const _default: import("vue").DefineComponent<{
1368
1392
  colorSecondary: string;
1369
1393
  colorSecondaryHover: string;
1370
1394
  colorSecondaryPressed: string;
1395
+ colorSecondaryFocus: string;
1396
+ colorSecondaryDisabled: string;
1397
+ textColorSecondaryDisabled: string;
1371
1398
  waveColorSecondary: string;
1372
1399
  colorTertiary: string;
1373
1400
  colorTertiaryHover: string;
1374
1401
  colorTertiaryPressed: string;
1402
+ colorTertiaryFocus: string;
1375
1403
  colorTertiaryDisalbed: string;
1376
1404
  waveColorTertiary: string;
1377
1405
  textColorTextTertiary: string;
1406
+ rippleColorTertiary: string;
1378
1407
  colorQuaternary: string;
1379
1408
  colorQuaternaryHover: string;
1380
1409
  colorQuaternaryPressed: string;
1410
+ colorQuaternaryFocus: string;
1411
+ rippleColorQuaternary: string;
1412
+ waveColorQuaternary: string;
1381
1413
  color: string;
1382
1414
  colorHover: string;
1383
1415
  colorPressed: string;
@@ -1743,16 +1775,24 @@ declare const _default: import("vue").DefineComponent<{
1743
1775
  colorSecondary: string;
1744
1776
  colorSecondaryHover: string;
1745
1777
  colorSecondaryPressed: string;
1778
+ colorSecondaryFocus: string;
1779
+ colorSecondaryDisabled: string;
1780
+ textColorSecondaryDisabled: string;
1746
1781
  waveColorSecondary: string;
1747
1782
  colorTertiary: string;
1748
1783
  colorTertiaryHover: string;
1749
1784
  colorTertiaryPressed: string;
1785
+ colorTertiaryFocus: string;
1750
1786
  colorTertiaryDisalbed: string;
1751
1787
  waveColorTertiary: string;
1752
1788
  textColorTextTertiary: string;
1789
+ rippleColorTertiary: string;
1753
1790
  colorQuaternary: string;
1754
1791
  colorQuaternaryHover: string;
1755
1792
  colorQuaternaryPressed: string;
1793
+ colorQuaternaryFocus: string;
1794
+ rippleColorQuaternary: string;
1795
+ waveColorQuaternary: string;
1756
1796
  color: string;
1757
1797
  colorHover: string;
1758
1798
  colorPressed: string;
@@ -2118,16 +2158,24 @@ declare const _default: import("vue").DefineComponent<{
2118
2158
  colorSecondary: string;
2119
2159
  colorSecondaryHover: string;
2120
2160
  colorSecondaryPressed: string;
2161
+ colorSecondaryFocus: string;
2162
+ colorSecondaryDisabled: string;
2163
+ textColorSecondaryDisabled: string;
2121
2164
  waveColorSecondary: string;
2122
2165
  colorTertiary: string;
2123
2166
  colorTertiaryHover: string;
2124
2167
  colorTertiaryPressed: string;
2168
+ colorTertiaryFocus: string;
2125
2169
  colorTertiaryDisalbed: string;
2126
2170
  waveColorTertiary: string;
2127
2171
  textColorTextTertiary: string;
2172
+ rippleColorTertiary: string;
2128
2173
  colorQuaternary: string;
2129
2174
  colorQuaternaryHover: string;
2130
2175
  colorQuaternaryPressed: string;
2176
+ colorQuaternaryFocus: string;
2177
+ rippleColorQuaternary: string;
2178
+ waveColorQuaternary: string;
2131
2179
  color: string;
2132
2180
  colorHover: string;
2133
2181
  colorPressed: string;
@@ -2506,16 +2554,24 @@ declare const _default: import("vue").DefineComponent<{
2506
2554
  colorSecondary: string;
2507
2555
  colorSecondaryHover: string;
2508
2556
  colorSecondaryPressed: string;
2557
+ colorSecondaryFocus: string;
2558
+ colorSecondaryDisabled: string;
2559
+ textColorSecondaryDisabled: string;
2509
2560
  waveColorSecondary: string;
2510
2561
  colorTertiary: string;
2511
2562
  colorTertiaryHover: string;
2512
2563
  colorTertiaryPressed: string;
2564
+ colorTertiaryFocus: string;
2513
2565
  colorTertiaryDisalbed: string;
2514
2566
  waveColorTertiary: string;
2515
2567
  textColorTextTertiary: string;
2568
+ rippleColorTertiary: string;
2516
2569
  colorQuaternary: string;
2517
2570
  colorQuaternaryHover: string;
2518
2571
  colorQuaternaryPressed: string;
2572
+ colorQuaternaryFocus: string;
2573
+ rippleColorQuaternary: string;
2574
+ waveColorQuaternary: string;
2519
2575
  color: string;
2520
2576
  colorHover: string;
2521
2577
  colorPressed: string;
@@ -2974,16 +3030,24 @@ declare const _default: import("vue").DefineComponent<{
2974
3030
  colorSecondary: string;
2975
3031
  colorSecondaryHover: string;
2976
3032
  colorSecondaryPressed: string;
3033
+ colorSecondaryFocus: string;
3034
+ colorSecondaryDisabled: string;
3035
+ textColorSecondaryDisabled: string;
2977
3036
  waveColorSecondary: string;
2978
3037
  colorTertiary: string;
2979
3038
  colorTertiaryHover: string;
2980
3039
  colorTertiaryPressed: string;
3040
+ colorTertiaryFocus: string;
2981
3041
  colorTertiaryDisalbed: string;
2982
3042
  waveColorTertiary: string;
2983
3043
  textColorTextTertiary: string;
3044
+ rippleColorTertiary: string;
2984
3045
  colorQuaternary: string;
2985
3046
  colorQuaternaryHover: string;
2986
3047
  colorQuaternaryPressed: string;
3048
+ colorQuaternaryFocus: string;
3049
+ rippleColorQuaternary: string;
3050
+ waveColorQuaternary: string;
2987
3051
  color: string;
2988
3052
  colorHover: string;
2989
3053
  colorPressed: string;
@@ -3349,16 +3413,24 @@ declare const _default: import("vue").DefineComponent<{
3349
3413
  colorSecondary: string;
3350
3414
  colorSecondaryHover: string;
3351
3415
  colorSecondaryPressed: string;
3416
+ colorSecondaryFocus: string;
3417
+ colorSecondaryDisabled: string;
3418
+ textColorSecondaryDisabled: string;
3352
3419
  waveColorSecondary: string;
3353
3420
  colorTertiary: string;
3354
3421
  colorTertiaryHover: string;
3355
3422
  colorTertiaryPressed: string;
3423
+ colorTertiaryFocus: string;
3356
3424
  colorTertiaryDisalbed: string;
3357
3425
  waveColorTertiary: string;
3358
3426
  textColorTextTertiary: string;
3427
+ rippleColorTertiary: string;
3359
3428
  colorQuaternary: string;
3360
3429
  colorQuaternaryHover: string;
3361
3430
  colorQuaternaryPressed: string;
3431
+ colorQuaternaryFocus: string;
3432
+ rippleColorQuaternary: string;
3433
+ waveColorQuaternary: string;
3362
3434
  color: string;
3363
3435
  colorHover: string;
3364
3436
  colorPressed: string;
@@ -3724,16 +3796,24 @@ declare const _default: import("vue").DefineComponent<{
3724
3796
  colorSecondary: string;
3725
3797
  colorSecondaryHover: string;
3726
3798
  colorSecondaryPressed: string;
3799
+ colorSecondaryFocus: string;
3800
+ colorSecondaryDisabled: string;
3801
+ textColorSecondaryDisabled: string;
3727
3802
  waveColorSecondary: string;
3728
3803
  colorTertiary: string;
3729
3804
  colorTertiaryHover: string;
3730
3805
  colorTertiaryPressed: string;
3806
+ colorTertiaryFocus: string;
3731
3807
  colorTertiaryDisalbed: string;
3732
3808
  waveColorTertiary: string;
3733
3809
  textColorTextTertiary: string;
3810
+ rippleColorTertiary: string;
3734
3811
  colorQuaternary: string;
3735
3812
  colorQuaternaryHover: string;
3736
3813
  colorQuaternaryPressed: string;
3814
+ colorQuaternaryFocus: string;
3815
+ rippleColorQuaternary: string;
3816
+ waveColorQuaternary: string;
3737
3817
  color: string;
3738
3818
  colorHover: string;
3739
3819
  colorPressed: string;
@@ -204,16 +204,24 @@ declare const _default: import("vue").DefineComponent<{
204
204
  colorSecondary: string;
205
205
  colorSecondaryHover: string;
206
206
  colorSecondaryPressed: string;
207
+ colorSecondaryFocus: string;
208
+ colorSecondaryDisabled: string;
209
+ textColorSecondaryDisabled: string;
207
210
  waveColorSecondary: string;
208
211
  colorTertiary: string;
209
212
  colorTertiaryHover: string;
210
213
  colorTertiaryPressed: string;
214
+ colorTertiaryFocus: string;
211
215
  colorTertiaryDisalbed: string;
212
216
  waveColorTertiary: string;
213
217
  textColorTextTertiary: string;
218
+ rippleColorTertiary: string;
214
219
  colorQuaternary: string;
215
220
  colorQuaternaryHover: string;
216
221
  colorQuaternaryPressed: string;
222
+ colorQuaternaryFocus: string;
223
+ rippleColorQuaternary: string;
224
+ waveColorQuaternary: string;
217
225
  color: string;
218
226
  colorHover: string;
219
227
  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;
@@ -204,16 +204,24 @@ declare const _default: import("vue").DefineComponent<{
204
204
  colorSecondary: string;
205
205
  colorSecondaryHover: string;
206
206
  colorSecondaryPressed: string;
207
+ colorSecondaryFocus: string;
208
+ colorSecondaryDisabled: string;
209
+ textColorSecondaryDisabled: string;
207
210
  waveColorSecondary: string;
208
211
  colorTertiary: string;
209
212
  colorTertiaryHover: string;
210
213
  colorTertiaryPressed: string;
214
+ colorTertiaryFocus: string;
211
215
  colorTertiaryDisalbed: string;
212
216
  waveColorTertiary: string;
213
217
  textColorTextTertiary: string;
218
+ rippleColorTertiary: string;
214
219
  colorQuaternary: string;
215
220
  colorQuaternaryHover: string;
216
221
  colorQuaternaryPressed: string;
222
+ colorQuaternaryFocus: string;
223
+ rippleColorQuaternary: string;
224
+ waveColorQuaternary: string;
217
225
  color: string;
218
226
  colorHover: string;
219
227
  colorPressed: string;
@@ -208,16 +208,24 @@ declare const transferLight: import("../../_mixins").Theme<"Transfer", {
208
208
  colorSecondary: string;
209
209
  colorSecondaryHover: string;
210
210
  colorSecondaryPressed: string;
211
+ colorSecondaryFocus: string;
212
+ colorSecondaryDisabled: string;
213
+ textColorSecondaryDisabled: string;
211
214
  waveColorSecondary: string;
212
215
  colorTertiary: string;
213
216
  colorTertiaryHover: string;
214
217
  colorTertiaryPressed: string;
218
+ colorTertiaryFocus: string;
215
219
  colorTertiaryDisalbed: string;
216
220
  waveColorTertiary: string;
217
221
  textColorTextTertiary: string;
222
+ rippleColorTertiary: string;
218
223
  colorQuaternary: string;
219
224
  colorQuaternaryHover: string;
220
225
  colorQuaternaryPressed: string;
226
+ colorQuaternaryFocus: string;
227
+ rippleColorQuaternary: string;
228
+ waveColorQuaternary: string;
221
229
  color: string;
222
230
  colorHover: string;
223
231
  colorPressed: string;
@@ -142,16 +142,24 @@ declare const _default: import("vue").DefineComponent<{
142
142
  colorSecondary: string;
143
143
  colorSecondaryHover: string;
144
144
  colorSecondaryPressed: string;
145
+ colorSecondaryFocus: string;
146
+ colorSecondaryDisabled: string;
147
+ textColorSecondaryDisabled: string;
145
148
  waveColorSecondary: string;
146
149
  colorTertiary: string;
147
150
  colorTertiaryHover: string;
148
151
  colorTertiaryPressed: string;
152
+ colorTertiaryFocus: string;
149
153
  colorTertiaryDisalbed: string;
150
154
  waveColorTertiary: string;
151
155
  textColorTextTertiary: string;
156
+ rippleColorTertiary: string;
152
157
  colorQuaternary: string;
153
158
  colorQuaternaryHover: string;
154
159
  colorQuaternaryPressed: string;
160
+ colorQuaternaryFocus: string;
161
+ rippleColorQuaternary: string;
162
+ waveColorQuaternary: string;
155
163
  color: string;
156
164
  colorHover: string;
157
165
  colorPressed: string;
@@ -404,16 +412,24 @@ declare const _default: import("vue").DefineComponent<{
404
412
  colorSecondary: string;
405
413
  colorSecondaryHover: string;
406
414
  colorSecondaryPressed: string;
415
+ colorSecondaryFocus: string;
416
+ colorSecondaryDisabled: string;
417
+ textColorSecondaryDisabled: string;
407
418
  waveColorSecondary: string;
408
419
  colorTertiary: string;
409
420
  colorTertiaryHover: string;
410
421
  colorTertiaryPressed: string;
422
+ colorTertiaryFocus: string;
411
423
  colorTertiaryDisalbed: string;
412
424
  waveColorTertiary: string;
413
425
  textColorTextTertiary: string;
426
+ rippleColorTertiary: string;
414
427
  colorQuaternary: string;
415
428
  colorQuaternaryHover: string;
416
429
  colorQuaternaryPressed: string;
430
+ colorQuaternaryFocus: string;
431
+ rippleColorQuaternary: string;
432
+ waveColorQuaternary: string;
417
433
  color: string;
418
434
  colorHover: string;
419
435
  colorPressed: string;