@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
@@ -121,7 +121,7 @@ declare const _default: import("vue").DefineComponent<{
121
121
  calendarValue: import("vue").Ref<number>;
122
122
  onUpdateCalendarValue: (value: number) => void;
123
123
  yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
124
- yearVlRef: import("vue").Ref<import("vueuc").VirtualListInst | null>;
124
+ yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
125
125
  mergedTheme: import("vue").Ref<{
126
126
  common: import("../../..").ThemeCommonVars;
127
127
  self: {
@@ -526,8 +526,16 @@ declare const _default: import("vue").DefineComponent<{
526
526
  iconColorDisabled: string;
527
527
  }, {
528
528
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
529
+ height: string;
530
+ width: string;
531
+ borderRadius: string;
529
532
  color: string;
530
533
  colorHover: string;
534
+ railInsetHorizontalBottom: string;
535
+ railInsetHorizontalTop: string;
536
+ railInsetVerticalRight: string;
537
+ railInsetVerticalLeft: string;
538
+ railColor: string;
531
539
  }, any>;
532
540
  Button: import("../../../_mixins").Theme<"Button", {
533
541
  heightTiny: string;
@@ -814,9 +822,140 @@ declare const _default: import("vue").DefineComponent<{
814
822
  }, any>;
815
823
  }>;
816
824
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
825
+ height: string;
826
+ width: string;
827
+ borderRadius: string;
817
828
  color: string;
818
829
  colorHover: string;
830
+ railInsetHorizontalBottom: string;
831
+ railInsetHorizontalTop: string;
832
+ railInsetVerticalRight: string;
833
+ railInsetVerticalLeft: string;
834
+ railColor: string;
819
835
  }, any>;
836
+ Select: import("../../../_mixins").Theme<"InternalSelection", {
837
+ paddingTiny: string;
838
+ paddingSmall: string;
839
+ paddingMedium: string;
840
+ paddingLarge: string;
841
+ paddingHuge: string;
842
+ clearSizeTiny: string;
843
+ clearSizeSmall: string;
844
+ clearSizeMedium: string;
845
+ clearSizeLarge: string;
846
+ clearSizeHuge: string;
847
+ arrowSizeTiny: string;
848
+ arrowSizeSmall: string;
849
+ arrowSizeMedium: string;
850
+ arrowSizeLarge: string;
851
+ arrowSizeHuge: string;
852
+ fontSizeTiny: string;
853
+ fontSizeSmall: string;
854
+ fontSizeMedium: string;
855
+ fontSizeLarge: string;
856
+ fontSizeHuge: string;
857
+ lineHeightTiny: string;
858
+ lineHeightSmall: string;
859
+ lineHeightMedium: string;
860
+ lineHeightLarge: string;
861
+ lineHeightHuge: string;
862
+ heightTiny: string;
863
+ heightSmall: string;
864
+ heightMedium: string;
865
+ heightLarge: string;
866
+ heightHuge: string;
867
+ borderRadiusTiny: string;
868
+ borderRadiusSmall: string;
869
+ borderRadiusMedium: string;
870
+ borderRadiusLarge: string;
871
+ borderRadiusHuge: string;
872
+ textColor: string;
873
+ textColorDisabled: string;
874
+ placeholderColor: string;
875
+ placeholderColorDisabled: string;
876
+ color: string;
877
+ colorFilled: string;
878
+ colorDisabled: string;
879
+ colorActive: string;
880
+ border: string;
881
+ borderFilled: string;
882
+ borderHover: string;
883
+ borderActive: string;
884
+ borderFocus: string;
885
+ borderDisabled: string;
886
+ boxShadowHover: string;
887
+ boxShadowActive: string;
888
+ boxShadowFocus: string;
889
+ caretColor: string;
890
+ arrowColor: string;
891
+ arrowColorHover: string;
892
+ arrowColorDisabled: string;
893
+ loadingColor: string;
894
+ borderWarning: string;
895
+ borderHoverWarning: string;
896
+ borderActiveWarning: string;
897
+ borderFocusWarning: string;
898
+ boxShadowHoverWarning: string;
899
+ boxShadowActiveWarning: string;
900
+ boxShadowFocusWarning: string;
901
+ colorActiveWarning: string;
902
+ caretColorWarning: string;
903
+ borderError: string;
904
+ borderHoverError: string;
905
+ borderActiveError: string;
906
+ borderFocusError: string;
907
+ boxShadowHoverError: string;
908
+ boxShadowActiveError: string;
909
+ boxShadowFocusError: string;
910
+ colorActiveError: string;
911
+ caretColorError: string;
912
+ clearColor: string;
913
+ clearColorHover: string;
914
+ clearColorPressed: string;
915
+ caretColorSecondary: string;
916
+ filterCounterTextColor: string;
917
+ filterCounterTextColorDisabled: string;
918
+ arrowColorSecondary: string;
919
+ clearColorSecondary: string;
920
+ colorSecondary: string;
921
+ textColorSecondary: string;
922
+ borderSecondary: string;
923
+ arrowColorDisabledSecondary: string;
924
+ clearColorDisabledSecondary: string;
925
+ colorDisabledSecondary: string;
926
+ textColorDisabledSecondary: string;
927
+ borderDisabledSecondary: string;
928
+ arrowColorHoverSecondary: string;
929
+ clearColorHoverSecondary: string;
930
+ colorHoverSecondary: string;
931
+ textColorHoverSecondary: string;
932
+ borderHoverSecondary: string;
933
+ arrowColorFocusSecondary: string;
934
+ clearColorFocusSecondary: string;
935
+ colorFocusSecondary: string;
936
+ textColorFocusSecondary: string;
937
+ borderFocusSecondary: string;
938
+ arrowColorActiveSecondary: string;
939
+ clearColorActiveSecondary: string;
940
+ colorActiveSecondary: string;
941
+ textColorActiveSecondary: string;
942
+ borderActiveSecondary: string;
943
+ }, {
944
+ Popover: import("../../../_mixins").Theme<"Popover", {
945
+ space: string;
946
+ spaceArrow: string;
947
+ arrowOffset: string;
948
+ arrowOffsetVertical: string;
949
+ arrowHeight: string;
950
+ padding: string;
951
+ fontSize: string;
952
+ borderRadius: string;
953
+ color: string;
954
+ dividerColor: string;
955
+ textColor: string;
956
+ boxShadow: string;
957
+ }, any>;
958
+ }>;
820
959
  };
821
960
  peerOverrides: {
822
961
  Input?: {
@@ -832,8 +971,16 @@ declare const _default: import("vue").DefineComponent<{
832
971
  TimePicker?: {
833
972
  peers?: {
834
973
  Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
974
+ height: string;
975
+ width: string;
976
+ borderRadius: string;
835
977
  color: string;
836
978
  colorHover: string;
979
+ railInsetHorizontalBottom: string;
980
+ railInsetHorizontalTop: string;
981
+ railInsetVerticalRight: string;
982
+ railInsetVerticalLeft: string;
983
+ railColor: string;
837
984
  }, any>> | undefined;
838
985
  Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
839
986
  heightTiny: string;
@@ -1125,6 +1272,24 @@ declare const _default: import("vue").DefineComponent<{
1125
1272
  [x: string]: any;
1126
1273
  } | undefined;
1127
1274
  } | undefined;
1275
+ Select?: {
1276
+ peers?: {
1277
+ Popover?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Popover", {
1278
+ space: string;
1279
+ spaceArrow: string;
1280
+ arrowOffset: string;
1281
+ arrowOffsetVertical: string;
1282
+ arrowHeight: string;
1283
+ padding: string;
1284
+ fontSize: string;
1285
+ borderRadius: string;
1286
+ color: string;
1287
+ dividerColor: string;
1288
+ textColor: string;
1289
+ boxShadow: string;
1290
+ }, any>> | undefined;
1291
+ } | undefined;
1292
+ } | undefined;
1128
1293
  };
1129
1294
  }>;
1130
1295
  mergedClsPrefix: import("vue").Ref<string>;
@@ -1278,7 +1443,7 @@ declare const _default: import("vue").DefineComponent<{
1278
1443
  calendarValue: import("vue").Ref<number>;
1279
1444
  onUpdateCalendarValue: (value: number) => void;
1280
1445
  yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
1281
- yearVlRef: import("vue").Ref<import("vueuc").VirtualListInst | null>;
1446
+ yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
1282
1447
  mergedTheme: import("vue").Ref<{
1283
1448
  common: import("../../..").ThemeCommonVars;
1284
1449
  self: {
@@ -1683,8 +1848,16 @@ declare const _default: import("vue").DefineComponent<{
1683
1848
  iconColorDisabled: string;
1684
1849
  }, {
1685
1850
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
1851
+ height: string;
1852
+ width: string;
1853
+ borderRadius: string;
1686
1854
  color: string;
1687
1855
  colorHover: string;
1856
+ railInsetHorizontalBottom: string;
1857
+ railInsetHorizontalTop: string;
1858
+ railInsetVerticalRight: string;
1859
+ railInsetVerticalLeft: string;
1860
+ railColor: string;
1688
1861
  }, any>;
1689
1862
  Button: import("../../../_mixins").Theme<"Button", {
1690
1863
  heightTiny: string;
@@ -1971,9 +2144,140 @@ declare const _default: import("vue").DefineComponent<{
1971
2144
  }, any>;
1972
2145
  }>;
1973
2146
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
2147
+ height: string;
2148
+ width: string;
2149
+ borderRadius: string;
1974
2150
  color: string;
1975
2151
  colorHover: string;
2152
+ railInsetHorizontalBottom: string;
2153
+ railInsetHorizontalTop: string;
2154
+ railInsetVerticalRight: string;
2155
+ railInsetVerticalLeft: string;
2156
+ railColor: string;
1976
2157
  }, any>;
2158
+ Select: import("../../../_mixins").Theme<"InternalSelection", {
2159
+ paddingTiny: string;
2160
+ paddingSmall: string;
2161
+ paddingMedium: string;
2162
+ paddingLarge: string;
2163
+ paddingHuge: string;
2164
+ clearSizeTiny: string;
2165
+ clearSizeSmall: string;
2166
+ clearSizeMedium: string;
2167
+ clearSizeLarge: string;
2168
+ clearSizeHuge: string;
2169
+ arrowSizeTiny: string;
2170
+ arrowSizeSmall: string;
2171
+ arrowSizeMedium: string;
2172
+ arrowSizeLarge: string;
2173
+ arrowSizeHuge: string;
2174
+ fontSizeTiny: string;
2175
+ fontSizeSmall: string;
2176
+ fontSizeMedium: string;
2177
+ fontSizeLarge: string;
2178
+ fontSizeHuge: string;
2179
+ lineHeightTiny: string;
2180
+ lineHeightSmall: string;
2181
+ lineHeightMedium: string;
2182
+ lineHeightLarge: string;
2183
+ lineHeightHuge: string;
2184
+ heightTiny: string;
2185
+ heightSmall: string;
2186
+ heightMedium: string;
2187
+ heightLarge: string;
2188
+ heightHuge: string;
2189
+ borderRadiusTiny: string;
2190
+ borderRadiusSmall: string;
2191
+ borderRadiusMedium: string;
2192
+ borderRadiusLarge: string;
2193
+ borderRadiusHuge: string;
2194
+ textColor: string;
2195
+ textColorDisabled: string;
2196
+ placeholderColor: string;
2197
+ placeholderColorDisabled: string;
2198
+ color: string;
2199
+ colorFilled: string;
2200
+ colorDisabled: string;
2201
+ colorActive: string;
2202
+ border: string;
2203
+ borderFilled: string;
2204
+ borderHover: string;
2205
+ borderActive: string;
2206
+ borderFocus: string;
2207
+ borderDisabled: string;
2208
+ boxShadowHover: string;
2209
+ boxShadowActive: string;
2210
+ boxShadowFocus: string;
2211
+ caretColor: string;
2212
+ arrowColor: string;
2213
+ arrowColorHover: string;
2214
+ arrowColorDisabled: string;
2215
+ loadingColor: string;
2216
+ borderWarning: string;
2217
+ borderHoverWarning: string;
2218
+ borderActiveWarning: string;
2219
+ borderFocusWarning: string;
2220
+ boxShadowHoverWarning: string;
2221
+ boxShadowActiveWarning: string;
2222
+ boxShadowFocusWarning: string;
2223
+ colorActiveWarning: string;
2224
+ caretColorWarning: string;
2225
+ borderError: string;
2226
+ borderHoverError: string;
2227
+ borderActiveError: string;
2228
+ borderFocusError: string;
2229
+ boxShadowHoverError: string;
2230
+ boxShadowActiveError: string;
2231
+ boxShadowFocusError: string;
2232
+ colorActiveError: string;
2233
+ caretColorError: string;
2234
+ clearColor: string;
2235
+ clearColorHover: string;
2236
+ clearColorPressed: string;
2237
+ caretColorSecondary: string;
2238
+ filterCounterTextColor: string;
2239
+ filterCounterTextColorDisabled: string;
2240
+ arrowColorSecondary: string;
2241
+ clearColorSecondary: string;
2242
+ colorSecondary: string;
2243
+ textColorSecondary: string;
2244
+ borderSecondary: string;
2245
+ arrowColorDisabledSecondary: string;
2246
+ clearColorDisabledSecondary: string;
2247
+ colorDisabledSecondary: string;
2248
+ textColorDisabledSecondary: string;
2249
+ borderDisabledSecondary: string;
2250
+ arrowColorHoverSecondary: string;
2251
+ clearColorHoverSecondary: string;
2252
+ colorHoverSecondary: string;
2253
+ textColorHoverSecondary: string;
2254
+ borderHoverSecondary: string;
2255
+ arrowColorFocusSecondary: string;
2256
+ clearColorFocusSecondary: string;
2257
+ colorFocusSecondary: string;
2258
+ textColorFocusSecondary: string;
2259
+ borderFocusSecondary: string;
2260
+ arrowColorActiveSecondary: string;
2261
+ clearColorActiveSecondary: string;
2262
+ colorActiveSecondary: string;
2263
+ textColorActiveSecondary: string;
2264
+ borderActiveSecondary: string;
2265
+ }, {
2266
+ Popover: import("../../../_mixins").Theme<"Popover", {
2267
+ space: string;
2268
+ spaceArrow: string;
2269
+ arrowOffset: string;
2270
+ arrowOffsetVertical: string;
2271
+ arrowHeight: string;
2272
+ padding: string;
2273
+ fontSize: string;
2274
+ borderRadius: string;
2275
+ color: string;
2276
+ dividerColor: string;
2277
+ textColor: string;
2278
+ boxShadow: string;
2279
+ }, any>;
2280
+ }>;
1977
2281
  };
1978
2282
  peerOverrides: {
1979
2283
  Input?: {
@@ -1989,8 +2293,16 @@ declare const _default: import("vue").DefineComponent<{
1989
2293
  TimePicker?: {
1990
2294
  peers?: {
1991
2295
  Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
2296
+ height: string;
2297
+ width: string;
2298
+ borderRadius: string;
1992
2299
  color: string;
1993
2300
  colorHover: string;
2301
+ railInsetHorizontalBottom: string;
2302
+ railInsetHorizontalTop: string;
2303
+ railInsetVerticalRight: string;
2304
+ railInsetVerticalLeft: string;
2305
+ railColor: string;
1994
2306
  }, any>> | undefined;
1995
2307
  Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
1996
2308
  heightTiny: string;
@@ -2282,6 +2594,24 @@ declare const _default: import("vue").DefineComponent<{
2282
2594
  [x: string]: any;
2283
2595
  } | undefined;
2284
2596
  } | undefined;
2597
+ Select?: {
2598
+ peers?: {
2599
+ Popover?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Popover", {
2600
+ space: string;
2601
+ spaceArrow: string;
2602
+ arrowOffset: string;
2603
+ arrowOffsetVertical: string;
2604
+ arrowHeight: string;
2605
+ padding: string;
2606
+ fontSize: string;
2607
+ borderRadius: string;
2608
+ color: string;
2609
+ dividerColor: string;
2610
+ textColor: string;
2611
+ boxShadow: string;
2612
+ }, any>> | undefined;
2613
+ } | undefined;
2614
+ } | undefined;
2285
2615
  };
2286
2616
  }>;
2287
2617
  mergedClsPrefix: import("vue").Ref<string>;
@@ -56,7 +56,7 @@ declare const _default: import("vue").DefineComponent<{
56
56
  calendarValue: import("vue").Ref<number>;
57
57
  onUpdateCalendarValue: (value: number) => void;
58
58
  yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
59
- yearVlRef: import("vue").Ref<import("vueuc").VirtualListInst | null>;
59
+ yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
60
60
  mergedTheme: import("vue").Ref<{
61
61
  common: import("../../..").ThemeCommonVars;
62
62
  self: {
@@ -461,8 +461,16 @@ declare const _default: import("vue").DefineComponent<{
461
461
  iconColorDisabled: string;
462
462
  }, {
463
463
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
464
+ height: string;
465
+ width: string;
466
+ borderRadius: string;
464
467
  color: string;
465
468
  colorHover: string;
469
+ railInsetHorizontalBottom: string;
470
+ railInsetHorizontalTop: string;
471
+ railInsetVerticalRight: string;
472
+ railInsetVerticalLeft: string;
473
+ railColor: string;
466
474
  }, any>;
467
475
  Button: import("../../../_mixins").Theme<"Button", {
468
476
  heightTiny: string;
@@ -749,9 +757,140 @@ declare const _default: import("vue").DefineComponent<{
749
757
  }, any>;
750
758
  }>;
751
759
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
760
+ height: string;
761
+ width: string;
762
+ borderRadius: string;
752
763
  color: string;
753
764
  colorHover: string;
765
+ railInsetHorizontalBottom: string;
766
+ railInsetHorizontalTop: string;
767
+ railInsetVerticalRight: string;
768
+ railInsetVerticalLeft: string;
769
+ railColor: string;
754
770
  }, any>;
771
+ Select: import("../../../_mixins").Theme<"InternalSelection", {
772
+ paddingTiny: string;
773
+ paddingSmall: string;
774
+ paddingMedium: string;
775
+ paddingLarge: string;
776
+ paddingHuge: string;
777
+ clearSizeTiny: string;
778
+ clearSizeSmall: string;
779
+ clearSizeMedium: string;
780
+ clearSizeLarge: string;
781
+ clearSizeHuge: string;
782
+ arrowSizeTiny: string;
783
+ arrowSizeSmall: string;
784
+ arrowSizeMedium: string;
785
+ arrowSizeLarge: string;
786
+ arrowSizeHuge: string;
787
+ fontSizeTiny: string;
788
+ fontSizeSmall: string;
789
+ fontSizeMedium: string;
790
+ fontSizeLarge: string;
791
+ fontSizeHuge: string;
792
+ lineHeightTiny: string;
793
+ lineHeightSmall: string;
794
+ lineHeightMedium: string;
795
+ lineHeightLarge: string;
796
+ lineHeightHuge: string;
797
+ heightTiny: string;
798
+ heightSmall: string;
799
+ heightMedium: string;
800
+ heightLarge: string;
801
+ heightHuge: string;
802
+ borderRadiusTiny: string;
803
+ borderRadiusSmall: string;
804
+ borderRadiusMedium: string;
805
+ borderRadiusLarge: string;
806
+ borderRadiusHuge: string;
807
+ textColor: string;
808
+ textColorDisabled: string;
809
+ placeholderColor: string;
810
+ placeholderColorDisabled: string;
811
+ color: string;
812
+ colorFilled: string;
813
+ colorDisabled: string;
814
+ colorActive: string;
815
+ border: string;
816
+ borderFilled: string;
817
+ borderHover: string;
818
+ borderActive: string;
819
+ borderFocus: string;
820
+ borderDisabled: string;
821
+ boxShadowHover: string;
822
+ boxShadowActive: string;
823
+ boxShadowFocus: string;
824
+ caretColor: string;
825
+ arrowColor: string;
826
+ arrowColorHover: string;
827
+ arrowColorDisabled: string;
828
+ loadingColor: string;
829
+ borderWarning: string;
830
+ borderHoverWarning: string;
831
+ borderActiveWarning: string;
832
+ borderFocusWarning: string;
833
+ boxShadowHoverWarning: string;
834
+ boxShadowActiveWarning: string;
835
+ boxShadowFocusWarning: string;
836
+ colorActiveWarning: string;
837
+ caretColorWarning: string;
838
+ borderError: string;
839
+ borderHoverError: string;
840
+ borderActiveError: string;
841
+ borderFocusError: string;
842
+ boxShadowHoverError: string;
843
+ boxShadowActiveError: string;
844
+ boxShadowFocusError: string;
845
+ colorActiveError: string;
846
+ caretColorError: string;
847
+ clearColor: string;
848
+ clearColorHover: string;
849
+ clearColorPressed: string;
850
+ caretColorSecondary: string;
851
+ filterCounterTextColor: string;
852
+ filterCounterTextColorDisabled: string;
853
+ arrowColorSecondary: string;
854
+ clearColorSecondary: string;
855
+ colorSecondary: string;
856
+ textColorSecondary: string;
857
+ borderSecondary: string;
858
+ arrowColorDisabledSecondary: string;
859
+ clearColorDisabledSecondary: string;
860
+ colorDisabledSecondary: string;
861
+ textColorDisabledSecondary: string;
862
+ borderDisabledSecondary: string;
863
+ arrowColorHoverSecondary: string;
864
+ clearColorHoverSecondary: string;
865
+ colorHoverSecondary: string;
866
+ textColorHoverSecondary: string;
867
+ borderHoverSecondary: string;
868
+ arrowColorFocusSecondary: string;
869
+ clearColorFocusSecondary: string;
870
+ colorFocusSecondary: string;
871
+ textColorFocusSecondary: string;
872
+ borderFocusSecondary: string;
873
+ arrowColorActiveSecondary: string;
874
+ clearColorActiveSecondary: string;
875
+ colorActiveSecondary: string;
876
+ textColorActiveSecondary: string;
877
+ borderActiveSecondary: string;
878
+ }, {
879
+ Popover: import("../../../_mixins").Theme<"Popover", {
880
+ space: string;
881
+ spaceArrow: string;
882
+ arrowOffset: string;
883
+ arrowOffsetVertical: string;
884
+ arrowHeight: string;
885
+ padding: string;
886
+ fontSize: string;
887
+ borderRadius: string;
888
+ color: string;
889
+ dividerColor: string;
890
+ textColor: string;
891
+ boxShadow: string;
892
+ }, any>;
893
+ }>;
755
894
  };
756
895
  peerOverrides: {
757
896
  Input?: {
@@ -767,8 +906,16 @@ declare const _default: import("vue").DefineComponent<{
767
906
  TimePicker?: {
768
907
  peers?: {
769
908
  Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
909
+ height: string;
910
+ width: string;
911
+ borderRadius: string;
770
912
  color: string;
771
913
  colorHover: string;
914
+ railInsetHorizontalBottom: string;
915
+ railInsetHorizontalTop: string;
916
+ railInsetVerticalRight: string;
917
+ railInsetVerticalLeft: string;
918
+ railColor: string;
772
919
  }, any>> | undefined;
773
920
  Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
774
921
  heightTiny: string;
@@ -1060,6 +1207,24 @@ declare const _default: import("vue").DefineComponent<{
1060
1207
  [x: string]: any;
1061
1208
  } | undefined;
1062
1209
  } | undefined;
1210
+ Select?: {
1211
+ peers?: {
1212
+ Popover?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Popover", {
1213
+ space: string;
1214
+ spaceArrow: string;
1215
+ arrowOffset: string;
1216
+ arrowOffsetVertical: string;
1217
+ arrowHeight: string;
1218
+ padding: string;
1219
+ fontSize: string;
1220
+ borderRadius: string;
1221
+ color: string;
1222
+ dividerColor: string;
1223
+ textColor: string;
1224
+ boxShadow: string;
1225
+ }, any>> | undefined;
1226
+ } | undefined;
1227
+ } | undefined;
1063
1228
  };
1064
1229
  }>;
1065
1230
  mergedClsPrefix: import("vue").Ref<string>;