@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
@@ -292,8 +292,16 @@ export declare const selectProps: {
292
292
  loadingColor: string;
293
293
  }, {
294
294
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
295
+ height: string;
296
+ width: string;
297
+ borderRadius: string;
295
298
  color: string;
296
299
  colorHover: string;
300
+ railInsetHorizontalBottom: string;
301
+ railInsetHorizontalTop: string;
302
+ railInsetVerticalRight: string;
303
+ railInsetVerticalLeft: string;
304
+ railColor: string;
297
305
  }, any>;
298
306
  Empty: import("../../_mixins").Theme<"Empty", {
299
307
  iconSizeSmall: string;
@@ -476,8 +484,16 @@ export declare const selectProps: {
476
484
  loadingColor: string;
477
485
  }, {
478
486
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
487
+ height: string;
488
+ width: string;
489
+ borderRadius: string;
479
490
  color: string;
480
491
  colorHover: string;
492
+ railInsetHorizontalBottom: string;
493
+ railInsetHorizontalTop: string;
494
+ railInsetVerticalRight: string;
495
+ railInsetVerticalLeft: string;
496
+ railColor: string;
481
497
  }, any>;
482
498
  Empty: import("../../_mixins").Theme<"Empty", {
483
499
  iconSizeSmall: string;
@@ -660,8 +676,16 @@ export declare const selectProps: {
660
676
  loadingColor: string;
661
677
  }, {
662
678
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
679
+ height: string;
680
+ width: string;
681
+ borderRadius: string;
663
682
  color: string;
664
683
  colorHover: string;
684
+ railInsetHorizontalBottom: string;
685
+ railInsetHorizontalTop: string;
686
+ railInsetVerticalRight: string;
687
+ railInsetVerticalLeft: string;
688
+ railColor: string;
665
689
  }, any>;
666
690
  Empty: import("../../_mixins").Theme<"Empty", {
667
691
  iconSizeSmall: string;
@@ -971,8 +995,16 @@ declare const _default: import("vue").DefineComponent<{
971
995
  loadingColor: string;
972
996
  }, {
973
997
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
998
+ height: string;
999
+ width: string;
1000
+ borderRadius: string;
974
1001
  color: string;
975
1002
  colorHover: string;
1003
+ railInsetHorizontalBottom: string;
1004
+ railInsetHorizontalTop: string;
1005
+ railInsetVerticalRight: string;
1006
+ railInsetVerticalLeft: string;
1007
+ railColor: string;
976
1008
  }, any>;
977
1009
  Empty: import("../../_mixins").Theme<"Empty", {
978
1010
  iconSizeSmall: string;
@@ -1155,8 +1187,16 @@ declare const _default: import("vue").DefineComponent<{
1155
1187
  loadingColor: string;
1156
1188
  }, {
1157
1189
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1190
+ height: string;
1191
+ width: string;
1192
+ borderRadius: string;
1158
1193
  color: string;
1159
1194
  colorHover: string;
1195
+ railInsetHorizontalBottom: string;
1196
+ railInsetHorizontalTop: string;
1197
+ railInsetVerticalRight: string;
1198
+ railInsetVerticalLeft: string;
1199
+ railColor: string;
1160
1200
  }, any>;
1161
1201
  Empty: import("../../_mixins").Theme<"Empty", {
1162
1202
  iconSizeSmall: string;
@@ -1339,8 +1379,16 @@ declare const _default: import("vue").DefineComponent<{
1339
1379
  loadingColor: string;
1340
1380
  }, {
1341
1381
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1382
+ height: string;
1383
+ width: string;
1384
+ borderRadius: string;
1342
1385
  color: string;
1343
1386
  colorHover: string;
1387
+ railInsetHorizontalBottom: string;
1388
+ railInsetHorizontalTop: string;
1389
+ railInsetVerticalRight: string;
1390
+ railInsetVerticalLeft: string;
1391
+ railColor: string;
1344
1392
  }, any>;
1345
1393
  Empty: import("../../_mixins").Theme<"Empty", {
1346
1394
  iconSizeSmall: string;
@@ -1583,8 +1631,16 @@ declare const _default: import("vue").DefineComponent<{
1583
1631
  loadingColor: string;
1584
1632
  }, {
1585
1633
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1634
+ height: string;
1635
+ width: string;
1636
+ borderRadius: string;
1586
1637
  color: string;
1587
1638
  colorHover: string;
1639
+ railInsetHorizontalBottom: string;
1640
+ railInsetHorizontalTop: string;
1641
+ railInsetVerticalRight: string;
1642
+ railInsetVerticalLeft: string;
1643
+ railColor: string;
1588
1644
  }, any>;
1589
1645
  Empty: import("../../_mixins").Theme<"Empty", {
1590
1646
  iconSizeSmall: string;
@@ -1629,8 +1685,16 @@ declare const _default: import("vue").DefineComponent<{
1629
1685
  InternalSelectMenu?: {
1630
1686
  peers?: {
1631
1687
  Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
1688
+ height: string;
1689
+ width: string;
1690
+ borderRadius: string;
1632
1691
  color: string;
1633
1692
  colorHover: string;
1693
+ railInsetHorizontalBottom: string;
1694
+ railInsetHorizontalTop: string;
1695
+ railInsetVerticalRight: string;
1696
+ railInsetVerticalLeft: string;
1697
+ railColor: string;
1634
1698
  }, any>> | undefined;
1635
1699
  Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
1636
1700
  iconSizeSmall: string;
@@ -1949,8 +2013,16 @@ declare const _default: import("vue").DefineComponent<{
1949
2013
  loadingColor: string;
1950
2014
  }, {
1951
2015
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2016
+ height: string;
2017
+ width: string;
2018
+ borderRadius: string;
1952
2019
  color: string;
1953
2020
  colorHover: string;
2021
+ railInsetHorizontalBottom: string;
2022
+ railInsetHorizontalTop: string;
2023
+ railInsetVerticalRight: string;
2024
+ railInsetVerticalLeft: string;
2025
+ railColor: string;
1954
2026
  }, any>;
1955
2027
  Empty: import("../../_mixins").Theme<"Empty", {
1956
2028
  iconSizeSmall: string;
@@ -2133,8 +2205,16 @@ declare const _default: import("vue").DefineComponent<{
2133
2205
  loadingColor: string;
2134
2206
  }, {
2135
2207
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2208
+ height: string;
2209
+ width: string;
2210
+ borderRadius: string;
2136
2211
  color: string;
2137
2212
  colorHover: string;
2213
+ railInsetHorizontalBottom: string;
2214
+ railInsetHorizontalTop: string;
2215
+ railInsetVerticalRight: string;
2216
+ railInsetVerticalLeft: string;
2217
+ railColor: string;
2138
2218
  }, any>;
2139
2219
  Empty: import("../../_mixins").Theme<"Empty", {
2140
2220
  iconSizeSmall: string;
@@ -2317,8 +2397,16 @@ declare const _default: import("vue").DefineComponent<{
2317
2397
  loadingColor: string;
2318
2398
  }, {
2319
2399
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2400
+ height: string;
2401
+ width: string;
2402
+ borderRadius: string;
2320
2403
  color: string;
2321
2404
  colorHover: string;
2405
+ railInsetHorizontalBottom: string;
2406
+ railInsetHorizontalTop: string;
2407
+ railInsetVerticalRight: string;
2408
+ railInsetVerticalLeft: string;
2409
+ railColor: string;
2322
2410
  }, any>;
2323
2411
  Empty: import("../../_mixins").Theme<"Empty", {
2324
2412
  iconSizeSmall: string;
@@ -162,8 +162,16 @@ declare const selectLight: import("../../_mixins").Theme<"Select", {
162
162
  loadingColor: string;
163
163
  }, {
164
164
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
165
+ height: string;
166
+ width: string;
167
+ borderRadius: string;
165
168
  color: string;
166
169
  colorHover: string;
170
+ railInsetHorizontalBottom: string;
171
+ railInsetHorizontalTop: string;
172
+ railInsetVerticalRight: string;
173
+ railInsetVerticalLeft: string;
174
+ railColor: string;
167
175
  }, any>;
168
176
  Empty: import("../../_mixins").Theme<"Empty", {
169
177
  iconSizeSmall: string;
@@ -98,8 +98,16 @@ declare const _default: import("vue").DefineComponent<{
98
98
  };
99
99
  peers: {
100
100
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
101
+ height: string;
102
+ width: string;
103
+ borderRadius: string;
101
104
  color: string;
102
105
  colorHover: string;
106
+ railInsetHorizontalBottom: string;
107
+ railInsetHorizontalTop: string;
108
+ railInsetVerticalRight: string;
109
+ railInsetVerticalLeft: string;
110
+ railColor: string;
103
111
  }, any>;
104
112
  Button: import("../../_mixins").Theme<"Button", {
105
113
  heightTiny: string;
@@ -122,16 +130,24 @@ declare const _default: import("vue").DefineComponent<{
122
130
  colorSecondary: string;
123
131
  colorSecondaryHover: string;
124
132
  colorSecondaryPressed: string;
133
+ colorSecondaryFocus: string;
134
+ colorSecondaryDisabled: string;
135
+ textColorSecondaryDisabled: string;
125
136
  waveColorSecondary: string;
126
137
  colorTertiary: string;
127
138
  colorTertiaryHover: string;
128
139
  colorTertiaryPressed: string;
140
+ colorTertiaryFocus: string;
129
141
  colorTertiaryDisalbed: string;
130
142
  waveColorTertiary: string;
131
143
  textColorTextTertiary: string;
144
+ rippleColorTertiary: string;
132
145
  colorQuaternary: string;
133
146
  colorQuaternaryHover: string;
134
147
  colorQuaternaryPressed: string;
148
+ colorQuaternaryFocus: string;
149
+ rippleColorQuaternary: string;
150
+ waveColorQuaternary: string;
135
151
  color: string;
136
152
  colorHover: string;
137
153
  colorPressed: string;
@@ -97,8 +97,16 @@ export declare const timePickerProps: {
97
97
  iconColorDisabled: string;
98
98
  }, {
99
99
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
100
+ height: string;
101
+ width: string;
102
+ borderRadius: string;
100
103
  color: string;
101
104
  colorHover: string;
105
+ railInsetHorizontalBottom: string;
106
+ railInsetHorizontalTop: string;
107
+ railInsetVerticalRight: string;
108
+ railInsetVerticalLeft: string;
109
+ railColor: string;
102
110
  }, any>;
103
111
  Button: import("../../_mixins").Theme<"Button", {
104
112
  heightTiny: string;
@@ -121,16 +129,24 @@ export declare const timePickerProps: {
121
129
  colorSecondary: string;
122
130
  colorSecondaryHover: string;
123
131
  colorSecondaryPressed: string;
132
+ colorSecondaryFocus: string;
133
+ colorSecondaryDisabled: string;
134
+ textColorSecondaryDisabled: string;
124
135
  waveColorSecondary: string;
125
136
  colorTertiary: string;
126
137
  colorTertiaryHover: string;
127
138
  colorTertiaryPressed: string;
139
+ colorTertiaryFocus: string;
128
140
  colorTertiaryDisalbed: string;
129
141
  waveColorTertiary: string;
130
142
  textColorTextTertiary: string;
143
+ rippleColorTertiary: string;
131
144
  colorQuaternary: string;
132
145
  colorQuaternaryHover: string;
133
146
  colorQuaternaryPressed: string;
147
+ colorQuaternaryFocus: string;
148
+ rippleColorQuaternary: string;
149
+ waveColorQuaternary: string;
134
150
  color: string;
135
151
  colorHover: string;
136
152
  colorPressed: string;
@@ -395,8 +411,16 @@ export declare const timePickerProps: {
395
411
  iconColorDisabled: string;
396
412
  }, {
397
413
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
414
+ height: string;
415
+ width: string;
416
+ borderRadius: string;
398
417
  color: string;
399
418
  colorHover: string;
419
+ railInsetHorizontalBottom: string;
420
+ railInsetHorizontalTop: string;
421
+ railInsetVerticalRight: string;
422
+ railInsetVerticalLeft: string;
423
+ railColor: string;
400
424
  }, any>;
401
425
  Button: import("../../_mixins").Theme<"Button", {
402
426
  heightTiny: string;
@@ -419,16 +443,24 @@ export declare const timePickerProps: {
419
443
  colorSecondary: string;
420
444
  colorSecondaryHover: string;
421
445
  colorSecondaryPressed: string;
446
+ colorSecondaryFocus: string;
447
+ colorSecondaryDisabled: string;
448
+ textColorSecondaryDisabled: string;
422
449
  waveColorSecondary: string;
423
450
  colorTertiary: string;
424
451
  colorTertiaryHover: string;
425
452
  colorTertiaryPressed: string;
453
+ colorTertiaryFocus: string;
426
454
  colorTertiaryDisalbed: string;
427
455
  waveColorTertiary: string;
428
456
  textColorTextTertiary: string;
457
+ rippleColorTertiary: string;
429
458
  colorQuaternary: string;
430
459
  colorQuaternaryHover: string;
431
460
  colorQuaternaryPressed: string;
461
+ colorQuaternaryFocus: string;
462
+ rippleColorQuaternary: string;
463
+ waveColorQuaternary: string;
432
464
  color: string;
433
465
  colorHover: string;
434
466
  colorPressed: string;
@@ -693,8 +725,16 @@ export declare const timePickerProps: {
693
725
  iconColorDisabled: string;
694
726
  }, {
695
727
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
728
+ height: string;
729
+ width: string;
730
+ borderRadius: string;
696
731
  color: string;
697
732
  colorHover: string;
733
+ railInsetHorizontalBottom: string;
734
+ railInsetHorizontalTop: string;
735
+ railInsetVerticalRight: string;
736
+ railInsetVerticalLeft: string;
737
+ railColor: string;
698
738
  }, any>;
699
739
  Button: import("../../_mixins").Theme<"Button", {
700
740
  heightTiny: string;
@@ -717,16 +757,24 @@ export declare const timePickerProps: {
717
757
  colorSecondary: string;
718
758
  colorSecondaryHover: string;
719
759
  colorSecondaryPressed: string;
760
+ colorSecondaryFocus: string;
761
+ colorSecondaryDisabled: string;
762
+ textColorSecondaryDisabled: string;
720
763
  waveColorSecondary: string;
721
764
  colorTertiary: string;
722
765
  colorTertiaryHover: string;
723
766
  colorTertiaryPressed: string;
767
+ colorTertiaryFocus: string;
724
768
  colorTertiaryDisalbed: string;
725
769
  waveColorTertiary: string;
726
770
  textColorTextTertiary: string;
771
+ rippleColorTertiary: string;
727
772
  colorQuaternary: string;
728
773
  colorQuaternaryHover: string;
729
774
  colorQuaternaryPressed: string;
775
+ colorQuaternaryFocus: string;
776
+ rippleColorQuaternary: string;
777
+ waveColorQuaternary: string;
730
778
  color: string;
731
779
  colorHover: string;
732
780
  colorPressed: string;
@@ -1068,8 +1116,16 @@ declare const _default: import("vue").DefineComponent<{
1068
1116
  iconColorDisabled: string;
1069
1117
  }, {
1070
1118
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1119
+ height: string;
1120
+ width: string;
1121
+ borderRadius: string;
1071
1122
  color: string;
1072
1123
  colorHover: string;
1124
+ railInsetHorizontalBottom: string;
1125
+ railInsetHorizontalTop: string;
1126
+ railInsetVerticalRight: string;
1127
+ railInsetVerticalLeft: string;
1128
+ railColor: string;
1073
1129
  }, any>;
1074
1130
  Button: import("../../_mixins").Theme<"Button", {
1075
1131
  heightTiny: string;
@@ -1092,16 +1148,24 @@ declare const _default: import("vue").DefineComponent<{
1092
1148
  colorSecondary: string;
1093
1149
  colorSecondaryHover: string;
1094
1150
  colorSecondaryPressed: string;
1151
+ colorSecondaryFocus: string;
1152
+ colorSecondaryDisabled: string;
1153
+ textColorSecondaryDisabled: string;
1095
1154
  waveColorSecondary: string;
1096
1155
  colorTertiary: string;
1097
1156
  colorTertiaryHover: string;
1098
1157
  colorTertiaryPressed: string;
1158
+ colorTertiaryFocus: string;
1099
1159
  colorTertiaryDisalbed: string;
1100
1160
  waveColorTertiary: string;
1101
1161
  textColorTextTertiary: string;
1162
+ rippleColorTertiary: string;
1102
1163
  colorQuaternary: string;
1103
1164
  colorQuaternaryHover: string;
1104
1165
  colorQuaternaryPressed: string;
1166
+ colorQuaternaryFocus: string;
1167
+ rippleColorQuaternary: string;
1168
+ waveColorQuaternary: string;
1105
1169
  color: string;
1106
1170
  colorHover: string;
1107
1171
  colorPressed: string;
@@ -1366,8 +1430,16 @@ declare const _default: import("vue").DefineComponent<{
1366
1430
  iconColorDisabled: string;
1367
1431
  }, {
1368
1432
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1433
+ height: string;
1434
+ width: string;
1435
+ borderRadius: string;
1369
1436
  color: string;
1370
1437
  colorHover: string;
1438
+ railInsetHorizontalBottom: string;
1439
+ railInsetHorizontalTop: string;
1440
+ railInsetVerticalRight: string;
1441
+ railInsetVerticalLeft: string;
1442
+ railColor: string;
1371
1443
  }, any>;
1372
1444
  Button: import("../../_mixins").Theme<"Button", {
1373
1445
  heightTiny: string;
@@ -1390,16 +1462,24 @@ declare const _default: import("vue").DefineComponent<{
1390
1462
  colorSecondary: string;
1391
1463
  colorSecondaryHover: string;
1392
1464
  colorSecondaryPressed: string;
1465
+ colorSecondaryFocus: string;
1466
+ colorSecondaryDisabled: string;
1467
+ textColorSecondaryDisabled: string;
1393
1468
  waveColorSecondary: string;
1394
1469
  colorTertiary: string;
1395
1470
  colorTertiaryHover: string;
1396
1471
  colorTertiaryPressed: string;
1472
+ colorTertiaryFocus: string;
1397
1473
  colorTertiaryDisalbed: string;
1398
1474
  waveColorTertiary: string;
1399
1475
  textColorTextTertiary: string;
1476
+ rippleColorTertiary: string;
1400
1477
  colorQuaternary: string;
1401
1478
  colorQuaternaryHover: string;
1402
1479
  colorQuaternaryPressed: string;
1480
+ colorQuaternaryFocus: string;
1481
+ rippleColorQuaternary: string;
1482
+ waveColorQuaternary: string;
1403
1483
  color: string;
1404
1484
  colorHover: string;
1405
1485
  colorPressed: string;
@@ -1664,8 +1744,16 @@ declare const _default: import("vue").DefineComponent<{
1664
1744
  iconColorDisabled: string;
1665
1745
  }, {
1666
1746
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1747
+ height: string;
1748
+ width: string;
1749
+ borderRadius: string;
1667
1750
  color: string;
1668
1751
  colorHover: string;
1752
+ railInsetHorizontalBottom: string;
1753
+ railInsetHorizontalTop: string;
1754
+ railInsetVerticalRight: string;
1755
+ railInsetVerticalLeft: string;
1756
+ railColor: string;
1669
1757
  }, any>;
1670
1758
  Button: import("../../_mixins").Theme<"Button", {
1671
1759
  heightTiny: string;
@@ -1688,16 +1776,24 @@ declare const _default: import("vue").DefineComponent<{
1688
1776
  colorSecondary: string;
1689
1777
  colorSecondaryHover: string;
1690
1778
  colorSecondaryPressed: string;
1779
+ colorSecondaryFocus: string;
1780
+ colorSecondaryDisabled: string;
1781
+ textColorSecondaryDisabled: string;
1691
1782
  waveColorSecondary: string;
1692
1783
  colorTertiary: string;
1693
1784
  colorTertiaryHover: string;
1694
1785
  colorTertiaryPressed: string;
1786
+ colorTertiaryFocus: string;
1695
1787
  colorTertiaryDisalbed: string;
1696
1788
  waveColorTertiary: string;
1697
1789
  textColorTextTertiary: string;
1790
+ rippleColorTertiary: string;
1698
1791
  colorQuaternary: string;
1699
1792
  colorQuaternaryHover: string;
1700
1793
  colorQuaternaryPressed: string;
1794
+ colorQuaternaryFocus: string;
1795
+ rippleColorQuaternary: string;
1796
+ waveColorQuaternary: string;
1701
1797
  color: string;
1702
1798
  colorHover: string;
1703
1799
  colorPressed: string;
@@ -2079,8 +2175,16 @@ declare const _default: import("vue").DefineComponent<{
2079
2175
  };
2080
2176
  peers: {
2081
2177
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2178
+ height: string;
2179
+ width: string;
2180
+ borderRadius: string;
2082
2181
  color: string;
2083
2182
  colorHover: string;
2183
+ railInsetHorizontalBottom: string;
2184
+ railInsetHorizontalTop: string;
2185
+ railInsetVerticalRight: string;
2186
+ railInsetVerticalLeft: string;
2187
+ railColor: string;
2084
2188
  }, any>;
2085
2189
  Button: import("../../_mixins").Theme<"Button", {
2086
2190
  heightTiny: string;
@@ -2103,16 +2207,24 @@ declare const _default: import("vue").DefineComponent<{
2103
2207
  colorSecondary: string;
2104
2208
  colorSecondaryHover: string;
2105
2209
  colorSecondaryPressed: string;
2210
+ colorSecondaryFocus: string;
2211
+ colorSecondaryDisabled: string;
2212
+ textColorSecondaryDisabled: string;
2106
2213
  waveColorSecondary: string;
2107
2214
  colorTertiary: string;
2108
2215
  colorTertiaryHover: string;
2109
2216
  colorTertiaryPressed: string;
2217
+ colorTertiaryFocus: string;
2110
2218
  colorTertiaryDisalbed: string;
2111
2219
  waveColorTertiary: string;
2112
2220
  textColorTextTertiary: string;
2221
+ rippleColorTertiary: string;
2113
2222
  colorQuaternary: string;
2114
2223
  colorQuaternaryHover: string;
2115
2224
  colorQuaternaryPressed: string;
2225
+ colorQuaternaryFocus: string;
2226
+ rippleColorQuaternary: string;
2227
+ waveColorQuaternary: string;
2116
2228
  color: string;
2117
2229
  colorHover: string;
2118
2230
  colorPressed: string;
@@ -2496,8 +2608,16 @@ declare const _default: import("vue").DefineComponent<{
2496
2608
  iconColorDisabled: string;
2497
2609
  }, {
2498
2610
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2611
+ height: string;
2612
+ width: string;
2613
+ borderRadius: string;
2499
2614
  color: string;
2500
2615
  colorHover: string;
2616
+ railInsetHorizontalBottom: string;
2617
+ railInsetHorizontalTop: string;
2618
+ railInsetVerticalRight: string;
2619
+ railInsetVerticalLeft: string;
2620
+ railColor: string;
2501
2621
  }, any>;
2502
2622
  Button: import("../../_mixins").Theme<"Button", {
2503
2623
  heightTiny: string;
@@ -2520,16 +2640,24 @@ declare const _default: import("vue").DefineComponent<{
2520
2640
  colorSecondary: string;
2521
2641
  colorSecondaryHover: string;
2522
2642
  colorSecondaryPressed: string;
2643
+ colorSecondaryFocus: string;
2644
+ colorSecondaryDisabled: string;
2645
+ textColorSecondaryDisabled: string;
2523
2646
  waveColorSecondary: string;
2524
2647
  colorTertiary: string;
2525
2648
  colorTertiaryHover: string;
2526
2649
  colorTertiaryPressed: string;
2650
+ colorTertiaryFocus: string;
2527
2651
  colorTertiaryDisalbed: string;
2528
2652
  waveColorTertiary: string;
2529
2653
  textColorTextTertiary: string;
2654
+ rippleColorTertiary: string;
2530
2655
  colorQuaternary: string;
2531
2656
  colorQuaternaryHover: string;
2532
2657
  colorQuaternaryPressed: string;
2658
+ colorQuaternaryFocus: string;
2659
+ rippleColorQuaternary: string;
2660
+ waveColorQuaternary: string;
2533
2661
  color: string;
2534
2662
  colorHover: string;
2535
2663
  colorPressed: string;
@@ -2794,8 +2922,16 @@ declare const _default: import("vue").DefineComponent<{
2794
2922
  iconColorDisabled: string;
2795
2923
  }, {
2796
2924
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2925
+ height: string;
2926
+ width: string;
2927
+ borderRadius: string;
2797
2928
  color: string;
2798
2929
  colorHover: string;
2930
+ railInsetHorizontalBottom: string;
2931
+ railInsetHorizontalTop: string;
2932
+ railInsetVerticalRight: string;
2933
+ railInsetVerticalLeft: string;
2934
+ railColor: string;
2799
2935
  }, any>;
2800
2936
  Button: import("../../_mixins").Theme<"Button", {
2801
2937
  heightTiny: string;
@@ -2818,16 +2954,24 @@ declare const _default: import("vue").DefineComponent<{
2818
2954
  colorSecondary: string;
2819
2955
  colorSecondaryHover: string;
2820
2956
  colorSecondaryPressed: string;
2957
+ colorSecondaryFocus: string;
2958
+ colorSecondaryDisabled: string;
2959
+ textColorSecondaryDisabled: string;
2821
2960
  waveColorSecondary: string;
2822
2961
  colorTertiary: string;
2823
2962
  colorTertiaryHover: string;
2824
2963
  colorTertiaryPressed: string;
2964
+ colorTertiaryFocus: string;
2825
2965
  colorTertiaryDisalbed: string;
2826
2966
  waveColorTertiary: string;
2827
2967
  textColorTextTertiary: string;
2968
+ rippleColorTertiary: string;
2828
2969
  colorQuaternary: string;
2829
2970
  colorQuaternaryHover: string;
2830
2971
  colorQuaternaryPressed: string;
2972
+ colorQuaternaryFocus: string;
2973
+ rippleColorQuaternary: string;
2974
+ waveColorQuaternary: string;
2831
2975
  color: string;
2832
2976
  colorHover: string;
2833
2977
  colorPressed: string;
@@ -3092,8 +3236,16 @@ declare const _default: import("vue").DefineComponent<{
3092
3236
  iconColorDisabled: string;
3093
3237
  }, {
3094
3238
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3239
+ height: string;
3240
+ width: string;
3241
+ borderRadius: string;
3095
3242
  color: string;
3096
3243
  colorHover: string;
3244
+ railInsetHorizontalBottom: string;
3245
+ railInsetHorizontalTop: string;
3246
+ railInsetVerticalRight: string;
3247
+ railInsetVerticalLeft: string;
3248
+ railColor: string;
3097
3249
  }, any>;
3098
3250
  Button: import("../../_mixins").Theme<"Button", {
3099
3251
  heightTiny: string;
@@ -3116,16 +3268,24 @@ declare const _default: import("vue").DefineComponent<{
3116
3268
  colorSecondary: string;
3117
3269
  colorSecondaryHover: string;
3118
3270
  colorSecondaryPressed: string;
3271
+ colorSecondaryFocus: string;
3272
+ colorSecondaryDisabled: string;
3273
+ textColorSecondaryDisabled: string;
3119
3274
  waveColorSecondary: string;
3120
3275
  colorTertiary: string;
3121
3276
  colorTertiaryHover: string;
3122
3277
  colorTertiaryPressed: string;
3278
+ colorTertiaryFocus: string;
3123
3279
  colorTertiaryDisalbed: string;
3124
3280
  waveColorTertiary: string;
3125
3281
  textColorTextTertiary: string;
3282
+ rippleColorTertiary: string;
3126
3283
  colorQuaternary: string;
3127
3284
  colorQuaternaryHover: string;
3128
3285
  colorQuaternaryPressed: string;
3286
+ colorQuaternaryFocus: string;
3287
+ rippleColorQuaternary: string;
3288
+ waveColorQuaternary: string;
3129
3289
  color: string;
3130
3290
  colorHover: string;
3131
3291
  colorPressed: string;