@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
@@ -457,8 +457,16 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
457
457
  iconColorDisabled: string;
458
458
  }, {
459
459
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
460
+ height: string;
461
+ width: string;
462
+ borderRadius: string;
460
463
  color: string;
461
464
  colorHover: string;
465
+ railInsetHorizontalBottom: string;
466
+ railInsetHorizontalTop: string;
467
+ railInsetVerticalRight: string;
468
+ railInsetVerticalLeft: string;
469
+ railColor: string;
462
470
  }, any>;
463
471
  Button: import("../../../_mixins").Theme<"Button", {
464
472
  heightTiny: string;
@@ -745,9 +753,140 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
745
753
  }, any>;
746
754
  }>;
747
755
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
756
+ height: string;
757
+ width: string;
758
+ borderRadius: string;
748
759
  color: string;
749
760
  colorHover: string;
761
+ railInsetHorizontalBottom: string;
762
+ railInsetHorizontalTop: string;
763
+ railInsetVerticalRight: string;
764
+ railInsetVerticalLeft: string;
765
+ railColor: string;
750
766
  }, any>;
767
+ Select: import("../../../_mixins").Theme<"InternalSelection", {
768
+ paddingTiny: string;
769
+ paddingSmall: string;
770
+ paddingMedium: string;
771
+ paddingLarge: string;
772
+ paddingHuge: string;
773
+ clearSizeTiny: string;
774
+ clearSizeSmall: string;
775
+ clearSizeMedium: string;
776
+ clearSizeLarge: string;
777
+ clearSizeHuge: string;
778
+ arrowSizeTiny: string;
779
+ arrowSizeSmall: string;
780
+ arrowSizeMedium: string;
781
+ arrowSizeLarge: string;
782
+ arrowSizeHuge: string;
783
+ fontSizeTiny: string;
784
+ fontSizeSmall: string;
785
+ fontSizeMedium: string;
786
+ fontSizeLarge: string;
787
+ fontSizeHuge: string;
788
+ lineHeightTiny: string;
789
+ lineHeightSmall: string;
790
+ lineHeightMedium: string;
791
+ lineHeightLarge: string;
792
+ lineHeightHuge: string;
793
+ heightTiny: string;
794
+ heightSmall: string;
795
+ heightMedium: string;
796
+ heightLarge: string;
797
+ heightHuge: string;
798
+ borderRadiusTiny: string;
799
+ borderRadiusSmall: string;
800
+ borderRadiusMedium: string;
801
+ borderRadiusLarge: string;
802
+ borderRadiusHuge: string;
803
+ textColor: string;
804
+ textColorDisabled: string;
805
+ placeholderColor: string;
806
+ placeholderColorDisabled: string;
807
+ color: string;
808
+ colorFilled: string;
809
+ colorDisabled: string;
810
+ colorActive: string;
811
+ border: string;
812
+ borderFilled: string;
813
+ borderHover: string;
814
+ borderActive: string;
815
+ borderFocus: string;
816
+ borderDisabled: string;
817
+ boxShadowHover: string;
818
+ boxShadowActive: string;
819
+ boxShadowFocus: string;
820
+ caretColor: string;
821
+ arrowColor: string;
822
+ arrowColorHover: string;
823
+ arrowColorDisabled: string;
824
+ loadingColor: string;
825
+ borderWarning: string;
826
+ borderHoverWarning: string;
827
+ borderActiveWarning: string;
828
+ borderFocusWarning: string;
829
+ boxShadowHoverWarning: string;
830
+ boxShadowActiveWarning: string;
831
+ boxShadowFocusWarning: string;
832
+ colorActiveWarning: string;
833
+ caretColorWarning: string;
834
+ borderError: string;
835
+ borderHoverError: string;
836
+ borderActiveError: string;
837
+ borderFocusError: string;
838
+ boxShadowHoverError: string;
839
+ boxShadowActiveError: string;
840
+ boxShadowFocusError: string;
841
+ colorActiveError: string;
842
+ caretColorError: string;
843
+ clearColor: string;
844
+ clearColorHover: string;
845
+ clearColorPressed: string;
846
+ caretColorSecondary: string;
847
+ filterCounterTextColor: string;
848
+ filterCounterTextColorDisabled: string;
849
+ arrowColorSecondary: string;
850
+ clearColorSecondary: string;
851
+ colorSecondary: string;
852
+ textColorSecondary: string;
853
+ borderSecondary: string;
854
+ arrowColorDisabledSecondary: string;
855
+ clearColorDisabledSecondary: string;
856
+ colorDisabledSecondary: string;
857
+ textColorDisabledSecondary: string;
858
+ borderDisabledSecondary: string;
859
+ arrowColorHoverSecondary: string;
860
+ clearColorHoverSecondary: string;
861
+ colorHoverSecondary: string;
862
+ textColorHoverSecondary: string;
863
+ borderHoverSecondary: string;
864
+ arrowColorFocusSecondary: string;
865
+ clearColorFocusSecondary: string;
866
+ colorFocusSecondary: string;
867
+ textColorFocusSecondary: string;
868
+ borderFocusSecondary: string;
869
+ arrowColorActiveSecondary: string;
870
+ clearColorActiveSecondary: string;
871
+ colorActiveSecondary: string;
872
+ textColorActiveSecondary: string;
873
+ borderActiveSecondary: string;
874
+ }, {
875
+ Popover: import("../../../_mixins").Theme<"Popover", {
876
+ space: string;
877
+ spaceArrow: string;
878
+ arrowOffset: string;
879
+ arrowOffsetVertical: string;
880
+ arrowHeight: string;
881
+ padding: string;
882
+ fontSize: string;
883
+ borderRadius: string;
884
+ color: string;
885
+ dividerColor: string;
886
+ textColor: string;
887
+ boxShadow: string;
888
+ }, any>;
889
+ }>;
751
890
  };
752
891
  peerOverrides: {
753
892
  Input?: {
@@ -763,8 +902,16 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
763
902
  TimePicker?: {
764
903
  peers?: {
765
904
  Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
905
+ height: string;
906
+ width: string;
907
+ borderRadius: string;
766
908
  color: string;
767
909
  colorHover: string;
910
+ railInsetHorizontalBottom: string;
911
+ railInsetHorizontalTop: string;
912
+ railInsetVerticalRight: string;
913
+ railInsetVerticalLeft: string;
914
+ railColor: string;
768
915
  }, any>> | undefined;
769
916
  Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
770
917
  heightTiny: string;
@@ -1056,6 +1203,24 @@ declare function useCalendar(props: ExtractPropTypes<typeof useCalendarProps>, t
1056
1203
  [x: string]: any;
1057
1204
  } | undefined;
1058
1205
  } | undefined;
1206
+ Select?: {
1207
+ peers?: {
1208
+ Popover?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Popover", {
1209
+ space: string;
1210
+ spaceArrow: string;
1211
+ arrowOffset: string;
1212
+ arrowOffsetVertical: string;
1213
+ arrowHeight: string;
1214
+ padding: string;
1215
+ fontSize: string;
1216
+ borderRadius: string;
1217
+ color: string;
1218
+ dividerColor: string;
1219
+ textColor: string;
1220
+ boxShadow: string;
1221
+ }, any>> | undefined;
1222
+ } | undefined;
1223
+ } | undefined;
1059
1224
  };
1060
1225
  }>;
1061
1226
  mergedClsPrefix: import("vue").Ref<string>;
@@ -489,8 +489,16 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
489
489
  iconColorDisabled: string;
490
490
  }, {
491
491
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
492
+ height: string;
493
+ width: string;
494
+ borderRadius: string;
492
495
  color: string;
493
496
  colorHover: string;
497
+ railInsetHorizontalBottom: string;
498
+ railInsetHorizontalTop: string;
499
+ railInsetVerticalRight: string;
500
+ railInsetVerticalLeft: string;
501
+ railColor: string;
494
502
  }, any>;
495
503
  Button: import("../../../_mixins").Theme<"Button", {
496
504
  heightTiny: string;
@@ -777,9 +785,140 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
777
785
  }, any>;
778
786
  }>;
779
787
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
788
+ height: string;
789
+ width: string;
790
+ borderRadius: string;
780
791
  color: string;
781
792
  colorHover: string;
793
+ railInsetHorizontalBottom: string;
794
+ railInsetHorizontalTop: string;
795
+ railInsetVerticalRight: string;
796
+ railInsetVerticalLeft: string;
797
+ railColor: string;
782
798
  }, any>;
799
+ Select: import("../../../_mixins").Theme<"InternalSelection", {
800
+ paddingTiny: string;
801
+ paddingSmall: string;
802
+ paddingMedium: string;
803
+ paddingLarge: string;
804
+ paddingHuge: string;
805
+ clearSizeTiny: string;
806
+ clearSizeSmall: string;
807
+ clearSizeMedium: string;
808
+ clearSizeLarge: string;
809
+ clearSizeHuge: string;
810
+ arrowSizeTiny: string;
811
+ arrowSizeSmall: string;
812
+ arrowSizeMedium: string;
813
+ arrowSizeLarge: string;
814
+ arrowSizeHuge: string;
815
+ fontSizeTiny: string;
816
+ fontSizeSmall: string;
817
+ fontSizeMedium: string;
818
+ fontSizeLarge: string;
819
+ fontSizeHuge: string;
820
+ lineHeightTiny: string;
821
+ lineHeightSmall: string;
822
+ lineHeightMedium: string;
823
+ lineHeightLarge: string;
824
+ lineHeightHuge: string;
825
+ heightTiny: string;
826
+ heightSmall: string;
827
+ heightMedium: string;
828
+ heightLarge: string;
829
+ heightHuge: string;
830
+ borderRadiusTiny: string;
831
+ borderRadiusSmall: string;
832
+ borderRadiusMedium: string;
833
+ borderRadiusLarge: string;
834
+ borderRadiusHuge: string;
835
+ textColor: string;
836
+ textColorDisabled: string;
837
+ placeholderColor: string;
838
+ placeholderColorDisabled: string;
839
+ color: string;
840
+ colorFilled: string;
841
+ colorDisabled: string;
842
+ colorActive: string;
843
+ border: string;
844
+ borderFilled: string;
845
+ borderHover: string;
846
+ borderActive: string;
847
+ borderFocus: string;
848
+ borderDisabled: string;
849
+ boxShadowHover: string;
850
+ boxShadowActive: string;
851
+ boxShadowFocus: string;
852
+ caretColor: string;
853
+ arrowColor: string;
854
+ arrowColorHover: string;
855
+ arrowColorDisabled: string;
856
+ loadingColor: string;
857
+ borderWarning: string;
858
+ borderHoverWarning: string;
859
+ borderActiveWarning: string;
860
+ borderFocusWarning: string;
861
+ boxShadowHoverWarning: string;
862
+ boxShadowActiveWarning: string;
863
+ boxShadowFocusWarning: string;
864
+ colorActiveWarning: string;
865
+ caretColorWarning: string;
866
+ borderError: string;
867
+ borderHoverError: string;
868
+ borderActiveError: string;
869
+ borderFocusError: string;
870
+ boxShadowHoverError: string;
871
+ boxShadowActiveError: string;
872
+ boxShadowFocusError: string;
873
+ colorActiveError: string;
874
+ caretColorError: string;
875
+ clearColor: string;
876
+ clearColorHover: string;
877
+ clearColorPressed: string;
878
+ caretColorSecondary: string;
879
+ filterCounterTextColor: string;
880
+ filterCounterTextColorDisabled: string;
881
+ arrowColorSecondary: string;
882
+ clearColorSecondary: string;
883
+ colorSecondary: string;
884
+ textColorSecondary: string;
885
+ borderSecondary: string;
886
+ arrowColorDisabledSecondary: string;
887
+ clearColorDisabledSecondary: string;
888
+ colorDisabledSecondary: string;
889
+ textColorDisabledSecondary: string;
890
+ borderDisabledSecondary: string;
891
+ arrowColorHoverSecondary: string;
892
+ clearColorHoverSecondary: string;
893
+ colorHoverSecondary: string;
894
+ textColorHoverSecondary: string;
895
+ borderHoverSecondary: string;
896
+ arrowColorFocusSecondary: string;
897
+ clearColorFocusSecondary: string;
898
+ colorFocusSecondary: string;
899
+ textColorFocusSecondary: string;
900
+ borderFocusSecondary: string;
901
+ arrowColorActiveSecondary: string;
902
+ clearColorActiveSecondary: string;
903
+ colorActiveSecondary: string;
904
+ textColorActiveSecondary: string;
905
+ borderActiveSecondary: string;
906
+ }, {
907
+ Popover: import("../../../_mixins").Theme<"Popover", {
908
+ space: string;
909
+ spaceArrow: string;
910
+ arrowOffset: string;
911
+ arrowOffsetVertical: string;
912
+ arrowHeight: string;
913
+ padding: string;
914
+ fontSize: string;
915
+ borderRadius: string;
916
+ color: string;
917
+ dividerColor: string;
918
+ textColor: string;
919
+ boxShadow: string;
920
+ }, any>;
921
+ }>;
783
922
  };
784
923
  peerOverrides: {
785
924
  Input?: {
@@ -795,8 +934,16 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
795
934
  TimePicker?: {
796
935
  peers?: {
797
936
  Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
937
+ height: string;
938
+ width: string;
939
+ borderRadius: string;
798
940
  color: string;
799
941
  colorHover: string;
942
+ railInsetHorizontalBottom: string;
943
+ railInsetHorizontalTop: string;
944
+ railInsetVerticalRight: string;
945
+ railInsetVerticalLeft: string;
946
+ railColor: string;
800
947
  }, any>> | undefined;
801
948
  Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
802
949
  heightTiny: string;
@@ -1088,6 +1235,24 @@ declare function useDualCalendar(props: ExtractPropTypes<typeof useDualCalendarP
1088
1235
  [x: string]: any;
1089
1236
  } | undefined;
1090
1237
  } | undefined;
1238
+ Select?: {
1239
+ peers?: {
1240
+ Popover?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Popover", {
1241
+ space: string;
1242
+ spaceArrow: string;
1243
+ arrowOffset: string;
1244
+ arrowOffsetVertical: string;
1245
+ arrowHeight: string;
1246
+ padding: string;
1247
+ fontSize: string;
1248
+ borderRadius: string;
1249
+ color: string;
1250
+ dividerColor: string;
1251
+ textColor: string;
1252
+ boxShadow: string;
1253
+ }, any>> | undefined;
1254
+ } | undefined;
1255
+ } | undefined;
1091
1256
  };
1092
1257
  }>;
1093
1258
  mergedClsPrefix: import("vue").Ref<string>;
@@ -433,8 +433,16 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
433
433
  iconColorDisabled: string;
434
434
  }, {
435
435
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
436
+ height: string;
437
+ width: string;
438
+ borderRadius: string;
436
439
  color: string;
437
440
  colorHover: string;
441
+ railInsetHorizontalBottom: string;
442
+ railInsetHorizontalTop: string;
443
+ railInsetVerticalRight: string;
444
+ railInsetVerticalLeft: string;
445
+ railColor: string;
438
446
  }, any>;
439
447
  Button: import("../../../_mixins").Theme<"Button", {
440
448
  heightTiny: string;
@@ -721,9 +729,140 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
721
729
  }, any>;
722
730
  }>;
723
731
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
732
+ height: string;
733
+ width: string;
734
+ borderRadius: string;
724
735
  color: string;
725
736
  colorHover: string;
737
+ railInsetHorizontalBottom: string;
738
+ railInsetHorizontalTop: string;
739
+ railInsetVerticalRight: string;
740
+ railInsetVerticalLeft: string;
741
+ railColor: string;
726
742
  }, any>;
743
+ Select: import("../../../_mixins").Theme<"InternalSelection", {
744
+ paddingTiny: string;
745
+ paddingSmall: string;
746
+ paddingMedium: string;
747
+ paddingLarge: string;
748
+ paddingHuge: string;
749
+ clearSizeTiny: string;
750
+ clearSizeSmall: string;
751
+ clearSizeMedium: string;
752
+ clearSizeLarge: string;
753
+ clearSizeHuge: string;
754
+ arrowSizeTiny: string;
755
+ arrowSizeSmall: string;
756
+ arrowSizeMedium: string;
757
+ arrowSizeLarge: string;
758
+ arrowSizeHuge: string;
759
+ fontSizeTiny: string;
760
+ fontSizeSmall: string;
761
+ fontSizeMedium: string;
762
+ fontSizeLarge: string;
763
+ fontSizeHuge: string;
764
+ lineHeightTiny: string;
765
+ lineHeightSmall: string;
766
+ lineHeightMedium: string;
767
+ lineHeightLarge: string;
768
+ lineHeightHuge: string;
769
+ heightTiny: string;
770
+ heightSmall: string;
771
+ heightMedium: string;
772
+ heightLarge: string;
773
+ heightHuge: string;
774
+ borderRadiusTiny: string;
775
+ borderRadiusSmall: string;
776
+ borderRadiusMedium: string;
777
+ borderRadiusLarge: string;
778
+ borderRadiusHuge: string;
779
+ textColor: string;
780
+ textColorDisabled: string;
781
+ placeholderColor: string;
782
+ placeholderColorDisabled: string;
783
+ color: string;
784
+ colorFilled: string;
785
+ colorDisabled: string;
786
+ colorActive: string;
787
+ border: string;
788
+ borderFilled: string;
789
+ borderHover: string;
790
+ borderActive: string;
791
+ borderFocus: string;
792
+ borderDisabled: string;
793
+ boxShadowHover: string;
794
+ boxShadowActive: string;
795
+ boxShadowFocus: string;
796
+ caretColor: string;
797
+ arrowColor: string;
798
+ arrowColorHover: string;
799
+ arrowColorDisabled: string;
800
+ loadingColor: string;
801
+ borderWarning: string;
802
+ borderHoverWarning: string;
803
+ borderActiveWarning: string;
804
+ borderFocusWarning: string;
805
+ boxShadowHoverWarning: string;
806
+ boxShadowActiveWarning: string;
807
+ boxShadowFocusWarning: string;
808
+ colorActiveWarning: string;
809
+ caretColorWarning: string;
810
+ borderError: string;
811
+ borderHoverError: string;
812
+ borderActiveError: string;
813
+ borderFocusError: string;
814
+ boxShadowHoverError: string;
815
+ boxShadowActiveError: string;
816
+ boxShadowFocusError: string;
817
+ colorActiveError: string;
818
+ caretColorError: string;
819
+ clearColor: string;
820
+ clearColorHover: string;
821
+ clearColorPressed: string;
822
+ caretColorSecondary: string;
823
+ filterCounterTextColor: string;
824
+ filterCounterTextColorDisabled: string;
825
+ arrowColorSecondary: string;
826
+ clearColorSecondary: string;
827
+ colorSecondary: string;
828
+ textColorSecondary: string;
829
+ borderSecondary: string;
830
+ arrowColorDisabledSecondary: string;
831
+ clearColorDisabledSecondary: string;
832
+ colorDisabledSecondary: string;
833
+ textColorDisabledSecondary: string;
834
+ borderDisabledSecondary: string;
835
+ arrowColorHoverSecondary: string;
836
+ clearColorHoverSecondary: string;
837
+ colorHoverSecondary: string;
838
+ textColorHoverSecondary: string;
839
+ borderHoverSecondary: string;
840
+ arrowColorFocusSecondary: string;
841
+ clearColorFocusSecondary: string;
842
+ colorFocusSecondary: string;
843
+ textColorFocusSecondary: string;
844
+ borderFocusSecondary: string;
845
+ arrowColorActiveSecondary: string;
846
+ clearColorActiveSecondary: string;
847
+ colorActiveSecondary: string;
848
+ textColorActiveSecondary: string;
849
+ borderActiveSecondary: string;
850
+ }, {
851
+ Popover: import("../../../_mixins").Theme<"Popover", {
852
+ space: string;
853
+ spaceArrow: string;
854
+ arrowOffset: string;
855
+ arrowOffsetVertical: string;
856
+ arrowHeight: string;
857
+ padding: string;
858
+ fontSize: string;
859
+ borderRadius: string;
860
+ color: string;
861
+ dividerColor: string;
862
+ textColor: string;
863
+ boxShadow: string;
864
+ }, any>;
865
+ }>;
727
866
  };
728
867
  peerOverrides: {
729
868
  Input?: {
@@ -739,8 +878,16 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
739
878
  TimePicker?: {
740
879
  peers?: {
741
880
  Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
881
+ height: string;
882
+ width: string;
883
+ borderRadius: string;
742
884
  color: string;
743
885
  colorHover: string;
886
+ railInsetHorizontalBottom: string;
887
+ railInsetHorizontalTop: string;
888
+ railInsetVerticalRight: string;
889
+ railInsetVerticalLeft: string;
890
+ railColor: string;
744
891
  }, any>> | undefined;
745
892
  Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
746
893
  heightTiny: string;
@@ -1032,6 +1179,24 @@ declare function usePanelCommon(props: UsePanelCommonProps): {
1032
1179
  [x: string]: any;
1033
1180
  } | undefined;
1034
1181
  } | undefined;
1182
+ Select?: {
1183
+ peers?: {
1184
+ Popover?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Popover", {
1185
+ space: string;
1186
+ spaceArrow: string;
1187
+ arrowOffset: string;
1188
+ arrowOffsetVertical: string;
1189
+ arrowHeight: string;
1190
+ padding: string;
1191
+ fontSize: string;
1192
+ borderRadius: string;
1193
+ color: string;
1194
+ dividerColor: string;
1195
+ textColor: string;
1196
+ boxShadow: string;
1197
+ }, any>> | undefined;
1198
+ } | undefined;
1199
+ } | undefined;
1035
1200
  };
1036
1201
  }>;
1037
1202
  mergedClsPrefix: import("vue").Ref<string>;
@@ -4,6 +4,7 @@ import { buttonDark } from '../../button/styles';
4
4
  import { timePickerDark } from '../../time-picker/styles';
5
5
  import { scrollbarDark } from '../../_internal/scrollbar/styles';
6
6
  import { self } from './light';
7
+ import { internalSelectionDark } from '../../_internal/selection/styles';
7
8
  const datePickerDark = {
8
9
  name: 'DatePicker',
9
10
  common: commonDark,
@@ -11,7 +12,8 @@ const datePickerDark = {
11
12
  Input: inputDark,
12
13
  Button: buttonDark,
13
14
  TimePicker: timePickerDark,
14
- Scrollbar: scrollbarDark
15
+ Scrollbar: scrollbarDark,
16
+ Select: internalSelectionDark
15
17
  },
16
18
  self
17
19
  };