@uzum-tech/ui 1.8.1 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (303) hide show
  1. package/dist/index.js +847 -249
  2. package/dist/index.prod.js +3 -3
  3. package/es/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
  4. package/es/_internal/scrollbar/src/Scrollbar.js +121 -68
  5. package/es/_internal/scrollbar/src/styles/index.cssr.js +32 -15
  6. package/es/_internal/scrollbar/styles/common.d.ts +7 -0
  7. package/es/_internal/scrollbar/styles/common.js +7 -0
  8. package/es/_internal/scrollbar/styles/light.d.ts +8 -0
  9. package/es/_internal/scrollbar/styles/light.js +3 -5
  10. package/es/_internal/select-menu/src/SelectMenu.d.ts +57 -1
  11. package/es/_internal/select-menu/styles/light.d.ts +8 -0
  12. package/es/_internal/selection/src/Selection.d.ts +3 -1
  13. package/es/_internal/selection/src/Selection.js +3 -1
  14. package/es/_utils/css/index.d.ts +1 -0
  15. package/es/_utils/css/index.js +1 -0
  16. package/es/_utils/css/rtl-inset.d.ts +1 -0
  17. package/es/_utils/css/rtl-inset.js +5 -0
  18. package/es/_utils/index.d.ts +1 -1
  19. package/es/_utils/index.js +1 -1
  20. package/es/auto-complete/src/AutoComplete.d.ts +88 -0
  21. package/es/auto-complete/styles/light.d.ts +8 -0
  22. package/es/back-top/src/BackTop.d.ts +1 -1
  23. package/es/button/src/Button.d.ts +72 -0
  24. package/es/button/src/Button.js +13 -7
  25. package/es/button/src/styles/index.cssr.js +1 -2
  26. package/es/button/styles/light.d.ts +8 -0
  27. package/es/button/styles/light.js +7 -7
  28. package/es/calendar/src/Calendar.d.ts +80 -0
  29. package/es/calendar/styles/light.d.ts +8 -0
  30. package/es/cascader/src/Cascader.d.ts +168 -0
  31. package/es/cascader/src/CascaderMenu.d.ts +24 -0
  32. package/es/cascader/src/CascaderOption.d.ts +24 -0
  33. package/es/cascader/src/CascaderSelectMenu.d.ts +24 -0
  34. package/es/cascader/src/CascaderSubmenu.d.ts +25 -1
  35. package/es/cascader/styles/light.d.ts +16 -0
  36. package/es/chat/src/Chat.d.ts +175 -7
  37. package/es/chat/src/Chat.js +11 -12
  38. package/es/chat/src/ChatListItems.d.ts +192 -0
  39. package/es/chat/src/ChatListItems.js +4 -1
  40. package/es/chat/src/ChatMessages.d.ts +192 -0
  41. package/es/chat/src/styles/index.cssr.js +1 -3
  42. package/es/chat/styles/dark.d.ts +16 -0
  43. package/es/chat/styles/light.d.ts +16 -0
  44. package/es/color-picker/src/ColorInputUnit.d.ts +8 -0
  45. package/es/color-picker/src/ColorPicker.d.ts +72 -0
  46. package/es/color-picker/styles/light.d.ts +8 -0
  47. package/es/components.d.ts +2 -0
  48. package/es/components.js +2 -0
  49. package/es/data-table/src/DataTable.d.ts +240 -0
  50. package/es/data-table/src/HeaderButton/FilterButton.d.ts +48 -0
  51. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +48 -0
  52. package/es/data-table/src/TableParts/Body.d.ts +49 -1
  53. package/es/data-table/src/TableParts/Header.d.ts +48 -0
  54. package/es/data-table/src/interface.d.ts +96 -0
  55. package/es/data-table/styles/light.d.ts +32 -0
  56. package/es/date-picker/src/DatePicker.d.ts +339 -3
  57. package/es/date-picker/src/panel/date.d.ts +49 -1
  58. package/es/date-picker/src/panel/daterange.d.ts +50 -2
  59. package/es/date-picker/src/panel/datetime.d.ts +49 -1
  60. package/es/date-picker/src/panel/datetimerange.d.ts +50 -2
  61. package/es/date-picker/src/panel/panelMonth.d.ts +98 -2
  62. package/es/date-picker/src/panel/panelMonthContent.d.ts +49 -1
  63. package/es/date-picker/src/panel/panelYear.d.ts +98 -2
  64. package/es/date-picker/src/panel/panelYearContent.d.ts +49 -1
  65. package/es/date-picker/src/panel/use-calendar.d.ts +48 -0
  66. package/es/date-picker/src/panel/use-dual-calendar.d.ts +48 -0
  67. package/es/date-picker/src/panel/use-panel-common.d.ts +48 -0
  68. package/es/date-picker/styles/light.d.ts +32 -0
  69. package/es/dialog/src/Dialog.d.ts +56 -0
  70. package/es/dialog/src/DialogProvider.d.ts +18 -2
  71. package/es/dialog/styles/light.d.ts +8 -0
  72. package/es/drawer/src/Drawer.d.ts +81 -1
  73. package/es/drawer/src/DrawerBodyWrapper.d.ts +9 -1
  74. package/es/drawer/src/DrawerContent.d.ts +8 -0
  75. package/es/drawer/styles/light.d.ts +8 -0
  76. package/es/dropdown/src/Dropdown.d.ts +1 -1
  77. package/es/dynamic-input/src/DynamicInput.d.ts +80 -0
  78. package/es/dynamic-input/src/InputPreset.d.ts +8 -0
  79. package/es/dynamic-input/src/PairPreset.d.ts +8 -0
  80. package/es/dynamic-input/styles/light.d.ts +8 -0
  81. package/es/dynamic-tags/src/DynamicTags.d.ts +80 -0
  82. package/es/dynamic-tags/styles/light.d.ts +8 -0
  83. package/es/infinite-scroll/index.d.ts +2 -0
  84. package/es/infinite-scroll/index.js +1 -0
  85. package/es/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
  86. package/es/infinite-scroll/src/InfiniteScroll.js +78 -0
  87. package/es/input-number/src/InputNumber.d.ts +80 -0
  88. package/es/input-number/styles/light.d.ts +8 -0
  89. package/es/layout/src/Layout.d.ts +112 -0
  90. package/es/layout/src/LayoutContent.d.ts +56 -0
  91. package/es/layout/src/LayoutFooter.d.ts +72 -0
  92. package/es/layout/src/LayoutHeader.d.ts +48 -0
  93. package/es/layout/src/LayoutSider.d.ts +56 -0
  94. package/es/layout/styles/light.d.ts +8 -0
  95. package/es/legacy-transfer/src/Transfer.d.ts +160 -0
  96. package/es/legacy-transfer/src/TransferFilter.d.ts +16 -0
  97. package/es/legacy-transfer/src/TransferList.d.ts +17 -1
  98. package/es/legacy-transfer/src/TransferListItem.d.ts +16 -0
  99. package/es/legacy-transfer/styles/light.d.ts +16 -0
  100. package/es/log/src/Log.d.ts +80 -0
  101. package/es/log/styles/light.d.ts +8 -0
  102. package/es/mention/src/Mention.d.ts +88 -0
  103. package/es/mention/styles/light.d.ts +8 -0
  104. package/es/menu/src/Menu.d.ts +1 -1
  105. package/es/modal/src/BodyWrapper.d.ts +25 -1
  106. package/es/modal/src/Modal.d.ts +145 -1
  107. package/es/modal/styles/light.d.ts +16 -0
  108. package/es/notification/src/Notification.d.ts +5 -0
  109. package/es/notification/src/Notification.js +16 -6
  110. package/es/notification/src/NotificationContainer.d.ts +20 -0
  111. package/es/notification/src/NotificationProvider.d.ts +180 -0
  112. package/es/notification/src/styles/index.cssr.js +12 -8
  113. package/es/notification/styles/light.d.ts +32 -0
  114. package/es/notification/styles/light.js +9 -8
  115. package/es/pagination/src/Pagination.d.ts +176 -0
  116. package/es/pagination/styles/light.d.ts +16 -0
  117. package/es/popconfirm/src/Popconfirm.d.ts +80 -0
  118. package/es/popconfirm/styles/light.d.ts +8 -0
  119. package/es/popselect/src/Popselect.d.ts +88 -0
  120. package/es/popselect/src/PopselectPanel.d.ts +16 -0
  121. package/es/popselect/styles/light.d.ts +8 -0
  122. package/es/scrollbar/src/Scrollbar.d.ts +72 -0
  123. package/es/select/src/Select.d.ts +88 -0
  124. package/es/select/styles/light.d.ts +8 -0
  125. package/es/time-picker/src/Panel.d.ts +16 -0
  126. package/es/time-picker/src/TimePicker.d.ts +160 -0
  127. package/es/time-picker/styles/light.d.ts +16 -0
  128. package/es/transfer/src/Transfer.d.ts +160 -0
  129. package/es/transfer/src/TransferFilter.d.ts +16 -0
  130. package/es/transfer/src/TransferList.d.ts +17 -1
  131. package/es/transfer/src/TransferListItem.d.ts +16 -0
  132. package/es/transfer/styles/light.d.ts +16 -0
  133. package/es/tree/src/Tree.d.ts +82 -2
  134. package/es/tree/src/TreeNodeCheckbox.d.ts +8 -0
  135. package/es/tree/styles/light.d.ts +8 -0
  136. package/es/tree-select/src/TreeSelect.d.ts +89 -1
  137. package/es/tree-select/styles/light.d.ts +8 -0
  138. package/es/upload/src/Upload.d.ts +90 -0
  139. package/es/upload/src/Upload.js +2 -1
  140. package/es/upload/src/UploadFile.d.ts +9 -0
  141. package/es/upload/src/UploadProgress.d.ts +9 -0
  142. package/es/upload/src/styles/index.cssr.js +1 -0
  143. package/es/upload/src/useUploadActionsRender.js +5 -1
  144. package/es/upload/styles/light.d.ts +10 -0
  145. package/es/upload/styles/light.js +6 -5
  146. package/es/version.d.ts +1 -1
  147. package/es/version.js +1 -1
  148. package/es/virtual-list/index.d.ts +2 -0
  149. package/es/virtual-list/index.js +1 -0
  150. package/es/virtual-list/src/VirtualList.d.ts +146 -0
  151. package/es/virtual-list/src/VirtualList.js +103 -0
  152. package/lib/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
  153. package/lib/_internal/scrollbar/src/Scrollbar.js +118 -65
  154. package/lib/_internal/scrollbar/src/styles/index.cssr.js +32 -15
  155. package/lib/_internal/scrollbar/styles/common.d.ts +7 -0
  156. package/lib/_internal/scrollbar/styles/common.js +10 -0
  157. package/lib/_internal/scrollbar/styles/light.d.ts +8 -0
  158. package/lib/_internal/scrollbar/styles/light.js +3 -5
  159. package/lib/_internal/select-menu/src/SelectMenu.d.ts +57 -1
  160. package/lib/_internal/select-menu/styles/light.d.ts +8 -0
  161. package/lib/_internal/selection/src/Selection.d.ts +3 -1
  162. package/lib/_internal/selection/src/Selection.js +3 -1
  163. package/lib/_utils/css/index.d.ts +1 -0
  164. package/lib/_utils/css/index.js +3 -1
  165. package/lib/_utils/css/rtl-inset.d.ts +1 -0
  166. package/lib/_utils/css/rtl-inset.js +8 -0
  167. package/lib/_utils/index.d.ts +1 -1
  168. package/lib/_utils/index.js +2 -1
  169. package/lib/auto-complete/src/AutoComplete.d.ts +88 -0
  170. package/lib/auto-complete/styles/light.d.ts +8 -0
  171. package/lib/back-top/src/BackTop.d.ts +1 -1
  172. package/lib/button/src/Button.d.ts +72 -0
  173. package/lib/button/src/Button.js +13 -7
  174. package/lib/button/src/styles/index.cssr.js +1 -2
  175. package/lib/button/styles/light.d.ts +8 -0
  176. package/lib/button/styles/light.js +7 -7
  177. package/lib/calendar/src/Calendar.d.ts +80 -0
  178. package/lib/calendar/styles/light.d.ts +8 -0
  179. package/lib/cascader/src/Cascader.d.ts +168 -0
  180. package/lib/cascader/src/CascaderMenu.d.ts +24 -0
  181. package/lib/cascader/src/CascaderOption.d.ts +24 -0
  182. package/lib/cascader/src/CascaderSelectMenu.d.ts +24 -0
  183. package/lib/cascader/src/CascaderSubmenu.d.ts +25 -1
  184. package/lib/cascader/styles/light.d.ts +16 -0
  185. package/lib/chat/src/Chat.d.ts +175 -7
  186. package/lib/chat/src/Chat.js +11 -12
  187. package/lib/chat/src/ChatListItems.d.ts +192 -0
  188. package/lib/chat/src/ChatListItems.js +4 -1
  189. package/lib/chat/src/ChatMessages.d.ts +192 -0
  190. package/lib/chat/src/styles/index.cssr.js +1 -3
  191. package/lib/chat/styles/dark.d.ts +16 -0
  192. package/lib/chat/styles/light.d.ts +16 -0
  193. package/lib/color-picker/src/ColorInputUnit.d.ts +8 -0
  194. package/lib/color-picker/src/ColorPicker.d.ts +72 -0
  195. package/lib/color-picker/styles/light.d.ts +8 -0
  196. package/lib/components.d.ts +2 -0
  197. package/lib/components.js +2 -0
  198. package/lib/data-table/src/DataTable.d.ts +240 -0
  199. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +48 -0
  200. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +48 -0
  201. package/lib/data-table/src/TableParts/Body.d.ts +49 -1
  202. package/lib/data-table/src/TableParts/Header.d.ts +48 -0
  203. package/lib/data-table/src/interface.d.ts +96 -0
  204. package/lib/data-table/styles/light.d.ts +32 -0
  205. package/lib/date-picker/src/DatePicker.d.ts +339 -3
  206. package/lib/date-picker/src/panel/date.d.ts +49 -1
  207. package/lib/date-picker/src/panel/daterange.d.ts +50 -2
  208. package/lib/date-picker/src/panel/datetime.d.ts +49 -1
  209. package/lib/date-picker/src/panel/datetimerange.d.ts +50 -2
  210. package/lib/date-picker/src/panel/panelMonth.d.ts +98 -2
  211. package/lib/date-picker/src/panel/panelMonthContent.d.ts +49 -1
  212. package/lib/date-picker/src/panel/panelYear.d.ts +98 -2
  213. package/lib/date-picker/src/panel/panelYearContent.d.ts +49 -1
  214. package/lib/date-picker/src/panel/use-calendar.d.ts +48 -0
  215. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +48 -0
  216. package/lib/date-picker/src/panel/use-panel-common.d.ts +48 -0
  217. package/lib/date-picker/styles/light.d.ts +32 -0
  218. package/lib/dialog/src/Dialog.d.ts +56 -0
  219. package/lib/dialog/src/DialogProvider.d.ts +18 -2
  220. package/lib/dialog/styles/light.d.ts +8 -0
  221. package/lib/drawer/src/Drawer.d.ts +81 -1
  222. package/lib/drawer/src/DrawerBodyWrapper.d.ts +9 -1
  223. package/lib/drawer/src/DrawerContent.d.ts +8 -0
  224. package/lib/drawer/styles/light.d.ts +8 -0
  225. package/lib/dropdown/src/Dropdown.d.ts +1 -1
  226. package/lib/dynamic-input/src/DynamicInput.d.ts +80 -0
  227. package/lib/dynamic-input/src/InputPreset.d.ts +8 -0
  228. package/lib/dynamic-input/src/PairPreset.d.ts +8 -0
  229. package/lib/dynamic-input/styles/light.d.ts +8 -0
  230. package/lib/dynamic-tags/src/DynamicTags.d.ts +80 -0
  231. package/lib/dynamic-tags/styles/light.d.ts +8 -0
  232. package/lib/infinite-scroll/index.d.ts +2 -0
  233. package/lib/infinite-scroll/index.js +9 -0
  234. package/lib/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
  235. package/lib/infinite-scroll/src/InfiniteScroll.js +81 -0
  236. package/lib/input-number/src/InputNumber.d.ts +80 -0
  237. package/lib/input-number/styles/light.d.ts +8 -0
  238. package/lib/layout/src/Layout.d.ts +112 -0
  239. package/lib/layout/src/LayoutContent.d.ts +56 -0
  240. package/lib/layout/src/LayoutFooter.d.ts +72 -0
  241. package/lib/layout/src/LayoutHeader.d.ts +48 -0
  242. package/lib/layout/src/LayoutSider.d.ts +56 -0
  243. package/lib/layout/styles/light.d.ts +8 -0
  244. package/lib/legacy-transfer/src/Transfer.d.ts +160 -0
  245. package/lib/legacy-transfer/src/TransferFilter.d.ts +16 -0
  246. package/lib/legacy-transfer/src/TransferList.d.ts +17 -1
  247. package/lib/legacy-transfer/src/TransferListItem.d.ts +16 -0
  248. package/lib/legacy-transfer/styles/light.d.ts +16 -0
  249. package/lib/log/src/Log.d.ts +80 -0
  250. package/lib/log/styles/light.d.ts +8 -0
  251. package/lib/mention/src/Mention.d.ts +88 -0
  252. package/lib/mention/styles/light.d.ts +8 -0
  253. package/lib/menu/src/Menu.d.ts +1 -1
  254. package/lib/modal/src/BodyWrapper.d.ts +25 -1
  255. package/lib/modal/src/Modal.d.ts +145 -1
  256. package/lib/modal/styles/light.d.ts +16 -0
  257. package/lib/notification/src/Notification.d.ts +5 -0
  258. package/lib/notification/src/Notification.js +14 -4
  259. package/lib/notification/src/NotificationContainer.d.ts +20 -0
  260. package/lib/notification/src/NotificationProvider.d.ts +180 -0
  261. package/lib/notification/src/styles/index.cssr.js +12 -8
  262. package/lib/notification/styles/light.d.ts +32 -0
  263. package/lib/notification/styles/light.js +9 -8
  264. package/lib/pagination/src/Pagination.d.ts +176 -0
  265. package/lib/pagination/styles/light.d.ts +16 -0
  266. package/lib/popconfirm/src/Popconfirm.d.ts +80 -0
  267. package/lib/popconfirm/styles/light.d.ts +8 -0
  268. package/lib/popselect/src/Popselect.d.ts +88 -0
  269. package/lib/popselect/src/PopselectPanel.d.ts +16 -0
  270. package/lib/popselect/styles/light.d.ts +8 -0
  271. package/lib/scrollbar/src/Scrollbar.d.ts +72 -0
  272. package/lib/select/src/Select.d.ts +88 -0
  273. package/lib/select/styles/light.d.ts +8 -0
  274. package/lib/time-picker/src/Panel.d.ts +16 -0
  275. package/lib/time-picker/src/TimePicker.d.ts +160 -0
  276. package/lib/time-picker/styles/light.d.ts +16 -0
  277. package/lib/transfer/src/Transfer.d.ts +160 -0
  278. package/lib/transfer/src/TransferFilter.d.ts +16 -0
  279. package/lib/transfer/src/TransferList.d.ts +17 -1
  280. package/lib/transfer/src/TransferListItem.d.ts +16 -0
  281. package/lib/transfer/styles/light.d.ts +16 -0
  282. package/lib/tree/src/Tree.d.ts +82 -2
  283. package/lib/tree/src/TreeNodeCheckbox.d.ts +8 -0
  284. package/lib/tree/styles/light.d.ts +8 -0
  285. package/lib/tree-select/src/TreeSelect.d.ts +89 -1
  286. package/lib/tree-select/styles/light.d.ts +8 -0
  287. package/lib/upload/src/Upload.d.ts +90 -0
  288. package/lib/upload/src/Upload.js +2 -1
  289. package/lib/upload/src/UploadFile.d.ts +9 -0
  290. package/lib/upload/src/UploadProgress.d.ts +9 -0
  291. package/lib/upload/src/styles/index.cssr.js +1 -0
  292. package/lib/upload/src/useUploadActionsRender.js +5 -1
  293. package/lib/upload/styles/light.d.ts +10 -0
  294. package/lib/upload/styles/light.js +6 -5
  295. package/lib/version.d.ts +1 -1
  296. package/lib/version.js +1 -1
  297. package/lib/virtual-list/index.d.ts +2 -0
  298. package/lib/virtual-list/index.js +9 -0
  299. package/lib/virtual-list/src/VirtualList.d.ts +146 -0
  300. package/lib/virtual-list/src/VirtualList.js +106 -0
  301. package/package.json +2 -2
  302. package/volar.d.ts +1 -0
  303. package/web-types.json +33 -4
@@ -37,8 +37,16 @@ declare const timePickerLight: import("../../_mixins").Theme<"TimePicker", {
37
37
  iconColorDisabled: string;
38
38
  }, {
39
39
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
40
+ height: string;
41
+ width: string;
42
+ borderRadius: string;
40
43
  color: string;
41
44
  colorHover: string;
45
+ railInsetHorizontalBottom: string;
46
+ railInsetHorizontalTop: string;
47
+ railInsetVerticalRight: string;
48
+ railInsetVerticalLeft: string;
49
+ railColor: string;
42
50
  }, any>;
43
51
  Button: import("../../_mixins").Theme<"Button", {
44
52
  heightTiny: string;
@@ -61,16 +69,24 @@ declare const timePickerLight: import("../../_mixins").Theme<"TimePicker", {
61
69
  colorSecondary: string;
62
70
  colorSecondaryHover: string;
63
71
  colorSecondaryPressed: string;
72
+ colorSecondaryFocus: string;
73
+ colorSecondaryDisabled: string;
74
+ textColorSecondaryDisabled: string;
64
75
  waveColorSecondary: string;
65
76
  colorTertiary: string;
66
77
  colorTertiaryHover: string;
67
78
  colorTertiaryPressed: string;
79
+ colorTertiaryFocus: string;
68
80
  colorTertiaryDisalbed: string;
69
81
  waveColorTertiary: string;
70
82
  textColorTextTertiary: string;
83
+ rippleColorTertiary: string;
71
84
  colorQuaternary: string;
72
85
  colorQuaternaryHover: string;
73
86
  colorQuaternaryPressed: string;
87
+ colorQuaternaryFocus: string;
88
+ rippleColorQuaternary: string;
89
+ waveColorQuaternary: string;
74
90
  color: string;
75
91
  colorHover: string;
76
92
  colorPressed: string;
@@ -134,8 +134,16 @@ export declare const transferProps: {
134
134
  labelPadding: string;
135
135
  }, any>;
136
136
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
137
+ height: string;
138
+ width: string;
139
+ borderRadius: string;
137
140
  color: string;
138
141
  colorHover: string;
142
+ railInsetHorizontalBottom: string;
143
+ railInsetHorizontalTop: string;
144
+ railInsetVerticalRight: string;
145
+ railInsetVerticalLeft: string;
146
+ railColor: string;
139
147
  }, any>;
140
148
  Input: import("../../_mixins").Theme<"Input", {
141
149
  paddingTiny: string;
@@ -241,16 +249,24 @@ export declare const transferProps: {
241
249
  colorSecondary: string;
242
250
  colorSecondaryHover: string;
243
251
  colorSecondaryPressed: string;
252
+ colorSecondaryFocus: string;
253
+ colorSecondaryDisabled: string;
254
+ textColorSecondaryDisabled: string;
244
255
  waveColorSecondary: string;
245
256
  colorTertiary: string;
246
257
  colorTertiaryHover: string;
247
258
  colorTertiaryPressed: string;
259
+ colorTertiaryFocus: string;
248
260
  colorTertiaryDisalbed: string;
249
261
  waveColorTertiary: string;
250
262
  textColorTextTertiary: string;
263
+ rippleColorTertiary: string;
251
264
  colorQuaternary: string;
252
265
  colorQuaternaryHover: string;
253
266
  colorQuaternaryPressed: string;
267
+ colorQuaternaryFocus: string;
268
+ rippleColorQuaternary: string;
269
+ waveColorQuaternary: string;
254
270
  color: string;
255
271
  colorHover: string;
256
272
  colorPressed: string;
@@ -522,8 +538,16 @@ export declare const transferProps: {
522
538
  labelPadding: string;
523
539
  }, any>;
524
540
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
541
+ height: string;
542
+ width: string;
543
+ borderRadius: string;
525
544
  color: string;
526
545
  colorHover: string;
546
+ railInsetHorizontalBottom: string;
547
+ railInsetHorizontalTop: string;
548
+ railInsetVerticalRight: string;
549
+ railInsetVerticalLeft: string;
550
+ railColor: string;
527
551
  }, any>;
528
552
  Input: import("../../_mixins").Theme<"Input", {
529
553
  paddingTiny: string;
@@ -629,16 +653,24 @@ export declare const transferProps: {
629
653
  colorSecondary: string;
630
654
  colorSecondaryHover: string;
631
655
  colorSecondaryPressed: string;
656
+ colorSecondaryFocus: string;
657
+ colorSecondaryDisabled: string;
658
+ textColorSecondaryDisabled: string;
632
659
  waveColorSecondary: string;
633
660
  colorTertiary: string;
634
661
  colorTertiaryHover: string;
635
662
  colorTertiaryPressed: string;
663
+ colorTertiaryFocus: string;
636
664
  colorTertiaryDisalbed: string;
637
665
  waveColorTertiary: string;
638
666
  textColorTextTertiary: string;
667
+ rippleColorTertiary: string;
639
668
  colorQuaternary: string;
640
669
  colorQuaternaryHover: string;
641
670
  colorQuaternaryPressed: string;
671
+ colorQuaternaryFocus: string;
672
+ rippleColorQuaternary: string;
673
+ waveColorQuaternary: string;
642
674
  color: string;
643
675
  colorHover: string;
644
676
  colorPressed: string;
@@ -910,8 +942,16 @@ export declare const transferProps: {
910
942
  labelPadding: string;
911
943
  }, any>;
912
944
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
945
+ height: string;
946
+ width: string;
947
+ borderRadius: string;
913
948
  color: string;
914
949
  colorHover: string;
950
+ railInsetHorizontalBottom: string;
951
+ railInsetHorizontalTop: string;
952
+ railInsetVerticalRight: string;
953
+ railInsetVerticalLeft: string;
954
+ railColor: string;
915
955
  }, any>;
916
956
  Input: import("../../_mixins").Theme<"Input", {
917
957
  paddingTiny: string;
@@ -1017,16 +1057,24 @@ export declare const transferProps: {
1017
1057
  colorSecondary: string;
1018
1058
  colorSecondaryHover: string;
1019
1059
  colorSecondaryPressed: string;
1060
+ colorSecondaryFocus: string;
1061
+ colorSecondaryDisabled: string;
1062
+ textColorSecondaryDisabled: string;
1020
1063
  waveColorSecondary: string;
1021
1064
  colorTertiary: string;
1022
1065
  colorTertiaryHover: string;
1023
1066
  colorTertiaryPressed: string;
1067
+ colorTertiaryFocus: string;
1024
1068
  colorTertiaryDisalbed: string;
1025
1069
  waveColorTertiary: string;
1026
1070
  textColorTextTertiary: string;
1071
+ rippleColorTertiary: string;
1027
1072
  colorQuaternary: string;
1028
1073
  colorQuaternaryHover: string;
1029
1074
  colorQuaternaryPressed: string;
1075
+ colorQuaternaryFocus: string;
1076
+ rippleColorQuaternary: string;
1077
+ waveColorQuaternary: string;
1030
1078
  color: string;
1031
1079
  colorHover: string;
1032
1080
  colorPressed: string;
@@ -1343,8 +1391,16 @@ declare const _default: import("vue").DefineComponent<{
1343
1391
  labelPadding: string;
1344
1392
  }, any>;
1345
1393
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1394
+ height: string;
1395
+ width: string;
1396
+ borderRadius: string;
1346
1397
  color: string;
1347
1398
  colorHover: string;
1399
+ railInsetHorizontalBottom: string;
1400
+ railInsetHorizontalTop: string;
1401
+ railInsetVerticalRight: string;
1402
+ railInsetVerticalLeft: string;
1403
+ railColor: string;
1348
1404
  }, any>;
1349
1405
  Input: import("../../_mixins").Theme<"Input", {
1350
1406
  paddingTiny: string;
@@ -1450,16 +1506,24 @@ declare const _default: import("vue").DefineComponent<{
1450
1506
  colorSecondary: string;
1451
1507
  colorSecondaryHover: string;
1452
1508
  colorSecondaryPressed: string;
1509
+ colorSecondaryFocus: string;
1510
+ colorSecondaryDisabled: string;
1511
+ textColorSecondaryDisabled: string;
1453
1512
  waveColorSecondary: string;
1454
1513
  colorTertiary: string;
1455
1514
  colorTertiaryHover: string;
1456
1515
  colorTertiaryPressed: string;
1516
+ colorTertiaryFocus: string;
1457
1517
  colorTertiaryDisalbed: string;
1458
1518
  waveColorTertiary: string;
1459
1519
  textColorTextTertiary: string;
1520
+ rippleColorTertiary: string;
1460
1521
  colorQuaternary: string;
1461
1522
  colorQuaternaryHover: string;
1462
1523
  colorQuaternaryPressed: string;
1524
+ colorQuaternaryFocus: string;
1525
+ rippleColorQuaternary: string;
1526
+ waveColorQuaternary: string;
1463
1527
  color: string;
1464
1528
  colorHover: string;
1465
1529
  colorPressed: string;
@@ -1731,8 +1795,16 @@ declare const _default: import("vue").DefineComponent<{
1731
1795
  labelPadding: string;
1732
1796
  }, any>;
1733
1797
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1798
+ height: string;
1799
+ width: string;
1800
+ borderRadius: string;
1734
1801
  color: string;
1735
1802
  colorHover: string;
1803
+ railInsetHorizontalBottom: string;
1804
+ railInsetHorizontalTop: string;
1805
+ railInsetVerticalRight: string;
1806
+ railInsetVerticalLeft: string;
1807
+ railColor: string;
1736
1808
  }, any>;
1737
1809
  Input: import("../../_mixins").Theme<"Input", {
1738
1810
  paddingTiny: string;
@@ -1838,16 +1910,24 @@ declare const _default: import("vue").DefineComponent<{
1838
1910
  colorSecondary: string;
1839
1911
  colorSecondaryHover: string;
1840
1912
  colorSecondaryPressed: string;
1913
+ colorSecondaryFocus: string;
1914
+ colorSecondaryDisabled: string;
1915
+ textColorSecondaryDisabled: string;
1841
1916
  waveColorSecondary: string;
1842
1917
  colorTertiary: string;
1843
1918
  colorTertiaryHover: string;
1844
1919
  colorTertiaryPressed: string;
1920
+ colorTertiaryFocus: string;
1845
1921
  colorTertiaryDisalbed: string;
1846
1922
  waveColorTertiary: string;
1847
1923
  textColorTextTertiary: string;
1924
+ rippleColorTertiary: string;
1848
1925
  colorQuaternary: string;
1849
1926
  colorQuaternaryHover: string;
1850
1927
  colorQuaternaryPressed: string;
1928
+ colorQuaternaryFocus: string;
1929
+ rippleColorQuaternary: string;
1930
+ waveColorQuaternary: string;
1851
1931
  color: string;
1852
1932
  colorHover: string;
1853
1933
  colorPressed: string;
@@ -2119,8 +2199,16 @@ declare const _default: import("vue").DefineComponent<{
2119
2199
  labelPadding: string;
2120
2200
  }, any>;
2121
2201
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2202
+ height: string;
2203
+ width: string;
2204
+ borderRadius: string;
2122
2205
  color: string;
2123
2206
  colorHover: string;
2207
+ railInsetHorizontalBottom: string;
2208
+ railInsetHorizontalTop: string;
2209
+ railInsetVerticalRight: string;
2210
+ railInsetVerticalLeft: string;
2211
+ railColor: string;
2124
2212
  }, any>;
2125
2213
  Input: import("../../_mixins").Theme<"Input", {
2126
2214
  paddingTiny: string;
@@ -2226,16 +2314,24 @@ declare const _default: import("vue").DefineComponent<{
2226
2314
  colorSecondary: string;
2227
2315
  colorSecondaryHover: string;
2228
2316
  colorSecondaryPressed: string;
2317
+ colorSecondaryFocus: string;
2318
+ colorSecondaryDisabled: string;
2319
+ textColorSecondaryDisabled: string;
2229
2320
  waveColorSecondary: string;
2230
2321
  colorTertiary: string;
2231
2322
  colorTertiaryHover: string;
2232
2323
  colorTertiaryPressed: string;
2324
+ colorTertiaryFocus: string;
2233
2325
  colorTertiaryDisalbed: string;
2234
2326
  waveColorTertiary: string;
2235
2327
  textColorTextTertiary: string;
2328
+ rippleColorTertiary: string;
2236
2329
  colorQuaternary: string;
2237
2330
  colorQuaternaryHover: string;
2238
2331
  colorQuaternaryPressed: string;
2332
+ colorQuaternaryFocus: string;
2333
+ rippleColorQuaternary: string;
2334
+ waveColorQuaternary: string;
2239
2335
  color: string;
2240
2336
  colorHover: string;
2241
2337
  colorPressed: string;
@@ -2515,8 +2611,16 @@ declare const _default: import("vue").DefineComponent<{
2515
2611
  labelPadding: string;
2516
2612
  }, any>;
2517
2613
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2614
+ height: string;
2615
+ width: string;
2616
+ borderRadius: string;
2518
2617
  color: string;
2519
2618
  colorHover: string;
2619
+ railInsetHorizontalBottom: string;
2620
+ railInsetHorizontalTop: string;
2621
+ railInsetVerticalRight: string;
2622
+ railInsetVerticalLeft: string;
2623
+ railColor: string;
2520
2624
  }, any>;
2521
2625
  Input: import("../../_mixins").Theme<"Input", {
2522
2626
  paddingTiny: string;
@@ -2622,16 +2726,24 @@ declare const _default: import("vue").DefineComponent<{
2622
2726
  colorSecondary: string;
2623
2727
  colorSecondaryHover: string;
2624
2728
  colorSecondaryPressed: string;
2729
+ colorSecondaryFocus: string;
2730
+ colorSecondaryDisabled: string;
2731
+ textColorSecondaryDisabled: string;
2625
2732
  waveColorSecondary: string;
2626
2733
  colorTertiary: string;
2627
2734
  colorTertiaryHover: string;
2628
2735
  colorTertiaryPressed: string;
2736
+ colorTertiaryFocus: string;
2629
2737
  colorTertiaryDisalbed: string;
2630
2738
  waveColorTertiary: string;
2631
2739
  textColorTextTertiary: string;
2740
+ rippleColorTertiary: string;
2632
2741
  colorQuaternary: string;
2633
2742
  colorQuaternaryHover: string;
2634
2743
  colorQuaternaryPressed: string;
2744
+ colorQuaternaryFocus: string;
2745
+ rippleColorQuaternary: string;
2746
+ waveColorQuaternary: string;
2635
2747
  color: string;
2636
2748
  colorHover: string;
2637
2749
  colorPressed: string;
@@ -3014,8 +3126,16 @@ declare const _default: import("vue").DefineComponent<{
3014
3126
  labelPadding: string;
3015
3127
  }, any>;
3016
3128
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3129
+ height: string;
3130
+ width: string;
3131
+ borderRadius: string;
3017
3132
  color: string;
3018
3133
  colorHover: string;
3134
+ railInsetHorizontalBottom: string;
3135
+ railInsetHorizontalTop: string;
3136
+ railInsetVerticalRight: string;
3137
+ railInsetVerticalLeft: string;
3138
+ railColor: string;
3019
3139
  }, any>;
3020
3140
  Input: import("../../_mixins").Theme<"Input", {
3021
3141
  paddingTiny: string;
@@ -3121,16 +3241,24 @@ declare const _default: import("vue").DefineComponent<{
3121
3241
  colorSecondary: string;
3122
3242
  colorSecondaryHover: string;
3123
3243
  colorSecondaryPressed: string;
3244
+ colorSecondaryFocus: string;
3245
+ colorSecondaryDisabled: string;
3246
+ textColorSecondaryDisabled: string;
3124
3247
  waveColorSecondary: string;
3125
3248
  colorTertiary: string;
3126
3249
  colorTertiaryHover: string;
3127
3250
  colorTertiaryPressed: string;
3251
+ colorTertiaryFocus: string;
3128
3252
  colorTertiaryDisalbed: string;
3129
3253
  waveColorTertiary: string;
3130
3254
  textColorTextTertiary: string;
3255
+ rippleColorTertiary: string;
3131
3256
  colorQuaternary: string;
3132
3257
  colorQuaternaryHover: string;
3133
3258
  colorQuaternaryPressed: string;
3259
+ colorQuaternaryFocus: string;
3260
+ rippleColorQuaternary: string;
3261
+ waveColorQuaternary: string;
3134
3262
  color: string;
3135
3263
  colorHover: string;
3136
3264
  colorPressed: string;
@@ -3402,8 +3530,16 @@ declare const _default: import("vue").DefineComponent<{
3402
3530
  labelPadding: string;
3403
3531
  }, any>;
3404
3532
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3533
+ height: string;
3534
+ width: string;
3535
+ borderRadius: string;
3405
3536
  color: string;
3406
3537
  colorHover: string;
3538
+ railInsetHorizontalBottom: string;
3539
+ railInsetHorizontalTop: string;
3540
+ railInsetVerticalRight: string;
3541
+ railInsetVerticalLeft: string;
3542
+ railColor: string;
3407
3543
  }, any>;
3408
3544
  Input: import("../../_mixins").Theme<"Input", {
3409
3545
  paddingTiny: string;
@@ -3509,16 +3645,24 @@ declare const _default: import("vue").DefineComponent<{
3509
3645
  colorSecondary: string;
3510
3646
  colorSecondaryHover: string;
3511
3647
  colorSecondaryPressed: string;
3648
+ colorSecondaryFocus: string;
3649
+ colorSecondaryDisabled: string;
3650
+ textColorSecondaryDisabled: string;
3512
3651
  waveColorSecondary: string;
3513
3652
  colorTertiary: string;
3514
3653
  colorTertiaryHover: string;
3515
3654
  colorTertiaryPressed: string;
3655
+ colorTertiaryFocus: string;
3516
3656
  colorTertiaryDisalbed: string;
3517
3657
  waveColorTertiary: string;
3518
3658
  textColorTextTertiary: string;
3659
+ rippleColorTertiary: string;
3519
3660
  colorQuaternary: string;
3520
3661
  colorQuaternaryHover: string;
3521
3662
  colorQuaternaryPressed: string;
3663
+ colorQuaternaryFocus: string;
3664
+ rippleColorQuaternary: string;
3665
+ waveColorQuaternary: string;
3522
3666
  color: string;
3523
3667
  colorHover: string;
3524
3668
  colorPressed: string;
@@ -3790,8 +3934,16 @@ declare const _default: import("vue").DefineComponent<{
3790
3934
  labelPadding: string;
3791
3935
  }, any>;
3792
3936
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3937
+ height: string;
3938
+ width: string;
3939
+ borderRadius: string;
3793
3940
  color: string;
3794
3941
  colorHover: string;
3942
+ railInsetHorizontalBottom: string;
3943
+ railInsetHorizontalTop: string;
3944
+ railInsetVerticalRight: string;
3945
+ railInsetVerticalLeft: string;
3946
+ railColor: string;
3795
3947
  }, any>;
3796
3948
  Input: import("../../_mixins").Theme<"Input", {
3797
3949
  paddingTiny: string;
@@ -3897,16 +4049,24 @@ declare const _default: import("vue").DefineComponent<{
3897
4049
  colorSecondary: string;
3898
4050
  colorSecondaryHover: string;
3899
4051
  colorSecondaryPressed: string;
4052
+ colorSecondaryFocus: string;
4053
+ colorSecondaryDisabled: string;
4054
+ textColorSecondaryDisabled: string;
3900
4055
  waveColorSecondary: string;
3901
4056
  colorTertiary: string;
3902
4057
  colorTertiaryHover: string;
3903
4058
  colorTertiaryPressed: string;
4059
+ colorTertiaryFocus: string;
3904
4060
  colorTertiaryDisalbed: string;
3905
4061
  waveColorTertiary: string;
3906
4062
  textColorTextTertiary: string;
4063
+ rippleColorTertiary: string;
3907
4064
  colorQuaternary: string;
3908
4065
  colorQuaternaryHover: string;
3909
4066
  colorQuaternaryPressed: string;
4067
+ colorQuaternaryFocus: string;
4068
+ rippleColorQuaternary: string;
4069
+ waveColorQuaternary: string;
3910
4070
  color: string;
3911
4071
  colorHover: string;
3912
4072
  colorPressed: string;
@@ -102,8 +102,16 @@ declare const _default: import("vue").DefineComponent<{
102
102
  labelPadding: string;
103
103
  }, any>;
104
104
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
105
+ height: string;
106
+ width: string;
107
+ borderRadius: string;
105
108
  color: string;
106
109
  colorHover: string;
110
+ railInsetHorizontalBottom: string;
111
+ railInsetHorizontalTop: string;
112
+ railInsetVerticalRight: string;
113
+ railInsetVerticalLeft: string;
114
+ railColor: string;
107
115
  }, any>;
108
116
  Input: import("../../_mixins").Theme<"Input", {
109
117
  paddingTiny: string;
@@ -209,16 +217,24 @@ declare const _default: import("vue").DefineComponent<{
209
217
  colorSecondary: string;
210
218
  colorSecondaryHover: string;
211
219
  colorSecondaryPressed: string;
220
+ colorSecondaryFocus: string;
221
+ colorSecondaryDisabled: string;
222
+ textColorSecondaryDisabled: string;
212
223
  waveColorSecondary: string;
213
224
  colorTertiary: string;
214
225
  colorTertiaryHover: string;
215
226
  colorTertiaryPressed: string;
227
+ colorTertiaryFocus: string;
216
228
  colorTertiaryDisalbed: string;
217
229
  waveColorTertiary: string;
218
230
  textColorTextTertiary: string;
231
+ rippleColorTertiary: string;
219
232
  colorQuaternary: string;
220
233
  colorQuaternaryHover: string;
221
234
  colorQuaternaryPressed: string;
235
+ colorQuaternaryFocus: string;
236
+ rippleColorQuaternary: string;
237
+ waveColorQuaternary: string;
222
238
  color: string;
223
239
  colorHover: string;
224
240
  colorPressed: string;
@@ -112,8 +112,16 @@ declare const _default: import("vue").DefineComponent<{
112
112
  labelPadding: string;
113
113
  }, any>;
114
114
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
115
+ height: string;
116
+ width: string;
117
+ borderRadius: string;
115
118
  color: string;
116
119
  colorHover: string;
120
+ railInsetHorizontalBottom: string;
121
+ railInsetHorizontalTop: string;
122
+ railInsetVerticalRight: string;
123
+ railInsetVerticalLeft: string;
124
+ railColor: string;
117
125
  }, any>;
118
126
  Input: import("../../_mixins").Theme<"Input", {
119
127
  paddingTiny: string;
@@ -219,16 +227,24 @@ declare const _default: import("vue").DefineComponent<{
219
227
  colorSecondary: string;
220
228
  colorSecondaryHover: string;
221
229
  colorSecondaryPressed: string;
230
+ colorSecondaryFocus: string;
231
+ colorSecondaryDisabled: string;
232
+ textColorSecondaryDisabled: string;
222
233
  waveColorSecondary: string;
223
234
  colorTertiary: string;
224
235
  colorTertiaryHover: string;
225
236
  colorTertiaryPressed: string;
237
+ colorTertiaryFocus: string;
226
238
  colorTertiaryDisalbed: string;
227
239
  waveColorTertiary: string;
228
240
  textColorTextTertiary: string;
241
+ rippleColorTertiary: string;
229
242
  colorQuaternary: string;
230
243
  colorQuaternaryHover: string;
231
244
  colorQuaternaryPressed: string;
245
+ colorQuaternaryFocus: string;
246
+ rippleColorQuaternary: string;
247
+ waveColorQuaternary: string;
232
248
  color: string;
233
249
  colorHover: string;
234
250
  colorPressed: string;
@@ -454,7 +470,7 @@ declare const _default: import("vue").DefineComponent<{
454
470
  vlInstRef: import("vue").Ref<{
455
471
  listElRef: HTMLElement;
456
472
  itemsElRef: HTMLElement | null;
457
- scrollTo: import("vueuc/lib/virtual-list/src/VirtualList").ScrollTo;
473
+ scrollTo: import("vueuc").VVirtualListScrollTo;
458
474
  } | null>;
459
475
  syncVLScroller: () => void;
460
476
  scrollContainer: () => HTMLElement | null;
@@ -110,8 +110,16 @@ declare const _default: import("vue").DefineComponent<{
110
110
  labelPadding: string;
111
111
  }, any>;
112
112
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
113
+ height: string;
114
+ width: string;
115
+ borderRadius: string;
113
116
  color: string;
114
117
  colorHover: string;
118
+ railInsetHorizontalBottom: string;
119
+ railInsetHorizontalTop: string;
120
+ railInsetVerticalRight: string;
121
+ railInsetVerticalLeft: string;
122
+ railColor: string;
115
123
  }, any>;
116
124
  Input: import("../../_mixins").Theme<"Input", {
117
125
  paddingTiny: string;
@@ -217,16 +225,24 @@ declare const _default: import("vue").DefineComponent<{
217
225
  colorSecondary: string;
218
226
  colorSecondaryHover: string;
219
227
  colorSecondaryPressed: string;
228
+ colorSecondaryFocus: string;
229
+ colorSecondaryDisabled: string;
230
+ textColorSecondaryDisabled: string;
220
231
  waveColorSecondary: string;
221
232
  colorTertiary: string;
222
233
  colorTertiaryHover: string;
223
234
  colorTertiaryPressed: string;
235
+ colorTertiaryFocus: string;
224
236
  colorTertiaryDisalbed: string;
225
237
  waveColorTertiary: string;
226
238
  textColorTextTertiary: string;
239
+ rippleColorTertiary: string;
227
240
  colorQuaternary: string;
228
241
  colorQuaternaryHover: string;
229
242
  colorQuaternaryPressed: string;
243
+ colorQuaternaryFocus: string;
244
+ rippleColorQuaternary: string;
245
+ waveColorQuaternary: string;
230
246
  color: string;
231
247
  colorHover: string;
232
248
  colorPressed: string;
@@ -127,8 +127,16 @@ declare const transferLight: import("../../_mixins").Theme<"Transfer", {
127
127
  labelPadding: string;
128
128
  }, any>;
129
129
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
130
+ height: string;
131
+ width: string;
132
+ borderRadius: string;
130
133
  color: string;
131
134
  colorHover: string;
135
+ railInsetHorizontalBottom: string;
136
+ railInsetHorizontalTop: string;
137
+ railInsetVerticalRight: string;
138
+ railInsetVerticalLeft: string;
139
+ railColor: string;
132
140
  }, any>;
133
141
  Input: import("../../_mixins").Theme<"Input", {
134
142
  paddingTiny: string;
@@ -234,16 +242,24 @@ declare const transferLight: import("../../_mixins").Theme<"Transfer", {
234
242
  colorSecondary: string;
235
243
  colorSecondaryHover: string;
236
244
  colorSecondaryPressed: string;
245
+ colorSecondaryFocus: string;
246
+ colorSecondaryDisabled: string;
247
+ textColorSecondaryDisabled: string;
237
248
  waveColorSecondary: string;
238
249
  colorTertiary: string;
239
250
  colorTertiaryHover: string;
240
251
  colorTertiaryPressed: string;
252
+ colorTertiaryFocus: string;
241
253
  colorTertiaryDisalbed: string;
242
254
  waveColorTertiary: string;
243
255
  textColorTextTertiary: string;
256
+ rippleColorTertiary: string;
244
257
  colorQuaternary: string;
245
258
  colorQuaternaryHover: string;
246
259
  colorQuaternaryPressed: string;
260
+ colorQuaternaryFocus: string;
261
+ rippleColorQuaternary: string;
262
+ waveColorQuaternary: string;
247
263
  color: string;
248
264
  colorHover: string;
249
265
  colorPressed: string;