@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
@@ -1,12 +1,12 @@
1
1
  import { h, defineComponent, ref, Transition, computed, provide, watch, withDirectives, toRef, watchEffect } from 'vue';
2
2
  import { VBinder, VTarget, VFollower } from 'vueuc';
3
3
  import { clickoutside } from 'vdirs';
4
- import { format, getTime, isValid, addWeeks, addMonths, addYears } from 'date-fns'; //
4
+ import { format, getTime, isValid, addWeeks, addMonths, addYears } from 'date-fns';
5
5
  import { useIsMounted, useMergedState } from 'vooks';
6
6
  import { getPreciseEventTarget, happensIn } from 'seemly';
7
7
  import { DateIcon, ToIcon } from '../../_internal/icons';
8
8
  import { UInput } from '../../input';
9
- import { UBaseIcon } from '../../_internal';
9
+ import { UBaseIcon, UInternalSelection } from '../../_internal';
10
10
  import { useFormItem, useTheme, useConfig, useLocale, useThemeClass } from '../../_mixins';
11
11
  import { warn, call, useAdjustedTo, warnOnce, resolveSlot, markEventEffectPerformed } from '../../_utils';
12
12
  import { datePickerLight } from '../styles';
@@ -18,10 +18,11 @@ import DatetimeRangePanel from './panel/datetimerange';
18
18
  import DatePanel from './panel/date';
19
19
  import DateRangePanel from './panel/daterange';
20
20
  import style from './styles/index.cssr';
21
+ import { UButton } from '../../button';
21
22
  export const datePickerProps = Object.assign(Object.assign({}, useTheme.props), { to: useAdjustedTo.propTo, bordered: {
22
23
  type: Boolean,
23
24
  default: undefined
24
- }, clearable: Boolean, updateValueOnClose: Boolean, defaultValue: [Number, Array], defaultFormattedValue: [String, Array], defaultTime: [Number, String, Array], disabled: {
25
+ }, clearable: Boolean, round: Boolean, updateValueOnClose: Boolean, defaultValue: [Number, Array], defaultFormattedValue: [String, Array], defaultTime: [Number, String, Array], disabled: {
25
26
  type: Boolean,
26
27
  default: undefined
27
28
  }, placement: {
@@ -33,7 +34,10 @@ export const datePickerProps = Object.assign(Object.assign({}, useTheme.props),
33
34
  }, valueFormat: String, separator: String, placeholder: String, startPlaceholder: String, endPlaceholder: String, format: String, dateFormat: String, timeFormat: String, actions: Array, shortcuts: Object, defaultShortcuts: Boolean, isDateDisabled: Function, maxDate: Number, isTimeDisabled: Function, show: {
34
35
  type: Boolean,
35
36
  default: undefined
36
- }, panel: Boolean, ranges: Object, firstDayOfWeek: Number, inputReadonly: Boolean, closeOnSelect: Boolean, status: String, timePickerProps: [Object, Array], onClear: Function, onConfirm: Function, defaultCalendarStartTime: Number, defaultCalendarEndTime: Number, bindCalendarMonths: Boolean, 'onUpdate:show': [Function, Array], onUpdateShow: [Function, Array], 'onUpdate:formattedValue': [Function, Array], onUpdateFormattedValue: [Function, Array], 'onUpdate:value': [Function, Array], onUpdateValue: [Function, Array], onFocus: [Function, Array], onBlur: [Function, Array],
37
+ }, panel: Boolean, ranges: Object, firstDayOfWeek: Number, inputReadonly: Boolean, closeOnSelect: Boolean, status: String, timePickerProps: [Object, Array], onClear: Function, onConfirm: Function, defaultCalendarStartTime: Number, defaultCalendarEndTime: Number, bindCalendarMonths: Boolean, triggerPreset: {
38
+ type: String,
39
+ default: 'input'
40
+ }, 'onUpdate:show': [Function, Array], onUpdateShow: [Function, Array], 'onUpdate:formattedValue': [Function, Array], onUpdateFormattedValue: [Function, Array], 'onUpdate:value': [Function, Array], onUpdateValue: [Function, Array], onFocus: [Function, Array], onBlur: [Function, Array],
37
41
  // deprecated
38
42
  onChange: [Function, Array] });
39
43
  export default defineComponent({
@@ -767,34 +771,55 @@ export default defineComponent({
767
771
  h(VBinder, null, {
768
772
  default: () => [
769
773
  h(VTarget, null, {
770
- default: () => this.isRange ? (h(UInput, Object.assign({ ref: "inputInstRef", status: this.mergedStatus, value: [this.displayStartTime, this.displayEndTime], placeholder: [
771
- this.localizedStartPlaceholder,
772
- this.localizedEndPlaceholder
773
- ], textDecoration: [
774
- this.isStartValueInvalid ? 'line-through' : '',
775
- this.isEndValueInvalid ? 'line-through' : ''
776
- ], pair: true, onUpdateValue: this.handleRangeUpdateValue, theme: this.mergedTheme.peers.Input, themeOverrides: this.mergedTheme.peerOverrides.Input, internalForceFocus: this.mergedShow, internalDeactivateOnEnter: true }, commonInputProps), {
777
- separator: () => this.separator === undefined
778
- ? resolveSlot($slots.separator, () => [
774
+ default: () => {
775
+ if ($slots.trigger) {
776
+ return $slots.trigger({
777
+ open: this.handleTriggerClick,
778
+ value: this.displayTime || this.localizedPlacehoder
779
+ });
780
+ }
781
+ if (this.triggerPreset === 'select') {
782
+ return (h(UInternalSelection, { ref: "inputInstRef", selectedOption: this.displayTime
783
+ ? {
784
+ label: this.displayTime,
785
+ value: this.displayTime
786
+ }
787
+ : null, round: this.round, status: this.mergedStatus, clsPrefix: mergedClsPrefix, bordered: this.mergedBordered, size: this.mergedSize, theme: this.mergedTheme.peers.Select, themeOverrides: this.mergedTheme.peerOverrides.Select, placeholder: this.localizedPlacehoder, active: this.mergedShow, clearable: this.clearable, disabled: this.mergedDisabled, onFocus: this.handleInputFocus, onBlur: this.handleInputBlur, onClick: this.handleTriggerClick, onClear: this.handleClear }, {
788
+ arrow: () => { var _a, _b; return (_b = (_a = this.$slots).arrow) === null || _b === void 0 ? void 0 : _b.call(_a); }
789
+ }));
790
+ }
791
+ if (this.triggerPreset === 'button') {
792
+ return (h(UButton, { round: this.round, size: this.mergedSize, theme: this.mergedTheme.peers.Button, themeOverrides: this.mergedTheme.peerOverrides.Button, onClick: this.handleTriggerClick }, this.displayTime || this.localizedPlacehoder));
793
+ }
794
+ return this.isRange ? (h(UInput, Object.assign({ ref: "inputInstRef", round: this.round, status: this.mergedStatus, value: [this.displayStartTime, this.displayEndTime], placeholder: [
795
+ this.localizedStartPlaceholder,
796
+ this.localizedEndPlaceholder
797
+ ], textDecoration: [
798
+ this.isStartValueInvalid ? 'line-through' : '',
799
+ this.isEndValueInvalid ? 'line-through' : ''
800
+ ], pair: true, onUpdateValue: this.handleRangeUpdateValue, theme: this.mergedTheme.peers.Input, themeOverrides: this.mergedTheme.peerOverrides.Input, internalForceFocus: this.mergedShow, internalDeactivateOnEnter: true }, commonInputProps), {
801
+ separator: () => this.separator === undefined
802
+ ? resolveSlot($slots.separator, () => [
803
+ h(UBaseIcon, { clsPrefix: mergedClsPrefix, class: `${mergedClsPrefix}-date-picker-icon` }, {
804
+ default: () => h(ToIcon, null)
805
+ })
806
+ ])
807
+ : this.separator,
808
+ [clearable ? 'clear-icon-placeholder' : 'suffix']: () => resolveSlot($slots['date-icon'], () => [
779
809
  h(UBaseIcon, { clsPrefix: mergedClsPrefix, class: `${mergedClsPrefix}-date-picker-icon` }, {
780
- default: () => h(ToIcon, null)
810
+ default: () => h(DateIcon, null)
781
811
  })
782
812
  ])
783
- : this.separator,
784
- [clearable ? 'clear-icon-placeholder' : 'suffix']: () => resolveSlot($slots['date-icon'], () => [
785
- h(UBaseIcon, { clsPrefix: mergedClsPrefix, class: `${mergedClsPrefix}-date-picker-icon` }, {
786
- default: () => h(DateIcon, null)
787
- })
788
- ])
789
- })) : (h(UInput, Object.assign({ ref: "inputInstRef", status: this.mergedStatus, value: this.displayTime, placeholder: this.localizedPlacehoder, textDecoration: this.isValueInvalid && !this.isRange
790
- ? 'line-through'
791
- : '', onUpdateValue: this.handleSingleUpdateValue, theme: this.mergedTheme.peers.Input, themeOverrides: this.mergedTheme.peerOverrides.Input, internalForceFocus: this.mergedShow, internalDeactivateOnEnter: true }, commonInputProps), {
792
- [clearable ? 'clear-icon-placeholder' : 'suffix']: () => (h(UBaseIcon, { clsPrefix: mergedClsPrefix, class: `${mergedClsPrefix}-date-picker-icon` }, {
793
- default: () => resolveSlot($slots['date-icon'], () => [
794
- h(DateIcon, null)
795
- ])
796
- }))
797
- }))
813
+ })) : (h(UInput, Object.assign({ ref: "inputInstRef", round: this.round, status: this.mergedStatus, value: this.displayTime, placeholder: this.localizedPlacehoder, textDecoration: this.isValueInvalid && !this.isRange
814
+ ? 'line-through'
815
+ : '', onUpdateValue: this.handleSingleUpdateValue, theme: this.mergedTheme.peers.Input, themeOverrides: this.mergedTheme.peerOverrides.Input, internalForceFocus: this.mergedShow, internalDeactivateOnEnter: true }, commonInputProps), {
816
+ [clearable ? 'clear-icon-placeholder' : 'suffix']: () => (h(UBaseIcon, { clsPrefix: mergedClsPrefix, class: `${mergedClsPrefix}-date-picker-icon` }, {
817
+ default: () => resolveSlot($slots['date-icon'], () => [
818
+ h(DateIcon, null)
819
+ ])
820
+ }))
821
+ }));
822
+ }
798
823
  }),
799
824
  h(VFollower, { show: this.mergedShow, containerClass: this.namespace, to: this.adjustedTo, teleportDisabled: this.adjustedTo === useAdjustedTo.tdkey, placement: this.placement }, {
800
825
  default: () => (h(Transition, { name: "fade-in-scale-up-transition", appear: this.isMounted }, {
@@ -9,6 +9,7 @@ import type { DatePickerTheme } from '../styles/light';
9
9
  import type { uniCalendarValidation, dualCalendarValidation } from './validation-utils';
10
10
  import { DateCommonItem } from './utils';
11
11
  export type Value = number | [number, number];
12
+ export type TriggerPreset = 'input' | 'select' | 'button';
12
13
  export type PanelValue = number & (number | null) & [
13
14
  number,
14
15
  number
@@ -59,7 +59,7 @@ declare const _default: import("vue").DefineComponent<{
59
59
  calendarValue: import("vue").Ref<number>;
60
60
  onUpdateCalendarValue: (value: number) => void;
61
61
  yearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
62
- yearVlRef: import("vue").Ref<import("vueuc").VirtualListInst | null>;
62
+ yearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
63
63
  mergedTheme: import("vue").Ref<{
64
64
  common: import("../../..").ThemeCommonVars;
65
65
  self: {
@@ -464,8 +464,16 @@ declare const _default: import("vue").DefineComponent<{
464
464
  iconColorDisabled: string;
465
465
  }, {
466
466
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
467
+ height: string;
468
+ width: string;
469
+ borderRadius: string;
467
470
  color: string;
468
471
  colorHover: string;
472
+ railInsetHorizontalBottom: string;
473
+ railInsetHorizontalTop: string;
474
+ railInsetVerticalRight: string;
475
+ railInsetVerticalLeft: string;
476
+ railColor: string;
469
477
  }, any>;
470
478
  Button: import("../../../_mixins").Theme<"Button", {
471
479
  heightTiny: string;
@@ -752,9 +760,140 @@ declare const _default: import("vue").DefineComponent<{
752
760
  }, any>;
753
761
  }>;
754
762
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
763
+ height: string;
764
+ width: string;
765
+ borderRadius: string;
755
766
  color: string;
756
767
  colorHover: string;
768
+ railInsetHorizontalBottom: string;
769
+ railInsetHorizontalTop: string;
770
+ railInsetVerticalRight: string;
771
+ railInsetVerticalLeft: string;
772
+ railColor: string;
757
773
  }, any>;
774
+ Select: import("../../../_mixins").Theme<"InternalSelection", {
775
+ paddingTiny: string;
776
+ paddingSmall: string;
777
+ paddingMedium: string;
778
+ paddingLarge: string;
779
+ paddingHuge: string;
780
+ clearSizeTiny: string;
781
+ clearSizeSmall: string;
782
+ clearSizeMedium: string;
783
+ clearSizeLarge: string;
784
+ clearSizeHuge: string;
785
+ arrowSizeTiny: string;
786
+ arrowSizeSmall: string;
787
+ arrowSizeMedium: string;
788
+ arrowSizeLarge: string;
789
+ arrowSizeHuge: string;
790
+ fontSizeTiny: string;
791
+ fontSizeSmall: string;
792
+ fontSizeMedium: string;
793
+ fontSizeLarge: string;
794
+ fontSizeHuge: string;
795
+ lineHeightTiny: string;
796
+ lineHeightSmall: string;
797
+ lineHeightMedium: string;
798
+ lineHeightLarge: string;
799
+ lineHeightHuge: string;
800
+ heightTiny: string;
801
+ heightSmall: string;
802
+ heightMedium: string;
803
+ heightLarge: string;
804
+ heightHuge: string;
805
+ borderRadiusTiny: string;
806
+ borderRadiusSmall: string;
807
+ borderRadiusMedium: string;
808
+ borderRadiusLarge: string;
809
+ borderRadiusHuge: string;
810
+ textColor: string;
811
+ textColorDisabled: string;
812
+ placeholderColor: string;
813
+ placeholderColorDisabled: string;
814
+ color: string;
815
+ colorFilled: string;
816
+ colorDisabled: string;
817
+ colorActive: string;
818
+ border: string;
819
+ borderFilled: string;
820
+ borderHover: string;
821
+ borderActive: string;
822
+ borderFocus: string;
823
+ borderDisabled: string;
824
+ boxShadowHover: string;
825
+ boxShadowActive: string;
826
+ boxShadowFocus: string;
827
+ caretColor: string;
828
+ arrowColor: string;
829
+ arrowColorHover: string;
830
+ arrowColorDisabled: string;
831
+ loadingColor: string;
832
+ borderWarning: string;
833
+ borderHoverWarning: string;
834
+ borderActiveWarning: string;
835
+ borderFocusWarning: string;
836
+ boxShadowHoverWarning: string;
837
+ boxShadowActiveWarning: string;
838
+ boxShadowFocusWarning: string;
839
+ colorActiveWarning: string;
840
+ caretColorWarning: string;
841
+ borderError: string;
842
+ borderHoverError: string;
843
+ borderActiveError: string;
844
+ borderFocusError: string;
845
+ boxShadowHoverError: string;
846
+ boxShadowActiveError: string;
847
+ boxShadowFocusError: string;
848
+ colorActiveError: string;
849
+ caretColorError: string;
850
+ clearColor: string;
851
+ clearColorHover: string;
852
+ clearColorPressed: string;
853
+ caretColorSecondary: string;
854
+ filterCounterTextColor: string;
855
+ filterCounterTextColorDisabled: string;
856
+ arrowColorSecondary: string;
857
+ clearColorSecondary: string;
858
+ colorSecondary: string;
859
+ textColorSecondary: string;
860
+ borderSecondary: string;
861
+ arrowColorDisabledSecondary: string;
862
+ clearColorDisabledSecondary: string;
863
+ colorDisabledSecondary: string;
864
+ textColorDisabledSecondary: string;
865
+ borderDisabledSecondary: string;
866
+ arrowColorHoverSecondary: string;
867
+ clearColorHoverSecondary: string;
868
+ colorHoverSecondary: string;
869
+ textColorHoverSecondary: string;
870
+ borderHoverSecondary: string;
871
+ arrowColorFocusSecondary: string;
872
+ clearColorFocusSecondary: string;
873
+ colorFocusSecondary: string;
874
+ textColorFocusSecondary: string;
875
+ borderFocusSecondary: string;
876
+ arrowColorActiveSecondary: string;
877
+ clearColorActiveSecondary: string;
878
+ colorActiveSecondary: string;
879
+ textColorActiveSecondary: string;
880
+ borderActiveSecondary: string;
881
+ }, {
882
+ Popover: import("../../../_mixins").Theme<"Popover", {
883
+ space: string;
884
+ spaceArrow: string;
885
+ arrowOffset: string;
886
+ arrowOffsetVertical: string;
887
+ arrowHeight: string;
888
+ padding: string;
889
+ fontSize: string;
890
+ borderRadius: string;
891
+ color: string;
892
+ dividerColor: string;
893
+ textColor: string;
894
+ boxShadow: string;
895
+ }, any>;
896
+ }>;
758
897
  };
759
898
  peerOverrides: {
760
899
  Input?: {
@@ -770,8 +909,16 @@ declare const _default: import("vue").DefineComponent<{
770
909
  TimePicker?: {
771
910
  peers?: {
772
911
  Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
912
+ height: string;
913
+ width: string;
914
+ borderRadius: string;
773
915
  color: string;
774
916
  colorHover: string;
917
+ railInsetHorizontalBottom: string;
918
+ railInsetHorizontalTop: string;
919
+ railInsetVerticalRight: string;
920
+ railInsetVerticalLeft: string;
921
+ railColor: string;
775
922
  }, any>> | undefined;
776
923
  Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
777
924
  heightTiny: string;
@@ -1063,6 +1210,24 @@ declare const _default: import("vue").DefineComponent<{
1063
1210
  [x: string]: any;
1064
1211
  } | undefined;
1065
1212
  } | undefined;
1213
+ Select?: {
1214
+ peers?: {
1215
+ Popover?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Popover", {
1216
+ space: string;
1217
+ spaceArrow: string;
1218
+ arrowOffset: string;
1219
+ arrowOffsetVertical: string;
1220
+ arrowHeight: string;
1221
+ padding: string;
1222
+ fontSize: string;
1223
+ borderRadius: string;
1224
+ color: string;
1225
+ dividerColor: string;
1226
+ textColor: string;
1227
+ boxShadow: string;
1228
+ }, any>> | undefined;
1229
+ } | undefined;
1230
+ } | undefined;
1066
1231
  };
1067
1232
  }>;
1068
1233
  mergedClsPrefix: import("vue").Ref<string>;
@@ -72,8 +72,8 @@ declare const _default: import("vue").DefineComponent<{
72
72
  endYearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
73
73
  startMonthScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
74
74
  endMonthScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
75
- startYearVlRef: import("vue").Ref<import("vueuc").VirtualListInst | null>;
76
- endYearVlRef: import("vue").Ref<import("vueuc").VirtualListInst | null>;
75
+ startYearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
76
+ endYearVlRef: import("vue").Ref<import("vueuc").VVirtualListInst | null>;
77
77
  isDateDisabled: import("vue").Ref<import("../interface").IsDateDisabled | undefined>;
78
78
  isStartHourDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsHourDisabled | undefined>;
79
79
  isEndHourDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsHourDisabled | undefined>;
@@ -492,8 +492,16 @@ declare const _default: import("vue").DefineComponent<{
492
492
  iconColorDisabled: string;
493
493
  }, {
494
494
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
495
+ height: string;
496
+ width: string;
497
+ borderRadius: string;
495
498
  color: string;
496
499
  colorHover: string;
500
+ railInsetHorizontalBottom: string;
501
+ railInsetHorizontalTop: string;
502
+ railInsetVerticalRight: string;
503
+ railInsetVerticalLeft: string;
504
+ railColor: string;
497
505
  }, any>;
498
506
  Button: import("../../../_mixins").Theme<"Button", {
499
507
  heightTiny: string;
@@ -780,9 +788,140 @@ declare const _default: import("vue").DefineComponent<{
780
788
  }, any>;
781
789
  }>;
782
790
  Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
791
+ height: string;
792
+ width: string;
793
+ borderRadius: string;
783
794
  color: string;
784
795
  colorHover: string;
796
+ railInsetHorizontalBottom: string;
797
+ railInsetHorizontalTop: string;
798
+ railInsetVerticalRight: string;
799
+ railInsetVerticalLeft: string;
800
+ railColor: string;
785
801
  }, any>;
802
+ Select: import("../../../_mixins").Theme<"InternalSelection", {
803
+ paddingTiny: string;
804
+ paddingSmall: string;
805
+ paddingMedium: string;
806
+ paddingLarge: string;
807
+ paddingHuge: string;
808
+ clearSizeTiny: string;
809
+ clearSizeSmall: string;
810
+ clearSizeMedium: string;
811
+ clearSizeLarge: string;
812
+ clearSizeHuge: string;
813
+ arrowSizeTiny: string;
814
+ arrowSizeSmall: string;
815
+ arrowSizeMedium: string;
816
+ arrowSizeLarge: string;
817
+ arrowSizeHuge: string;
818
+ fontSizeTiny: string;
819
+ fontSizeSmall: string;
820
+ fontSizeMedium: string;
821
+ fontSizeLarge: string;
822
+ fontSizeHuge: string;
823
+ lineHeightTiny: string;
824
+ lineHeightSmall: string;
825
+ lineHeightMedium: string;
826
+ lineHeightLarge: string;
827
+ lineHeightHuge: string;
828
+ heightTiny: string;
829
+ heightSmall: string;
830
+ heightMedium: string;
831
+ heightLarge: string;
832
+ heightHuge: string;
833
+ borderRadiusTiny: string;
834
+ borderRadiusSmall: string;
835
+ borderRadiusMedium: string;
836
+ borderRadiusLarge: string;
837
+ borderRadiusHuge: string;
838
+ textColor: string;
839
+ textColorDisabled: string;
840
+ placeholderColor: string;
841
+ placeholderColorDisabled: string;
842
+ color: string;
843
+ colorFilled: string;
844
+ colorDisabled: string;
845
+ colorActive: string;
846
+ border: string;
847
+ borderFilled: string;
848
+ borderHover: string;
849
+ borderActive: string;
850
+ borderFocus: string;
851
+ borderDisabled: string;
852
+ boxShadowHover: string;
853
+ boxShadowActive: string;
854
+ boxShadowFocus: string;
855
+ caretColor: string;
856
+ arrowColor: string;
857
+ arrowColorHover: string;
858
+ arrowColorDisabled: string;
859
+ loadingColor: string;
860
+ borderWarning: string;
861
+ borderHoverWarning: string;
862
+ borderActiveWarning: string;
863
+ borderFocusWarning: string;
864
+ boxShadowHoverWarning: string;
865
+ boxShadowActiveWarning: string;
866
+ boxShadowFocusWarning: string;
867
+ colorActiveWarning: string;
868
+ caretColorWarning: string;
869
+ borderError: string;
870
+ borderHoverError: string;
871
+ borderActiveError: string;
872
+ borderFocusError: string;
873
+ boxShadowHoverError: string;
874
+ boxShadowActiveError: string;
875
+ boxShadowFocusError: string;
876
+ colorActiveError: string;
877
+ caretColorError: string;
878
+ clearColor: string;
879
+ clearColorHover: string;
880
+ clearColorPressed: string;
881
+ caretColorSecondary: string;
882
+ filterCounterTextColor: string;
883
+ filterCounterTextColorDisabled: string;
884
+ arrowColorSecondary: string;
885
+ clearColorSecondary: string;
886
+ colorSecondary: string;
887
+ textColorSecondary: string;
888
+ borderSecondary: string;
889
+ arrowColorDisabledSecondary: string;
890
+ clearColorDisabledSecondary: string;
891
+ colorDisabledSecondary: string;
892
+ textColorDisabledSecondary: string;
893
+ borderDisabledSecondary: string;
894
+ arrowColorHoverSecondary: string;
895
+ clearColorHoverSecondary: string;
896
+ colorHoverSecondary: string;
897
+ textColorHoverSecondary: string;
898
+ borderHoverSecondary: string;
899
+ arrowColorFocusSecondary: string;
900
+ clearColorFocusSecondary: string;
901
+ colorFocusSecondary: string;
902
+ textColorFocusSecondary: string;
903
+ borderFocusSecondary: string;
904
+ arrowColorActiveSecondary: string;
905
+ clearColorActiveSecondary: string;
906
+ colorActiveSecondary: string;
907
+ textColorActiveSecondary: string;
908
+ borderActiveSecondary: string;
909
+ }, {
910
+ Popover: import("../../../_mixins").Theme<"Popover", {
911
+ space: string;
912
+ spaceArrow: string;
913
+ arrowOffset: string;
914
+ arrowOffsetVertical: string;
915
+ arrowHeight: string;
916
+ padding: string;
917
+ fontSize: string;
918
+ borderRadius: string;
919
+ color: string;
920
+ dividerColor: string;
921
+ textColor: string;
922
+ boxShadow: string;
923
+ }, any>;
924
+ }>;
786
925
  };
787
926
  peerOverrides: {
788
927
  Input?: {
@@ -798,8 +937,16 @@ declare const _default: import("vue").DefineComponent<{
798
937
  TimePicker?: {
799
938
  peers?: {
800
939
  Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
940
+ height: string;
941
+ width: string;
942
+ borderRadius: string;
801
943
  color: string;
802
944
  colorHover: string;
945
+ railInsetHorizontalBottom: string;
946
+ railInsetHorizontalTop: string;
947
+ railInsetVerticalRight: string;
948
+ railInsetVerticalLeft: string;
949
+ railColor: string;
803
950
  }, any>> | undefined;
804
951
  Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
805
952
  heightTiny: string;
@@ -1091,6 +1238,24 @@ declare const _default: import("vue").DefineComponent<{
1091
1238
  [x: string]: any;
1092
1239
  } | undefined;
1093
1240
  } | undefined;
1241
+ Select?: {
1242
+ peers?: {
1243
+ Popover?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Popover", {
1244
+ space: string;
1245
+ spaceArrow: string;
1246
+ arrowOffset: string;
1247
+ arrowOffsetVertical: string;
1248
+ arrowHeight: string;
1249
+ padding: string;
1250
+ fontSize: string;
1251
+ borderRadius: string;
1252
+ color: string;
1253
+ dividerColor: string;
1254
+ textColor: string;
1255
+ boxShadow: string;
1256
+ }, any>> | undefined;
1257
+ } | undefined;
1258
+ } | undefined;
1094
1259
  };
1095
1260
  }>;
1096
1261
  mergedClsPrefix: import("vue").Ref<string>;