@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
@@ -57,8 +57,16 @@ export declare const logProps: {
57
57
  loadingColor: string;
58
58
  }, {
59
59
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
60
+ height: string;
61
+ width: string;
62
+ borderRadius: string;
60
63
  color: string;
61
64
  colorHover: string;
65
+ railInsetHorizontalBottom: string;
66
+ railInsetHorizontalTop: string;
67
+ railInsetVerticalRight: string;
68
+ railInsetVerticalLeft: string;
69
+ railColor: string;
62
70
  }, any>;
63
71
  Code: import("../../_mixins").Theme<"Code", {
64
72
  textColor: string;
@@ -84,8 +92,16 @@ export declare const logProps: {
84
92
  loadingColor: string;
85
93
  }, {
86
94
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
95
+ height: string;
96
+ width: string;
97
+ borderRadius: string;
87
98
  color: string;
88
99
  colorHover: string;
100
+ railInsetHorizontalBottom: string;
101
+ railInsetHorizontalTop: string;
102
+ railInsetVerticalRight: string;
103
+ railInsetVerticalLeft: string;
104
+ railColor: string;
89
105
  }, any>;
90
106
  Code: import("../../_mixins").Theme<"Code", {
91
107
  textColor: string;
@@ -111,8 +127,16 @@ export declare const logProps: {
111
127
  loadingColor: string;
112
128
  }, {
113
129
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
130
+ height: string;
131
+ width: string;
132
+ borderRadius: string;
114
133
  color: string;
115
134
  colorHover: string;
135
+ railInsetHorizontalBottom: string;
136
+ railInsetHorizontalTop: string;
137
+ railInsetVerticalRight: string;
138
+ railInsetVerticalLeft: string;
139
+ railColor: string;
116
140
  }, any>;
117
141
  Code: import("../../_mixins").Theme<"Code", {
118
142
  textColor: string;
@@ -173,8 +197,16 @@ declare const _default: import("vue").DefineComponent<{
173
197
  loadingColor: string;
174
198
  }, {
175
199
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
200
+ height: string;
201
+ width: string;
202
+ borderRadius: string;
176
203
  color: string;
177
204
  colorHover: string;
205
+ railInsetHorizontalBottom: string;
206
+ railInsetHorizontalTop: string;
207
+ railInsetVerticalRight: string;
208
+ railInsetVerticalLeft: string;
209
+ railColor: string;
178
210
  }, any>;
179
211
  Code: import("../../_mixins").Theme<"Code", {
180
212
  textColor: string;
@@ -200,8 +232,16 @@ declare const _default: import("vue").DefineComponent<{
200
232
  loadingColor: string;
201
233
  }, {
202
234
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
235
+ height: string;
236
+ width: string;
237
+ borderRadius: string;
203
238
  color: string;
204
239
  colorHover: string;
240
+ railInsetHorizontalBottom: string;
241
+ railInsetHorizontalTop: string;
242
+ railInsetVerticalRight: string;
243
+ railInsetVerticalLeft: string;
244
+ railColor: string;
205
245
  }, any>;
206
246
  Code: import("../../_mixins").Theme<"Code", {
207
247
  textColor: string;
@@ -227,8 +267,16 @@ declare const _default: import("vue").DefineComponent<{
227
267
  loadingColor: string;
228
268
  }, {
229
269
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
270
+ height: string;
271
+ width: string;
272
+ borderRadius: string;
230
273
  color: string;
231
274
  colorHover: string;
275
+ railInsetHorizontalBottom: string;
276
+ railInsetHorizontalTop: string;
277
+ railInsetVerticalRight: string;
278
+ railInsetVerticalLeft: string;
279
+ railColor: string;
232
280
  }, any>;
233
281
  Code: import("../../_mixins").Theme<"Code", {
234
282
  textColor: string;
@@ -271,8 +319,16 @@ declare const _default: import("vue").DefineComponent<{
271
319
  };
272
320
  peers: {
273
321
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
322
+ height: string;
323
+ width: string;
324
+ borderRadius: string;
274
325
  color: string;
275
326
  colorHover: string;
327
+ railInsetHorizontalBottom: string;
328
+ railInsetHorizontalTop: string;
329
+ railInsetVerticalRight: string;
330
+ railInsetVerticalLeft: string;
331
+ railColor: string;
276
332
  }, any>;
277
333
  Code: import("../../_mixins").Theme<"Code", {
278
334
  textColor: string;
@@ -367,8 +423,16 @@ declare const _default: import("vue").DefineComponent<{
367
423
  loadingColor: string;
368
424
  }, {
369
425
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
426
+ height: string;
427
+ width: string;
428
+ borderRadius: string;
370
429
  color: string;
371
430
  colorHover: string;
431
+ railInsetHorizontalBottom: string;
432
+ railInsetHorizontalTop: string;
433
+ railInsetVerticalRight: string;
434
+ railInsetVerticalLeft: string;
435
+ railColor: string;
372
436
  }, any>;
373
437
  Code: import("../../_mixins").Theme<"Code", {
374
438
  textColor: string;
@@ -394,8 +458,16 @@ declare const _default: import("vue").DefineComponent<{
394
458
  loadingColor: string;
395
459
  }, {
396
460
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
461
+ height: string;
462
+ width: string;
463
+ borderRadius: string;
397
464
  color: string;
398
465
  colorHover: string;
466
+ railInsetHorizontalBottom: string;
467
+ railInsetHorizontalTop: string;
468
+ railInsetVerticalRight: string;
469
+ railInsetVerticalLeft: string;
470
+ railColor: string;
399
471
  }, any>;
400
472
  Code: import("../../_mixins").Theme<"Code", {
401
473
  textColor: string;
@@ -421,8 +493,16 @@ declare const _default: import("vue").DefineComponent<{
421
493
  loadingColor: string;
422
494
  }, {
423
495
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
496
+ height: string;
497
+ width: string;
498
+ borderRadius: string;
424
499
  color: string;
425
500
  colorHover: string;
501
+ railInsetHorizontalBottom: string;
502
+ railInsetHorizontalTop: string;
503
+ railInsetVerticalRight: string;
504
+ railInsetVerticalLeft: string;
505
+ railColor: string;
426
506
  }, any>;
427
507
  Code: import("../../_mixins").Theme<"Code", {
428
508
  textColor: string;
@@ -15,8 +15,16 @@ declare const logLight: import("../../_mixins").Theme<"Log", {
15
15
  loadingColor: string;
16
16
  }, {
17
17
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
18
+ height: string;
19
+ width: string;
20
+ borderRadius: string;
18
21
  color: string;
19
22
  colorHover: string;
23
+ railInsetHorizontalBottom: string;
24
+ railInsetHorizontalTop: string;
25
+ railInsetVerticalRight: string;
26
+ railInsetVerticalLeft: string;
27
+ railColor: string;
20
28
  }, any>;
21
29
  Code: import("../../_mixins").Theme<"Code", {
22
30
  textColor: string;
@@ -101,8 +101,16 @@ export declare const mentionProps: {
101
101
  loadingColor: string;
102
102
  }, {
103
103
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
104
+ height: string;
105
+ width: string;
106
+ borderRadius: string;
104
107
  color: string;
105
108
  colorHover: string;
109
+ railInsetHorizontalBottom: string;
110
+ railInsetHorizontalTop: string;
111
+ railInsetVerticalRight: string;
112
+ railInsetVerticalLeft: string;
113
+ railColor: string;
106
114
  }, any>;
107
115
  Empty: import("../../_mixins").Theme<"Empty", {
108
116
  iconSizeSmall: string;
@@ -226,8 +234,16 @@ export declare const mentionProps: {
226
234
  loadingColor: string;
227
235
  }, {
228
236
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
237
+ height: string;
238
+ width: string;
239
+ borderRadius: string;
229
240
  color: string;
230
241
  colorHover: string;
242
+ railInsetHorizontalBottom: string;
243
+ railInsetHorizontalTop: string;
244
+ railInsetVerticalRight: string;
245
+ railInsetVerticalLeft: string;
246
+ railColor: string;
231
247
  }, any>;
232
248
  Empty: import("../../_mixins").Theme<"Empty", {
233
249
  iconSizeSmall: string;
@@ -351,8 +367,16 @@ export declare const mentionProps: {
351
367
  loadingColor: string;
352
368
  }, {
353
369
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
370
+ height: string;
371
+ width: string;
372
+ borderRadius: string;
354
373
  color: string;
355
374
  colorHover: string;
375
+ railInsetHorizontalBottom: string;
376
+ railInsetHorizontalTop: string;
377
+ railInsetVerticalRight: string;
378
+ railInsetVerticalLeft: string;
379
+ railColor: string;
356
380
  }, any>;
357
381
  Empty: import("../../_mixins").Theme<"Empty", {
358
382
  iconSizeSmall: string;
@@ -535,8 +559,16 @@ declare const _default: import("vue").DefineComponent<{
535
559
  loadingColor: string;
536
560
  }, {
537
561
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
562
+ height: string;
563
+ width: string;
564
+ borderRadius: string;
538
565
  color: string;
539
566
  colorHover: string;
567
+ railInsetHorizontalBottom: string;
568
+ railInsetHorizontalTop: string;
569
+ railInsetVerticalRight: string;
570
+ railInsetVerticalLeft: string;
571
+ railColor: string;
540
572
  }, any>;
541
573
  Empty: import("../../_mixins").Theme<"Empty", {
542
574
  iconSizeSmall: string;
@@ -660,8 +692,16 @@ declare const _default: import("vue").DefineComponent<{
660
692
  loadingColor: string;
661
693
  }, {
662
694
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
695
+ height: string;
696
+ width: string;
697
+ borderRadius: string;
663
698
  color: string;
664
699
  colorHover: string;
700
+ railInsetHorizontalBottom: string;
701
+ railInsetHorizontalTop: string;
702
+ railInsetVerticalRight: string;
703
+ railInsetVerticalLeft: string;
704
+ railColor: string;
665
705
  }, any>;
666
706
  Empty: import("../../_mixins").Theme<"Empty", {
667
707
  iconSizeSmall: string;
@@ -785,8 +825,16 @@ declare const _default: import("vue").DefineComponent<{
785
825
  loadingColor: string;
786
826
  }, {
787
827
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
828
+ height: string;
829
+ width: string;
830
+ borderRadius: string;
788
831
  color: string;
789
832
  colorHover: string;
833
+ railInsetHorizontalBottom: string;
834
+ railInsetHorizontalTop: string;
835
+ railInsetVerticalRight: string;
836
+ railInsetVerticalLeft: string;
837
+ railColor: string;
790
838
  }, any>;
791
839
  Empty: import("../../_mixins").Theme<"Empty", {
792
840
  iconSizeSmall: string;
@@ -919,8 +967,16 @@ declare const _default: import("vue").DefineComponent<{
919
967
  loadingColor: string;
920
968
  }, {
921
969
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
970
+ height: string;
971
+ width: string;
972
+ borderRadius: string;
922
973
  color: string;
923
974
  colorHover: string;
975
+ railInsetHorizontalBottom: string;
976
+ railInsetHorizontalTop: string;
977
+ railInsetVerticalRight: string;
978
+ railInsetVerticalLeft: string;
979
+ railColor: string;
924
980
  }, any>;
925
981
  Empty: import("../../_mixins").Theme<"Empty", {
926
982
  iconSizeSmall: string;
@@ -1011,8 +1067,16 @@ declare const _default: import("vue").DefineComponent<{
1011
1067
  InternalSelectMenu?: {
1012
1068
  peers?: {
1013
1069
  Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
1070
+ height: string;
1071
+ width: string;
1072
+ borderRadius: string;
1014
1073
  color: string;
1015
1074
  colorHover: string;
1075
+ railInsetHorizontalBottom: string;
1076
+ railInsetHorizontalTop: string;
1077
+ railInsetVerticalRight: string;
1078
+ railInsetVerticalLeft: string;
1079
+ railColor: string;
1016
1080
  }, any>> | undefined;
1017
1081
  Empty?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Empty", {
1018
1082
  iconSizeSmall: string;
@@ -1176,8 +1240,16 @@ declare const _default: import("vue").DefineComponent<{
1176
1240
  loadingColor: string;
1177
1241
  }, {
1178
1242
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1243
+ height: string;
1244
+ width: string;
1245
+ borderRadius: string;
1179
1246
  color: string;
1180
1247
  colorHover: string;
1248
+ railInsetHorizontalBottom: string;
1249
+ railInsetHorizontalTop: string;
1250
+ railInsetVerticalRight: string;
1251
+ railInsetVerticalLeft: string;
1252
+ railColor: string;
1181
1253
  }, any>;
1182
1254
  Empty: import("../../_mixins").Theme<"Empty", {
1183
1255
  iconSizeSmall: string;
@@ -1301,8 +1373,16 @@ declare const _default: import("vue").DefineComponent<{
1301
1373
  loadingColor: string;
1302
1374
  }, {
1303
1375
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1376
+ height: string;
1377
+ width: string;
1378
+ borderRadius: string;
1304
1379
  color: string;
1305
1380
  colorHover: string;
1381
+ railInsetHorizontalBottom: string;
1382
+ railInsetHorizontalTop: string;
1383
+ railInsetVerticalRight: string;
1384
+ railInsetVerticalLeft: string;
1385
+ railColor: string;
1306
1386
  }, any>;
1307
1387
  Empty: import("../../_mixins").Theme<"Empty", {
1308
1388
  iconSizeSmall: string;
@@ -1426,8 +1506,16 @@ declare const _default: import("vue").DefineComponent<{
1426
1506
  loadingColor: string;
1427
1507
  }, {
1428
1508
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1509
+ height: string;
1510
+ width: string;
1511
+ borderRadius: string;
1429
1512
  color: string;
1430
1513
  colorHover: string;
1514
+ railInsetHorizontalBottom: string;
1515
+ railInsetHorizontalTop: string;
1516
+ railInsetVerticalRight: string;
1517
+ railInsetVerticalLeft: string;
1518
+ railColor: string;
1431
1519
  }, any>;
1432
1520
  Empty: import("../../_mixins").Theme<"Empty", {
1433
1521
  iconSizeSmall: string;
@@ -39,8 +39,16 @@ declare const mentionLight: import("../../_mixins").Theme<"Mention", {
39
39
  loadingColor: string;
40
40
  }, {
41
41
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
42
+ height: string;
43
+ width: string;
44
+ borderRadius: string;
42
45
  color: string;
43
46
  colorHover: string;
47
+ railInsetHorizontalBottom: string;
48
+ railInsetHorizontalTop: string;
49
+ railInsetVerticalRight: string;
50
+ railInsetVerticalLeft: string;
51
+ railColor: string;
44
52
  }, any>;
45
53
  Empty: import("../../_mixins").Theme<"Empty", {
46
54
  iconSizeSmall: string;
@@ -2174,13 +2174,13 @@ declare const _default: import("vue").DefineComponent<{
2174
2174
  readonly iconSize: number;
2175
2175
  readonly show: boolean;
2176
2176
  readonly labelField: string;
2177
- readonly keyField: string;
2178
2177
  readonly defaultValue: Key | null;
2179
2178
  readonly options: MenuMixedOption[];
2180
2179
  readonly childrenField: string;
2181
2180
  readonly defaultExpandAll: boolean;
2182
2181
  readonly indent: number;
2183
2182
  readonly inverted: boolean;
2183
+ readonly keyField: string;
2184
2184
  readonly collapsed: boolean | undefined;
2185
2185
  readonly disabledField: string;
2186
2186
  readonly accordion: boolean;
@@ -84,8 +84,16 @@ declare const _default: import("vue").DefineComponent<{
84
84
  };
85
85
  peers: {
86
86
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
87
+ height: string;
88
+ width: string;
89
+ borderRadius: string;
87
90
  color: string;
88
91
  colorHover: string;
92
+ railInsetHorizontalBottom: string;
93
+ railInsetHorizontalTop: string;
94
+ railInsetVerticalRight: string;
95
+ railInsetVerticalLeft: string;
96
+ railColor: string;
89
97
  }, any>;
90
98
  Dialog: import("../../_mixins").Theme<"Dialog", {
91
99
  border: string;
@@ -142,16 +150,24 @@ declare const _default: import("vue").DefineComponent<{
142
150
  colorSecondary: string;
143
151
  colorSecondaryHover: string;
144
152
  colorSecondaryPressed: string;
153
+ colorSecondaryFocus: string;
154
+ colorSecondaryDisabled: string;
155
+ textColorSecondaryDisabled: string;
145
156
  waveColorSecondary: string;
146
157
  colorTertiary: string;
147
158
  colorTertiaryHover: string;
148
159
  colorTertiaryPressed: string;
160
+ colorTertiaryFocus: string;
149
161
  colorTertiaryDisalbed: string;
150
162
  waveColorTertiary: string;
151
163
  textColorTextTertiary: string;
164
+ rippleColorTertiary: string;
152
165
  colorQuaternary: string;
153
166
  colorQuaternaryHover: string;
154
167
  colorQuaternaryPressed: string;
168
+ colorQuaternaryFocus: string;
169
+ rippleColorQuaternary: string;
170
+ waveColorQuaternary: string;
155
171
  color: string;
156
172
  colorHover: string;
157
173
  colorPressed: string;
@@ -404,16 +420,24 @@ declare const _default: import("vue").DefineComponent<{
404
420
  colorSecondary: string;
405
421
  colorSecondaryHover: string;
406
422
  colorSecondaryPressed: string;
423
+ colorSecondaryFocus: string;
424
+ colorSecondaryDisabled: string;
425
+ textColorSecondaryDisabled: string;
407
426
  waveColorSecondary: string;
408
427
  colorTertiary: string;
409
428
  colorTertiaryHover: string;
410
429
  colorTertiaryPressed: string;
430
+ colorTertiaryFocus: string;
411
431
  colorTertiaryDisalbed: string;
412
432
  waveColorTertiary: string;
413
433
  textColorTextTertiary: string;
434
+ rippleColorTertiary: string;
414
435
  colorQuaternary: string;
415
436
  colorQuaternaryHover: string;
416
437
  colorQuaternaryPressed: string;
438
+ colorQuaternaryFocus: string;
439
+ rippleColorQuaternary: string;
440
+ waveColorQuaternary: string;
417
441
  color: string;
418
442
  colorHover: string;
419
443
  colorPressed: string;
@@ -707,9 +731,9 @@ declare const _default: import("vue").DefineComponent<{
707
731
  showIcon: boolean;
708
732
  size: "small" | "medium" | "large";
709
733
  closable: boolean;
710
- autoFocus: boolean;
711
734
  presetDisabled: boolean;
712
735
  trapFocus: boolean;
736
+ autoFocus: boolean;
713
737
  blockScroll: boolean;
714
738
  }, {}>;
715
739
  export default _default;