@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
@@ -47,8 +47,16 @@ declare const _default: import("vue").DefineComponent<{
47
47
  __invertScrollbar: string;
48
48
  }, {
49
49
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
50
+ height: string;
51
+ width: string;
52
+ borderRadius: string;
50
53
  color: string;
51
54
  colorHover: string;
55
+ railInsetHorizontalBottom: string;
56
+ railInsetHorizontalTop: string;
57
+ railInsetVerticalRight: string;
58
+ railInsetVerticalLeft: string;
59
+ railColor: string;
52
60
  }, any>;
53
61
  }>>;
54
62
  themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -79,8 +87,16 @@ declare const _default: import("vue").DefineComponent<{
79
87
  __invertScrollbar: string;
80
88
  }, {
81
89
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
90
+ height: string;
91
+ width: string;
92
+ borderRadius: string;
82
93
  color: string;
83
94
  colorHover: string;
95
+ railInsetHorizontalBottom: string;
96
+ railInsetHorizontalTop: string;
97
+ railInsetVerticalRight: string;
98
+ railInsetVerticalLeft: string;
99
+ railColor: string;
84
100
  }, any>;
85
101
  }>>>;
86
102
  builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -111,8 +127,16 @@ declare const _default: import("vue").DefineComponent<{
111
127
  __invertScrollbar: 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
  }>>>;
118
142
  }, {
@@ -163,8 +187,16 @@ declare const _default: import("vue").DefineComponent<{
163
187
  };
164
188
  peers: {
165
189
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
190
+ height: string;
191
+ width: string;
192
+ borderRadius: string;
166
193
  color: string;
167
194
  colorHover: string;
195
+ railInsetHorizontalBottom: string;
196
+ railInsetHorizontalTop: string;
197
+ railInsetVerticalRight: string;
198
+ railInsetVerticalLeft: string;
199
+ railColor: string;
168
200
  }, any>;
169
201
  };
170
202
  peerOverrides: {
@@ -232,8 +264,16 @@ declare const _default: import("vue").DefineComponent<{
232
264
  __invertScrollbar: string;
233
265
  }, {
234
266
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
267
+ height: string;
268
+ width: string;
269
+ borderRadius: string;
235
270
  color: string;
236
271
  colorHover: string;
272
+ railInsetHorizontalBottom: string;
273
+ railInsetHorizontalTop: string;
274
+ railInsetVerticalRight: string;
275
+ railInsetVerticalLeft: string;
276
+ railColor: string;
237
277
  }, any>;
238
278
  }>>;
239
279
  themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -264,8 +304,16 @@ declare const _default: import("vue").DefineComponent<{
264
304
  __invertScrollbar: string;
265
305
  }, {
266
306
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
307
+ height: string;
308
+ width: string;
309
+ borderRadius: string;
267
310
  color: string;
268
311
  colorHover: string;
312
+ railInsetHorizontalBottom: string;
313
+ railInsetHorizontalTop: string;
314
+ railInsetVerticalRight: string;
315
+ railInsetVerticalLeft: string;
316
+ railColor: string;
269
317
  }, any>;
270
318
  }>>>;
271
319
  builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -296,8 +344,16 @@ declare const _default: import("vue").DefineComponent<{
296
344
  __invertScrollbar: string;
297
345
  }, {
298
346
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
347
+ height: string;
348
+ width: string;
349
+ borderRadius: string;
299
350
  color: string;
300
351
  colorHover: string;
352
+ railInsetHorizontalBottom: string;
353
+ railInsetHorizontalTop: string;
354
+ railInsetVerticalRight: string;
355
+ railInsetVerticalLeft: string;
356
+ railColor: string;
301
357
  }, any>;
302
358
  }>>>;
303
359
  }>>, {
@@ -34,8 +34,16 @@ export declare const layoutFooterProps: {
34
34
  __invertScrollbar: string;
35
35
  }, {
36
36
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
37
+ height: string;
38
+ width: string;
39
+ borderRadius: string;
37
40
  color: string;
38
41
  colorHover: string;
42
+ railInsetHorizontalBottom: string;
43
+ railInsetHorizontalTop: string;
44
+ railInsetVerticalRight: string;
45
+ railInsetVerticalLeft: string;
46
+ railColor: string;
39
47
  }, any>;
40
48
  }>>;
41
49
  themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -66,8 +74,16 @@ export declare const layoutFooterProps: {
66
74
  __invertScrollbar: string;
67
75
  }, {
68
76
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
77
+ height: string;
78
+ width: string;
79
+ borderRadius: string;
69
80
  color: string;
70
81
  colorHover: string;
82
+ railInsetHorizontalBottom: string;
83
+ railInsetHorizontalTop: string;
84
+ railInsetVerticalRight: string;
85
+ railInsetVerticalLeft: string;
86
+ railColor: string;
71
87
  }, any>;
72
88
  }>>>;
73
89
  builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -98,8 +114,16 @@ export declare const layoutFooterProps: {
98
114
  __invertScrollbar: string;
99
115
  }, {
100
116
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
117
+ height: string;
118
+ width: string;
119
+ borderRadius: string;
101
120
  color: string;
102
121
  colorHover: string;
122
+ railInsetHorizontalBottom: string;
123
+ railInsetHorizontalTop: string;
124
+ railInsetVerticalRight: string;
125
+ railInsetVerticalLeft: string;
126
+ railColor: string;
103
127
  }, any>;
104
128
  }>>>;
105
129
  };
@@ -139,8 +163,16 @@ declare const _default: import("vue").DefineComponent<{
139
163
  __invertScrollbar: string;
140
164
  }, {
141
165
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
166
+ height: string;
167
+ width: string;
168
+ borderRadius: string;
142
169
  color: string;
143
170
  colorHover: string;
171
+ railInsetHorizontalBottom: string;
172
+ railInsetHorizontalTop: string;
173
+ railInsetVerticalRight: string;
174
+ railInsetVerticalLeft: string;
175
+ railColor: string;
144
176
  }, any>;
145
177
  }>>;
146
178
  themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -171,8 +203,16 @@ declare const _default: import("vue").DefineComponent<{
171
203
  __invertScrollbar: string;
172
204
  }, {
173
205
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
206
+ height: string;
207
+ width: string;
208
+ borderRadius: string;
174
209
  color: string;
175
210
  colorHover: string;
211
+ railInsetHorizontalBottom: string;
212
+ railInsetHorizontalTop: string;
213
+ railInsetVerticalRight: string;
214
+ railInsetVerticalLeft: string;
215
+ railColor: string;
176
216
  }, any>;
177
217
  }>>>;
178
218
  builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -203,8 +243,16 @@ declare const _default: import("vue").DefineComponent<{
203
243
  __invertScrollbar: string;
204
244
  }, {
205
245
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
246
+ height: string;
247
+ width: string;
248
+ borderRadius: string;
206
249
  color: string;
207
250
  colorHover: string;
251
+ railInsetHorizontalBottom: string;
252
+ railInsetHorizontalTop: string;
253
+ railInsetVerticalRight: string;
254
+ railInsetVerticalLeft: string;
255
+ railColor: string;
208
256
  }, any>;
209
257
  }>>>;
210
258
  }, {
@@ -247,8 +295,16 @@ declare const _default: import("vue").DefineComponent<{
247
295
  __invertScrollbar: string;
248
296
  }, {
249
297
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
298
+ height: string;
299
+ width: string;
300
+ borderRadius: string;
250
301
  color: string;
251
302
  colorHover: string;
303
+ railInsetHorizontalBottom: string;
304
+ railInsetHorizontalTop: string;
305
+ railInsetVerticalRight: string;
306
+ railInsetVerticalLeft: string;
307
+ railColor: string;
252
308
  }, any>;
253
309
  }>>;
254
310
  themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -279,8 +335,16 @@ declare const _default: import("vue").DefineComponent<{
279
335
  __invertScrollbar: string;
280
336
  }, {
281
337
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
338
+ height: string;
339
+ width: string;
340
+ borderRadius: string;
282
341
  color: string;
283
342
  colorHover: string;
343
+ railInsetHorizontalBottom: string;
344
+ railInsetHorizontalTop: string;
345
+ railInsetVerticalRight: string;
346
+ railInsetVerticalLeft: string;
347
+ railColor: string;
284
348
  }, any>;
285
349
  }>>>;
286
350
  builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -311,8 +375,16 @@ declare const _default: import("vue").DefineComponent<{
311
375
  __invertScrollbar: string;
312
376
  }, {
313
377
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
378
+ height: string;
379
+ width: string;
380
+ borderRadius: string;
314
381
  color: string;
315
382
  colorHover: string;
383
+ railInsetHorizontalBottom: string;
384
+ railInsetHorizontalTop: string;
385
+ railInsetVerticalRight: string;
386
+ railInsetVerticalLeft: string;
387
+ railColor: string;
316
388
  }, any>;
317
389
  }>>>;
318
390
  }>>, {
@@ -49,8 +49,16 @@ declare const _default: import("vue").DefineComponent<{
49
49
  __invertScrollbar: string;
50
50
  }, {
51
51
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
52
+ height: string;
53
+ width: string;
54
+ borderRadius: string;
52
55
  color: string;
53
56
  colorHover: string;
57
+ railInsetHorizontalBottom: string;
58
+ railInsetHorizontalTop: string;
59
+ railInsetVerticalRight: string;
60
+ railInsetVerticalLeft: string;
61
+ railColor: string;
54
62
  }, any>;
55
63
  }>>;
56
64
  themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -81,8 +89,16 @@ declare const _default: import("vue").DefineComponent<{
81
89
  __invertScrollbar: string;
82
90
  }, {
83
91
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
92
+ height: string;
93
+ width: string;
94
+ borderRadius: string;
84
95
  color: string;
85
96
  colorHover: string;
97
+ railInsetHorizontalBottom: string;
98
+ railInsetHorizontalTop: string;
99
+ railInsetVerticalRight: string;
100
+ railInsetVerticalLeft: string;
101
+ railColor: string;
86
102
  }, any>;
87
103
  }>>>;
88
104
  builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -113,8 +129,16 @@ declare const _default: import("vue").DefineComponent<{
113
129
  __invertScrollbar: string;
114
130
  }, {
115
131
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
132
+ height: string;
133
+ width: string;
134
+ borderRadius: string;
116
135
  color: string;
117
136
  colorHover: string;
137
+ railInsetHorizontalBottom: string;
138
+ railInsetHorizontalTop: string;
139
+ railInsetVerticalRight: string;
140
+ railInsetVerticalLeft: string;
141
+ railColor: string;
118
142
  }, any>;
119
143
  }>>>;
120
144
  }, {
@@ -160,8 +184,16 @@ declare const _default: import("vue").DefineComponent<{
160
184
  __invertScrollbar: string;
161
185
  }, {
162
186
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
187
+ height: string;
188
+ width: string;
189
+ borderRadius: string;
163
190
  color: string;
164
191
  colorHover: string;
192
+ railInsetHorizontalBottom: string;
193
+ railInsetHorizontalTop: string;
194
+ railInsetVerticalRight: string;
195
+ railInsetVerticalLeft: string;
196
+ railColor: string;
165
197
  }, any>;
166
198
  }>>;
167
199
  themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -192,8 +224,16 @@ declare const _default: import("vue").DefineComponent<{
192
224
  __invertScrollbar: string;
193
225
  }, {
194
226
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
227
+ height: string;
228
+ width: string;
229
+ borderRadius: string;
195
230
  color: string;
196
231
  colorHover: string;
232
+ railInsetHorizontalBottom: string;
233
+ railInsetHorizontalTop: string;
234
+ railInsetVerticalRight: string;
235
+ railInsetVerticalLeft: string;
236
+ railColor: string;
197
237
  }, any>;
198
238
  }>>>;
199
239
  builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -224,8 +264,16 @@ declare const _default: import("vue").DefineComponent<{
224
264
  __invertScrollbar: string;
225
265
  }, {
226
266
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
267
+ height: string;
268
+ width: string;
269
+ borderRadius: string;
227
270
  color: string;
228
271
  colorHover: string;
272
+ railInsetHorizontalBottom: string;
273
+ railInsetHorizontalTop: string;
274
+ railInsetVerticalRight: string;
275
+ railInsetVerticalLeft: string;
276
+ railColor: string;
229
277
  }, any>;
230
278
  }>>>;
231
279
  }>>, {
@@ -135,8 +135,16 @@ declare const _default: import("vue").DefineComponent<{
135
135
  __invertScrollbar: string;
136
136
  }, {
137
137
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
138
+ height: string;
139
+ width: string;
140
+ borderRadius: string;
138
141
  color: string;
139
142
  colorHover: string;
143
+ railInsetHorizontalBottom: string;
144
+ railInsetHorizontalTop: string;
145
+ railInsetVerticalRight: string;
146
+ railInsetVerticalLeft: string;
147
+ railColor: string;
140
148
  }, any>;
141
149
  }>>;
142
150
  themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -167,8 +175,16 @@ declare const _default: import("vue").DefineComponent<{
167
175
  __invertScrollbar: string;
168
176
  }, {
169
177
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
178
+ height: string;
179
+ width: string;
180
+ borderRadius: string;
170
181
  color: string;
171
182
  colorHover: string;
183
+ railInsetHorizontalBottom: string;
184
+ railInsetHorizontalTop: string;
185
+ railInsetVerticalRight: string;
186
+ railInsetVerticalLeft: string;
187
+ railColor: string;
172
188
  }, any>;
173
189
  }>>>;
174
190
  builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -199,8 +215,16 @@ declare const _default: import("vue").DefineComponent<{
199
215
  __invertScrollbar: string;
200
216
  }, {
201
217
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
218
+ height: string;
219
+ width: string;
220
+ borderRadius: string;
202
221
  color: string;
203
222
  colorHover: string;
223
+ railInsetHorizontalBottom: string;
224
+ railInsetHorizontalTop: string;
225
+ railInsetVerticalRight: string;
226
+ railInsetVerticalLeft: string;
227
+ railColor: string;
204
228
  }, any>;
205
229
  }>>>;
206
230
  }, {
@@ -250,8 +274,16 @@ declare const _default: import("vue").DefineComponent<{
250
274
  };
251
275
  peers: {
252
276
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
277
+ height: string;
278
+ width: string;
279
+ borderRadius: string;
253
280
  color: string;
254
281
  colorHover: string;
282
+ railInsetHorizontalBottom: string;
283
+ railInsetHorizontalTop: string;
284
+ railInsetVerticalRight: string;
285
+ railInsetVerticalLeft: string;
286
+ railColor: string;
255
287
  }, any>;
256
288
  };
257
289
  peerOverrides: {
@@ -353,8 +385,16 @@ declare const _default: import("vue").DefineComponent<{
353
385
  __invertScrollbar: string;
354
386
  }, {
355
387
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
388
+ height: string;
389
+ width: string;
390
+ borderRadius: string;
356
391
  color: string;
357
392
  colorHover: string;
393
+ railInsetHorizontalBottom: string;
394
+ railInsetHorizontalTop: string;
395
+ railInsetVerticalRight: string;
396
+ railInsetVerticalLeft: string;
397
+ railColor: string;
358
398
  }, any>;
359
399
  }>>;
360
400
  themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -385,8 +425,16 @@ declare const _default: import("vue").DefineComponent<{
385
425
  __invertScrollbar: string;
386
426
  }, {
387
427
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
428
+ height: string;
429
+ width: string;
430
+ borderRadius: string;
388
431
  color: string;
389
432
  colorHover: string;
433
+ railInsetHorizontalBottom: string;
434
+ railInsetHorizontalTop: string;
435
+ railInsetVerticalRight: string;
436
+ railInsetVerticalLeft: string;
437
+ railColor: string;
390
438
  }, any>;
391
439
  }>>>;
392
440
  builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Layout", {
@@ -417,8 +465,16 @@ declare const _default: import("vue").DefineComponent<{
417
465
  __invertScrollbar: string;
418
466
  }, {
419
467
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
468
+ height: string;
469
+ width: string;
470
+ borderRadius: string;
420
471
  color: string;
421
472
  colorHover: string;
473
+ railInsetHorizontalBottom: string;
474
+ railInsetHorizontalTop: string;
475
+ railInsetVerticalRight: string;
476
+ railInsetVerticalLeft: string;
477
+ railColor: string;
422
478
  }, any>;
423
479
  }>>>;
424
480
  }>>, {
@@ -55,8 +55,16 @@ declare const layoutLight: import("../../_mixins").Theme<"Layout", {
55
55
  __invertScrollbar: string;
56
56
  }, {
57
57
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
58
+ height: string;
59
+ width: string;
60
+ borderRadius: string;
58
61
  color: string;
59
62
  colorHover: string;
63
+ railInsetHorizontalBottom: string;
64
+ railInsetHorizontalTop: string;
65
+ railInsetVerticalRight: string;
66
+ railInsetVerticalLeft: string;
67
+ railColor: string;
60
68
  }, any>;
61
69
  }>;
62
70
  export default layoutLight;