@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
@@ -500,8 +500,16 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
500
500
  iconColorDisabled: string;
501
501
  }, {
502
502
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
503
+ height: string;
504
+ width: string;
505
+ borderRadius: string;
503
506
  color: string;
504
507
  colorHover: string;
508
+ railInsetHorizontalBottom: string;
509
+ railInsetHorizontalTop: string;
510
+ railInsetVerticalRight: string;
511
+ railInsetVerticalLeft: string;
512
+ railColor: string;
505
513
  }, any>;
506
514
  Button: import("../../_mixins").Theme<"Button", {
507
515
  heightTiny: string;
@@ -788,9 +796,140 @@ declare const datePickerLight: import("../../_mixins").Theme<"DatePicker", {
788
796
  }, any>;
789
797
  }>;
790
798
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
799
+ height: string;
800
+ width: string;
801
+ borderRadius: string;
791
802
  color: string;
792
803
  colorHover: string;
804
+ railInsetHorizontalBottom: string;
805
+ railInsetHorizontalTop: string;
806
+ railInsetVerticalRight: string;
807
+ railInsetVerticalLeft: string;
808
+ railColor: string;
793
809
  }, any>;
810
+ Select: import("../../_mixins").Theme<"InternalSelection", {
811
+ paddingTiny: string;
812
+ paddingSmall: string;
813
+ paddingMedium: string;
814
+ paddingLarge: string;
815
+ paddingHuge: string;
816
+ clearSizeTiny: string;
817
+ clearSizeSmall: string;
818
+ clearSizeMedium: string;
819
+ clearSizeLarge: string;
820
+ clearSizeHuge: string;
821
+ arrowSizeTiny: string;
822
+ arrowSizeSmall: string;
823
+ arrowSizeMedium: string;
824
+ arrowSizeLarge: string;
825
+ arrowSizeHuge: string;
826
+ fontSizeTiny: string;
827
+ fontSizeSmall: string;
828
+ fontSizeMedium: string;
829
+ fontSizeLarge: string;
830
+ fontSizeHuge: string;
831
+ lineHeightTiny: string;
832
+ lineHeightSmall: string;
833
+ lineHeightMedium: string;
834
+ lineHeightLarge: string;
835
+ lineHeightHuge: string;
836
+ heightTiny: string;
837
+ heightSmall: string;
838
+ heightMedium: string;
839
+ heightLarge: string;
840
+ heightHuge: string;
841
+ borderRadiusTiny: string;
842
+ borderRadiusSmall: string;
843
+ borderRadiusMedium: string;
844
+ borderRadiusLarge: string;
845
+ borderRadiusHuge: string;
846
+ textColor: string;
847
+ textColorDisabled: string;
848
+ placeholderColor: string;
849
+ placeholderColorDisabled: string;
850
+ color: string;
851
+ colorFilled: string;
852
+ colorDisabled: string;
853
+ colorActive: string;
854
+ border: string;
855
+ borderFilled: string;
856
+ borderHover: string;
857
+ borderActive: string;
858
+ borderFocus: string;
859
+ borderDisabled: string;
860
+ boxShadowHover: string;
861
+ boxShadowActive: string;
862
+ boxShadowFocus: string;
863
+ caretColor: string;
864
+ arrowColor: string;
865
+ arrowColorHover: string;
866
+ arrowColorDisabled: string;
867
+ loadingColor: string;
868
+ borderWarning: string;
869
+ borderHoverWarning: string;
870
+ borderActiveWarning: string;
871
+ borderFocusWarning: string;
872
+ boxShadowHoverWarning: string;
873
+ boxShadowActiveWarning: string;
874
+ boxShadowFocusWarning: string;
875
+ colorActiveWarning: string;
876
+ caretColorWarning: string;
877
+ borderError: string;
878
+ borderHoverError: string;
879
+ borderActiveError: string;
880
+ borderFocusError: string;
881
+ boxShadowHoverError: string;
882
+ boxShadowActiveError: string;
883
+ boxShadowFocusError: string;
884
+ colorActiveError: string;
885
+ caretColorError: string;
886
+ clearColor: string;
887
+ clearColorHover: string;
888
+ clearColorPressed: string;
889
+ caretColorSecondary: string;
890
+ filterCounterTextColor: string;
891
+ filterCounterTextColorDisabled: string;
892
+ arrowColorSecondary: string;
893
+ clearColorSecondary: string;
894
+ colorSecondary: string;
895
+ textColorSecondary: string;
896
+ borderSecondary: string;
897
+ arrowColorDisabledSecondary: string;
898
+ clearColorDisabledSecondary: string;
899
+ colorDisabledSecondary: string;
900
+ textColorDisabledSecondary: string;
901
+ borderDisabledSecondary: string;
902
+ arrowColorHoverSecondary: string;
903
+ clearColorHoverSecondary: string;
904
+ colorHoverSecondary: string;
905
+ textColorHoverSecondary: string;
906
+ borderHoverSecondary: string;
907
+ arrowColorFocusSecondary: string;
908
+ clearColorFocusSecondary: string;
909
+ colorFocusSecondary: string;
910
+ textColorFocusSecondary: string;
911
+ borderFocusSecondary: string;
912
+ arrowColorActiveSecondary: string;
913
+ clearColorActiveSecondary: string;
914
+ colorActiveSecondary: string;
915
+ textColorActiveSecondary: string;
916
+ borderActiveSecondary: string;
917
+ }, {
918
+ Popover: import("../../_mixins").Theme<"Popover", {
919
+ space: string;
920
+ spaceArrow: string;
921
+ arrowOffset: string;
922
+ arrowOffsetVertical: string;
923
+ arrowHeight: string;
924
+ padding: string;
925
+ fontSize: string;
926
+ borderRadius: string;
927
+ color: string;
928
+ dividerColor: string;
929
+ textColor: string;
930
+ boxShadow: string;
931
+ }, any>;
932
+ }>;
794
933
  }>;
795
934
  export default datePickerLight;
796
935
  export type DatePickerTheme = typeof datePickerLight;
@@ -11,6 +11,7 @@ const styles_3 = require("../../time-picker/styles");
11
11
  const styles_4 = require("../../_internal/scrollbar/styles");
12
12
  const _common_1 = __importDefault(require("./_common"));
13
13
  const _mixins_1 = require("../../_mixins");
14
+ const styles_5 = require("../../_internal/selection/styles");
14
15
  const self = (vars) => {
15
16
  const { iconMedium, fontWeightStrong, fontWeight, fontBodyMedium, fontBodyLarge, brandPrimary500, brandPrimary300, transparencySecondary, elementsSenary, textQuaternary, textSecondary, borderRadiusSmall, containerPrimary, elementsPrimary, textPrimary, elementsTertiary, elementsQuaternary, shadowDepth2, borderRadiusLarge } = vars;
16
17
  return Object.assign(Object.assign({}, _common_1.default), {
@@ -33,7 +34,8 @@ const datePickerLight = (0, _mixins_1.createTheme)({
33
34
  Input: styles_1.inputLight,
34
35
  Button: styles_2.buttonLight,
35
36
  TimePicker: styles_3.timePickerLight,
36
- Scrollbar: styles_4.scrollbarLight
37
+ Scrollbar: styles_4.scrollbarLight,
38
+ Select: styles_5.internalSelectionLight
37
39
  },
38
40
  self: exports.self
39
41
  });
@@ -1,6 +1,15 @@
1
1
  import { type PropType, type CSSProperties } from 'vue';
2
2
  import type { ExtractPublicPropTypes } from '../../_utils';
3
+ import { SkeletonProps } from '../../_internal/skeleton';
3
4
  export declare const descriptionsProps: {
5
+ readonly skeletonProps: {
6
+ readonly type: PropType<SkeletonProps>;
7
+ readonly default: () => {
8
+ width: string;
9
+ height: string;
10
+ round: boolean;
11
+ };
12
+ };
4
13
  readonly title: StringConstructor;
5
14
  readonly column: {
6
15
  readonly type: NumberConstructor;
@@ -24,6 +33,7 @@ export declare const descriptionsProps: {
24
33
  readonly default: "medium";
25
34
  };
26
35
  readonly bordered: BooleanConstructor;
36
+ readonly loadingSkeleton: BooleanConstructor;
27
37
  readonly labelStyle: PropType<string | CSSProperties>;
28
38
  readonly contentStyle: PropType<string | CSSProperties>;
29
39
  readonly theme: PropType<import("../../_mixins").Theme<"Descriptions", {
@@ -127,6 +137,14 @@ export type DescriptionsProps = ExtractPublicPropTypes<typeof descriptionsProps>
127
137
  /** @deprecated You should use `DescriptionsProps` */
128
138
  export type DescriptionProps = DescriptionsProps;
129
139
  declare const _default: import("vue").DefineComponent<{
140
+ readonly skeletonProps: {
141
+ readonly type: PropType<SkeletonProps>;
142
+ readonly default: () => {
143
+ width: string;
144
+ height: string;
145
+ round: boolean;
146
+ };
147
+ };
130
148
  readonly title: StringConstructor;
131
149
  readonly column: {
132
150
  readonly type: NumberConstructor;
@@ -150,6 +168,7 @@ declare const _default: import("vue").DefineComponent<{
150
168
  readonly default: "medium";
151
169
  };
152
170
  readonly bordered: BooleanConstructor;
171
+ readonly loadingSkeleton: BooleanConstructor;
153
172
  readonly labelStyle: PropType<string | CSSProperties>;
154
173
  readonly contentStyle: PropType<string | CSSProperties>;
155
174
  readonly theme: PropType<import("../../_mixins").Theme<"Descriptions", {
@@ -276,6 +295,14 @@ declare const _default: import("vue").DefineComponent<{
276
295
  compitableColumn: import("vue").ComputedRef<number>;
277
296
  inlineThemeDisabled: boolean | undefined;
278
297
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
298
+ readonly skeletonProps: {
299
+ readonly type: PropType<SkeletonProps>;
300
+ readonly default: () => {
301
+ width: string;
302
+ height: string;
303
+ round: boolean;
304
+ };
305
+ };
279
306
  readonly title: StringConstructor;
280
307
  readonly column: {
281
308
  readonly type: NumberConstructor;
@@ -299,6 +326,7 @@ declare const _default: import("vue").DefineComponent<{
299
326
  readonly default: "medium";
300
327
  };
301
328
  readonly bordered: BooleanConstructor;
329
+ readonly loadingSkeleton: BooleanConstructor;
302
330
  readonly labelStyle: PropType<string | CSSProperties>;
303
331
  readonly contentStyle: PropType<string | CSSProperties>;
304
332
  readonly theme: PropType<import("../../_mixins").Theme<"Descriptions", {
@@ -402,7 +430,9 @@ declare const _default: import("vue").DefineComponent<{
402
430
  readonly size: "small" | "medium" | "large";
403
431
  readonly column: number;
404
432
  readonly separator: string;
433
+ readonly loadingSkeleton: boolean;
405
434
  readonly labelAlign: "left" | "right" | "center";
406
435
  readonly labelPlacement: "left" | "top";
436
+ readonly skeletonProps: SkeletonProps;
407
437
  }, {}>;
408
438
  export default _default;
@@ -12,7 +12,15 @@ const styles_1 = require("../styles");
12
12
  const utils_1 = require("./utils");
13
13
  const index_cssr_1 = __importDefault(require("./styles/index.cssr"));
14
14
  const seemly_1 = require("seemly");
15
- exports.descriptionsProps = Object.assign(Object.assign({}, _mixins_1.useTheme.props), { title: String, column: {
15
+ const _internal_1 = require("../../_internal");
16
+ exports.descriptionsProps = Object.assign(Object.assign({}, _mixins_1.useTheme.props), { skeletonProps: {
17
+ type: Object,
18
+ default: () => ({
19
+ width: '50%',
20
+ height: '25px',
21
+ round: true
22
+ })
23
+ }, title: String, column: {
16
24
  type: Number,
17
25
  default: 3
18
26
  }, columns: Number, labelPlacement: {
@@ -27,7 +35,7 @@ exports.descriptionsProps = Object.assign(Object.assign({}, _mixins_1.useTheme.p
27
35
  }, size: {
28
36
  type: String,
29
37
  default: 'medium'
30
- }, bordered: Boolean, labelStyle: [Object, String], contentStyle: [Object, String] });
38
+ }, bordered: Boolean, loadingSkeleton: Boolean, labelStyle: [Object, String], contentStyle: [Object, String] });
31
39
  exports.default = (0, vue_1.defineComponent)({
32
40
  name: 'Descriptions',
33
41
  props: exports.descriptionsProps,
@@ -82,7 +90,7 @@ exports.default = (0, vue_1.defineComponent)({
82
90
  const defaultSlots = this.$slots.default;
83
91
  const children = defaultSlots ? (0, _utils_1.flatten)(defaultSlots()) : [];
84
92
  const memorizedLength = children.length;
85
- const { compitableColumn, labelPlacement, labelAlign, size, bordered, title, cssVars, mergedClsPrefix, separator, onRender } = this;
93
+ const { compitableColumn, labelPlacement, labelAlign, size, bordered, loadingSkeleton, skeletonProps, title, cssVars, mergedClsPrefix, separator, onRender } = this;
86
94
  onRender === null || onRender === void 0 ? void 0 : onRender();
87
95
  const filteredChildren = children.filter((child) => (0, utils_1.isDescriptionsItem)(child));
88
96
  if (process.env.NODE_ENV !== 'production' && memorizedLength !== filteredChildren.length) {
@@ -108,27 +116,27 @@ exports.default = (0, vue_1.defineComponent)({
108
116
  const contentStyle = props.contentStyle || props['content-style'] || this.contentStyle;
109
117
  if (labelPlacement === 'left') {
110
118
  if (bordered) {
111
- state.row.push((0, vue_1.h)("th", { class: `${mergedClsPrefix}-descriptions-table-header`, colspan: 1, style: labelStyle }, itemLabel), (0, vue_1.h)("td", { class: `${mergedClsPrefix}-descriptions-table-content`, colspan: isLastIteration
119
+ state.row.push((0, vue_1.h)("th", { class: `${mergedClsPrefix}-descriptions-table-header`, colspan: 1, style: labelStyle }, loadingSkeleton ? ((0, vue_1.h)(_internal_1.UBaseSkeleton, Object.assign({}, skeletonProps))) : (itemLabel)), (0, vue_1.h)("td", { class: `${mergedClsPrefix}-descriptions-table-content`, colspan: isLastIteration
112
120
  ? (compitableColumn - memorizedSpan) * 2 + 1
113
- : itemSpan * 2 - 1, style: contentStyle }, itemChildren));
121
+ : itemSpan * 2 - 1, style: contentStyle }, loadingSkeleton ? ((0, vue_1.h)(_internal_1.UBaseSkeleton, Object.assign({}, skeletonProps))) : (itemChildren)));
114
122
  }
115
123
  else {
116
124
  state.row.push((0, vue_1.h)("td", { class: `${mergedClsPrefix}-descriptions-table-content`, colspan: isLastIteration
117
125
  ? (compitableColumn - memorizedSpan) * 2
118
126
  : itemSpan * 2 },
119
- (0, vue_1.h)("span", { class: `${mergedClsPrefix}-descriptions-table-content__label`, style: labelStyle }, [
127
+ (0, vue_1.h)("span", { class: `${mergedClsPrefix}-descriptions-table-content__label`, style: labelStyle }, loadingSkeleton ? ((0, vue_1.h)(_internal_1.UBaseSkeleton, Object.assign({}, skeletonProps))) : ([
120
128
  ...itemLabel,
121
129
  separator && ((0, vue_1.h)("span", { class: `${mergedClsPrefix}-descriptions-separator` }, separator))
122
- ]),
123
- (0, vue_1.h)("span", { class: `${mergedClsPrefix}-descriptions-table-content__content`, style: contentStyle }, itemChildren)));
130
+ ])),
131
+ (0, vue_1.h)("span", { class: `${mergedClsPrefix}-descriptions-table-content__content`, style: contentStyle }, loadingSkeleton ? ((0, vue_1.h)(_internal_1.UBaseSkeleton, Object.assign({}, skeletonProps))) : (itemChildren))));
124
132
  }
125
133
  }
126
134
  else {
127
135
  const colspan = isLastIteration
128
136
  ? (compitableColumn - memorizedSpan) * 2
129
137
  : itemSpan * 2;
130
- state.row.push((0, vue_1.h)("th", { class: `${mergedClsPrefix}-descriptions-table-header`, colspan: colspan, style: labelStyle }, itemLabel));
131
- state.secondRow.push((0, vue_1.h)("td", { class: `${mergedClsPrefix}-descriptions-table-content`, colspan: colspan, style: contentStyle }, itemChildren));
138
+ state.row.push((0, vue_1.h)("th", { class: `${mergedClsPrefix}-descriptions-table-header`, colspan: colspan, style: labelStyle }, loadingSkeleton ? (0, vue_1.h)(_internal_1.UBaseSkeleton, Object.assign({}, skeletonProps)) : itemLabel));
139
+ state.secondRow.push((0, vue_1.h)("td", { class: `${mergedClsPrefix}-descriptions-table-content`, colspan: colspan, style: contentStyle }, loadingSkeleton ? ((0, vue_1.h)(_internal_1.UBaseSkeleton, Object.assign({}, skeletonProps))) : (itemChildren)));
132
140
  }
133
141
  if (state.span >= compitableColumn || isLastIteration) {
134
142
  state.span = 0;
@@ -57,8 +57,6 @@ export declare const UDialogProvider: import("vue").DefineComponent<{
57
57
  onAfterEnter?: (() => void) | undefined;
58
58
  transformOrigin?: "center" | "mouse" | undefined;
59
59
  onClose?: (() => Promise<unknown> | unknown) | undefined;
60
- autoFocus?: boolean | undefined;
61
- onEsc?: (() => void) | undefined;
62
60
  iconPlacement?: import("./interface").IconPlacement | undefined;
63
61
  positiveButtonProps?: {
64
62
  type?: import("../../button/src/interface").Type | undefined;
@@ -796,7 +794,9 @@ export declare const UDialogProvider: import("vue").DefineComponent<{
796
794
  } | undefined;
797
795
  onPositiveClick?: ((e: MouseEvent) => Promise<unknown> | unknown) | undefined;
798
796
  onNegativeClick?: ((e: MouseEvent) => Promise<unknown> | unknown) | undefined;
797
+ autoFocus?: boolean | undefined;
799
798
  blockScroll?: boolean | undefined;
799
+ onEsc?: (() => void) | undefined;
800
800
  onMaskClick?: ((e: MouseEvent) => void) | undefined;
801
801
  maskClosable?: boolean | undefined;
802
802
  closeOnEsc?: boolean | undefined;
@@ -116,8 +116,16 @@ export declare const drawerProps: {
116
116
  contentBorderRadius: string;
117
117
  }, {
118
118
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
119
+ height: string;
120
+ width: string;
121
+ borderRadius: string;
119
122
  color: string;
120
123
  colorHover: string;
124
+ railInsetHorizontalBottom: string;
125
+ railInsetHorizontalTop: string;
126
+ railInsetVerticalRight: string;
127
+ railInsetVerticalLeft: string;
128
+ railColor: string;
121
129
  }, any>;
122
130
  }>>;
123
131
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
@@ -153,8 +161,16 @@ export declare const drawerProps: {
153
161
  contentBorderRadius: string;
154
162
  }, {
155
163
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
164
+ height: string;
165
+ width: string;
166
+ borderRadius: string;
156
167
  color: string;
157
168
  colorHover: string;
169
+ railInsetHorizontalBottom: string;
170
+ railInsetHorizontalTop: string;
171
+ railInsetVerticalRight: string;
172
+ railInsetVerticalLeft: string;
173
+ railColor: string;
158
174
  }, any>;
159
175
  }>>>;
160
176
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
@@ -190,8 +206,16 @@ export declare const drawerProps: {
190
206
  contentBorderRadius: string;
191
207
  }, {
192
208
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
209
+ height: string;
210
+ width: string;
211
+ borderRadius: string;
193
212
  color: string;
194
213
  colorHover: string;
214
+ railInsetHorizontalBottom: string;
215
+ railInsetHorizontalTop: string;
216
+ railInsetVerticalRight: string;
217
+ railInsetVerticalLeft: string;
218
+ railColor: string;
195
219
  }, any>;
196
220
  }>>>;
197
221
  };
@@ -309,8 +333,16 @@ declare const _default: import("vue").DefineComponent<{
309
333
  contentBorderRadius: string;
310
334
  }, {
311
335
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
336
+ height: string;
337
+ width: string;
338
+ borderRadius: string;
312
339
  color: string;
313
340
  colorHover: string;
341
+ railInsetHorizontalBottom: string;
342
+ railInsetHorizontalTop: string;
343
+ railInsetVerticalRight: string;
344
+ railInsetVerticalLeft: string;
345
+ railColor: string;
314
346
  }, any>;
315
347
  }>>;
316
348
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
@@ -346,8 +378,16 @@ declare const _default: import("vue").DefineComponent<{
346
378
  contentBorderRadius: string;
347
379
  }, {
348
380
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
381
+ height: string;
382
+ width: string;
383
+ borderRadius: string;
349
384
  color: string;
350
385
  colorHover: string;
386
+ railInsetHorizontalBottom: string;
387
+ railInsetHorizontalTop: string;
388
+ railInsetVerticalRight: string;
389
+ railInsetVerticalLeft: string;
390
+ railColor: string;
351
391
  }, any>;
352
392
  }>>>;
353
393
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
@@ -383,8 +423,16 @@ declare const _default: import("vue").DefineComponent<{
383
423
  contentBorderRadius: string;
384
424
  }, {
385
425
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
426
+ height: string;
427
+ width: string;
428
+ borderRadius: string;
386
429
  color: string;
387
430
  colorHover: string;
431
+ railInsetHorizontalBottom: string;
432
+ railInsetHorizontalTop: string;
433
+ railInsetVerticalRight: string;
434
+ railInsetVerticalLeft: string;
435
+ railColor: string;
388
436
  }, any>;
389
437
  }>>>;
390
438
  }, {
@@ -429,8 +477,16 @@ declare const _default: import("vue").DefineComponent<{
429
477
  };
430
478
  peers: {
431
479
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
480
+ height: string;
481
+ width: string;
482
+ borderRadius: string;
432
483
  color: string;
433
484
  colorHover: string;
485
+ railInsetHorizontalBottom: string;
486
+ railInsetHorizontalTop: string;
487
+ railInsetVerticalRight: string;
488
+ railInsetVerticalLeft: string;
489
+ railColor: string;
434
490
  }, any>;
435
491
  };
436
492
  peerOverrides: {
@@ -592,8 +648,16 @@ declare const _default: import("vue").DefineComponent<{
592
648
  contentBorderRadius: string;
593
649
  }, {
594
650
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
651
+ height: string;
652
+ width: string;
653
+ borderRadius: string;
595
654
  color: string;
596
655
  colorHover: string;
656
+ railInsetHorizontalBottom: string;
657
+ railInsetHorizontalTop: string;
658
+ railInsetVerticalRight: string;
659
+ railInsetVerticalLeft: string;
660
+ railColor: string;
597
661
  }, any>;
598
662
  }>>;
599
663
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
@@ -629,8 +693,16 @@ declare const _default: import("vue").DefineComponent<{
629
693
  contentBorderRadius: string;
630
694
  }, {
631
695
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
696
+ height: string;
697
+ width: string;
698
+ borderRadius: string;
632
699
  color: string;
633
700
  colorHover: string;
701
+ railInsetHorizontalBottom: string;
702
+ railInsetHorizontalTop: string;
703
+ railInsetVerticalRight: string;
704
+ railInsetVerticalLeft: string;
705
+ railColor: string;
634
706
  }, any>;
635
707
  }>>>;
636
708
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Drawer", {
@@ -666,8 +738,16 @@ declare const _default: import("vue").DefineComponent<{
666
738
  contentBorderRadius: string;
667
739
  }, {
668
740
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
741
+ height: string;
742
+ width: string;
743
+ borderRadius: string;
669
744
  color: string;
670
745
  colorHover: string;
746
+ railInsetHorizontalBottom: string;
747
+ railInsetHorizontalTop: string;
748
+ railInsetVerticalRight: string;
749
+ railInsetVerticalLeft: string;
750
+ railColor: string;
671
751
  }, any>;
672
752
  }>>>;
673
753
  }>>, {
@@ -677,10 +757,10 @@ declare const _default: import("vue").DefineComponent<{
677
757
  readonly show: boolean;
678
758
  readonly displayDirective: "show" | "if";
679
759
  readonly placement: Placement;
680
- readonly autoFocus: boolean;
681
760
  readonly resizable: boolean;
682
761
  readonly rounded: boolean;
683
762
  readonly trapFocus: boolean;
763
+ readonly autoFocus: boolean;
684
764
  readonly blockScroll: boolean;
685
765
  readonly maskClosable: boolean;
686
766
  readonly closeOnEsc: boolean;
@@ -83,8 +83,16 @@ declare const _default: import("vue").DefineComponent<{
83
83
  };
84
84
  peers: {
85
85
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
86
+ height: string;
87
+ width: string;
88
+ borderRadius: string;
86
89
  color: string;
87
90
  colorHover: string;
91
+ railInsetHorizontalBottom: string;
92
+ railInsetHorizontalTop: string;
93
+ railInsetVerticalRight: string;
94
+ railInsetVerticalLeft: string;
95
+ railColor: string;
88
96
  }, any>;
89
97
  };
90
98
  peerOverrides: {
@@ -147,10 +155,10 @@ declare const _default: import("vue").DefineComponent<{
147
155
  onEsc: PropType<(e: KeyboardEvent) => void>;
148
156
  }>>, {
149
157
  show: boolean | undefined;
150
- autoFocus: boolean;
151
158
  resizable: boolean;
152
159
  rounded: boolean;
153
160
  trapFocus: boolean;
161
+ autoFocus: boolean;
154
162
  blockScroll: boolean;
155
163
  }, {}>;
156
164
  export default _default;
@@ -95,8 +95,16 @@ declare const _default: import("vue").DefineComponent<{
95
95
  };
96
96
  peers: {
97
97
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
98
+ height: string;
99
+ width: string;
100
+ borderRadius: string;
98
101
  color: string;
99
102
  colorHover: string;
103
+ railInsetHorizontalBottom: string;
104
+ railInsetHorizontalTop: string;
105
+ railInsetVerticalRight: string;
106
+ railInsetVerticalLeft: string;
107
+ railColor: string;
100
108
  }, any>;
101
109
  };
102
110
  peerOverrides: {
@@ -65,8 +65,16 @@ declare const drawerLight: import("../../_mixins").Theme<"Drawer", {
65
65
  contentBorderRadius: string;
66
66
  }, {
67
67
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
68
+ height: string;
69
+ width: string;
70
+ borderRadius: string;
68
71
  color: string;
69
72
  colorHover: string;
73
+ railInsetHorizontalBottom: string;
74
+ railInsetHorizontalTop: string;
75
+ railInsetVerticalRight: string;
76
+ railInsetVerticalLeft: string;
77
+ railColor: string;
70
78
  }, any>;
71
79
  }>;
72
80
  export default drawerLight;
@@ -1108,7 +1108,6 @@ declare const _default: import("vue").DefineComponent<{
1108
1108
  readonly trigger: import("../../popover").PopoverTrigger;
1109
1109
  readonly flip: boolean;
1110
1110
  readonly labelField: string;
1111
- readonly keyField: string;
1112
1111
  readonly overlap: boolean;
1113
1112
  readonly showArrow: boolean;
1114
1113
  readonly delay: number;
@@ -1127,5 +1126,6 @@ declare const _default: import("vue").DefineComponent<{
1127
1126
  readonly options: DropdownMixedOption[];
1128
1127
  readonly childrenField: string;
1129
1128
  readonly inverted: boolean;
1129
+ readonly keyField: string;
1130
1130
  }, {}>;
1131
1131
  export default _default;
@@ -0,0 +1,2 @@
1
+ export { infiniteScrollProps, default as UInfiniteScroll } from './src/InfiniteScroll';
2
+ export type { InfiniteScrollProps } from './src/InfiniteScroll';
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.UInfiniteScroll = exports.infiniteScrollProps = void 0;
7
+ var InfiniteScroll_1 = require("./src/InfiniteScroll");
8
+ Object.defineProperty(exports, "infiniteScrollProps", { enumerable: true, get: function () { return InfiniteScroll_1.infiniteScrollProps; } });
9
+ Object.defineProperty(exports, "UInfiniteScroll", { enumerable: true, get: function () { return __importDefault(InfiniteScroll_1).default; } });
@@ -0,0 +1,45 @@
1
+ import type { PropType } from 'vue';
2
+ import type { ExtractPublicPropTypes } from '../../_utils';
3
+ import type { ScrollbarProps } from '../../scrollbar/src/Scrollbar';
4
+ export declare const infiniteScrollProps: {
5
+ readonly distance: {
6
+ readonly type: NumberConstructor;
7
+ readonly default: 0;
8
+ };
9
+ readonly onLoad: PropType<() => Promise<void> | void>;
10
+ readonly scrollbarProps: PropType<ScrollbarProps>;
11
+ };
12
+ export type InfiniteScrollProps = ExtractPublicPropTypes<typeof infiniteScrollProps>;
13
+ declare const _default: import("vue").DefineComponent<{
14
+ readonly distance: {
15
+ readonly type: NumberConstructor;
16
+ readonly default: 0;
17
+ };
18
+ readonly onLoad: PropType<() => Promise<void> | void>;
19
+ readonly scrollbarProps: PropType<ScrollbarProps>;
20
+ }, {
21
+ scrollbarInstRef: import("vue").Ref<{
22
+ $el: HTMLElement;
23
+ containerRef: HTMLElement | null;
24
+ contentRef: HTMLElement | null;
25
+ containerScrollTop: number;
26
+ syncUnifiedContainer: () => void;
27
+ scrollTo: import("../../_internal/scrollbar/src/Scrollbar").ScrollTo;
28
+ scrollBy: import("../../_internal/scrollbar/src/Scrollbar").ScrollBy;
29
+ sync: () => void;
30
+ handleMouseEnterWrapper: () => void;
31
+ handleMouseLeaveWrapper: () => void;
32
+ } | null>;
33
+ handleScroll: () => void;
34
+ handleWheel: (e: WheelEvent) => void;
35
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
36
+ readonly distance: {
37
+ readonly type: NumberConstructor;
38
+ readonly default: 0;
39
+ };
40
+ readonly onLoad: PropType<() => Promise<void> | void>;
41
+ readonly scrollbarProps: PropType<ScrollbarProps>;
42
+ }>>, {
43
+ readonly distance: number;
44
+ }, {}>;
45
+ export default _default;