@uzum-tech/ui 1.8.2 → 1.9.1

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 (311) hide show
  1. package/dist/index.js +1244 -379
  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 +120 -67
  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/cascader/src/Cascader.d.ts +168 -0
  24. package/es/cascader/src/CascaderMenu.d.ts +24 -0
  25. package/es/cascader/src/CascaderOption.d.ts +24 -0
  26. package/es/cascader/src/CascaderSelectMenu.d.ts +24 -0
  27. package/es/cascader/src/CascaderSubmenu.d.ts +25 -1
  28. package/es/cascader/styles/light.d.ts +16 -0
  29. package/es/chat/index.d.ts +1 -1
  30. package/es/chat/src/Chat.d.ts +321 -11
  31. package/es/chat/src/Chat.js +73 -22
  32. package/es/chat/src/ChatListItems.d.ts +104 -0
  33. package/es/chat/src/ChatMessages.d.ts +104 -0
  34. package/es/chat/src/ChatParts/ChatAttachment.js +14 -12
  35. package/es/chat/src/ChatParts/MainArea.d.ts +1 -0
  36. package/es/chat/src/ChatParts/MainArea.js +95 -57
  37. package/es/chat/src/ChatParts/Sidebar.d.ts +920 -0
  38. package/es/chat/src/ChatParts/Sidebar.js +63 -12
  39. package/es/chat/src/interface.d.ts +24 -3
  40. package/es/chat/src/styles/index.cssr.js +13 -2
  41. package/es/chat/styles/dark.d.ts +8 -0
  42. package/es/chat/styles/light.d.ts +8 -0
  43. package/es/components.d.ts +2 -0
  44. package/es/components.js +2 -0
  45. package/es/data-table/src/DataTable.d.ts +184 -0
  46. package/es/data-table/src/HeaderButton/FilterButton.d.ts +40 -0
  47. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +40 -0
  48. package/es/data-table/src/TableParts/Body.d.ts +41 -1
  49. package/es/data-table/src/TableParts/Header.d.ts +40 -0
  50. package/es/data-table/src/interface.d.ts +72 -0
  51. package/es/data-table/styles/light.d.ts +24 -0
  52. package/es/date-picker/src/DatePicker.d.ts +1469 -36
  53. package/es/date-picker/src/DatePicker.js +54 -29
  54. package/es/date-picker/src/interface.d.ts +1 -0
  55. package/es/date-picker/src/panel/date.d.ts +166 -1
  56. package/es/date-picker/src/panel/daterange.d.ts +167 -2
  57. package/es/date-picker/src/panel/datetime.d.ts +166 -1
  58. package/es/date-picker/src/panel/datetimerange.d.ts +167 -2
  59. package/es/date-picker/src/panel/panelMonth.d.ts +332 -2
  60. package/es/date-picker/src/panel/panelMonthContent.d.ts +166 -1
  61. package/es/date-picker/src/panel/panelYear.d.ts +332 -2
  62. package/es/date-picker/src/panel/panelYearContent.d.ts +166 -1
  63. package/es/date-picker/src/panel/use-calendar.d.ts +165 -0
  64. package/es/date-picker/src/panel/use-dual-calendar.d.ts +165 -0
  65. package/es/date-picker/src/panel/use-panel-common.d.ts +165 -0
  66. package/es/date-picker/styles/dark.js +3 -1
  67. package/es/date-picker/styles/light.d.ts +139 -0
  68. package/es/date-picker/styles/light.js +3 -1
  69. package/es/descriptions/src/Descriptions.d.ts +30 -0
  70. package/es/descriptions/src/Descriptions.js +18 -10
  71. package/es/dialog/src/DialogProvider.d.ts +2 -2
  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/infinite-scroll/index.d.ts +2 -0
  78. package/es/infinite-scroll/index.js +1 -0
  79. package/es/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
  80. package/es/infinite-scroll/src/InfiniteScroll.js +78 -0
  81. package/es/layout/src/Layout.d.ts +112 -0
  82. package/es/layout/src/LayoutContent.d.ts +56 -0
  83. package/es/layout/src/LayoutFooter.d.ts +72 -0
  84. package/es/layout/src/LayoutHeader.d.ts +48 -0
  85. package/es/layout/src/LayoutSider.d.ts +56 -0
  86. package/es/layout/styles/light.d.ts +8 -0
  87. package/es/legacy-transfer/src/Transfer.d.ts +80 -0
  88. package/es/legacy-transfer/src/TransferFilter.d.ts +8 -0
  89. package/es/legacy-transfer/src/TransferList.d.ts +9 -1
  90. package/es/legacy-transfer/src/TransferListItem.d.ts +8 -0
  91. package/es/legacy-transfer/styles/light.d.ts +8 -0
  92. package/es/locales/common/arDZ.js +2 -0
  93. package/es/locales/common/deDE.js +2 -0
  94. package/es/locales/common/enGB.js +2 -0
  95. package/es/locales/common/enUS.d.ts +2 -0
  96. package/es/locales/common/enUS.js +2 -0
  97. package/es/locales/common/eo.js +2 -0
  98. package/es/locales/common/esAR.js +2 -0
  99. package/es/locales/common/faIR.js +2 -0
  100. package/es/locales/common/frFR.js +2 -0
  101. package/es/locales/common/idID.js +2 -0
  102. package/es/locales/common/itIT.js +2 -0
  103. package/es/locales/common/jaJP.js +2 -0
  104. package/es/locales/common/koKR.js +2 -0
  105. package/es/locales/common/nbNO.js +2 -0
  106. package/es/locales/common/nlNL.js +2 -0
  107. package/es/locales/common/plPL.js +2 -0
  108. package/es/locales/common/ptBR.js +2 -0
  109. package/es/locales/common/ruRU.js +2 -0
  110. package/es/locales/common/skSK.js +2 -0
  111. package/es/locales/common/svSE.js +2 -0
  112. package/es/locales/common/thTH.js +2 -0
  113. package/es/locales/common/trTR.js +2 -0
  114. package/es/locales/common/ukUA.js +2 -0
  115. package/es/locales/common/viVN.js +2 -0
  116. package/es/locales/common/zhCN.js +2 -0
  117. package/es/locales/common/zhTW.js +2 -0
  118. package/es/log/src/Log.d.ts +80 -0
  119. package/es/log/styles/light.d.ts +8 -0
  120. package/es/mention/src/Mention.d.ts +88 -0
  121. package/es/mention/styles/light.d.ts +8 -0
  122. package/es/menu/src/Menu.d.ts +1 -1
  123. package/es/modal/src/BodyWrapper.d.ts +9 -1
  124. package/es/modal/src/Modal.d.ts +73 -1
  125. package/es/modal/styles/light.d.ts +8 -0
  126. package/es/notification/src/NotificationContainer.d.ts +8 -0
  127. package/es/notification/src/NotificationProvider.d.ts +72 -0
  128. package/es/notification/styles/light.d.ts +8 -0
  129. package/es/pagination/src/Pagination.d.ts +176 -0
  130. package/es/pagination/styles/light.d.ts +16 -0
  131. package/es/popselect/src/Popselect.d.ts +88 -0
  132. package/es/popselect/src/PopselectPanel.d.ts +16 -0
  133. package/es/popselect/styles/light.d.ts +8 -0
  134. package/es/scrollbar/src/Scrollbar.d.ts +72 -0
  135. package/es/select/src/Select.d.ts +88 -0
  136. package/es/select/styles/light.d.ts +8 -0
  137. package/es/time-picker/src/Panel.d.ts +8 -0
  138. package/es/time-picker/src/TimePicker.d.ts +80 -0
  139. package/es/time-picker/styles/light.d.ts +8 -0
  140. package/es/transfer/src/Transfer.d.ts +80 -0
  141. package/es/transfer/src/TransferFilter.d.ts +8 -0
  142. package/es/transfer/src/TransferList.d.ts +9 -1
  143. package/es/transfer/src/TransferListItem.d.ts +8 -0
  144. package/es/transfer/styles/light.d.ts +8 -0
  145. package/es/tree/src/Tree.d.ts +82 -2
  146. package/es/tree/src/TreeNodeCheckbox.d.ts +8 -0
  147. package/es/tree/styles/light.d.ts +8 -0
  148. package/es/tree-select/src/TreeSelect.d.ts +89 -1
  149. package/es/tree-select/styles/light.d.ts +8 -0
  150. package/es/version.d.ts +1 -1
  151. package/es/version.js +1 -1
  152. package/es/virtual-list/index.d.ts +2 -0
  153. package/es/virtual-list/index.js +1 -0
  154. package/es/virtual-list/src/VirtualList.d.ts +146 -0
  155. package/es/virtual-list/src/VirtualList.js +103 -0
  156. package/lib/_internal/scrollbar/src/Scrollbar.d.ts +119 -17
  157. package/lib/_internal/scrollbar/src/Scrollbar.js +117 -64
  158. package/lib/_internal/scrollbar/src/styles/index.cssr.js +32 -15
  159. package/lib/_internal/scrollbar/styles/common.d.ts +7 -0
  160. package/lib/_internal/scrollbar/styles/common.js +10 -0
  161. package/lib/_internal/scrollbar/styles/light.d.ts +8 -0
  162. package/lib/_internal/scrollbar/styles/light.js +3 -5
  163. package/lib/_internal/select-menu/src/SelectMenu.d.ts +57 -1
  164. package/lib/_internal/select-menu/styles/light.d.ts +8 -0
  165. package/lib/_internal/selection/src/Selection.d.ts +3 -1
  166. package/lib/_internal/selection/src/Selection.js +3 -1
  167. package/lib/_utils/css/index.d.ts +1 -0
  168. package/lib/_utils/css/index.js +3 -1
  169. package/lib/_utils/css/rtl-inset.d.ts +1 -0
  170. package/lib/_utils/css/rtl-inset.js +8 -0
  171. package/lib/_utils/index.d.ts +1 -1
  172. package/lib/_utils/index.js +2 -1
  173. package/lib/auto-complete/src/AutoComplete.d.ts +88 -0
  174. package/lib/auto-complete/styles/light.d.ts +8 -0
  175. package/lib/back-top/src/BackTop.d.ts +1 -1
  176. package/lib/cascader/src/Cascader.d.ts +168 -0
  177. package/lib/cascader/src/CascaderMenu.d.ts +24 -0
  178. package/lib/cascader/src/CascaderOption.d.ts +24 -0
  179. package/lib/cascader/src/CascaderSelectMenu.d.ts +24 -0
  180. package/lib/cascader/src/CascaderSubmenu.d.ts +25 -1
  181. package/lib/cascader/styles/light.d.ts +16 -0
  182. package/lib/chat/index.d.ts +1 -1
  183. package/lib/chat/src/Chat.d.ts +321 -11
  184. package/lib/chat/src/Chat.js +73 -22
  185. package/lib/chat/src/ChatListItems.d.ts +104 -0
  186. package/lib/chat/src/ChatMessages.d.ts +104 -0
  187. package/lib/chat/src/ChatParts/ChatAttachment.js +14 -12
  188. package/lib/chat/src/ChatParts/MainArea.d.ts +1 -0
  189. package/lib/chat/src/ChatParts/MainArea.js +94 -56
  190. package/lib/chat/src/ChatParts/Sidebar.d.ts +920 -0
  191. package/lib/chat/src/ChatParts/Sidebar.js +62 -11
  192. package/lib/chat/src/interface.d.ts +24 -3
  193. package/lib/chat/src/styles/index.cssr.js +13 -2
  194. package/lib/chat/styles/dark.d.ts +8 -0
  195. package/lib/chat/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 +184 -0
  199. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +40 -0
  200. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +40 -0
  201. package/lib/data-table/src/TableParts/Body.d.ts +41 -1
  202. package/lib/data-table/src/TableParts/Header.d.ts +40 -0
  203. package/lib/data-table/src/interface.d.ts +72 -0
  204. package/lib/data-table/styles/light.d.ts +24 -0
  205. package/lib/date-picker/src/DatePicker.d.ts +1469 -36
  206. package/lib/date-picker/src/DatePicker.js +53 -28
  207. package/lib/date-picker/src/interface.d.ts +1 -0
  208. package/lib/date-picker/src/panel/date.d.ts +166 -1
  209. package/lib/date-picker/src/panel/daterange.d.ts +167 -2
  210. package/lib/date-picker/src/panel/datetime.d.ts +166 -1
  211. package/lib/date-picker/src/panel/datetimerange.d.ts +167 -2
  212. package/lib/date-picker/src/panel/panelMonth.d.ts +332 -2
  213. package/lib/date-picker/src/panel/panelMonthContent.d.ts +166 -1
  214. package/lib/date-picker/src/panel/panelYear.d.ts +332 -2
  215. package/lib/date-picker/src/panel/panelYearContent.d.ts +166 -1
  216. package/lib/date-picker/src/panel/use-calendar.d.ts +165 -0
  217. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +165 -0
  218. package/lib/date-picker/src/panel/use-panel-common.d.ts +165 -0
  219. package/lib/date-picker/styles/dark.js +3 -1
  220. package/lib/date-picker/styles/light.d.ts +139 -0
  221. package/lib/date-picker/styles/light.js +3 -1
  222. package/lib/descriptions/src/Descriptions.d.ts +30 -0
  223. package/lib/descriptions/src/Descriptions.js +18 -10
  224. package/lib/dialog/src/DialogProvider.d.ts +2 -2
  225. package/lib/drawer/src/Drawer.d.ts +81 -1
  226. package/lib/drawer/src/DrawerBodyWrapper.d.ts +9 -1
  227. package/lib/drawer/src/DrawerContent.d.ts +8 -0
  228. package/lib/drawer/styles/light.d.ts +8 -0
  229. package/lib/dropdown/src/Dropdown.d.ts +1 -1
  230. package/lib/infinite-scroll/index.d.ts +2 -0
  231. package/lib/infinite-scroll/index.js +9 -0
  232. package/lib/infinite-scroll/src/InfiniteScroll.d.ts +45 -0
  233. package/lib/infinite-scroll/src/InfiniteScroll.js +81 -0
  234. package/lib/layout/src/Layout.d.ts +112 -0
  235. package/lib/layout/src/LayoutContent.d.ts +56 -0
  236. package/lib/layout/src/LayoutFooter.d.ts +72 -0
  237. package/lib/layout/src/LayoutHeader.d.ts +48 -0
  238. package/lib/layout/src/LayoutSider.d.ts +56 -0
  239. package/lib/layout/styles/light.d.ts +8 -0
  240. package/lib/legacy-transfer/src/Transfer.d.ts +80 -0
  241. package/lib/legacy-transfer/src/TransferFilter.d.ts +8 -0
  242. package/lib/legacy-transfer/src/TransferList.d.ts +9 -1
  243. package/lib/legacy-transfer/src/TransferListItem.d.ts +8 -0
  244. package/lib/legacy-transfer/styles/light.d.ts +8 -0
  245. package/lib/locales/common/arDZ.js +2 -0
  246. package/lib/locales/common/deDE.js +2 -0
  247. package/lib/locales/common/enGB.js +2 -0
  248. package/lib/locales/common/enUS.d.ts +2 -0
  249. package/lib/locales/common/enUS.js +2 -0
  250. package/lib/locales/common/eo.js +2 -0
  251. package/lib/locales/common/esAR.js +2 -0
  252. package/lib/locales/common/faIR.js +2 -0
  253. package/lib/locales/common/frFR.js +2 -0
  254. package/lib/locales/common/idID.js +2 -0
  255. package/lib/locales/common/itIT.js +2 -0
  256. package/lib/locales/common/jaJP.js +2 -0
  257. package/lib/locales/common/koKR.js +2 -0
  258. package/lib/locales/common/nbNO.js +2 -0
  259. package/lib/locales/common/nlNL.js +2 -0
  260. package/lib/locales/common/plPL.js +2 -0
  261. package/lib/locales/common/ptBR.js +2 -0
  262. package/lib/locales/common/ruRU.js +2 -0
  263. package/lib/locales/common/skSK.js +2 -0
  264. package/lib/locales/common/svSE.js +2 -0
  265. package/lib/locales/common/thTH.js +2 -0
  266. package/lib/locales/common/trTR.js +2 -0
  267. package/lib/locales/common/ukUA.js +2 -0
  268. package/lib/locales/common/viVN.js +2 -0
  269. package/lib/locales/common/zhCN.js +2 -0
  270. package/lib/locales/common/zhTW.js +2 -0
  271. package/lib/log/src/Log.d.ts +80 -0
  272. package/lib/log/styles/light.d.ts +8 -0
  273. package/lib/mention/src/Mention.d.ts +88 -0
  274. package/lib/mention/styles/light.d.ts +8 -0
  275. package/lib/menu/src/Menu.d.ts +1 -1
  276. package/lib/modal/src/BodyWrapper.d.ts +9 -1
  277. package/lib/modal/src/Modal.d.ts +73 -1
  278. package/lib/modal/styles/light.d.ts +8 -0
  279. package/lib/notification/src/NotificationContainer.d.ts +8 -0
  280. package/lib/notification/src/NotificationProvider.d.ts +72 -0
  281. package/lib/notification/styles/light.d.ts +8 -0
  282. package/lib/pagination/src/Pagination.d.ts +176 -0
  283. package/lib/pagination/styles/light.d.ts +16 -0
  284. package/lib/popselect/src/Popselect.d.ts +88 -0
  285. package/lib/popselect/src/PopselectPanel.d.ts +16 -0
  286. package/lib/popselect/styles/light.d.ts +8 -0
  287. package/lib/scrollbar/src/Scrollbar.d.ts +72 -0
  288. package/lib/select/src/Select.d.ts +88 -0
  289. package/lib/select/styles/light.d.ts +8 -0
  290. package/lib/time-picker/src/Panel.d.ts +8 -0
  291. package/lib/time-picker/src/TimePicker.d.ts +80 -0
  292. package/lib/time-picker/styles/light.d.ts +8 -0
  293. package/lib/transfer/src/Transfer.d.ts +80 -0
  294. package/lib/transfer/src/TransferFilter.d.ts +8 -0
  295. package/lib/transfer/src/TransferList.d.ts +9 -1
  296. package/lib/transfer/src/TransferListItem.d.ts +8 -0
  297. package/lib/transfer/styles/light.d.ts +8 -0
  298. package/lib/tree/src/Tree.d.ts +82 -2
  299. package/lib/tree/src/TreeNodeCheckbox.d.ts +8 -0
  300. package/lib/tree/styles/light.d.ts +8 -0
  301. package/lib/tree-select/src/TreeSelect.d.ts +89 -1
  302. package/lib/tree-select/styles/light.d.ts +8 -0
  303. package/lib/version.d.ts +1 -1
  304. package/lib/version.js +1 -1
  305. package/lib/virtual-list/index.d.ts +2 -0
  306. package/lib/virtual-list/index.js +9 -0
  307. package/lib/virtual-list/src/VirtualList.d.ts +146 -0
  308. package/lib/virtual-list/src/VirtualList.js +106 -0
  309. package/package.json +4 -4
  310. package/volar.d.ts +1 -0
  311. package/web-types.json +124 -4
@@ -630,8 +630,16 @@ declare const _default: import("vue").DefineComponent<{
630
630
  loadingColor: string;
631
631
  }, {
632
632
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
633
+ height: string;
634
+ width: string;
635
+ borderRadius: string;
633
636
  color: string;
634
637
  colorHover: string;
638
+ railInsetHorizontalBottom: string;
639
+ railInsetHorizontalTop: string;
640
+ railInsetVerticalRight: string;
641
+ railInsetVerticalLeft: string;
642
+ railColor: string;
635
643
  }, any>;
636
644
  Empty: import("../../../_mixins").Theme<"Empty", {
637
645
  iconSizeSmall: string;
@@ -769,8 +777,16 @@ declare const _default: import("vue").DefineComponent<{
769
777
  loadingColor: string;
770
778
  }, {
771
779
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
780
+ height: string;
781
+ width: string;
782
+ borderRadius: string;
772
783
  color: string;
773
784
  colorHover: string;
785
+ railInsetHorizontalBottom: string;
786
+ railInsetHorizontalTop: string;
787
+ railInsetVerticalRight: string;
788
+ railInsetVerticalLeft: string;
789
+ railColor: string;
774
790
  }, any>;
775
791
  Empty: import("../../../_mixins").Theme<"Empty", {
776
792
  iconSizeSmall: string;
@@ -795,8 +811,16 @@ declare const _default: import("vue").DefineComponent<{
795
811
  }>;
796
812
  }>;
797
813
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
814
+ height: string;
815
+ width: string;
816
+ borderRadius: string;
798
817
  color: string;
799
818
  colorHover: string;
819
+ railInsetHorizontalBottom: string;
820
+ railInsetHorizontalTop: string;
821
+ railInsetVerticalRight: string;
822
+ railInsetVerticalLeft: string;
823
+ railColor: string;
800
824
  }, any>;
801
825
  Empty: import("../../../_mixins").Theme<"Empty", {
802
826
  iconSizeSmall: string;
@@ -1115,8 +1139,16 @@ declare const _default: import("vue").DefineComponent<{
1115
1139
  loadingColor: string;
1116
1140
  }, {
1117
1141
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1142
+ height: string;
1143
+ width: string;
1144
+ borderRadius: string;
1118
1145
  color: string;
1119
1146
  colorHover: string;
1147
+ railInsetHorizontalBottom: string;
1148
+ railInsetHorizontalTop: string;
1149
+ railInsetVerticalRight: string;
1150
+ railInsetVerticalLeft: string;
1151
+ railColor: string;
1120
1152
  }, any>;
1121
1153
  Empty: import("../../../_mixins").Theme<"Empty", {
1122
1154
  iconSizeSmall: string;
@@ -1254,8 +1286,16 @@ declare const _default: import("vue").DefineComponent<{
1254
1286
  loadingColor: string;
1255
1287
  }, {
1256
1288
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1289
+ height: string;
1290
+ width: string;
1291
+ borderRadius: string;
1257
1292
  color: string;
1258
1293
  colorHover: string;
1294
+ railInsetHorizontalBottom: string;
1295
+ railInsetHorizontalTop: string;
1296
+ railInsetVerticalRight: string;
1297
+ railInsetVerticalLeft: string;
1298
+ railColor: string;
1259
1299
  }, any>;
1260
1300
  Empty: import("../../../_mixins").Theme<"Empty", {
1261
1301
  iconSizeSmall: string;
@@ -655,8 +655,16 @@ declare const _default: import("vue").DefineComponent<{
655
655
  loadingColor: string;
656
656
  }, {
657
657
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
658
+ height: string;
659
+ width: string;
660
+ borderRadius: string;
658
661
  color: string;
659
662
  colorHover: string;
663
+ railInsetHorizontalBottom: string;
664
+ railInsetHorizontalTop: string;
665
+ railInsetVerticalRight: string;
666
+ railInsetVerticalLeft: string;
667
+ railColor: string;
660
668
  }, any>;
661
669
  Empty: import("../../../_mixins").Theme<"Empty", {
662
670
  iconSizeSmall: string;
@@ -794,8 +802,16 @@ declare const _default: import("vue").DefineComponent<{
794
802
  loadingColor: string;
795
803
  }, {
796
804
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
805
+ height: string;
806
+ width: string;
807
+ borderRadius: string;
797
808
  color: string;
798
809
  colorHover: string;
810
+ railInsetHorizontalBottom: string;
811
+ railInsetHorizontalTop: string;
812
+ railInsetVerticalRight: string;
813
+ railInsetVerticalLeft: string;
814
+ railColor: string;
799
815
  }, any>;
800
816
  Empty: import("../../../_mixins").Theme<"Empty", {
801
817
  iconSizeSmall: string;
@@ -820,8 +836,16 @@ declare const _default: import("vue").DefineComponent<{
820
836
  }>;
821
837
  }>;
822
838
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
839
+ height: string;
840
+ width: string;
841
+ borderRadius: string;
823
842
  color: string;
824
843
  colorHover: string;
844
+ railInsetHorizontalBottom: string;
845
+ railInsetHorizontalTop: string;
846
+ railInsetVerticalRight: string;
847
+ railInsetVerticalLeft: string;
848
+ railColor: string;
825
849
  }, any>;
826
850
  Empty: import("../../../_mixins").Theme<"Empty", {
827
851
  iconSizeSmall: string;
@@ -1140,8 +1164,16 @@ declare const _default: import("vue").DefineComponent<{
1140
1164
  loadingColor: string;
1141
1165
  }, {
1142
1166
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1167
+ height: string;
1168
+ width: string;
1169
+ borderRadius: string;
1143
1170
  color: string;
1144
1171
  colorHover: string;
1172
+ railInsetHorizontalBottom: string;
1173
+ railInsetHorizontalTop: string;
1174
+ railInsetVerticalRight: string;
1175
+ railInsetVerticalLeft: string;
1176
+ railColor: string;
1145
1177
  }, any>;
1146
1178
  Empty: import("../../../_mixins").Theme<"Empty", {
1147
1179
  iconSizeSmall: string;
@@ -1279,8 +1311,16 @@ declare const _default: import("vue").DefineComponent<{
1279
1311
  loadingColor: string;
1280
1312
  }, {
1281
1313
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1314
+ height: string;
1315
+ width: string;
1316
+ borderRadius: string;
1282
1317
  color: string;
1283
1318
  colorHover: string;
1319
+ railInsetHorizontalBottom: string;
1320
+ railInsetHorizontalTop: string;
1321
+ railInsetVerticalRight: string;
1322
+ railInsetVerticalLeft: string;
1323
+ railColor: string;
1284
1324
  }, any>;
1285
1325
  Empty: import("../../../_mixins").Theme<"Empty", {
1286
1326
  iconSizeSmall: string;
@@ -31,7 +31,7 @@ declare const _default: import("vue").DefineComponent<{
31
31
  virtualListRef: import("vue").Ref<{
32
32
  listElRef: HTMLElement;
33
33
  itemsElRef: HTMLElement | null;
34
- scrollTo: import("vueuc/lib/virtual-list/src/VirtualList").ScrollTo;
34
+ scrollTo: import("vueuc").VVirtualListScrollTo;
35
35
  } | null>;
36
36
  emptyElRef: import("vue").Ref<HTMLElement | null>;
37
37
  summary: import("vue").Ref<import("../interface").CreateSummary<import("../interface").InternalRowData> | undefined>;
@@ -656,8 +656,16 @@ declare const _default: import("vue").DefineComponent<{
656
656
  loadingColor: string;
657
657
  }, {
658
658
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
659
+ height: string;
660
+ width: string;
661
+ borderRadius: string;
659
662
  color: string;
660
663
  colorHover: string;
664
+ railInsetHorizontalBottom: string;
665
+ railInsetHorizontalTop: string;
666
+ railInsetVerticalRight: string;
667
+ railInsetVerticalLeft: string;
668
+ railColor: string;
661
669
  }, any>;
662
670
  Empty: import("../../../_mixins").Theme<"Empty", {
663
671
  iconSizeSmall: string;
@@ -795,8 +803,16 @@ declare const _default: import("vue").DefineComponent<{
795
803
  loadingColor: string;
796
804
  }, {
797
805
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
806
+ height: string;
807
+ width: string;
808
+ borderRadius: string;
798
809
  color: string;
799
810
  colorHover: string;
811
+ railInsetHorizontalBottom: string;
812
+ railInsetHorizontalTop: string;
813
+ railInsetVerticalRight: string;
814
+ railInsetVerticalLeft: string;
815
+ railColor: string;
800
816
  }, any>;
801
817
  Empty: import("../../../_mixins").Theme<"Empty", {
802
818
  iconSizeSmall: string;
@@ -821,8 +837,16 @@ declare const _default: import("vue").DefineComponent<{
821
837
  }>;
822
838
  }>;
823
839
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
840
+ height: string;
841
+ width: string;
842
+ borderRadius: string;
824
843
  color: string;
825
844
  colorHover: string;
845
+ railInsetHorizontalBottom: string;
846
+ railInsetHorizontalTop: string;
847
+ railInsetVerticalRight: string;
848
+ railInsetVerticalLeft: string;
849
+ railColor: string;
826
850
  }, any>;
827
851
  Empty: import("../../../_mixins").Theme<"Empty", {
828
852
  iconSizeSmall: string;
@@ -1141,8 +1165,16 @@ declare const _default: import("vue").DefineComponent<{
1141
1165
  loadingColor: string;
1142
1166
  }, {
1143
1167
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1168
+ height: string;
1169
+ width: string;
1170
+ borderRadius: string;
1144
1171
  color: string;
1145
1172
  colorHover: string;
1173
+ railInsetHorizontalBottom: string;
1174
+ railInsetHorizontalTop: string;
1175
+ railInsetVerticalRight: string;
1176
+ railInsetVerticalLeft: string;
1177
+ railColor: string;
1146
1178
  }, any>;
1147
1179
  Empty: import("../../../_mixins").Theme<"Empty", {
1148
1180
  iconSizeSmall: string;
@@ -1280,8 +1312,16 @@ declare const _default: import("vue").DefineComponent<{
1280
1312
  loadingColor: string;
1281
1313
  }, {
1282
1314
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1315
+ height: string;
1316
+ width: string;
1317
+ borderRadius: string;
1283
1318
  color: string;
1284
1319
  colorHover: string;
1320
+ railInsetHorizontalBottom: string;
1321
+ railInsetHorizontalTop: string;
1322
+ railInsetVerticalRight: string;
1323
+ railInsetVerticalLeft: string;
1324
+ railColor: string;
1285
1325
  }, any>;
1286
1326
  Empty: import("../../../_mixins").Theme<"Empty", {
1287
1327
  iconSizeSmall: string;
@@ -643,8 +643,16 @@ declare const _default: import("vue").DefineComponent<{
643
643
  loadingColor: string;
644
644
  }, {
645
645
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
646
+ height: string;
647
+ width: string;
648
+ borderRadius: string;
646
649
  color: string;
647
650
  colorHover: string;
651
+ railInsetHorizontalBottom: string;
652
+ railInsetHorizontalTop: string;
653
+ railInsetVerticalRight: string;
654
+ railInsetVerticalLeft: string;
655
+ railColor: string;
648
656
  }, any>;
649
657
  Empty: import("../../../_mixins").Theme<"Empty", {
650
658
  iconSizeSmall: string;
@@ -782,8 +790,16 @@ declare const _default: import("vue").DefineComponent<{
782
790
  loadingColor: string;
783
791
  }, {
784
792
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
793
+ height: string;
794
+ width: string;
795
+ borderRadius: string;
785
796
  color: string;
786
797
  colorHover: string;
798
+ railInsetHorizontalBottom: string;
799
+ railInsetHorizontalTop: string;
800
+ railInsetVerticalRight: string;
801
+ railInsetVerticalLeft: string;
802
+ railColor: string;
787
803
  }, any>;
788
804
  Empty: import("../../../_mixins").Theme<"Empty", {
789
805
  iconSizeSmall: string;
@@ -808,8 +824,16 @@ declare const _default: import("vue").DefineComponent<{
808
824
  }>;
809
825
  }>;
810
826
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
827
+ height: string;
828
+ width: string;
829
+ borderRadius: string;
811
830
  color: string;
812
831
  colorHover: string;
832
+ railInsetHorizontalBottom: string;
833
+ railInsetHorizontalTop: string;
834
+ railInsetVerticalRight: string;
835
+ railInsetVerticalLeft: string;
836
+ railColor: string;
813
837
  }, any>;
814
838
  Empty: import("../../../_mixins").Theme<"Empty", {
815
839
  iconSizeSmall: string;
@@ -1128,8 +1152,16 @@ declare const _default: import("vue").DefineComponent<{
1128
1152
  loadingColor: string;
1129
1153
  }, {
1130
1154
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1155
+ height: string;
1156
+ width: string;
1157
+ borderRadius: string;
1131
1158
  color: string;
1132
1159
  colorHover: string;
1160
+ railInsetHorizontalBottom: string;
1161
+ railInsetHorizontalTop: string;
1162
+ railInsetVerticalRight: string;
1163
+ railInsetVerticalLeft: string;
1164
+ railColor: string;
1133
1165
  }, any>;
1134
1166
  Empty: import("../../../_mixins").Theme<"Empty", {
1135
1167
  iconSizeSmall: string;
@@ -1267,8 +1299,16 @@ declare const _default: import("vue").DefineComponent<{
1267
1299
  loadingColor: string;
1268
1300
  }, {
1269
1301
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1302
+ height: string;
1303
+ width: string;
1304
+ borderRadius: string;
1270
1305
  color: string;
1271
1306
  colorHover: string;
1307
+ railInsetHorizontalBottom: string;
1308
+ railInsetHorizontalTop: string;
1309
+ railInsetVerticalRight: string;
1310
+ railInsetVerticalLeft: string;
1311
+ railColor: string;
1272
1312
  }, any>;
1273
1313
  Empty: import("../../../_mixins").Theme<"Empty", {
1274
1314
  iconSizeSmall: string;
@@ -739,8 +739,16 @@ export declare const dataTableProps: {
739
739
  loadingColor: string;
740
740
  }, {
741
741
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
742
+ height: string;
743
+ width: string;
744
+ borderRadius: string;
742
745
  color: string;
743
746
  colorHover: string;
747
+ railInsetHorizontalBottom: string;
748
+ railInsetHorizontalTop: string;
749
+ railInsetVerticalRight: string;
750
+ railInsetVerticalLeft: string;
751
+ railColor: string;
744
752
  }, any>;
745
753
  Empty: import("../../_mixins").Theme<"Empty", {
746
754
  iconSizeSmall: string;
@@ -878,8 +886,16 @@ export declare const dataTableProps: {
878
886
  loadingColor: string;
879
887
  }, {
880
888
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
889
+ height: string;
890
+ width: string;
891
+ borderRadius: string;
881
892
  color: string;
882
893
  colorHover: string;
894
+ railInsetHorizontalBottom: string;
895
+ railInsetHorizontalTop: string;
896
+ railInsetVerticalRight: string;
897
+ railInsetVerticalLeft: string;
898
+ railColor: string;
883
899
  }, any>;
884
900
  Empty: import("../../_mixins").Theme<"Empty", {
885
901
  iconSizeSmall: string;
@@ -904,8 +920,16 @@ export declare const dataTableProps: {
904
920
  }>;
905
921
  }>;
906
922
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
923
+ height: string;
924
+ width: string;
925
+ borderRadius: string;
907
926
  color: string;
908
927
  colorHover: string;
928
+ railInsetHorizontalBottom: string;
929
+ railInsetHorizontalTop: string;
930
+ railInsetVerticalRight: string;
931
+ railInsetVerticalLeft: string;
932
+ railColor: string;
909
933
  }, any>;
910
934
  Empty: import("../../_mixins").Theme<"Empty", {
911
935
  iconSizeSmall: string;
@@ -1663,8 +1687,16 @@ export declare const dataTableProps: {
1663
1687
  loadingColor: string;
1664
1688
  }, {
1665
1689
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1690
+ height: string;
1691
+ width: string;
1692
+ borderRadius: string;
1666
1693
  color: string;
1667
1694
  colorHover: string;
1695
+ railInsetHorizontalBottom: string;
1696
+ railInsetHorizontalTop: string;
1697
+ railInsetVerticalRight: string;
1698
+ railInsetVerticalLeft: string;
1699
+ railColor: string;
1668
1700
  }, any>;
1669
1701
  Empty: import("../../_mixins").Theme<"Empty", {
1670
1702
  iconSizeSmall: string;
@@ -1802,8 +1834,16 @@ export declare const dataTableProps: {
1802
1834
  loadingColor: string;
1803
1835
  }, {
1804
1836
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1837
+ height: string;
1838
+ width: string;
1839
+ borderRadius: string;
1805
1840
  color: string;
1806
1841
  colorHover: string;
1842
+ railInsetHorizontalBottom: string;
1843
+ railInsetHorizontalTop: string;
1844
+ railInsetVerticalRight: string;
1845
+ railInsetVerticalLeft: string;
1846
+ railColor: string;
1807
1847
  }, any>;
1808
1848
  Empty: import("../../_mixins").Theme<"Empty", {
1809
1849
  iconSizeSmall: string;
@@ -1828,8 +1868,16 @@ export declare const dataTableProps: {
1828
1868
  }>;
1829
1869
  }>;
1830
1870
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1871
+ height: string;
1872
+ width: string;
1873
+ borderRadius: string;
1831
1874
  color: string;
1832
1875
  colorHover: string;
1876
+ railInsetHorizontalBottom: string;
1877
+ railInsetHorizontalTop: string;
1878
+ railInsetVerticalRight: string;
1879
+ railInsetVerticalLeft: string;
1880
+ railColor: string;
1833
1881
  }, any>;
1834
1882
  Empty: import("../../_mixins").Theme<"Empty", {
1835
1883
  iconSizeSmall: string;
@@ -2587,8 +2635,16 @@ export declare const dataTableProps: {
2587
2635
  loadingColor: string;
2588
2636
  }, {
2589
2637
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2638
+ height: string;
2639
+ width: string;
2640
+ borderRadius: string;
2590
2641
  color: string;
2591
2642
  colorHover: string;
2643
+ railInsetHorizontalBottom: string;
2644
+ railInsetHorizontalTop: string;
2645
+ railInsetVerticalRight: string;
2646
+ railInsetVerticalLeft: string;
2647
+ railColor: string;
2592
2648
  }, any>;
2593
2649
  Empty: import("../../_mixins").Theme<"Empty", {
2594
2650
  iconSizeSmall: string;
@@ -2726,8 +2782,16 @@ export declare const dataTableProps: {
2726
2782
  loadingColor: string;
2727
2783
  }, {
2728
2784
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2785
+ height: string;
2786
+ width: string;
2787
+ borderRadius: string;
2729
2788
  color: string;
2730
2789
  colorHover: string;
2790
+ railInsetHorizontalBottom: string;
2791
+ railInsetHorizontalTop: string;
2792
+ railInsetVerticalRight: string;
2793
+ railInsetVerticalLeft: string;
2794
+ railColor: string;
2731
2795
  }, any>;
2732
2796
  Empty: import("../../_mixins").Theme<"Empty", {
2733
2797
  iconSizeSmall: string;
@@ -2752,8 +2816,16 @@ export declare const dataTableProps: {
2752
2816
  }>;
2753
2817
  }>;
2754
2818
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2819
+ height: string;
2820
+ width: string;
2821
+ borderRadius: string;
2755
2822
  color: string;
2756
2823
  colorHover: string;
2824
+ railInsetHorizontalBottom: string;
2825
+ railInsetHorizontalTop: string;
2826
+ railInsetVerticalRight: string;
2827
+ railInsetVerticalLeft: string;
2828
+ railColor: string;
2757
2829
  }, any>;
2758
2830
  Empty: import("../../_mixins").Theme<"Empty", {
2759
2831
  iconSizeSmall: string;
@@ -677,8 +677,16 @@ declare const dataTableLight: import("../../_mixins").Theme<"DataTable", {
677
677
  loadingColor: string;
678
678
  }, {
679
679
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
680
+ height: string;
681
+ width: string;
682
+ borderRadius: string;
680
683
  color: string;
681
684
  colorHover: string;
685
+ railInsetHorizontalBottom: string;
686
+ railInsetHorizontalTop: string;
687
+ railInsetVerticalRight: string;
688
+ railInsetVerticalLeft: string;
689
+ railColor: string;
682
690
  }, any>;
683
691
  Empty: import("../../_mixins").Theme<"Empty", {
684
692
  iconSizeSmall: string;
@@ -816,8 +824,16 @@ declare const dataTableLight: import("../../_mixins").Theme<"DataTable", {
816
824
  loadingColor: string;
817
825
  }, {
818
826
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
827
+ height: string;
828
+ width: string;
829
+ borderRadius: string;
819
830
  color: string;
820
831
  colorHover: string;
832
+ railInsetHorizontalBottom: string;
833
+ railInsetHorizontalTop: string;
834
+ railInsetVerticalRight: string;
835
+ railInsetVerticalLeft: string;
836
+ railColor: string;
821
837
  }, any>;
822
838
  Empty: import("../../_mixins").Theme<"Empty", {
823
839
  iconSizeSmall: string;
@@ -842,8 +858,16 @@ declare const dataTableLight: import("../../_mixins").Theme<"DataTable", {
842
858
  }>;
843
859
  }>;
844
860
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
861
+ height: string;
862
+ width: string;
863
+ borderRadius: string;
845
864
  color: string;
846
865
  colorHover: string;
866
+ railInsetHorizontalBottom: string;
867
+ railInsetHorizontalTop: string;
868
+ railInsetVerticalRight: string;
869
+ railInsetVerticalLeft: string;
870
+ railColor: string;
847
871
  }, any>;
848
872
  Empty: import("../../_mixins").Theme<"Empty", {
849
873
  iconSizeSmall: string;