@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
@@ -5,7 +5,7 @@ import type { FormValidationStatus } from '../../form/src/interface';
5
5
  import type { InputSize } from '../../input';
6
6
  import type { MaybeArray, ExtractPublicPropTypes } from '../../_utils';
7
7
  import { type DatePickerType } from './config';
8
- import type { OnUpdateValue, Value, IsDateDisabled, IsTimeDisabled, Shortcuts, FirstDayOfWeek, DefaultTime, FormattedValue, OnUpdateFormattedValue, OnConfirm } from './interface';
8
+ import type { OnUpdateValue, Value, IsDateDisabled, IsTimeDisabled, Shortcuts, FirstDayOfWeek, DefaultTime, FormattedValue, OnUpdateFormattedValue, OnConfirm, TriggerPreset } from './interface';
9
9
  export declare const datePickerProps: {
10
10
  readonly to: {
11
11
  type: PropType<HTMLElement | string | boolean>;
@@ -16,6 +16,7 @@ export declare const datePickerProps: {
16
16
  readonly default: undefined;
17
17
  };
18
18
  readonly clearable: BooleanConstructor;
19
+ readonly round: BooleanConstructor;
19
20
  readonly updateValueOnClose: BooleanConstructor;
20
21
  readonly defaultValue: PropType<Value | null>;
21
22
  readonly defaultFormattedValue: PropType<FormattedValue | null>;
@@ -65,6 +66,10 @@ export declare const datePickerProps: {
65
66
  readonly defaultCalendarStartTime: NumberConstructor;
66
67
  readonly defaultCalendarEndTime: NumberConstructor;
67
68
  readonly bindCalendarMonths: BooleanConstructor;
69
+ readonly triggerPreset: {
70
+ readonly type: PropType<TriggerPreset>;
71
+ readonly default: "input";
72
+ };
68
73
  readonly 'onUpdate:show': PropType<MaybeArray<(show: boolean) => void>>;
69
74
  readonly onUpdateShow: PropType<MaybeArray<(show: boolean) => void>>;
70
75
  readonly 'onUpdate:formattedValue': PropType<MaybeArray<OnUpdateFormattedValue>>;
@@ -475,8 +480,16 @@ export declare const datePickerProps: {
475
480
  iconColorDisabled: string;
476
481
  }, {
477
482
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
483
+ height: string;
484
+ width: string;
485
+ borderRadius: string;
478
486
  color: string;
479
487
  colorHover: string;
488
+ railInsetHorizontalBottom: string;
489
+ railInsetHorizontalTop: string;
490
+ railInsetVerticalRight: string;
491
+ railInsetVerticalLeft: string;
492
+ railColor: string;
480
493
  }, any>;
481
494
  Button: import("../../_mixins").Theme<"Button", {
482
495
  heightTiny: string;
@@ -763,9 +776,140 @@ export declare const datePickerProps: {
763
776
  }, any>;
764
777
  }>;
765
778
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
779
+ height: string;
780
+ width: string;
781
+ borderRadius: string;
766
782
  color: string;
767
783
  colorHover: string;
784
+ railInsetHorizontalBottom: string;
785
+ railInsetHorizontalTop: string;
786
+ railInsetVerticalRight: string;
787
+ railInsetVerticalLeft: string;
788
+ railColor: string;
768
789
  }, any>;
790
+ Select: import("../../_mixins").Theme<"InternalSelection", {
791
+ paddingTiny: string;
792
+ paddingSmall: string;
793
+ paddingMedium: string;
794
+ paddingLarge: string;
795
+ paddingHuge: string;
796
+ clearSizeTiny: string;
797
+ clearSizeSmall: string;
798
+ clearSizeMedium: string;
799
+ clearSizeLarge: string;
800
+ clearSizeHuge: string;
801
+ arrowSizeTiny: string;
802
+ arrowSizeSmall: string;
803
+ arrowSizeMedium: string;
804
+ arrowSizeLarge: string;
805
+ arrowSizeHuge: string;
806
+ fontSizeTiny: string;
807
+ fontSizeSmall: string;
808
+ fontSizeMedium: string;
809
+ fontSizeLarge: string;
810
+ fontSizeHuge: string;
811
+ lineHeightTiny: string;
812
+ lineHeightSmall: string;
813
+ lineHeightMedium: string;
814
+ lineHeightLarge: string;
815
+ lineHeightHuge: string;
816
+ heightTiny: string;
817
+ heightSmall: string;
818
+ heightMedium: string;
819
+ heightLarge: string;
820
+ heightHuge: string;
821
+ borderRadiusTiny: string;
822
+ borderRadiusSmall: string;
823
+ borderRadiusMedium: string;
824
+ borderRadiusLarge: string;
825
+ borderRadiusHuge: string;
826
+ textColor: string;
827
+ textColorDisabled: string;
828
+ placeholderColor: string;
829
+ placeholderColorDisabled: string;
830
+ color: string;
831
+ colorFilled: string;
832
+ colorDisabled: string;
833
+ colorActive: string;
834
+ border: string;
835
+ borderFilled: string;
836
+ borderHover: string;
837
+ borderActive: string;
838
+ borderFocus: string;
839
+ borderDisabled: string;
840
+ boxShadowHover: string;
841
+ boxShadowActive: string;
842
+ boxShadowFocus: string;
843
+ caretColor: string;
844
+ arrowColor: string;
845
+ arrowColorHover: string;
846
+ arrowColorDisabled: string;
847
+ loadingColor: string;
848
+ borderWarning: string;
849
+ borderHoverWarning: string;
850
+ borderActiveWarning: string;
851
+ borderFocusWarning: string;
852
+ boxShadowHoverWarning: string;
853
+ boxShadowActiveWarning: string;
854
+ boxShadowFocusWarning: string;
855
+ colorActiveWarning: string;
856
+ caretColorWarning: string;
857
+ borderError: string;
858
+ borderHoverError: string;
859
+ borderActiveError: string;
860
+ borderFocusError: string;
861
+ boxShadowHoverError: string;
862
+ boxShadowActiveError: string;
863
+ boxShadowFocusError: string;
864
+ colorActiveError: string;
865
+ caretColorError: string;
866
+ clearColor: string;
867
+ clearColorHover: string;
868
+ clearColorPressed: string;
869
+ caretColorSecondary: string;
870
+ filterCounterTextColor: string;
871
+ filterCounterTextColorDisabled: string;
872
+ arrowColorSecondary: string;
873
+ clearColorSecondary: string;
874
+ colorSecondary: string;
875
+ textColorSecondary: string;
876
+ borderSecondary: string;
877
+ arrowColorDisabledSecondary: string;
878
+ clearColorDisabledSecondary: string;
879
+ colorDisabledSecondary: string;
880
+ textColorDisabledSecondary: string;
881
+ borderDisabledSecondary: string;
882
+ arrowColorHoverSecondary: string;
883
+ clearColorHoverSecondary: string;
884
+ colorHoverSecondary: string;
885
+ textColorHoverSecondary: string;
886
+ borderHoverSecondary: string;
887
+ arrowColorFocusSecondary: string;
888
+ clearColorFocusSecondary: string;
889
+ colorFocusSecondary: string;
890
+ textColorFocusSecondary: string;
891
+ borderFocusSecondary: string;
892
+ arrowColorActiveSecondary: string;
893
+ clearColorActiveSecondary: string;
894
+ colorActiveSecondary: string;
895
+ textColorActiveSecondary: string;
896
+ borderActiveSecondary: string;
897
+ }, {
898
+ Popover: import("../../_mixins").Theme<"Popover", {
899
+ space: string;
900
+ spaceArrow: string;
901
+ arrowOffset: string;
902
+ arrowOffsetVertical: string;
903
+ arrowHeight: string;
904
+ padding: string;
905
+ fontSize: string;
906
+ borderRadius: string;
907
+ color: string;
908
+ dividerColor: string;
909
+ textColor: string;
910
+ boxShadow: string;
911
+ }, any>;
912
+ }>;
769
913
  }>>;
770
914
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
771
915
  itemColor: string;
@@ -1168,8 +1312,16 @@ export declare const datePickerProps: {
1168
1312
  iconColorDisabled: string;
1169
1313
  }, {
1170
1314
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1315
+ height: string;
1316
+ width: string;
1317
+ borderRadius: string;
1171
1318
  color: string;
1172
1319
  colorHover: string;
1320
+ railInsetHorizontalBottom: string;
1321
+ railInsetHorizontalTop: string;
1322
+ railInsetVerticalRight: string;
1323
+ railInsetVerticalLeft: string;
1324
+ railColor: string;
1173
1325
  }, any>;
1174
1326
  Button: import("../../_mixins").Theme<"Button", {
1175
1327
  heightTiny: string;
@@ -1456,9 +1608,140 @@ export declare const datePickerProps: {
1456
1608
  }, any>;
1457
1609
  }>;
1458
1610
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1611
+ height: string;
1612
+ width: string;
1613
+ borderRadius: string;
1459
1614
  color: string;
1460
1615
  colorHover: string;
1616
+ railInsetHorizontalBottom: string;
1617
+ railInsetHorizontalTop: string;
1618
+ railInsetVerticalRight: string;
1619
+ railInsetVerticalLeft: string;
1620
+ railColor: string;
1461
1621
  }, any>;
1622
+ Select: import("../../_mixins").Theme<"InternalSelection", {
1623
+ paddingTiny: string;
1624
+ paddingSmall: string;
1625
+ paddingMedium: string;
1626
+ paddingLarge: string;
1627
+ paddingHuge: string;
1628
+ clearSizeTiny: string;
1629
+ clearSizeSmall: string;
1630
+ clearSizeMedium: string;
1631
+ clearSizeLarge: string;
1632
+ clearSizeHuge: string;
1633
+ arrowSizeTiny: string;
1634
+ arrowSizeSmall: string;
1635
+ arrowSizeMedium: string;
1636
+ arrowSizeLarge: string;
1637
+ arrowSizeHuge: string;
1638
+ fontSizeTiny: string;
1639
+ fontSizeSmall: string;
1640
+ fontSizeMedium: string;
1641
+ fontSizeLarge: string;
1642
+ fontSizeHuge: string;
1643
+ lineHeightTiny: string;
1644
+ lineHeightSmall: string;
1645
+ lineHeightMedium: string;
1646
+ lineHeightLarge: string;
1647
+ lineHeightHuge: string;
1648
+ heightTiny: string;
1649
+ heightSmall: string;
1650
+ heightMedium: string;
1651
+ heightLarge: string;
1652
+ heightHuge: string;
1653
+ borderRadiusTiny: string;
1654
+ borderRadiusSmall: string;
1655
+ borderRadiusMedium: string;
1656
+ borderRadiusLarge: string;
1657
+ borderRadiusHuge: string;
1658
+ textColor: string;
1659
+ textColorDisabled: string;
1660
+ placeholderColor: string;
1661
+ placeholderColorDisabled: string;
1662
+ color: string;
1663
+ colorFilled: string;
1664
+ colorDisabled: string;
1665
+ colorActive: string;
1666
+ border: string;
1667
+ borderFilled: string;
1668
+ borderHover: string;
1669
+ borderActive: string;
1670
+ borderFocus: string;
1671
+ borderDisabled: string;
1672
+ boxShadowHover: string;
1673
+ boxShadowActive: string;
1674
+ boxShadowFocus: string;
1675
+ caretColor: string;
1676
+ arrowColor: string;
1677
+ arrowColorHover: string;
1678
+ arrowColorDisabled: string;
1679
+ loadingColor: string;
1680
+ borderWarning: string;
1681
+ borderHoverWarning: string;
1682
+ borderActiveWarning: string;
1683
+ borderFocusWarning: string;
1684
+ boxShadowHoverWarning: string;
1685
+ boxShadowActiveWarning: string;
1686
+ boxShadowFocusWarning: string;
1687
+ colorActiveWarning: string;
1688
+ caretColorWarning: string;
1689
+ borderError: string;
1690
+ borderHoverError: string;
1691
+ borderActiveError: string;
1692
+ borderFocusError: string;
1693
+ boxShadowHoverError: string;
1694
+ boxShadowActiveError: string;
1695
+ boxShadowFocusError: string;
1696
+ colorActiveError: string;
1697
+ caretColorError: string;
1698
+ clearColor: string;
1699
+ clearColorHover: string;
1700
+ clearColorPressed: string;
1701
+ caretColorSecondary: string;
1702
+ filterCounterTextColor: string;
1703
+ filterCounterTextColorDisabled: string;
1704
+ arrowColorSecondary: string;
1705
+ clearColorSecondary: string;
1706
+ colorSecondary: string;
1707
+ textColorSecondary: string;
1708
+ borderSecondary: string;
1709
+ arrowColorDisabledSecondary: string;
1710
+ clearColorDisabledSecondary: string;
1711
+ colorDisabledSecondary: string;
1712
+ textColorDisabledSecondary: string;
1713
+ borderDisabledSecondary: string;
1714
+ arrowColorHoverSecondary: string;
1715
+ clearColorHoverSecondary: string;
1716
+ colorHoverSecondary: string;
1717
+ textColorHoverSecondary: string;
1718
+ borderHoverSecondary: string;
1719
+ arrowColorFocusSecondary: string;
1720
+ clearColorFocusSecondary: string;
1721
+ colorFocusSecondary: string;
1722
+ textColorFocusSecondary: string;
1723
+ borderFocusSecondary: string;
1724
+ arrowColorActiveSecondary: string;
1725
+ clearColorActiveSecondary: string;
1726
+ colorActiveSecondary: string;
1727
+ textColorActiveSecondary: string;
1728
+ borderActiveSecondary: string;
1729
+ }, {
1730
+ Popover: import("../../_mixins").Theme<"Popover", {
1731
+ space: string;
1732
+ spaceArrow: string;
1733
+ arrowOffset: string;
1734
+ arrowOffsetVertical: string;
1735
+ arrowHeight: string;
1736
+ padding: string;
1737
+ fontSize: string;
1738
+ borderRadius: string;
1739
+ color: string;
1740
+ dividerColor: string;
1741
+ textColor: string;
1742
+ boxShadow: string;
1743
+ }, any>;
1744
+ }>;
1462
1745
  }>>>;
1463
1746
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
1464
1747
  itemColor: string;
@@ -1861,8 +2144,16 @@ export declare const datePickerProps: {
1861
2144
  iconColorDisabled: string;
1862
2145
  }, {
1863
2146
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2147
+ height: string;
2148
+ width: string;
2149
+ borderRadius: string;
1864
2150
  color: string;
1865
2151
  colorHover: string;
2152
+ railInsetHorizontalBottom: string;
2153
+ railInsetHorizontalTop: string;
2154
+ railInsetVerticalRight: string;
2155
+ railInsetVerticalLeft: string;
2156
+ railColor: string;
1866
2157
  }, any>;
1867
2158
  Button: import("../../_mixins").Theme<"Button", {
1868
2159
  heightTiny: string;
@@ -2149,9 +2440,140 @@ export declare const datePickerProps: {
2149
2440
  }, any>;
2150
2441
  }>;
2151
2442
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2443
+ height: string;
2444
+ width: string;
2445
+ borderRadius: string;
2152
2446
  color: string;
2153
2447
  colorHover: string;
2448
+ railInsetHorizontalBottom: string;
2449
+ railInsetHorizontalTop: string;
2450
+ railInsetVerticalRight: string;
2451
+ railInsetVerticalLeft: string;
2452
+ railColor: string;
2154
2453
  }, any>;
2454
+ Select: import("../../_mixins").Theme<"InternalSelection", {
2455
+ paddingTiny: string;
2456
+ paddingSmall: string;
2457
+ paddingMedium: string;
2458
+ paddingLarge: string;
2459
+ paddingHuge: string;
2460
+ clearSizeTiny: string;
2461
+ clearSizeSmall: string;
2462
+ clearSizeMedium: string;
2463
+ clearSizeLarge: string;
2464
+ clearSizeHuge: string;
2465
+ arrowSizeTiny: string;
2466
+ arrowSizeSmall: string;
2467
+ arrowSizeMedium: string;
2468
+ arrowSizeLarge: string;
2469
+ arrowSizeHuge: string;
2470
+ fontSizeTiny: string;
2471
+ fontSizeSmall: string;
2472
+ fontSizeMedium: string;
2473
+ fontSizeLarge: string;
2474
+ fontSizeHuge: string;
2475
+ lineHeightTiny: string;
2476
+ lineHeightSmall: string;
2477
+ lineHeightMedium: string;
2478
+ lineHeightLarge: string;
2479
+ lineHeightHuge: string;
2480
+ heightTiny: string;
2481
+ heightSmall: string;
2482
+ heightMedium: string;
2483
+ heightLarge: string;
2484
+ heightHuge: string;
2485
+ borderRadiusTiny: string;
2486
+ borderRadiusSmall: string;
2487
+ borderRadiusMedium: string;
2488
+ borderRadiusLarge: string;
2489
+ borderRadiusHuge: string;
2490
+ textColor: string;
2491
+ textColorDisabled: string;
2492
+ placeholderColor: string;
2493
+ placeholderColorDisabled: string;
2494
+ color: string;
2495
+ colorFilled: string;
2496
+ colorDisabled: string;
2497
+ colorActive: string;
2498
+ border: string;
2499
+ borderFilled: string;
2500
+ borderHover: string;
2501
+ borderActive: string;
2502
+ borderFocus: string;
2503
+ borderDisabled: string;
2504
+ boxShadowHover: string;
2505
+ boxShadowActive: string;
2506
+ boxShadowFocus: string;
2507
+ caretColor: string;
2508
+ arrowColor: string;
2509
+ arrowColorHover: string;
2510
+ arrowColorDisabled: string;
2511
+ loadingColor: string;
2512
+ borderWarning: string;
2513
+ borderHoverWarning: string;
2514
+ borderActiveWarning: string;
2515
+ borderFocusWarning: string;
2516
+ boxShadowHoverWarning: string;
2517
+ boxShadowActiveWarning: string;
2518
+ boxShadowFocusWarning: string;
2519
+ colorActiveWarning: string;
2520
+ caretColorWarning: string;
2521
+ borderError: string;
2522
+ borderHoverError: string;
2523
+ borderActiveError: string;
2524
+ borderFocusError: string;
2525
+ boxShadowHoverError: string;
2526
+ boxShadowActiveError: string;
2527
+ boxShadowFocusError: string;
2528
+ colorActiveError: string;
2529
+ caretColorError: string;
2530
+ clearColor: string;
2531
+ clearColorHover: string;
2532
+ clearColorPressed: string;
2533
+ caretColorSecondary: string;
2534
+ filterCounterTextColor: string;
2535
+ filterCounterTextColorDisabled: string;
2536
+ arrowColorSecondary: string;
2537
+ clearColorSecondary: string;
2538
+ colorSecondary: string;
2539
+ textColorSecondary: string;
2540
+ borderSecondary: string;
2541
+ arrowColorDisabledSecondary: string;
2542
+ clearColorDisabledSecondary: string;
2543
+ colorDisabledSecondary: string;
2544
+ textColorDisabledSecondary: string;
2545
+ borderDisabledSecondary: string;
2546
+ arrowColorHoverSecondary: string;
2547
+ clearColorHoverSecondary: string;
2548
+ colorHoverSecondary: string;
2549
+ textColorHoverSecondary: string;
2550
+ borderHoverSecondary: string;
2551
+ arrowColorFocusSecondary: string;
2552
+ clearColorFocusSecondary: string;
2553
+ colorFocusSecondary: string;
2554
+ textColorFocusSecondary: string;
2555
+ borderFocusSecondary: string;
2556
+ arrowColorActiveSecondary: string;
2557
+ clearColorActiveSecondary: string;
2558
+ colorActiveSecondary: string;
2559
+ textColorActiveSecondary: string;
2560
+ borderActiveSecondary: string;
2561
+ }, {
2562
+ Popover: import("../../_mixins").Theme<"Popover", {
2563
+ space: string;
2564
+ spaceArrow: string;
2565
+ arrowOffset: string;
2566
+ arrowOffsetVertical: string;
2567
+ arrowHeight: string;
2568
+ padding: string;
2569
+ fontSize: string;
2570
+ borderRadius: string;
2571
+ color: string;
2572
+ dividerColor: string;
2573
+ textColor: string;
2574
+ boxShadow: string;
2575
+ }, any>;
2576
+ }>;
2155
2577
  }>>>;
2156
2578
  };
2157
2579
  export type DatePickerSetupProps = ExtractPropTypes<typeof datePickerProps>;
@@ -2166,6 +2588,7 @@ declare const _default: import("vue").DefineComponent<{
2166
2588
  readonly default: undefined;
2167
2589
  };
2168
2590
  readonly clearable: BooleanConstructor;
2591
+ readonly round: BooleanConstructor;
2169
2592
  readonly updateValueOnClose: BooleanConstructor;
2170
2593
  readonly defaultValue: PropType<Value | null>;
2171
2594
  readonly defaultFormattedValue: PropType<FormattedValue | null>;
@@ -2215,6 +2638,10 @@ declare const _default: import("vue").DefineComponent<{
2215
2638
  readonly defaultCalendarStartTime: NumberConstructor;
2216
2639
  readonly defaultCalendarEndTime: NumberConstructor;
2217
2640
  readonly bindCalendarMonths: BooleanConstructor;
2641
+ readonly triggerPreset: {
2642
+ readonly type: PropType<TriggerPreset>;
2643
+ readonly default: "input";
2644
+ };
2218
2645
  readonly 'onUpdate:show': PropType<MaybeArray<(show: boolean) => void>>;
2219
2646
  readonly onUpdateShow: PropType<MaybeArray<(show: boolean) => void>>;
2220
2647
  readonly 'onUpdate:formattedValue': PropType<MaybeArray<OnUpdateFormattedValue>>;
@@ -2625,8 +3052,16 @@ declare const _default: import("vue").DefineComponent<{
2625
3052
  iconColorDisabled: string;
2626
3053
  }, {
2627
3054
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3055
+ height: string;
3056
+ width: string;
3057
+ borderRadius: string;
2628
3058
  color: string;
2629
3059
  colorHover: string;
3060
+ railInsetHorizontalBottom: string;
3061
+ railInsetHorizontalTop: string;
3062
+ railInsetVerticalRight: string;
3063
+ railInsetVerticalLeft: string;
3064
+ railColor: string;
2630
3065
  }, any>;
2631
3066
  Button: import("../../_mixins").Theme<"Button", {
2632
3067
  heightTiny: string;
@@ -2913,9 +3348,140 @@ declare const _default: import("vue").DefineComponent<{
2913
3348
  }, any>;
2914
3349
  }>;
2915
3350
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3351
+ height: string;
3352
+ width: string;
3353
+ borderRadius: string;
2916
3354
  color: string;
2917
3355
  colorHover: string;
3356
+ railInsetHorizontalBottom: string;
3357
+ railInsetHorizontalTop: string;
3358
+ railInsetVerticalRight: string;
3359
+ railInsetVerticalLeft: string;
3360
+ railColor: string;
2918
3361
  }, any>;
3362
+ Select: import("../../_mixins").Theme<"InternalSelection", {
3363
+ paddingTiny: string;
3364
+ paddingSmall: string;
3365
+ paddingMedium: string;
3366
+ paddingLarge: string;
3367
+ paddingHuge: string;
3368
+ clearSizeTiny: string;
3369
+ clearSizeSmall: string;
3370
+ clearSizeMedium: string;
3371
+ clearSizeLarge: string;
3372
+ clearSizeHuge: string;
3373
+ arrowSizeTiny: string;
3374
+ arrowSizeSmall: string;
3375
+ arrowSizeMedium: string;
3376
+ arrowSizeLarge: string;
3377
+ arrowSizeHuge: string;
3378
+ fontSizeTiny: string;
3379
+ fontSizeSmall: string;
3380
+ fontSizeMedium: string;
3381
+ fontSizeLarge: string;
3382
+ fontSizeHuge: string;
3383
+ lineHeightTiny: string;
3384
+ lineHeightSmall: string;
3385
+ lineHeightMedium: string;
3386
+ lineHeightLarge: string;
3387
+ lineHeightHuge: string;
3388
+ heightTiny: string;
3389
+ heightSmall: string;
3390
+ heightMedium: string;
3391
+ heightLarge: string;
3392
+ heightHuge: string;
3393
+ borderRadiusTiny: string;
3394
+ borderRadiusSmall: string;
3395
+ borderRadiusMedium: string;
3396
+ borderRadiusLarge: string;
3397
+ borderRadiusHuge: string;
3398
+ textColor: string;
3399
+ textColorDisabled: string;
3400
+ placeholderColor: string;
3401
+ placeholderColorDisabled: string;
3402
+ color: string;
3403
+ colorFilled: string;
3404
+ colorDisabled: string;
3405
+ colorActive: string;
3406
+ border: string;
3407
+ borderFilled: string;
3408
+ borderHover: string;
3409
+ borderActive: string;
3410
+ borderFocus: string;
3411
+ borderDisabled: string;
3412
+ boxShadowHover: string;
3413
+ boxShadowActive: string;
3414
+ boxShadowFocus: string;
3415
+ caretColor: string;
3416
+ arrowColor: string;
3417
+ arrowColorHover: string;
3418
+ arrowColorDisabled: string;
3419
+ loadingColor: string;
3420
+ borderWarning: string;
3421
+ borderHoverWarning: string;
3422
+ borderActiveWarning: string;
3423
+ borderFocusWarning: string;
3424
+ boxShadowHoverWarning: string;
3425
+ boxShadowActiveWarning: string;
3426
+ boxShadowFocusWarning: string;
3427
+ colorActiveWarning: string;
3428
+ caretColorWarning: string;
3429
+ borderError: string;
3430
+ borderHoverError: string;
3431
+ borderActiveError: string;
3432
+ borderFocusError: string;
3433
+ boxShadowHoverError: string;
3434
+ boxShadowActiveError: string;
3435
+ boxShadowFocusError: string;
3436
+ colorActiveError: string;
3437
+ caretColorError: string;
3438
+ clearColor: string;
3439
+ clearColorHover: string;
3440
+ clearColorPressed: string;
3441
+ caretColorSecondary: string;
3442
+ filterCounterTextColor: string;
3443
+ filterCounterTextColorDisabled: string;
3444
+ arrowColorSecondary: string;
3445
+ clearColorSecondary: string;
3446
+ colorSecondary: string;
3447
+ textColorSecondary: string;
3448
+ borderSecondary: string;
3449
+ arrowColorDisabledSecondary: string;
3450
+ clearColorDisabledSecondary: string;
3451
+ colorDisabledSecondary: string;
3452
+ textColorDisabledSecondary: string;
3453
+ borderDisabledSecondary: string;
3454
+ arrowColorHoverSecondary: string;
3455
+ clearColorHoverSecondary: string;
3456
+ colorHoverSecondary: string;
3457
+ textColorHoverSecondary: string;
3458
+ borderHoverSecondary: string;
3459
+ arrowColorFocusSecondary: string;
3460
+ clearColorFocusSecondary: string;
3461
+ colorFocusSecondary: string;
3462
+ textColorFocusSecondary: string;
3463
+ borderFocusSecondary: string;
3464
+ arrowColorActiveSecondary: string;
3465
+ clearColorActiveSecondary: string;
3466
+ colorActiveSecondary: string;
3467
+ textColorActiveSecondary: string;
3468
+ borderActiveSecondary: string;
3469
+ }, {
3470
+ Popover: import("../../_mixins").Theme<"Popover", {
3471
+ space: string;
3472
+ spaceArrow: string;
3473
+ arrowOffset: string;
3474
+ arrowOffsetVertical: string;
3475
+ arrowHeight: string;
3476
+ padding: string;
3477
+ fontSize: string;
3478
+ borderRadius: string;
3479
+ color: string;
3480
+ dividerColor: string;
3481
+ textColor: string;
3482
+ boxShadow: string;
3483
+ }, any>;
3484
+ }>;
2919
3485
  }>>;
2920
3486
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
2921
3487
  itemColor: string;
@@ -3318,8 +3884,16 @@ declare const _default: import("vue").DefineComponent<{
3318
3884
  iconColorDisabled: string;
3319
3885
  }, {
3320
3886
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3887
+ height: string;
3888
+ width: string;
3889
+ borderRadius: string;
3321
3890
  color: string;
3322
3891
  colorHover: string;
3892
+ railInsetHorizontalBottom: string;
3893
+ railInsetHorizontalTop: string;
3894
+ railInsetVerticalRight: string;
3895
+ railInsetVerticalLeft: string;
3896
+ railColor: string;
3323
3897
  }, any>;
3324
3898
  Button: import("../../_mixins").Theme<"Button", {
3325
3899
  heightTiny: string;
@@ -3606,41 +4180,172 @@ declare const _default: import("vue").DefineComponent<{
3606
4180
  }, any>;
3607
4181
  }>;
3608
4182
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4183
+ height: string;
4184
+ width: string;
4185
+ borderRadius: string;
3609
4186
  color: string;
3610
4187
  colorHover: string;
4188
+ railInsetHorizontalBottom: string;
4189
+ railInsetHorizontalTop: string;
4190
+ railInsetVerticalRight: string;
4191
+ railInsetVerticalLeft: string;
4192
+ railColor: string;
3611
4193
  }, any>;
3612
- }>>>;
3613
- readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
3614
- itemColor: string;
3615
- itemColorHover: string;
3616
- itemColorPressed: string;
3617
- itemColorDisabled: string;
3618
- itemTextColor: string;
3619
- itemTextColorHover: string;
3620
- itemTextColorPressed: string;
3621
- itemTextColorDisabled: string;
3622
- itemColorActive: string;
3623
- itemColorActiveHover: string;
3624
- itemColorActivePressed: string;
3625
- itemColorActiveDisabled: string;
3626
- itemTextColorActive: string;
3627
- itemTextColorActiveHover: string;
3628
- itemTextColorActivePressed: string;
3629
- itemTextColorActiveDisabled: string;
3630
- itemColorCurrent: string;
3631
- itemColorCurrentHover: string;
3632
- itemColorCurrentPressed: string;
3633
- itemColorCurrentDisabled: string;
3634
- itemTextColorCurrent: string;
3635
- itemTextColorCurrentHover: string;
3636
- itemTextColorCurrentPressed: string;
3637
- itemTextColorCurrentDisabled: string;
3638
- itemColorIncluded: string;
3639
- itemColorIncludedHover: string;
3640
- itemColorIncludedPressed: string;
3641
- itemColorIncludedDisabled: string;
3642
- itemTextColorIncluded: string;
3643
- itemTextColorIncludedHover: string;
4194
+ Select: import("../../_mixins").Theme<"InternalSelection", {
4195
+ paddingTiny: string;
4196
+ paddingSmall: string;
4197
+ paddingMedium: string;
4198
+ paddingLarge: string;
4199
+ paddingHuge: string;
4200
+ clearSizeTiny: string;
4201
+ clearSizeSmall: string;
4202
+ clearSizeMedium: string;
4203
+ clearSizeLarge: string;
4204
+ clearSizeHuge: string;
4205
+ arrowSizeTiny: string;
4206
+ arrowSizeSmall: string;
4207
+ arrowSizeMedium: string;
4208
+ arrowSizeLarge: string;
4209
+ arrowSizeHuge: string;
4210
+ fontSizeTiny: string;
4211
+ fontSizeSmall: string;
4212
+ fontSizeMedium: string;
4213
+ fontSizeLarge: string;
4214
+ fontSizeHuge: string;
4215
+ lineHeightTiny: string;
4216
+ lineHeightSmall: string;
4217
+ lineHeightMedium: string;
4218
+ lineHeightLarge: string;
4219
+ lineHeightHuge: string;
4220
+ heightTiny: string;
4221
+ heightSmall: string;
4222
+ heightMedium: string;
4223
+ heightLarge: string;
4224
+ heightHuge: string;
4225
+ borderRadiusTiny: string;
4226
+ borderRadiusSmall: string;
4227
+ borderRadiusMedium: string;
4228
+ borderRadiusLarge: string;
4229
+ borderRadiusHuge: string;
4230
+ textColor: string;
4231
+ textColorDisabled: string;
4232
+ placeholderColor: string;
4233
+ placeholderColorDisabled: string;
4234
+ color: string;
4235
+ colorFilled: string;
4236
+ colorDisabled: string;
4237
+ colorActive: string;
4238
+ border: string;
4239
+ borderFilled: string;
4240
+ borderHover: string;
4241
+ borderActive: string;
4242
+ borderFocus: string;
4243
+ borderDisabled: string;
4244
+ boxShadowHover: string;
4245
+ boxShadowActive: string;
4246
+ boxShadowFocus: string;
4247
+ caretColor: string;
4248
+ arrowColor: string;
4249
+ arrowColorHover: string;
4250
+ arrowColorDisabled: string;
4251
+ loadingColor: string;
4252
+ borderWarning: string;
4253
+ borderHoverWarning: string;
4254
+ borderActiveWarning: string;
4255
+ borderFocusWarning: string;
4256
+ boxShadowHoverWarning: string;
4257
+ boxShadowActiveWarning: string;
4258
+ boxShadowFocusWarning: string;
4259
+ colorActiveWarning: string;
4260
+ caretColorWarning: string;
4261
+ borderError: string;
4262
+ borderHoverError: string;
4263
+ borderActiveError: string;
4264
+ borderFocusError: string;
4265
+ boxShadowHoverError: string;
4266
+ boxShadowActiveError: string;
4267
+ boxShadowFocusError: string;
4268
+ colorActiveError: string;
4269
+ caretColorError: string;
4270
+ clearColor: string;
4271
+ clearColorHover: string;
4272
+ clearColorPressed: string;
4273
+ caretColorSecondary: string;
4274
+ filterCounterTextColor: string;
4275
+ filterCounterTextColorDisabled: string;
4276
+ arrowColorSecondary: string;
4277
+ clearColorSecondary: string;
4278
+ colorSecondary: string;
4279
+ textColorSecondary: string;
4280
+ borderSecondary: string;
4281
+ arrowColorDisabledSecondary: string;
4282
+ clearColorDisabledSecondary: string;
4283
+ colorDisabledSecondary: string;
4284
+ textColorDisabledSecondary: string;
4285
+ borderDisabledSecondary: string;
4286
+ arrowColorHoverSecondary: string;
4287
+ clearColorHoverSecondary: string;
4288
+ colorHoverSecondary: string;
4289
+ textColorHoverSecondary: string;
4290
+ borderHoverSecondary: string;
4291
+ arrowColorFocusSecondary: string;
4292
+ clearColorFocusSecondary: string;
4293
+ colorFocusSecondary: string;
4294
+ textColorFocusSecondary: string;
4295
+ borderFocusSecondary: string;
4296
+ arrowColorActiveSecondary: string;
4297
+ clearColorActiveSecondary: string;
4298
+ colorActiveSecondary: string;
4299
+ textColorActiveSecondary: string;
4300
+ borderActiveSecondary: string;
4301
+ }, {
4302
+ Popover: import("../../_mixins").Theme<"Popover", {
4303
+ space: string;
4304
+ spaceArrow: string;
4305
+ arrowOffset: string;
4306
+ arrowOffsetVertical: string;
4307
+ arrowHeight: string;
4308
+ padding: string;
4309
+ fontSize: string;
4310
+ borderRadius: string;
4311
+ color: string;
4312
+ dividerColor: string;
4313
+ textColor: string;
4314
+ boxShadow: string;
4315
+ }, any>;
4316
+ }>;
4317
+ }>>>;
4318
+ readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
4319
+ itemColor: string;
4320
+ itemColorHover: string;
4321
+ itemColorPressed: string;
4322
+ itemColorDisabled: string;
4323
+ itemTextColor: string;
4324
+ itemTextColorHover: string;
4325
+ itemTextColorPressed: string;
4326
+ itemTextColorDisabled: string;
4327
+ itemColorActive: string;
4328
+ itemColorActiveHover: string;
4329
+ itemColorActivePressed: string;
4330
+ itemColorActiveDisabled: string;
4331
+ itemTextColorActive: string;
4332
+ itemTextColorActiveHover: string;
4333
+ itemTextColorActivePressed: string;
4334
+ itemTextColorActiveDisabled: string;
4335
+ itemColorCurrent: string;
4336
+ itemColorCurrentHover: string;
4337
+ itemColorCurrentPressed: string;
4338
+ itemColorCurrentDisabled: string;
4339
+ itemTextColorCurrent: string;
4340
+ itemTextColorCurrentHover: string;
4341
+ itemTextColorCurrentPressed: string;
4342
+ itemTextColorCurrentDisabled: string;
4343
+ itemColorIncluded: string;
4344
+ itemColorIncludedHover: string;
4345
+ itemColorIncludedPressed: string;
4346
+ itemColorIncludedDisabled: string;
4347
+ itemTextColorIncluded: string;
4348
+ itemTextColorIncludedHover: string;
3644
4349
  itemTextColorIncludedPressed: string;
3645
4350
  itemTextColorIncludedDisabled: string;
3646
4351
  itemColorExcluded: string;
@@ -4011,8 +4716,16 @@ declare const _default: import("vue").DefineComponent<{
4011
4716
  iconColorDisabled: string;
4012
4717
  }, {
4013
4718
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4719
+ height: string;
4720
+ width: string;
4721
+ borderRadius: string;
4014
4722
  color: string;
4015
4723
  colorHover: string;
4724
+ railInsetHorizontalBottom: string;
4725
+ railInsetHorizontalTop: string;
4726
+ railInsetVerticalRight: string;
4727
+ railInsetVerticalLeft: string;
4728
+ railColor: string;
4016
4729
  }, any>;
4017
4730
  Button: import("../../_mixins").Theme<"Button", {
4018
4731
  heightTiny: string;
@@ -4299,9 +5012,140 @@ declare const _default: import("vue").DefineComponent<{
4299
5012
  }, any>;
4300
5013
  }>;
4301
5014
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5015
+ height: string;
5016
+ width: string;
5017
+ borderRadius: string;
4302
5018
  color: string;
4303
5019
  colorHover: string;
5020
+ railInsetHorizontalBottom: string;
5021
+ railInsetHorizontalTop: string;
5022
+ railInsetVerticalRight: string;
5023
+ railInsetVerticalLeft: string;
5024
+ railColor: string;
4304
5025
  }, any>;
5026
+ Select: import("../../_mixins").Theme<"InternalSelection", {
5027
+ paddingTiny: string;
5028
+ paddingSmall: string;
5029
+ paddingMedium: string;
5030
+ paddingLarge: string;
5031
+ paddingHuge: string;
5032
+ clearSizeTiny: string;
5033
+ clearSizeSmall: string;
5034
+ clearSizeMedium: string;
5035
+ clearSizeLarge: string;
5036
+ clearSizeHuge: string;
5037
+ arrowSizeTiny: string;
5038
+ arrowSizeSmall: string;
5039
+ arrowSizeMedium: string;
5040
+ arrowSizeLarge: string;
5041
+ arrowSizeHuge: string;
5042
+ fontSizeTiny: string;
5043
+ fontSizeSmall: string;
5044
+ fontSizeMedium: string;
5045
+ fontSizeLarge: string;
5046
+ fontSizeHuge: string;
5047
+ lineHeightTiny: string;
5048
+ lineHeightSmall: string;
5049
+ lineHeightMedium: string;
5050
+ lineHeightLarge: string;
5051
+ lineHeightHuge: string;
5052
+ heightTiny: string;
5053
+ heightSmall: string;
5054
+ heightMedium: string;
5055
+ heightLarge: string;
5056
+ heightHuge: string;
5057
+ borderRadiusTiny: string;
5058
+ borderRadiusSmall: string;
5059
+ borderRadiusMedium: string;
5060
+ borderRadiusLarge: string;
5061
+ borderRadiusHuge: string;
5062
+ textColor: string;
5063
+ textColorDisabled: string;
5064
+ placeholderColor: string;
5065
+ placeholderColorDisabled: string;
5066
+ color: string;
5067
+ colorFilled: string;
5068
+ colorDisabled: string;
5069
+ colorActive: string;
5070
+ border: string;
5071
+ borderFilled: string;
5072
+ borderHover: string;
5073
+ borderActive: string;
5074
+ borderFocus: string;
5075
+ borderDisabled: string;
5076
+ boxShadowHover: string;
5077
+ boxShadowActive: string;
5078
+ boxShadowFocus: string;
5079
+ caretColor: string;
5080
+ arrowColor: string;
5081
+ arrowColorHover: string;
5082
+ arrowColorDisabled: string;
5083
+ loadingColor: string;
5084
+ borderWarning: string;
5085
+ borderHoverWarning: string;
5086
+ borderActiveWarning: string;
5087
+ borderFocusWarning: string;
5088
+ boxShadowHoverWarning: string;
5089
+ boxShadowActiveWarning: string;
5090
+ boxShadowFocusWarning: string;
5091
+ colorActiveWarning: string;
5092
+ caretColorWarning: string;
5093
+ borderError: string;
5094
+ borderHoverError: string;
5095
+ borderActiveError: string;
5096
+ borderFocusError: string;
5097
+ boxShadowHoverError: string;
5098
+ boxShadowActiveError: string;
5099
+ boxShadowFocusError: string;
5100
+ colorActiveError: string;
5101
+ caretColorError: string;
5102
+ clearColor: string;
5103
+ clearColorHover: string;
5104
+ clearColorPressed: string;
5105
+ caretColorSecondary: string;
5106
+ filterCounterTextColor: string;
5107
+ filterCounterTextColorDisabled: string;
5108
+ arrowColorSecondary: string;
5109
+ clearColorSecondary: string;
5110
+ colorSecondary: string;
5111
+ textColorSecondary: string;
5112
+ borderSecondary: string;
5113
+ arrowColorDisabledSecondary: string;
5114
+ clearColorDisabledSecondary: string;
5115
+ colorDisabledSecondary: string;
5116
+ textColorDisabledSecondary: string;
5117
+ borderDisabledSecondary: string;
5118
+ arrowColorHoverSecondary: string;
5119
+ clearColorHoverSecondary: string;
5120
+ colorHoverSecondary: string;
5121
+ textColorHoverSecondary: string;
5122
+ borderHoverSecondary: string;
5123
+ arrowColorFocusSecondary: string;
5124
+ clearColorFocusSecondary: string;
5125
+ colorFocusSecondary: string;
5126
+ textColorFocusSecondary: string;
5127
+ borderFocusSecondary: string;
5128
+ arrowColorActiveSecondary: string;
5129
+ clearColorActiveSecondary: string;
5130
+ colorActiveSecondary: string;
5131
+ textColorActiveSecondary: string;
5132
+ borderActiveSecondary: string;
5133
+ }, {
5134
+ Popover: import("../../_mixins").Theme<"Popover", {
5135
+ space: string;
5136
+ spaceArrow: string;
5137
+ arrowOffset: string;
5138
+ arrowOffsetVertical: string;
5139
+ arrowHeight: string;
5140
+ padding: string;
5141
+ fontSize: string;
5142
+ borderRadius: string;
5143
+ color: string;
5144
+ dividerColor: string;
5145
+ textColor: string;
5146
+ boxShadow: string;
5147
+ }, any>;
5148
+ }>;
4305
5149
  }>>>;
4306
5150
  }, {
4307
5151
  rangeTypes: DatePickerType[];
@@ -4328,7 +5172,7 @@ declare const _default: import("vue").DefineComponent<{
4328
5172
  yearVlRef?: {
4329
5173
  listElRef: HTMLElement;
4330
5174
  itemsElRef: HTMLElement | null;
4331
- scrollTo: import("vueuc/lib/virtual-list/src/VirtualList").ScrollTo;
5175
+ scrollTo: import("vueuc").VVirtualListScrollTo;
4332
5176
  } | null | undefined;
4333
5177
  startYearScrollbarRef?: {
4334
5178
  $el: HTMLElement;
@@ -4381,12 +5225,12 @@ declare const _default: import("vue").DefineComponent<{
4381
5225
  startYearVlRef?: {
4382
5226
  listElRef: HTMLElement;
4383
5227
  itemsElRef: HTMLElement | null;
4384
- scrollTo: import("vueuc/lib/virtual-list/src/VirtualList").ScrollTo;
5228
+ scrollTo: import("vueuc").VVirtualListScrollTo;
4385
5229
  } | null | undefined;
4386
5230
  endYearVlRef?: {
4387
5231
  listElRef: HTMLElement;
4388
5232
  itemsElRef: HTMLElement | null;
4389
- scrollTo: import("vueuc/lib/virtual-list/src/VirtualList").ScrollTo;
5233
+ scrollTo: import("vueuc").VVirtualListScrollTo;
4390
5234
  } | null | undefined;
4391
5235
  } | null>;
4392
5236
  triggerElRef: Ref<HTMLElement | null>;
@@ -4838,8 +5682,16 @@ declare const _default: import("vue").DefineComponent<{
4838
5682
  iconColorDisabled: string;
4839
5683
  }, {
4840
5684
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5685
+ height: string;
5686
+ width: string;
5687
+ borderRadius: string;
4841
5688
  color: string;
4842
5689
  colorHover: string;
5690
+ railInsetHorizontalBottom: string;
5691
+ railInsetHorizontalTop: string;
5692
+ railInsetVerticalRight: string;
5693
+ railInsetVerticalLeft: string;
5694
+ railColor: string;
4843
5695
  }, any>;
4844
5696
  Button: import("../../_mixins").Theme<"Button", {
4845
5697
  heightTiny: string;
@@ -5126,9 +5978,140 @@ declare const _default: import("vue").DefineComponent<{
5126
5978
  }, any>;
5127
5979
  }>;
5128
5980
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5981
+ height: string;
5982
+ width: string;
5983
+ borderRadius: string;
5129
5984
  color: string;
5130
5985
  colorHover: string;
5986
+ railInsetHorizontalBottom: string;
5987
+ railInsetHorizontalTop: string;
5988
+ railInsetVerticalRight: string;
5989
+ railInsetVerticalLeft: string;
5990
+ railColor: string;
5131
5991
  }, any>;
5992
+ Select: import("../../_mixins").Theme<"InternalSelection", {
5993
+ paddingTiny: string;
5994
+ paddingSmall: string;
5995
+ paddingMedium: string;
5996
+ paddingLarge: string;
5997
+ paddingHuge: string;
5998
+ clearSizeTiny: string;
5999
+ clearSizeSmall: string;
6000
+ clearSizeMedium: string;
6001
+ clearSizeLarge: string;
6002
+ clearSizeHuge: string;
6003
+ arrowSizeTiny: string;
6004
+ arrowSizeSmall: string;
6005
+ arrowSizeMedium: string;
6006
+ arrowSizeLarge: string;
6007
+ arrowSizeHuge: string;
6008
+ fontSizeTiny: string;
6009
+ fontSizeSmall: string;
6010
+ fontSizeMedium: string;
6011
+ fontSizeLarge: string;
6012
+ fontSizeHuge: string;
6013
+ lineHeightTiny: string;
6014
+ lineHeightSmall: string;
6015
+ lineHeightMedium: string;
6016
+ lineHeightLarge: string;
6017
+ lineHeightHuge: string;
6018
+ heightTiny: string;
6019
+ heightSmall: string;
6020
+ heightMedium: string;
6021
+ heightLarge: string;
6022
+ heightHuge: string;
6023
+ borderRadiusTiny: string;
6024
+ borderRadiusSmall: string;
6025
+ borderRadiusMedium: string;
6026
+ borderRadiusLarge: string;
6027
+ borderRadiusHuge: string;
6028
+ textColor: string;
6029
+ textColorDisabled: string;
6030
+ placeholderColor: string;
6031
+ placeholderColorDisabled: string;
6032
+ color: string;
6033
+ colorFilled: string;
6034
+ colorDisabled: string;
6035
+ colorActive: string;
6036
+ border: string;
6037
+ borderFilled: string;
6038
+ borderHover: string;
6039
+ borderActive: string;
6040
+ borderFocus: string;
6041
+ borderDisabled: string;
6042
+ boxShadowHover: string;
6043
+ boxShadowActive: string;
6044
+ boxShadowFocus: string;
6045
+ caretColor: string;
6046
+ arrowColor: string;
6047
+ arrowColorHover: string;
6048
+ arrowColorDisabled: string;
6049
+ loadingColor: string;
6050
+ borderWarning: string;
6051
+ borderHoverWarning: string;
6052
+ borderActiveWarning: string;
6053
+ borderFocusWarning: string;
6054
+ boxShadowHoverWarning: string;
6055
+ boxShadowActiveWarning: string;
6056
+ boxShadowFocusWarning: string;
6057
+ colorActiveWarning: string;
6058
+ caretColorWarning: string;
6059
+ borderError: string;
6060
+ borderHoverError: string;
6061
+ borderActiveError: string;
6062
+ borderFocusError: string;
6063
+ boxShadowHoverError: string;
6064
+ boxShadowActiveError: string;
6065
+ boxShadowFocusError: string;
6066
+ colorActiveError: string;
6067
+ caretColorError: string;
6068
+ clearColor: string;
6069
+ clearColorHover: string;
6070
+ clearColorPressed: string;
6071
+ caretColorSecondary: string;
6072
+ filterCounterTextColor: string;
6073
+ filterCounterTextColorDisabled: string;
6074
+ arrowColorSecondary: string;
6075
+ clearColorSecondary: string;
6076
+ colorSecondary: string;
6077
+ textColorSecondary: string;
6078
+ borderSecondary: string;
6079
+ arrowColorDisabledSecondary: string;
6080
+ clearColorDisabledSecondary: string;
6081
+ colorDisabledSecondary: string;
6082
+ textColorDisabledSecondary: string;
6083
+ borderDisabledSecondary: string;
6084
+ arrowColorHoverSecondary: string;
6085
+ clearColorHoverSecondary: string;
6086
+ colorHoverSecondary: string;
6087
+ textColorHoverSecondary: string;
6088
+ borderHoverSecondary: string;
6089
+ arrowColorFocusSecondary: string;
6090
+ clearColorFocusSecondary: string;
6091
+ colorFocusSecondary: string;
6092
+ textColorFocusSecondary: string;
6093
+ borderFocusSecondary: string;
6094
+ arrowColorActiveSecondary: string;
6095
+ clearColorActiveSecondary: string;
6096
+ colorActiveSecondary: string;
6097
+ textColorActiveSecondary: string;
6098
+ borderActiveSecondary: string;
6099
+ }, {
6100
+ Popover: import("../../_mixins").Theme<"Popover", {
6101
+ space: string;
6102
+ spaceArrow: string;
6103
+ arrowOffset: string;
6104
+ arrowOffsetVertical: string;
6105
+ arrowHeight: string;
6106
+ padding: string;
6107
+ fontSize: string;
6108
+ borderRadius: string;
6109
+ color: string;
6110
+ dividerColor: string;
6111
+ textColor: string;
6112
+ boxShadow: string;
6113
+ }, any>;
6114
+ }>;
5132
6115
  };
5133
6116
  peerOverrides: {
5134
6117
  Input?: {
@@ -5144,8 +6127,16 @@ declare const _default: import("vue").DefineComponent<{
5144
6127
  TimePicker?: {
5145
6128
  peers?: {
5146
6129
  Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
6130
+ height: string;
6131
+ width: string;
6132
+ borderRadius: string;
5147
6133
  color: string;
5148
6134
  colorHover: string;
6135
+ railInsetHorizontalBottom: string;
6136
+ railInsetHorizontalTop: string;
6137
+ railInsetVerticalRight: string;
6138
+ railInsetVerticalLeft: string;
6139
+ railColor: string;
5149
6140
  }, any>> | undefined;
5150
6141
  Button?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Button", {
5151
6142
  heightTiny: string;
@@ -5437,6 +6428,24 @@ declare const _default: import("vue").DefineComponent<{
5437
6428
  [x: string]: any;
5438
6429
  } | undefined;
5439
6430
  } | undefined;
6431
+ Select?: {
6432
+ peers?: {
6433
+ Popover?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Popover", {
6434
+ space: string;
6435
+ spaceArrow: string;
6436
+ arrowOffset: string;
6437
+ arrowOffsetVertical: string;
6438
+ arrowHeight: string;
6439
+ padding: string;
6440
+ fontSize: string;
6441
+ borderRadius: string;
6442
+ color: string;
6443
+ dividerColor: string;
6444
+ textColor: string;
6445
+ boxShadow: string;
6446
+ }, any>> | undefined;
6447
+ } | undefined;
6448
+ } | undefined;
5440
6449
  };
5441
6450
  }>;
5442
6451
  actions: import("vue").ComputedRef<string[] | undefined>;
@@ -5539,6 +6548,7 @@ declare const _default: import("vue").DefineComponent<{
5539
6548
  readonly default: undefined;
5540
6549
  };
5541
6550
  readonly clearable: BooleanConstructor;
6551
+ readonly round: BooleanConstructor;
5542
6552
  readonly updateValueOnClose: BooleanConstructor;
5543
6553
  readonly defaultValue: PropType<Value | null>;
5544
6554
  readonly defaultFormattedValue: PropType<FormattedValue | null>;
@@ -5588,6 +6598,10 @@ declare const _default: import("vue").DefineComponent<{
5588
6598
  readonly defaultCalendarStartTime: NumberConstructor;
5589
6599
  readonly defaultCalendarEndTime: NumberConstructor;
5590
6600
  readonly bindCalendarMonths: BooleanConstructor;
6601
+ readonly triggerPreset: {
6602
+ readonly type: PropType<TriggerPreset>;
6603
+ readonly default: "input";
6604
+ };
5591
6605
  readonly 'onUpdate:show': PropType<MaybeArray<(show: boolean) => void>>;
5592
6606
  readonly onUpdateShow: PropType<MaybeArray<(show: boolean) => void>>;
5593
6607
  readonly 'onUpdate:formattedValue': PropType<MaybeArray<OnUpdateFormattedValue>>;
@@ -5998,8 +7012,16 @@ declare const _default: import("vue").DefineComponent<{
5998
7012
  iconColorDisabled: string;
5999
7013
  }, {
6000
7014
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7015
+ height: string;
7016
+ width: string;
7017
+ borderRadius: string;
6001
7018
  color: string;
6002
7019
  colorHover: string;
7020
+ railInsetHorizontalBottom: string;
7021
+ railInsetHorizontalTop: string;
7022
+ railInsetVerticalRight: string;
7023
+ railInsetVerticalLeft: string;
7024
+ railColor: string;
6003
7025
  }, any>;
6004
7026
  Button: import("../../_mixins").Theme<"Button", {
6005
7027
  heightTiny: string;
@@ -6286,9 +7308,140 @@ declare const _default: import("vue").DefineComponent<{
6286
7308
  }, any>;
6287
7309
  }>;
6288
7310
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7311
+ height: string;
7312
+ width: string;
7313
+ borderRadius: string;
6289
7314
  color: string;
6290
7315
  colorHover: string;
7316
+ railInsetHorizontalBottom: string;
7317
+ railInsetHorizontalTop: string;
7318
+ railInsetVerticalRight: string;
7319
+ railInsetVerticalLeft: string;
7320
+ railColor: string;
6291
7321
  }, any>;
7322
+ Select: import("../../_mixins").Theme<"InternalSelection", {
7323
+ paddingTiny: string;
7324
+ paddingSmall: string;
7325
+ paddingMedium: string;
7326
+ paddingLarge: string;
7327
+ paddingHuge: string;
7328
+ clearSizeTiny: string;
7329
+ clearSizeSmall: string;
7330
+ clearSizeMedium: string;
7331
+ clearSizeLarge: string;
7332
+ clearSizeHuge: string;
7333
+ arrowSizeTiny: string;
7334
+ arrowSizeSmall: string;
7335
+ arrowSizeMedium: string;
7336
+ arrowSizeLarge: string;
7337
+ arrowSizeHuge: string;
7338
+ fontSizeTiny: string;
7339
+ fontSizeSmall: string;
7340
+ fontSizeMedium: string;
7341
+ fontSizeLarge: string;
7342
+ fontSizeHuge: string;
7343
+ lineHeightTiny: string;
7344
+ lineHeightSmall: string;
7345
+ lineHeightMedium: string;
7346
+ lineHeightLarge: string;
7347
+ lineHeightHuge: string;
7348
+ heightTiny: string;
7349
+ heightSmall: string;
7350
+ heightMedium: string;
7351
+ heightLarge: string;
7352
+ heightHuge: string;
7353
+ borderRadiusTiny: string;
7354
+ borderRadiusSmall: string;
7355
+ borderRadiusMedium: string;
7356
+ borderRadiusLarge: string;
7357
+ borderRadiusHuge: string;
7358
+ textColor: string;
7359
+ textColorDisabled: string;
7360
+ placeholderColor: string;
7361
+ placeholderColorDisabled: string;
7362
+ color: string;
7363
+ colorFilled: string;
7364
+ colorDisabled: string;
7365
+ colorActive: string;
7366
+ border: string;
7367
+ borderFilled: string;
7368
+ borderHover: string;
7369
+ borderActive: string;
7370
+ borderFocus: string;
7371
+ borderDisabled: string;
7372
+ boxShadowHover: string;
7373
+ boxShadowActive: string;
7374
+ boxShadowFocus: string;
7375
+ caretColor: string;
7376
+ arrowColor: string;
7377
+ arrowColorHover: string;
7378
+ arrowColorDisabled: string;
7379
+ loadingColor: string;
7380
+ borderWarning: string;
7381
+ borderHoverWarning: string;
7382
+ borderActiveWarning: string;
7383
+ borderFocusWarning: string;
7384
+ boxShadowHoverWarning: string;
7385
+ boxShadowActiveWarning: string;
7386
+ boxShadowFocusWarning: string;
7387
+ colorActiveWarning: string;
7388
+ caretColorWarning: string;
7389
+ borderError: string;
7390
+ borderHoverError: string;
7391
+ borderActiveError: string;
7392
+ borderFocusError: string;
7393
+ boxShadowHoverError: string;
7394
+ boxShadowActiveError: string;
7395
+ boxShadowFocusError: string;
7396
+ colorActiveError: string;
7397
+ caretColorError: string;
7398
+ clearColor: string;
7399
+ clearColorHover: string;
7400
+ clearColorPressed: string;
7401
+ caretColorSecondary: string;
7402
+ filterCounterTextColor: string;
7403
+ filterCounterTextColorDisabled: string;
7404
+ arrowColorSecondary: string;
7405
+ clearColorSecondary: string;
7406
+ colorSecondary: string;
7407
+ textColorSecondary: string;
7408
+ borderSecondary: string;
7409
+ arrowColorDisabledSecondary: string;
7410
+ clearColorDisabledSecondary: string;
7411
+ colorDisabledSecondary: string;
7412
+ textColorDisabledSecondary: string;
7413
+ borderDisabledSecondary: string;
7414
+ arrowColorHoverSecondary: string;
7415
+ clearColorHoverSecondary: string;
7416
+ colorHoverSecondary: string;
7417
+ textColorHoverSecondary: string;
7418
+ borderHoverSecondary: string;
7419
+ arrowColorFocusSecondary: string;
7420
+ clearColorFocusSecondary: string;
7421
+ colorFocusSecondary: string;
7422
+ textColorFocusSecondary: string;
7423
+ borderFocusSecondary: string;
7424
+ arrowColorActiveSecondary: string;
7425
+ clearColorActiveSecondary: string;
7426
+ colorActiveSecondary: string;
7427
+ textColorActiveSecondary: string;
7428
+ borderActiveSecondary: string;
7429
+ }, {
7430
+ Popover: import("../../_mixins").Theme<"Popover", {
7431
+ space: string;
7432
+ spaceArrow: string;
7433
+ arrowOffset: string;
7434
+ arrowOffsetVertical: string;
7435
+ arrowHeight: string;
7436
+ padding: string;
7437
+ fontSize: string;
7438
+ borderRadius: string;
7439
+ color: string;
7440
+ dividerColor: string;
7441
+ textColor: string;
7442
+ boxShadow: string;
7443
+ }, any>;
7444
+ }>;
6292
7445
  }>>;
6293
7446
  readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
6294
7447
  itemColor: string;
@@ -6691,8 +7844,16 @@ declare const _default: import("vue").DefineComponent<{
6691
7844
  iconColorDisabled: string;
6692
7845
  }, {
6693
7846
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7847
+ height: string;
7848
+ width: string;
7849
+ borderRadius: string;
6694
7850
  color: string;
6695
7851
  colorHover: string;
7852
+ railInsetHorizontalBottom: string;
7853
+ railInsetHorizontalTop: string;
7854
+ railInsetVerticalRight: string;
7855
+ railInsetVerticalLeft: string;
7856
+ railColor: string;
6696
7857
  }, any>;
6697
7858
  Button: import("../../_mixins").Theme<"Button", {
6698
7859
  heightTiny: string;
@@ -6979,9 +8140,140 @@ declare const _default: import("vue").DefineComponent<{
6979
8140
  }, any>;
6980
8141
  }>;
6981
8142
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
8143
+ height: string;
8144
+ width: string;
8145
+ borderRadius: string;
6982
8146
  color: string;
6983
8147
  colorHover: string;
8148
+ railInsetHorizontalBottom: string;
8149
+ railInsetHorizontalTop: string;
8150
+ railInsetVerticalRight: string;
8151
+ railInsetVerticalLeft: string;
8152
+ railColor: string;
6984
8153
  }, any>;
8154
+ Select: import("../../_mixins").Theme<"InternalSelection", {
8155
+ paddingTiny: string;
8156
+ paddingSmall: string;
8157
+ paddingMedium: string;
8158
+ paddingLarge: string;
8159
+ paddingHuge: string;
8160
+ clearSizeTiny: string;
8161
+ clearSizeSmall: string;
8162
+ clearSizeMedium: string;
8163
+ clearSizeLarge: string;
8164
+ clearSizeHuge: string;
8165
+ arrowSizeTiny: string;
8166
+ arrowSizeSmall: string;
8167
+ arrowSizeMedium: string;
8168
+ arrowSizeLarge: string;
8169
+ arrowSizeHuge: string;
8170
+ fontSizeTiny: string;
8171
+ fontSizeSmall: string;
8172
+ fontSizeMedium: string;
8173
+ fontSizeLarge: string;
8174
+ fontSizeHuge: string;
8175
+ lineHeightTiny: string;
8176
+ lineHeightSmall: string;
8177
+ lineHeightMedium: string;
8178
+ lineHeightLarge: string;
8179
+ lineHeightHuge: string;
8180
+ heightTiny: string;
8181
+ heightSmall: string;
8182
+ heightMedium: string;
8183
+ heightLarge: string;
8184
+ heightHuge: string;
8185
+ borderRadiusTiny: string;
8186
+ borderRadiusSmall: string;
8187
+ borderRadiusMedium: string;
8188
+ borderRadiusLarge: string;
8189
+ borderRadiusHuge: string;
8190
+ textColor: string;
8191
+ textColorDisabled: string;
8192
+ placeholderColor: string;
8193
+ placeholderColorDisabled: string;
8194
+ color: string;
8195
+ colorFilled: string;
8196
+ colorDisabled: string;
8197
+ colorActive: string;
8198
+ border: string;
8199
+ borderFilled: string;
8200
+ borderHover: string;
8201
+ borderActive: string;
8202
+ borderFocus: string;
8203
+ borderDisabled: string;
8204
+ boxShadowHover: string;
8205
+ boxShadowActive: string;
8206
+ boxShadowFocus: string;
8207
+ caretColor: string;
8208
+ arrowColor: string;
8209
+ arrowColorHover: string;
8210
+ arrowColorDisabled: string;
8211
+ loadingColor: string;
8212
+ borderWarning: string;
8213
+ borderHoverWarning: string;
8214
+ borderActiveWarning: string;
8215
+ borderFocusWarning: string;
8216
+ boxShadowHoverWarning: string;
8217
+ boxShadowActiveWarning: string;
8218
+ boxShadowFocusWarning: string;
8219
+ colorActiveWarning: string;
8220
+ caretColorWarning: string;
8221
+ borderError: string;
8222
+ borderHoverError: string;
8223
+ borderActiveError: string;
8224
+ borderFocusError: string;
8225
+ boxShadowHoverError: string;
8226
+ boxShadowActiveError: string;
8227
+ boxShadowFocusError: string;
8228
+ colorActiveError: string;
8229
+ caretColorError: string;
8230
+ clearColor: string;
8231
+ clearColorHover: string;
8232
+ clearColorPressed: string;
8233
+ caretColorSecondary: string;
8234
+ filterCounterTextColor: string;
8235
+ filterCounterTextColorDisabled: string;
8236
+ arrowColorSecondary: string;
8237
+ clearColorSecondary: string;
8238
+ colorSecondary: string;
8239
+ textColorSecondary: string;
8240
+ borderSecondary: string;
8241
+ arrowColorDisabledSecondary: string;
8242
+ clearColorDisabledSecondary: string;
8243
+ colorDisabledSecondary: string;
8244
+ textColorDisabledSecondary: string;
8245
+ borderDisabledSecondary: string;
8246
+ arrowColorHoverSecondary: string;
8247
+ clearColorHoverSecondary: string;
8248
+ colorHoverSecondary: string;
8249
+ textColorHoverSecondary: string;
8250
+ borderHoverSecondary: string;
8251
+ arrowColorFocusSecondary: string;
8252
+ clearColorFocusSecondary: string;
8253
+ colorFocusSecondary: string;
8254
+ textColorFocusSecondary: string;
8255
+ borderFocusSecondary: string;
8256
+ arrowColorActiveSecondary: string;
8257
+ clearColorActiveSecondary: string;
8258
+ colorActiveSecondary: string;
8259
+ textColorActiveSecondary: string;
8260
+ borderActiveSecondary: string;
8261
+ }, {
8262
+ Popover: import("../../_mixins").Theme<"Popover", {
8263
+ space: string;
8264
+ spaceArrow: string;
8265
+ arrowOffset: string;
8266
+ arrowOffsetVertical: string;
8267
+ arrowHeight: string;
8268
+ padding: string;
8269
+ fontSize: string;
8270
+ borderRadius: string;
8271
+ color: string;
8272
+ dividerColor: string;
8273
+ textColor: string;
8274
+ boxShadow: string;
8275
+ }, any>;
8276
+ }>;
6985
8277
  }>>>;
6986
8278
  readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePicker", {
6987
8279
  itemColor: string;
@@ -7384,8 +8676,16 @@ declare const _default: import("vue").DefineComponent<{
7384
8676
  iconColorDisabled: string;
7385
8677
  }, {
7386
8678
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
8679
+ height: string;
8680
+ width: string;
8681
+ borderRadius: string;
7387
8682
  color: string;
7388
8683
  colorHover: string;
8684
+ railInsetHorizontalBottom: string;
8685
+ railInsetHorizontalTop: string;
8686
+ railInsetVerticalRight: string;
8687
+ railInsetVerticalLeft: string;
8688
+ railColor: string;
7389
8689
  }, any>;
7390
8690
  Button: import("../../_mixins").Theme<"Button", {
7391
8691
  heightTiny: string;
@@ -7672,14 +8972,146 @@ declare const _default: import("vue").DefineComponent<{
7672
8972
  }, any>;
7673
8973
  }>;
7674
8974
  Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
8975
+ height: string;
8976
+ width: string;
8977
+ borderRadius: string;
7675
8978
  color: string;
7676
8979
  colorHover: string;
8980
+ railInsetHorizontalBottom: string;
8981
+ railInsetHorizontalTop: string;
8982
+ railInsetVerticalRight: string;
8983
+ railInsetVerticalLeft: string;
8984
+ railColor: string;
7677
8985
  }, any>;
8986
+ Select: import("../../_mixins").Theme<"InternalSelection", {
8987
+ paddingTiny: string;
8988
+ paddingSmall: string;
8989
+ paddingMedium: string;
8990
+ paddingLarge: string;
8991
+ paddingHuge: string;
8992
+ clearSizeTiny: string;
8993
+ clearSizeSmall: string;
8994
+ clearSizeMedium: string;
8995
+ clearSizeLarge: string;
8996
+ clearSizeHuge: string;
8997
+ arrowSizeTiny: string;
8998
+ arrowSizeSmall: string;
8999
+ arrowSizeMedium: string;
9000
+ arrowSizeLarge: string;
9001
+ arrowSizeHuge: string;
9002
+ fontSizeTiny: string;
9003
+ fontSizeSmall: string;
9004
+ fontSizeMedium: string;
9005
+ fontSizeLarge: string;
9006
+ fontSizeHuge: string;
9007
+ lineHeightTiny: string;
9008
+ lineHeightSmall: string;
9009
+ lineHeightMedium: string;
9010
+ lineHeightLarge: string;
9011
+ lineHeightHuge: string;
9012
+ heightTiny: string;
9013
+ heightSmall: string;
9014
+ heightMedium: string;
9015
+ heightLarge: string;
9016
+ heightHuge: string;
9017
+ borderRadiusTiny: string;
9018
+ borderRadiusSmall: string;
9019
+ borderRadiusMedium: string;
9020
+ borderRadiusLarge: string;
9021
+ borderRadiusHuge: string;
9022
+ textColor: string;
9023
+ textColorDisabled: string;
9024
+ placeholderColor: string;
9025
+ placeholderColorDisabled: string;
9026
+ color: string;
9027
+ colorFilled: string;
9028
+ colorDisabled: string;
9029
+ colorActive: string;
9030
+ border: string;
9031
+ borderFilled: string;
9032
+ borderHover: string;
9033
+ borderActive: string;
9034
+ borderFocus: string;
9035
+ borderDisabled: string;
9036
+ boxShadowHover: string;
9037
+ boxShadowActive: string;
9038
+ boxShadowFocus: string;
9039
+ caretColor: string;
9040
+ arrowColor: string;
9041
+ arrowColorHover: string;
9042
+ arrowColorDisabled: string;
9043
+ loadingColor: string;
9044
+ borderWarning: string;
9045
+ borderHoverWarning: string;
9046
+ borderActiveWarning: string;
9047
+ borderFocusWarning: string;
9048
+ boxShadowHoverWarning: string;
9049
+ boxShadowActiveWarning: string;
9050
+ boxShadowFocusWarning: string;
9051
+ colorActiveWarning: string;
9052
+ caretColorWarning: string;
9053
+ borderError: string;
9054
+ borderHoverError: string;
9055
+ borderActiveError: string;
9056
+ borderFocusError: string;
9057
+ boxShadowHoverError: string;
9058
+ boxShadowActiveError: string;
9059
+ boxShadowFocusError: string;
9060
+ colorActiveError: string;
9061
+ caretColorError: string;
9062
+ clearColor: string;
9063
+ clearColorHover: string;
9064
+ clearColorPressed: string;
9065
+ caretColorSecondary: string;
9066
+ filterCounterTextColor: string;
9067
+ filterCounterTextColorDisabled: string;
9068
+ arrowColorSecondary: string;
9069
+ clearColorSecondary: string;
9070
+ colorSecondary: string;
9071
+ textColorSecondary: string;
9072
+ borderSecondary: string;
9073
+ arrowColorDisabledSecondary: string;
9074
+ clearColorDisabledSecondary: string;
9075
+ colorDisabledSecondary: string;
9076
+ textColorDisabledSecondary: string;
9077
+ borderDisabledSecondary: string;
9078
+ arrowColorHoverSecondary: string;
9079
+ clearColorHoverSecondary: string;
9080
+ colorHoverSecondary: string;
9081
+ textColorHoverSecondary: string;
9082
+ borderHoverSecondary: string;
9083
+ arrowColorFocusSecondary: string;
9084
+ clearColorFocusSecondary: string;
9085
+ colorFocusSecondary: string;
9086
+ textColorFocusSecondary: string;
9087
+ borderFocusSecondary: string;
9088
+ arrowColorActiveSecondary: string;
9089
+ clearColorActiveSecondary: string;
9090
+ colorActiveSecondary: string;
9091
+ textColorActiveSecondary: string;
9092
+ borderActiveSecondary: string;
9093
+ }, {
9094
+ Popover: import("../../_mixins").Theme<"Popover", {
9095
+ space: string;
9096
+ spaceArrow: string;
9097
+ arrowOffset: string;
9098
+ arrowOffsetVertical: string;
9099
+ arrowHeight: string;
9100
+ padding: string;
9101
+ fontSize: string;
9102
+ borderRadius: string;
9103
+ color: string;
9104
+ dividerColor: string;
9105
+ textColor: string;
9106
+ boxShadow: string;
9107
+ }, any>;
9108
+ }>;
7678
9109
  }>>>;
7679
9110
  }>>, {
7680
9111
  readonly type: DatePickerType;
7681
9112
  readonly disabled: boolean | undefined;
7682
9113
  readonly bordered: boolean | undefined;
9114
+ readonly round: boolean;
7683
9115
  readonly to: string | boolean | HTMLElement;
7684
9116
  readonly show: boolean | undefined;
7685
9117
  readonly placement: FollowerPlacement;
@@ -7690,5 +9122,6 @@ declare const _default: import("vue").DefineComponent<{
7690
9122
  readonly defaultShortcuts: boolean;
7691
9123
  readonly closeOnSelect: boolean;
7692
9124
  readonly bindCalendarMonths: boolean;
9125
+ readonly triggerPreset: TriggerPreset;
7693
9126
  }, {}>;
7694
9127
  export default _default;