naive-ui 2.41.1 → 2.43.0

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 (685) hide show
  1. package/dist/index.js +3349 -1068
  2. package/dist/index.mjs +3339 -1070
  3. package/dist/index.prod.js +1 -1
  4. package/dist/index.prod.mjs +1 -1
  5. package/es/_internal/icon/src/styles/index.cssr.mjs +0 -1
  6. package/es/_internal/icons/replaceable.mjs +1 -1
  7. package/es/_internal/scrollbar/src/Scrollbar.d.ts +3 -3
  8. package/es/_internal/select-menu/src/SelectMenu.d.ts +4 -4
  9. package/es/_internal/selection/src/Selection.d.ts +115 -13
  10. package/es/_internal/selection/styles/light.d.ts +14 -1
  11. package/es/_mixins/use-theme.mjs +1 -1
  12. package/es/_utils/index.d.ts +1 -0
  13. package/es/_utils/naive/prop.d.ts +19 -10
  14. package/es/_utils/naive/prop.mjs +21 -21
  15. package/es/_utils/ts/ts.d.ts +3 -0
  16. package/es/alert/src/Alert.d.ts +2 -2
  17. package/es/anchor/index.d.ts +1 -0
  18. package/es/anchor/src/AnchorAdapter.d.ts +1 -1
  19. package/es/anchor/src/BaseAnchor.mjs +29 -5
  20. package/es/anchor/src/Link.d.ts +3 -2
  21. package/es/anchor/src/Link.mjs +5 -2
  22. package/es/anchor/src/public-types.d.ts +5 -0
  23. package/es/anchor/src/public-types.mjs +1 -0
  24. package/es/auto-complete/src/AutoComplete.d.ts +155 -14
  25. package/es/auto-complete/styles/light.d.ts +14 -1
  26. package/es/avatar-group/index.d.ts +3 -2
  27. package/es/avatar-group/src/AvatarGroup.d.ts +1 -4
  28. package/es/avatar-group/src/generic-public-types.d.ts +18 -0
  29. package/es/avatar-group/src/generic-public-types.mjs +1 -0
  30. package/es/avatar-group/src/public-types.d.ts +10 -0
  31. package/es/avatar-group/src/public-types.mjs +1 -0
  32. package/es/back-top/src/BackTop.d.ts +1 -1
  33. package/es/badge/src/Badge.d.ts +1 -1
  34. package/es/button/src/Button.d.ts +1 -1
  35. package/es/card/src/Card.d.ts +7 -2
  36. package/es/card/src/Card.mjs +3 -1
  37. package/es/carousel/src/Carousel.d.ts +4 -4
  38. package/es/carousel/src/Carousel.mjs +2 -2
  39. package/es/carousel/src/CarouselDots.d.ts +2 -2
  40. package/es/carousel/src/CarouselItem.mjs +1 -1
  41. package/es/cascader/src/Cascader.d.ts +163 -20
  42. package/es/cascader/src/CascaderMenu.d.ts +56 -4
  43. package/es/cascader/src/CascaderOption.d.ts +56 -4
  44. package/es/cascader/src/CascaderSelectMenu.d.ts +57 -5
  45. package/es/cascader/src/CascaderSubmenu.d.ts +56 -4
  46. package/es/cascader/styles/light.d.ts +14 -1
  47. package/es/color-picker/src/ColorInputUnit.d.ts +26 -2
  48. package/es/color-picker/src/ColorPicker.d.ts +128 -11
  49. package/es/color-picker/src/ColorPickerTrigger.mjs +2 -1
  50. package/es/color-picker/src/utils.d.ts +2 -0
  51. package/es/color-picker/src/utils.mjs +23 -0
  52. package/es/color-picker/styles/light.d.ts +17 -4
  53. package/es/components.d.ts +1 -0
  54. package/es/components.mjs +1 -0
  55. package/es/config-provider/src/ConfigProvider.d.ts +1 -1
  56. package/es/config-provider/src/ConfigProvider.mjs +1 -1
  57. package/es/config-provider/src/internal-interface.d.ts +2 -0
  58. package/es/data-table/src/DataTable.d.ts +690 -68
  59. package/es/data-table/src/HeaderButton/FilterButton.d.ts +334 -26
  60. package/es/data-table/src/HeaderButton/FilterMenu.d.ts +332 -24
  61. package/es/data-table/src/TableParts/Body.d.ts +332 -24
  62. package/es/data-table/src/TableParts/Cell.mjs +1 -1
  63. package/es/data-table/src/TableParts/Header.d.ts +332 -24
  64. package/es/data-table/src/interface.d.ts +253 -18
  65. package/es/data-table/src/use-sorter.d.ts +2 -5
  66. package/es/data-table/src/use-table-data.d.ts +1 -4
  67. package/es/data-table/src/utils.mjs +4 -1
  68. package/es/data-table/styles/light.d.ts +84 -6
  69. package/es/date-picker/src/DatePicker.d.ts +229 -23
  70. package/es/date-picker/src/DatePicker.mjs +1 -1
  71. package/es/date-picker/src/panel/date.d.ts +110 -10
  72. package/es/date-picker/src/panel/daterange.d.ts +111 -11
  73. package/es/date-picker/src/panel/datetime.d.ts +111 -11
  74. package/es/date-picker/src/panel/datetime.mjs +1 -1
  75. package/es/date-picker/src/panel/datetimerange.d.ts +112 -12
  76. package/es/date-picker/src/panel/datetimerange.mjs +2 -2
  77. package/es/date-picker/src/panel/month.d.ts +110 -10
  78. package/es/date-picker/src/panel/monthrange.d.ts +111 -11
  79. package/es/date-picker/src/panel/panelHeader.d.ts +436 -36
  80. package/es/date-picker/src/panel/use-calendar.d.ts +109 -9
  81. package/es/date-picker/src/panel/use-dual-calendar.d.ts +110 -10
  82. package/es/date-picker/src/panel/use-dual-calendar.mjs +3 -3
  83. package/es/date-picker/src/panel/use-panel-common.d.ts +109 -9
  84. package/es/date-picker/src/panel/use-panel-common.mjs +1 -1
  85. package/es/date-picker/src/props.d.ts +85 -7
  86. package/es/date-picker/src/props.mjs +1 -1
  87. package/es/date-picker/src/utils.d.ts +2 -1
  88. package/es/date-picker/src/utils.mjs +4 -1
  89. package/es/date-picker/styles/light.d.ts +28 -2
  90. package/es/dialog/src/Dialog.d.ts +9 -6
  91. package/es/dialog/src/Dialog.mjs +1 -0
  92. package/es/dialog/src/DialogEnvironment.d.ts +11 -4
  93. package/es/dialog/src/DialogEnvironment.mjs +3 -0
  94. package/es/dialog/src/DialogProvider.d.ts +38 -34
  95. package/es/dialog/src/dialogProps.d.ts +2 -1
  96. package/es/dialog/src/dialogProps.mjs +2 -1
  97. package/es/drawer/src/Drawer.d.ts +4 -4
  98. package/es/drawer/src/DrawerBodyWrapper.d.ts +1 -1
  99. package/es/dropdown/src/Dropdown.d.ts +165 -24
  100. package/es/dropdown/src/DropdownMenu.d.ts +2 -2
  101. package/es/dropdown/src/DropdownOption.d.ts +2 -2
  102. package/es/dropdown/styles/light.d.ts +16 -3
  103. package/es/dynamic-input/src/DynamicInput.d.ts +153 -12
  104. package/es/dynamic-input/src/InputPreset.d.ts +52 -4
  105. package/es/dynamic-input/src/PairPreset.d.ts +52 -4
  106. package/es/dynamic-input/styles/light.d.ts +14 -1
  107. package/es/dynamic-tags/src/DynamicTags.d.ts +153 -12
  108. package/es/dynamic-tags/styles/light.d.ts +14 -1
  109. package/es/element/src/Element.mjs +1 -1
  110. package/es/ellipsis/src/Ellipsis.d.ts +154 -11
  111. package/es/ellipsis/src/PerformantEllipsis.d.ts +84 -6
  112. package/es/ellipsis/styles/light.d.ts +14 -1
  113. package/es/empty/src/Empty.d.ts +1 -1
  114. package/es/form/src/FormItem.d.ts +8 -2
  115. package/es/form/src/FormItem.mjs +6 -3
  116. package/es/form/src/FormItemCol.d.ts +7 -1
  117. package/es/form/src/FormItemGridItem.d.ts +7 -1
  118. package/es/form/src/FormItemRow.d.ts +7 -1
  119. package/es/form/src/utils.d.ts +1 -1
  120. package/es/form/src/utils.mjs +1 -1
  121. package/es/global-style/src/GlobalStyle.mjs +1 -1
  122. package/es/gradient-text/src/GradientText.d.ts +2 -2
  123. package/es/grid/src/GridItem.d.ts +1 -1
  124. package/es/heatmap/index.d.ts +6 -0
  125. package/es/heatmap/index.mjs +4 -0
  126. package/es/heatmap/src/ColorIndicator.d.ts +25 -0
  127. package/es/heatmap/src/ColorIndicator.mjs +41 -0
  128. package/es/heatmap/src/Heatmap.d.ts +385 -0
  129. package/es/heatmap/src/Heatmap.mjs +333 -0
  130. package/es/heatmap/src/Rect.d.ts +57 -0
  131. package/es/heatmap/src/Rect.mjs +67 -0
  132. package/es/heatmap/src/animationStyle.d.ts +6 -0
  133. package/es/heatmap/src/animationStyle.mjs +51 -0
  134. package/es/heatmap/src/interface.d.ts +7 -0
  135. package/es/heatmap/src/interface.mjs +1 -0
  136. package/es/heatmap/src/public-types.d.ts +16 -0
  137. package/es/heatmap/src/public-types.mjs +1 -0
  138. package/es/heatmap/src/styles/index.cssr.d.ts +2 -0
  139. package/es/heatmap/src/styles/index.cssr.mjs +102 -0
  140. package/es/heatmap/src/styles/rtl.cssr.d.ts +2 -0
  141. package/es/heatmap/src/styles/rtl.cssr.mjs +4 -0
  142. package/es/heatmap/src/theme.d.ts +8 -0
  143. package/es/heatmap/src/theme.mjs +7 -0
  144. package/es/heatmap/src/utils/index.d.ts +32 -0
  145. package/es/heatmap/src/utils/index.mjs +148 -0
  146. package/es/heatmap/styles/dark.d.ts +3 -0
  147. package/es/heatmap/styles/dark.mjs +16 -0
  148. package/es/heatmap/styles/index.d.ts +3 -0
  149. package/es/heatmap/styles/index.mjs +2 -0
  150. package/es/heatmap/styles/light.d.ts +31 -0
  151. package/es/heatmap/styles/light.mjs +45 -0
  152. package/es/heatmap/styles/rtl.d.ts +2 -0
  153. package/es/heatmap/styles/rtl.mjs +5 -0
  154. package/es/highlight/src/utils.mjs +10 -10
  155. package/es/icon/src/styles/index.cssr.mjs +0 -1
  156. package/es/image/index.d.ts +3 -1
  157. package/es/image/index.mjs +2 -1
  158. package/es/image/src/Image.d.ts +133 -23
  159. package/es/image/src/Image.mjs +48 -23
  160. package/es/image/src/ImageGroup.d.ts +200 -35
  161. package/es/image/src/ImageGroup.mjs +130 -26
  162. package/es/image/src/ImagePreview.d.ts +258 -23
  163. package/es/image/src/ImagePreview.mjs +84 -42
  164. package/es/image/src/interface.d.ts +42 -3
  165. package/es/image/src/public-types.d.ts +14 -0
  166. package/es/image/styles/light.d.ts +14 -1
  167. package/es/input/src/Input.d.ts +146 -12
  168. package/es/input/src/Input.mjs +6 -4
  169. package/es/input/src/InputGroupLabel.d.ts +129 -22
  170. package/es/input/src/InputGroupLabel.mjs +14 -8
  171. package/es/input/styles/dark.d.ts +139 -2
  172. package/es/input/styles/dark.mjs +114 -108
  173. package/es/input/styles/light.d.ts +76 -3
  174. package/es/input/styles/light.mjs +7 -2
  175. package/es/input-number/src/InputNumber.d.ts +152 -11
  176. package/es/input-number/styles/light.d.ts +14 -1
  177. package/es/input-otp/src/InputOtp.d.ts +158 -12
  178. package/es/input-otp/src/InputOtp.mjs +12 -4
  179. package/es/input-otp/src/public-types.d.ts +1 -0
  180. package/es/input-otp/src/styles/index.cssr.mjs +12 -3
  181. package/es/input-otp/styles/dark.mjs +1 -1
  182. package/es/input-otp/styles/light.d.ts +14 -1
  183. package/es/layout/src/LayoutSider.d.ts +1 -1
  184. package/es/legacy-transfer/src/Transfer.d.ts +154 -13
  185. package/es/legacy-transfer/src/TransferFilter.d.ts +52 -4
  186. package/es/legacy-transfer/src/TransferList.d.ts +52 -4
  187. package/es/legacy-transfer/src/TransferListItem.d.ts +52 -4
  188. package/es/legacy-transfer/styles/light.d.ts +14 -1
  189. package/es/locales/common/arDZ.mjs +6 -0
  190. package/es/locales/common/azAZ.mjs +6 -0
  191. package/es/locales/common/csCZ.mjs +6 -0
  192. package/es/locales/common/daDK.d.ts +3 -0
  193. package/es/locales/common/daDK.mjs +130 -0
  194. package/es/locales/common/deDE.mjs +6 -0
  195. package/es/locales/common/enGB.mjs +6 -0
  196. package/es/locales/common/enUS.d.ts +6 -0
  197. package/es/locales/common/enUS.mjs +6 -0
  198. package/es/locales/common/eo.mjs +6 -0
  199. package/es/locales/common/esAR.mjs +6 -0
  200. package/es/locales/common/etEE.mjs +6 -0
  201. package/es/locales/common/faIR.mjs +6 -0
  202. package/es/locales/common/frFR.mjs +6 -0
  203. package/es/locales/common/idID.mjs +6 -0
  204. package/es/locales/common/itIT.mjs +6 -0
  205. package/es/locales/common/jaJP.mjs +6 -0
  206. package/es/locales/common/kmKH.mjs +6 -0
  207. package/es/locales/common/koKR.mjs +6 -0
  208. package/es/locales/common/nbNO.mjs +6 -0
  209. package/es/locales/common/nlNL.mjs +6 -0
  210. package/es/locales/common/plPL.mjs +6 -0
  211. package/es/locales/common/ptBR.mjs +6 -0
  212. package/es/locales/common/ruRU.mjs +6 -0
  213. package/es/locales/common/skSK.mjs +6 -0
  214. package/es/locales/common/svSE.mjs +8 -2
  215. package/es/locales/common/thTH.mjs +6 -0
  216. package/es/locales/common/trTR.mjs +6 -0
  217. package/es/locales/common/ugCN.mjs +6 -0
  218. package/es/locales/common/ukUA.mjs +6 -0
  219. package/es/locales/common/uzUZ.mjs +6 -0
  220. package/es/locales/common/viVN.mjs +6 -0
  221. package/es/locales/common/zhCN.mjs +6 -0
  222. package/es/locales/common/zhTW.mjs +6 -0
  223. package/es/locales/date/daDK.d.ts +3 -0
  224. package/es/locales/date/daDK.mjs +6 -0
  225. package/es/locales/index.d.ts +2 -0
  226. package/es/locales/index.mjs +2 -0
  227. package/es/locales/utils/index.mjs +1 -1
  228. package/es/log/src/Log.d.ts +1 -1
  229. package/es/log/src/Log.mjs +1 -1
  230. package/es/marquee/src/Marquee.mjs +12 -10
  231. package/es/mention/src/Mention.d.ts +155 -14
  232. package/es/mention/styles/light.d.ts +14 -1
  233. package/es/menu/src/Menu.d.ts +314 -28
  234. package/es/menu/src/MenuOption.d.ts +113 -9
  235. package/es/menu/src/MenuOption.mjs +4 -3
  236. package/es/menu/src/MenuOptionContent.d.ts +1 -1
  237. package/es/menu/src/MenuOptionGroup.d.ts +1 -1
  238. package/es/menu/src/MenuOptionGroup.mjs +11 -4
  239. package/es/menu/src/Submenu.d.ts +114 -10
  240. package/es/menu/src/use-menu-child.d.ts +2 -0
  241. package/es/menu/src/use-menu-child.mjs +2 -1
  242. package/es/menu/styles/light.d.ts +33 -7
  243. package/es/message/src/Message.d.ts +1 -0
  244. package/es/message/src/Message.mjs +3 -1
  245. package/es/message/src/MessageProvider.d.ts +10 -1
  246. package/es/message/src/styles/index.cssr.mjs +1 -0
  247. package/es/message/styles/light.d.ts +1 -0
  248. package/es/message/styles/light.mjs +2 -1
  249. package/es/modal/src/BodyWrapper.d.ts +13 -7
  250. package/es/modal/src/BodyWrapper.mjs +4 -3
  251. package/es/modal/src/Modal.d.ts +32 -15
  252. package/es/modal/src/Modal.mjs +14 -6
  253. package/es/modal/src/ModalEnvironment.d.ts +22 -10
  254. package/es/modal/src/ModalEnvironment.mjs +1 -1
  255. package/es/modal/src/ModalProvider.d.ts +2 -1
  256. package/es/modal/src/ModalProvider.mjs +4 -2
  257. package/es/modal/src/presetProps.d.ts +3 -2
  258. package/es/modal/src/styles/index.cssr.mjs +4 -2
  259. package/es/notification/src/Notification.d.ts +2 -2
  260. package/es/notification/src/NotificationEnvironment.d.ts +1 -1
  261. package/es/notification/src/NotificationProvider.d.ts +5 -5
  262. package/es/number-animation/src/NumberAnimation.mjs +1 -1
  263. package/es/pagination/src/Pagination.d.ts +460 -33
  264. package/es/pagination/styles/light.d.ts +42 -3
  265. package/es/popconfirm/src/Popconfirm.d.ts +163 -22
  266. package/es/popconfirm/src/Popconfirm.mjs +3 -3
  267. package/es/popconfirm/src/PopconfirmPanel.d.ts +3 -3
  268. package/es/popconfirm/styles/light.d.ts +14 -1
  269. package/es/popover/src/Popover.d.ts +133 -16
  270. package/es/popover/src/PopoverBody.d.ts +129 -12
  271. package/es/popover/src/PopoverBody.mjs +8 -4
  272. package/es/popover/src/styles/index.cssr.mjs +1 -1
  273. package/es/popover/src/styles/rtl.cssr.d.ts +2 -0
  274. package/es/popover/src/styles/rtl.cssr.mjs +5 -0
  275. package/es/popover/styles/dark.mjs +4 -0
  276. package/es/popover/styles/index.d.ts +1 -0
  277. package/es/popover/styles/index.mjs +2 -1
  278. package/es/popover/styles/light.d.ts +27 -2
  279. package/es/popover/styles/light.mjs +7 -2
  280. package/es/popover/styles/rtl.d.ts +2 -0
  281. package/es/popover/styles/rtl.mjs +7 -0
  282. package/es/popselect/src/Popselect.d.ts +217 -76
  283. package/es/popselect/src/PopselectPanel.d.ts +55 -7
  284. package/es/popselect/styles/light.d.ts +14 -1
  285. package/es/progress/src/Circle.d.ts +1 -1
  286. package/es/progress/src/Circle.mjs +14 -3
  287. package/es/progress/src/Progress.d.ts +1 -1
  288. package/es/radio/src/Radio.mjs +5 -5
  289. package/es/radio/src/RadioButton.d.ts +2 -2
  290. package/es/radio/src/styles/radio.cssr.mjs +3 -7
  291. package/es/rate/src/Rate.d.ts +1 -1
  292. package/es/result/src/Result.d.ts +1 -1
  293. package/es/select/src/Select.d.ts +164 -21
  294. package/es/select/styles/light.d.ts +14 -1
  295. package/es/styles.d.ts +3 -3
  296. package/es/styles.mjs +3 -3
  297. package/es/tabs/src/Tab.d.ts +3 -3
  298. package/es/tabs/src/Tabs.d.ts +1 -1
  299. package/es/tabs/src/Tabs.mjs +1 -1
  300. package/es/tabs/src/styles/index.cssr.mjs +4 -4
  301. package/es/tag/src/Tag.d.ts +1 -1
  302. package/es/theme-editor/src/ThemeEditor.mjs +1 -1
  303. package/es/themes/dark.mjs +2 -0
  304. package/es/themes/light.mjs +2 -0
  305. package/es/time-picker/src/Panel.d.ts +59 -11
  306. package/es/time-picker/src/TimePicker.d.ts +156 -15
  307. package/es/time-picker/styles/light.d.ts +14 -1
  308. package/es/timeline/src/TimelineItem.d.ts +1 -1
  309. package/es/tooltip/src/Tooltip.d.ts +166 -25
  310. package/es/tooltip/styles/light.d.ts +16 -3
  311. package/es/transfer/src/Transfer.d.ts +154 -13
  312. package/es/transfer/src/TransferFilter.d.ts +52 -4
  313. package/es/transfer/src/TransferList.d.ts +52 -4
  314. package/es/transfer/src/TransferListItem.d.ts +52 -4
  315. package/es/transfer/styles/light.d.ts +14 -1
  316. package/es/tree/src/Tree.d.ts +42 -38
  317. package/es/tree/src/Tree.mjs +3 -1
  318. package/es/tree/src/TreeNode.d.ts +2 -2
  319. package/es/tree/src/TreeNodeContent.d.ts +3 -3
  320. package/es/tree/src/styles/index.cssr.mjs +7 -2
  321. package/es/tree/styles/light.d.ts +4 -4
  322. package/es/tree-select/src/TreeSelect.d.ts +172 -29
  323. package/es/tree-select/styles/index.d.ts +1 -0
  324. package/es/tree-select/styles/index.mjs +2 -1
  325. package/es/tree-select/styles/light.d.ts +22 -9
  326. package/es/tree-select/styles/rtl.d.ts +2 -0
  327. package/es/tree-select/styles/rtl.mjs +11 -0
  328. package/es/typography/src/create-header.d.ts +1 -1
  329. package/es/typography/src/headers.d.ts +6 -6
  330. package/es/upload/src/Upload.d.ts +1 -0
  331. package/es/upload/src/Upload.mjs +6 -3
  332. package/es/upload/src/UploadFile.d.ts +8 -6
  333. package/es/upload/src/UploadFile.mjs +1 -1
  334. package/es/upload/src/icons.d.ts +2 -2
  335. package/es/upload/src/icons.mjs +22 -18
  336. package/es/upload/src/styles/rtl.cssr.d.ts +2 -0
  337. package/es/upload/src/styles/rtl.cssr.mjs +5 -0
  338. package/es/upload/styles/index.d.ts +1 -0
  339. package/es/upload/styles/index.mjs +2 -1
  340. package/es/upload/styles/rtl.d.ts +2 -0
  341. package/es/upload/styles/rtl.mjs +5 -0
  342. package/es/version.d.ts +1 -1
  343. package/es/version.mjs +1 -1
  344. package/es/virtual-list/src/VirtualList.d.ts +1 -1
  345. package/generic/AvatarGroup.vue +26 -0
  346. package/generic/index.ts +1 -0
  347. package/lib/_internal/icon/src/styles/index.cssr.js +0 -1
  348. package/lib/_internal/scrollbar/src/Scrollbar.d.ts +3 -3
  349. package/lib/_internal/select-menu/src/SelectMenu.d.ts +4 -4
  350. package/lib/_internal/selection/src/Selection.d.ts +115 -13
  351. package/lib/_internal/selection/styles/light.d.ts +14 -1
  352. package/lib/_utils/index.d.ts +1 -0
  353. package/lib/_utils/naive/prop.d.ts +19 -10
  354. package/lib/_utils/naive/prop.js +21 -21
  355. package/lib/_utils/ts/ts.d.ts +3 -0
  356. package/lib/alert/src/Alert.d.ts +2 -2
  357. package/lib/anchor/index.d.ts +1 -0
  358. package/lib/anchor/src/AnchorAdapter.d.ts +1 -1
  359. package/lib/anchor/src/AnchorAdapter.js +17 -7
  360. package/lib/anchor/src/BaseAnchor.js +30 -5
  361. package/lib/anchor/src/Link.d.ts +3 -2
  362. package/lib/anchor/src/Link.js +4 -1
  363. package/lib/anchor/src/public-types.d.ts +5 -0
  364. package/lib/anchor/src/public-types.js +2 -0
  365. package/lib/auto-complete/src/AutoComplete.d.ts +155 -14
  366. package/lib/auto-complete/styles/light.d.ts +14 -1
  367. package/lib/avatar-group/index.d.ts +3 -2
  368. package/lib/avatar-group/src/AvatarGroup.d.ts +1 -4
  369. package/lib/avatar-group/src/generic-public-types.d.ts +18 -0
  370. package/lib/avatar-group/src/generic-public-types.js +2 -0
  371. package/lib/avatar-group/src/public-types.d.ts +10 -0
  372. package/lib/avatar-group/src/public-types.js +2 -0
  373. package/lib/back-top/src/BackTop.d.ts +1 -1
  374. package/lib/badge/src/Badge.d.ts +1 -1
  375. package/lib/button/src/Button.d.ts +1 -1
  376. package/lib/card/src/Card.d.ts +7 -2
  377. package/lib/card/src/Card.js +3 -2
  378. package/lib/carousel/src/Carousel.d.ts +4 -4
  379. package/lib/carousel/src/Carousel.js +19 -9
  380. package/lib/carousel/src/CarouselDots.d.ts +2 -2
  381. package/lib/cascader/src/Cascader.d.ts +163 -20
  382. package/lib/cascader/src/CascaderMenu.d.ts +56 -4
  383. package/lib/cascader/src/CascaderOption.d.ts +56 -4
  384. package/lib/cascader/src/CascaderSelectMenu.d.ts +57 -5
  385. package/lib/cascader/src/CascaderSubmenu.d.ts +56 -4
  386. package/lib/cascader/styles/light.d.ts +14 -1
  387. package/lib/color-picker/src/ColorInputUnit.d.ts +26 -2
  388. package/lib/color-picker/src/ColorPicker.d.ts +128 -11
  389. package/lib/color-picker/src/ColorPickerTrigger.js +2 -1
  390. package/lib/color-picker/src/utils.d.ts +2 -0
  391. package/lib/color-picker/src/utils.js +26 -0
  392. package/lib/color-picker/styles/light.d.ts +14 -1
  393. package/lib/components.d.ts +1 -0
  394. package/lib/components.js +1 -0
  395. package/lib/config-provider/src/ConfigProvider.d.ts +1 -1
  396. package/lib/config-provider/src/internal-interface.d.ts +2 -0
  397. package/lib/data-table/src/DataTable.d.ts +674 -52
  398. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +333 -25
  399. package/lib/data-table/src/HeaderButton/FilterMenu.d.ts +332 -24
  400. package/lib/data-table/src/TableParts/Body.d.ts +332 -24
  401. package/lib/data-table/src/TableParts/Header.d.ts +332 -24
  402. package/lib/data-table/src/interface.d.ts +253 -18
  403. package/lib/data-table/src/use-sorter.d.ts +2 -5
  404. package/lib/data-table/src/use-table-data.d.ts +1 -4
  405. package/lib/data-table/src/utils.js +2 -1
  406. package/lib/data-table/styles/light.d.ts +84 -6
  407. package/lib/date-picker/src/DatePicker.d.ts +229 -23
  408. package/lib/date-picker/src/DatePicker.js +1 -1
  409. package/lib/date-picker/src/panel/date.d.ts +110 -10
  410. package/lib/date-picker/src/panel/daterange.d.ts +111 -11
  411. package/lib/date-picker/src/panel/datetime.d.ts +110 -10
  412. package/lib/date-picker/src/panel/datetime.js +1 -1
  413. package/lib/date-picker/src/panel/datetimerange.d.ts +111 -11
  414. package/lib/date-picker/src/panel/datetimerange.js +2 -2
  415. package/lib/date-picker/src/panel/month.d.ts +110 -10
  416. package/lib/date-picker/src/panel/monthrange.d.ts +111 -11
  417. package/lib/date-picker/src/panel/panelHeader.d.ts +436 -36
  418. package/lib/date-picker/src/panel/use-calendar.d.ts +109 -9
  419. package/lib/date-picker/src/panel/use-dual-calendar.d.ts +110 -10
  420. package/lib/date-picker/src/panel/use-dual-calendar.js +3 -3
  421. package/lib/date-picker/src/panel/use-panel-common.d.ts +109 -9
  422. package/lib/date-picker/src/panel/use-panel-common.js +1 -1
  423. package/lib/date-picker/src/props.d.ts +85 -7
  424. package/lib/date-picker/src/props.js +1 -1
  425. package/lib/date-picker/src/utils.d.ts +2 -1
  426. package/lib/date-picker/src/utils.js +5 -1
  427. package/lib/date-picker/styles/light.d.ts +28 -2
  428. package/lib/dialog/src/Dialog.d.ts +5 -2
  429. package/lib/dialog/src/Dialog.js +1 -1
  430. package/lib/dialog/src/DialogEnvironment.d.ts +11 -4
  431. package/lib/dialog/src/DialogEnvironment.js +3 -3
  432. package/lib/dialog/src/DialogProvider.d.ts +38 -34
  433. package/lib/dialog/src/dialogProps.d.ts +2 -1
  434. package/lib/dialog/src/dialogProps.js +2 -1
  435. package/lib/drawer/src/Drawer.d.ts +4 -4
  436. package/lib/drawer/src/DrawerBodyWrapper.d.ts +1 -1
  437. package/lib/dropdown/src/Dropdown.d.ts +162 -21
  438. package/lib/dropdown/src/DropdownMenu.d.ts +2 -2
  439. package/lib/dropdown/styles/light.d.ts +14 -1
  440. package/lib/dynamic-input/src/DynamicInput.d.ts +153 -12
  441. package/lib/dynamic-input/src/InputPreset.d.ts +52 -4
  442. package/lib/dynamic-input/src/PairPreset.d.ts +52 -4
  443. package/lib/dynamic-input/styles/light.d.ts +14 -1
  444. package/lib/dynamic-tags/src/DynamicTags.d.ts +153 -12
  445. package/lib/dynamic-tags/styles/light.d.ts +14 -1
  446. package/lib/ellipsis/src/Ellipsis.d.ts +154 -11
  447. package/lib/ellipsis/src/PerformantEllipsis.d.ts +84 -6
  448. package/lib/ellipsis/src/PerformantEllipsis.js +17 -7
  449. package/lib/ellipsis/styles/light.d.ts +14 -1
  450. package/lib/empty/src/Empty.d.ts +1 -1
  451. package/lib/form/src/FormItem.d.ts +8 -2
  452. package/lib/form/src/FormItem.js +3 -2
  453. package/lib/form/src/FormItemCol.d.ts +7 -1
  454. package/lib/form/src/FormItemCol.js +17 -7
  455. package/lib/form/src/FormItemGridItem.d.ts +7 -1
  456. package/lib/form/src/FormItemGridItem.js +17 -7
  457. package/lib/form/src/FormItemRow.d.ts +7 -1
  458. package/lib/form/src/FormItemRow.js +17 -7
  459. package/lib/form/src/utils.d.ts +1 -1
  460. package/lib/gradient-text/src/GradientText.d.ts +2 -2
  461. package/lib/grid/src/GridItem.d.ts +1 -1
  462. package/lib/heatmap/index.d.ts +6 -0
  463. package/lib/heatmap/index.js +27 -0
  464. package/lib/heatmap/src/ColorIndicator.d.ts +25 -0
  465. package/lib/heatmap/src/ColorIndicator.js +27 -0
  466. package/lib/heatmap/src/Heatmap.d.ts +385 -0
  467. package/lib/heatmap/src/Heatmap.js +248 -0
  468. package/lib/heatmap/src/Rect.d.ts +57 -0
  469. package/lib/heatmap/src/Rect.js +64 -0
  470. package/lib/heatmap/src/animationStyle.d.ts +6 -0
  471. package/lib/heatmap/src/animationStyle.js +52 -0
  472. package/lib/heatmap/src/interface.d.ts +7 -0
  473. package/lib/heatmap/src/interface.js +2 -0
  474. package/lib/heatmap/src/public-types.d.ts +16 -0
  475. package/lib/heatmap/src/public-types.js +2 -0
  476. package/lib/heatmap/src/styles/index.cssr.d.ts +2 -0
  477. package/lib/heatmap/src/styles/index.cssr.js +107 -0
  478. package/lib/heatmap/src/styles/rtl.cssr.d.ts +2 -0
  479. package/lib/heatmap/src/styles/rtl.cssr.js +9 -0
  480. package/lib/heatmap/src/theme.d.ts +8 -0
  481. package/lib/heatmap/src/theme.js +10 -0
  482. package/lib/heatmap/src/utils/index.d.ts +32 -0
  483. package/lib/heatmap/src/utils/index.js +135 -0
  484. package/lib/heatmap/styles/dark.d.ts +3 -0
  485. package/lib/heatmap/styles/dark.js +13 -0
  486. package/lib/heatmap/styles/index.d.ts +3 -0
  487. package/lib/heatmap/styles/index.js +10 -0
  488. package/lib/heatmap/styles/light.d.ts +31 -0
  489. package/lib/heatmap/styles/light.js +39 -0
  490. package/lib/heatmap/styles/rtl.d.ts +2 -0
  491. package/lib/heatmap/styles/rtl.js +11 -0
  492. package/lib/highlight/src/utils.js +10 -21
  493. package/lib/icon/src/styles/index.cssr.js +0 -1
  494. package/lib/image/index.d.ts +3 -1
  495. package/lib/image/index.js +4 -1
  496. package/lib/image/src/Image.d.ts +133 -23
  497. package/lib/image/src/Image.js +43 -23
  498. package/lib/image/src/ImageGroup.d.ts +200 -35
  499. package/lib/image/src/ImageGroup.js +111 -26
  500. package/lib/image/src/ImagePreview.d.ts +258 -23
  501. package/lib/image/src/ImagePreview.js +60 -33
  502. package/lib/image/src/interface.d.ts +42 -3
  503. package/lib/image/src/public-types.d.ts +14 -0
  504. package/lib/image/styles/light.d.ts +14 -1
  505. package/lib/input/src/Input.d.ts +146 -12
  506. package/lib/input/src/Input.js +24 -12
  507. package/lib/input/src/InputGroupLabel.d.ts +129 -22
  508. package/lib/input/src/InputGroupLabel.js +8 -6
  509. package/lib/input/styles/dark.d.ts +139 -2
  510. package/lib/input/styles/dark.js +35 -29
  511. package/lib/input/styles/light.d.ts +76 -3
  512. package/lib/input/styles/light.js +7 -2
  513. package/lib/input-number/src/InputNumber.d.ts +152 -11
  514. package/lib/input-number/styles/light.d.ts +14 -1
  515. package/lib/input-otp/src/InputOtp.d.ts +158 -12
  516. package/lib/input-otp/src/InputOtp.js +12 -16
  517. package/lib/input-otp/src/public-types.d.ts +1 -0
  518. package/lib/input-otp/src/styles/index.cssr.js +11 -2
  519. package/lib/input-otp/styles/dark.js +1 -1
  520. package/lib/input-otp/styles/light.d.ts +14 -1
  521. package/lib/layout/src/LayoutSider.d.ts +1 -1
  522. package/lib/legacy-transfer/src/Transfer.d.ts +154 -13
  523. package/lib/legacy-transfer/src/TransferFilter.d.ts +52 -4
  524. package/lib/legacy-transfer/src/TransferList.d.ts +52 -4
  525. package/lib/legacy-transfer/src/TransferListItem.d.ts +52 -4
  526. package/lib/legacy-transfer/styles/light.d.ts +14 -1
  527. package/lib/locales/common/arDZ.js +6 -0
  528. package/lib/locales/common/azAZ.js +6 -0
  529. package/lib/locales/common/csCZ.js +6 -0
  530. package/lib/locales/common/daDK.d.ts +3 -0
  531. package/lib/locales/common/daDK.js +132 -0
  532. package/lib/locales/common/deDE.js +6 -0
  533. package/lib/locales/common/enGB.js +6 -0
  534. package/lib/locales/common/enUS.d.ts +6 -0
  535. package/lib/locales/common/enUS.js +6 -0
  536. package/lib/locales/common/eo.js +6 -0
  537. package/lib/locales/common/esAR.js +6 -0
  538. package/lib/locales/common/etEE.js +6 -0
  539. package/lib/locales/common/faIR.js +6 -0
  540. package/lib/locales/common/frFR.js +6 -0
  541. package/lib/locales/common/idID.js +6 -0
  542. package/lib/locales/common/itIT.js +6 -0
  543. package/lib/locales/common/jaJP.js +6 -0
  544. package/lib/locales/common/kmKH.js +6 -0
  545. package/lib/locales/common/koKR.js +6 -0
  546. package/lib/locales/common/nbNO.js +6 -0
  547. package/lib/locales/common/nlNL.js +6 -0
  548. package/lib/locales/common/plPL.js +6 -0
  549. package/lib/locales/common/ptBR.js +6 -0
  550. package/lib/locales/common/ruRU.js +6 -0
  551. package/lib/locales/common/skSK.js +6 -0
  552. package/lib/locales/common/svSE.js +8 -2
  553. package/lib/locales/common/thTH.js +6 -0
  554. package/lib/locales/common/trTR.js +6 -0
  555. package/lib/locales/common/ugCN.js +6 -0
  556. package/lib/locales/common/ukUA.js +6 -0
  557. package/lib/locales/common/uzUZ.js +6 -0
  558. package/lib/locales/common/viVN.js +6 -0
  559. package/lib/locales/common/zhCN.js +6 -0
  560. package/lib/locales/common/zhTW.js +6 -0
  561. package/lib/locales/date/daDK.d.ts +3 -0
  562. package/lib/locales/date/daDK.js +8 -0
  563. package/lib/locales/index.d.ts +2 -0
  564. package/lib/locales/index.js +6 -2
  565. package/lib/log/src/Log.d.ts +1 -1
  566. package/lib/marquee/src/Marquee.js +4 -3
  567. package/lib/mention/src/Mention.d.ts +155 -14
  568. package/lib/mention/styles/light.d.ts +14 -1
  569. package/lib/menu/src/Menu.d.ts +314 -28
  570. package/lib/menu/src/MenuOption.d.ts +113 -9
  571. package/lib/menu/src/MenuOption.js +6 -4
  572. package/lib/menu/src/MenuOptionContent.d.ts +1 -1
  573. package/lib/menu/src/MenuOptionGroup.d.ts +1 -1
  574. package/lib/menu/src/MenuOptionGroup.js +8 -2
  575. package/lib/menu/src/Submenu.d.ts +114 -10
  576. package/lib/menu/src/use-menu-child.d.ts +2 -0
  577. package/lib/menu/src/use-menu-child.js +2 -1
  578. package/lib/menu/styles/light.d.ts +28 -2
  579. package/lib/message/src/Message.d.ts +1 -0
  580. package/lib/message/src/Message.js +3 -2
  581. package/lib/message/src/MessageProvider.d.ts +10 -1
  582. package/lib/message/src/styles/index.cssr.js +1 -0
  583. package/lib/message/styles/light.d.ts +1 -0
  584. package/lib/message/styles/light.js +1 -1
  585. package/lib/modal/src/BodyWrapper.d.ts +10 -4
  586. package/lib/modal/src/BodyWrapper.js +7 -3
  587. package/lib/modal/src/Modal.d.ts +28 -11
  588. package/lib/modal/src/Modal.js +10 -4
  589. package/lib/modal/src/ModalEnvironment.d.ts +22 -10
  590. package/lib/modal/src/ModalEnvironment.js +18 -8
  591. package/lib/modal/src/ModalProvider.d.ts +2 -1
  592. package/lib/modal/src/ModalProvider.js +4 -2
  593. package/lib/modal/src/presetProps.d.ts +2 -1
  594. package/lib/modal/src/styles/index.cssr.js +3 -1
  595. package/lib/notification/src/Notification.d.ts +2 -2
  596. package/lib/notification/src/NotificationEnvironment.d.ts +1 -1
  597. package/lib/notification/src/NotificationProvider.d.ts +5 -5
  598. package/lib/pagination/src/Pagination.d.ts +460 -33
  599. package/lib/pagination/styles/light.d.ts +42 -3
  600. package/lib/popconfirm/src/Popconfirm.d.ts +159 -18
  601. package/lib/popconfirm/src/Popconfirm.js +20 -15
  602. package/lib/popconfirm/src/PopconfirmPanel.d.ts +1 -1
  603. package/lib/popconfirm/styles/light.d.ts +14 -1
  604. package/lib/popover/src/Popover.d.ts +133 -16
  605. package/lib/popover/src/Popover.js +17 -7
  606. package/lib/popover/src/PopoverBody.d.ts +129 -12
  607. package/lib/popover/src/PopoverBody.js +5 -2
  608. package/lib/popover/src/styles/rtl.cssr.d.ts +2 -0
  609. package/lib/popover/src/styles/rtl.cssr.js +10 -0
  610. package/lib/popover/styles/dark.js +4 -0
  611. package/lib/popover/styles/index.d.ts +1 -0
  612. package/lib/popover/styles/index.js +3 -1
  613. package/lib/popover/styles/light.d.ts +27 -2
  614. package/lib/popover/styles/light.js +7 -2
  615. package/lib/popover/styles/rtl.d.ts +2 -0
  616. package/lib/popover/styles/rtl.js +13 -0
  617. package/lib/popselect/src/Popselect.d.ts +213 -72
  618. package/lib/popselect/src/Popselect.js +17 -7
  619. package/lib/popselect/src/PopselectPanel.d.ts +55 -7
  620. package/lib/popselect/styles/light.d.ts +14 -1
  621. package/lib/preset.js +17 -7
  622. package/lib/progress/src/Circle.d.ts +1 -1
  623. package/lib/progress/src/Circle.js +11 -2
  624. package/lib/progress/src/Progress.d.ts +1 -1
  625. package/lib/radio/src/Radio.js +2 -2
  626. package/lib/radio/src/RadioButton.d.ts +2 -2
  627. package/lib/radio/src/styles/radio.cssr.js +3 -7
  628. package/lib/rate/src/Rate.d.ts +1 -1
  629. package/lib/result/src/Result.d.ts +1 -1
  630. package/lib/select/src/Select.d.ts +164 -21
  631. package/lib/select/styles/light.d.ts +14 -1
  632. package/lib/styles.d.ts +3 -3
  633. package/lib/styles.js +5 -2
  634. package/lib/tabs/src/Tab.d.ts +3 -3
  635. package/lib/tabs/src/Tabs.d.ts +1 -1
  636. package/lib/tabs/src/styles/index.cssr.js +4 -4
  637. package/lib/tag/src/Tag.d.ts +1 -1
  638. package/lib/themes/dark.js +103 -101
  639. package/lib/themes/light.js +102 -100
  640. package/lib/time-picker/src/Panel.d.ts +59 -11
  641. package/lib/time-picker/src/TimePicker.d.ts +156 -15
  642. package/lib/time-picker/styles/light.d.ts +14 -1
  643. package/lib/timeline/src/TimelineItem.d.ts +1 -1
  644. package/lib/tooltip/src/Tooltip.d.ts +159 -18
  645. package/lib/tooltip/styles/light.d.ts +14 -1
  646. package/lib/transfer/src/Transfer.d.ts +154 -13
  647. package/lib/transfer/src/TransferFilter.d.ts +52 -4
  648. package/lib/transfer/src/TransferList.d.ts +52 -4
  649. package/lib/transfer/src/TransferListItem.d.ts +52 -4
  650. package/lib/transfer/styles/light.d.ts +14 -1
  651. package/lib/tree/src/Tree.d.ts +42 -38
  652. package/lib/tree/src/Tree.js +4 -3
  653. package/lib/tree/src/TreeNode.d.ts +2 -2
  654. package/lib/tree/src/TreeNodeContent.d.ts +3 -3
  655. package/lib/tree/src/styles/index.cssr.js +7 -2
  656. package/lib/tree-select/src/TreeSelect.d.ts +169 -26
  657. package/lib/tree-select/styles/index.d.ts +1 -0
  658. package/lib/tree-select/styles/index.js +3 -1
  659. package/lib/tree-select/styles/light.d.ts +14 -1
  660. package/lib/tree-select/styles/rtl.d.ts +2 -0
  661. package/lib/tree-select/styles/rtl.js +20 -0
  662. package/lib/typography/src/create-header.d.ts +1 -1
  663. package/lib/typography/src/headers.d.ts +6 -6
  664. package/lib/upload/src/Upload.d.ts +1 -0
  665. package/lib/upload/src/Upload.js +4 -3
  666. package/lib/upload/src/UploadFile.d.ts +4 -2
  667. package/lib/upload/src/UploadFile.js +1 -1
  668. package/lib/upload/src/icons.d.ts +2 -2
  669. package/lib/upload/src/icons.js +12 -7
  670. package/lib/upload/src/styles/rtl.cssr.d.ts +2 -0
  671. package/lib/upload/src/styles/rtl.cssr.js +10 -0
  672. package/lib/upload/styles/index.d.ts +1 -0
  673. package/lib/upload/styles/index.js +3 -1
  674. package/lib/upload/styles/rtl.d.ts +2 -0
  675. package/lib/upload/styles/rtl.js +11 -0
  676. package/lib/version.d.ts +1 -1
  677. package/lib/version.js +1 -1
  678. package/lib/virtual-list/src/VirtualList.d.ts +1 -1
  679. package/package.json +30 -19
  680. package/volar.d.ts +24 -22
  681. package/web-types.json +599 -61
  682. package/es/avatar-group/src/interface.d.ts +0 -8
  683. package/lib/avatar-group/src/interface.d.ts +0 -8
  684. /package/es/{avatar-group/src/interface.mjs → _utils/ts/ts.mjs} +0 -0
  685. /package/lib/{avatar-group/src/interface.js → _utils/ts/ts.js} +0 -0
@@ -3,7 +3,7 @@ import { type SlotsType } from 'vue';
3
3
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
4
  readonly onUnstableColumnResize: import("vue").PropType<(resizedWidth: number, limitedWidth: number, column: import("./interface").TableBaseColumn, getColumnWidth: (key: import("./interface").ColumnKey) => number | undefined) => void>;
5
5
  readonly pagination: {
6
- readonly type: import("vue").PropType<false | import("../../pagination").PaginationProps>;
6
+ readonly type: import("vue").PropType<false | import("../..").PaginationProps>;
7
7
  readonly default: false;
8
8
  };
9
9
  readonly paginateSinglePage: {
@@ -106,10 +106,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
106
106
  readonly getCsvCell: import("vue").PropType<import("./publicTypes").DataTableGetCsvCell>;
107
107
  readonly getCsvHeader: import("vue").PropType<import("./publicTypes").DataTableGetCsvHeader>;
108
108
  readonly onLoad: import("vue").PropType<import("./interface").DataTableOnLoad>;
109
- readonly 'onUpdate:page': import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:page"]>;
110
- readonly onUpdatePage: import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:page"]>;
111
- readonly 'onUpdate:pageSize': import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:pageSize"]>;
112
- readonly onUpdatePageSize: import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:pageSize"]>;
109
+ readonly 'onUpdate:page': import("vue").PropType<import("../..").PaginationProps["onUpdate:page"]>;
110
+ readonly onUpdatePage: import("vue").PropType<import("../..").PaginationProps["onUpdate:page"]>;
111
+ readonly 'onUpdate:pageSize': import("vue").PropType<import("../..").PaginationProps["onUpdate:pageSize"]>;
112
+ readonly onUpdatePageSize: import("vue").PropType<import("../..").PaginationProps["onUpdate:pageSize"]>;
113
113
  readonly 'onUpdate:sorter': import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateSorter>>;
114
114
  readonly onUpdateSorter: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateSorter>>;
115
115
  readonly 'onUpdate:filters': import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateFilters>>;
@@ -119,8 +119,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
119
119
  readonly 'onUpdate:expandedRowKeys': import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateExpandedRowKeys>>;
120
120
  readonly onUpdateExpandedRowKeys: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateExpandedRowKeys>>;
121
121
  readonly onScroll: import("vue").PropType<(e: Event) => void>;
122
- readonly onPageChange: import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:page"]>;
123
- readonly onPageSizeChange: import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:pageSize"]>;
122
+ readonly onPageChange: import("vue").PropType<import("../..").PaginationProps["onUpdate:page"]>;
123
+ readonly onPageSizeChange: import("vue").PropType<import("../..").PaginationProps["onUpdate:pageSize"]>;
124
124
  readonly onSorterChange: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateSorter> | undefined>;
125
125
  readonly onFiltersChange: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateFilters> | undefined>;
126
126
  readonly onCheckedRowKeysChange: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateCheckedRowKeys> | undefined>;
@@ -597,7 +597,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
597
597
  arrowOffsetVertical: string;
598
598
  arrowHeight: string;
599
599
  padding: string;
600
- }, any>;
600
+ }, {
601
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
602
+ height: string;
603
+ width: string;
604
+ borderRadius: string;
605
+ color: string;
606
+ colorHover: string;
607
+ railInsetHorizontalBottom: string;
608
+ railInsetHorizontalTop: string;
609
+ railInsetVerticalRight: string;
610
+ railInsetVerticalLeft: string;
611
+ railColor: string;
612
+ }, any>;
613
+ }>;
601
614
  }>;
602
615
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
603
616
  optionFontSizeTiny: string;
@@ -728,7 +741,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
728
741
  paddingMedium: string;
729
742
  paddingLarge: string;
730
743
  clearSize: string;
731
- }, any>;
744
+ }, {
745
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
746
+ height: string;
747
+ width: string;
748
+ borderRadius: string;
749
+ color: string;
750
+ colorHover: string;
751
+ railInsetHorizontalBottom: string;
752
+ railInsetHorizontalTop: string;
753
+ railInsetVerticalRight: string;
754
+ railInsetVerticalLeft: string;
755
+ railColor: string;
756
+ }, any>;
757
+ }>;
732
758
  Popselect: import("../../_mixins").Theme<"Popselect", {
733
759
  menuBoxShadow: string;
734
760
  }, {
@@ -745,7 +771,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
745
771
  arrowOffsetVertical: string;
746
772
  arrowHeight: string;
747
773
  padding: string;
748
- }, any>;
774
+ }, {
775
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
776
+ height: string;
777
+ width: string;
778
+ borderRadius: string;
779
+ color: string;
780
+ colorHover: string;
781
+ railInsetHorizontalBottom: string;
782
+ railInsetHorizontalTop: string;
783
+ railInsetVerticalRight: string;
784
+ railInsetVerticalLeft: string;
785
+ railColor: string;
786
+ }, any>;
787
+ }>;
749
788
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
750
789
  optionFontSizeTiny: string;
751
790
  optionFontSizeSmall: string;
@@ -855,7 +894,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
855
894
  arrowOffsetVertical: string;
856
895
  arrowHeight: string;
857
896
  padding: string;
858
- }, any>;
897
+ }, {
898
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
899
+ height: string;
900
+ width: string;
901
+ borderRadius: string;
902
+ color: string;
903
+ colorHover: string;
904
+ railInsetHorizontalBottom: string;
905
+ railInsetHorizontalTop: string;
906
+ railInsetVerticalRight: string;
907
+ railInsetVerticalLeft: string;
908
+ railColor: string;
909
+ }, any>;
910
+ }>;
859
911
  Ellipsis: import("../../_mixins").Theme<"Ellipsis", unknown, {
860
912
  Tooltip: import("../../_mixins").Theme<"Tooltip", {
861
913
  borderRadius: string;
@@ -877,7 +929,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
877
929
  arrowOffsetVertical: string;
878
930
  arrowHeight: string;
879
931
  padding: string;
880
- }, any>;
932
+ }, {
933
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
934
+ height: string;
935
+ width: string;
936
+ borderRadius: string;
937
+ color: string;
938
+ colorHover: string;
939
+ railInsetHorizontalBottom: string;
940
+ railInsetHorizontalTop: string;
941
+ railInsetVerticalRight: string;
942
+ railInsetVerticalLeft: string;
943
+ railColor: string;
944
+ }, any>;
945
+ }>;
881
946
  }>;
882
947
  }>;
883
948
  Dropdown: import("../../_mixins").Theme<"Dropdown", {
@@ -948,7 +1013,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
948
1013
  arrowOffsetVertical: string;
949
1014
  arrowHeight: string;
950
1015
  padding: string;
951
- }, any>;
1016
+ }, {
1017
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1018
+ height: string;
1019
+ width: string;
1020
+ borderRadius: string;
1021
+ color: string;
1022
+ colorHover: string;
1023
+ railInsetHorizontalBottom: string;
1024
+ railInsetHorizontalTop: string;
1025
+ railInsetVerticalRight: string;
1026
+ railInsetVerticalLeft: string;
1027
+ railColor: string;
1028
+ }, any>;
1029
+ }>;
952
1030
  }>;
953
1031
  }>>;
954
1032
  readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DataTable", {
@@ -1424,7 +1502,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1424
1502
  arrowOffsetVertical: string;
1425
1503
  arrowHeight: string;
1426
1504
  padding: string;
1427
- }, any>;
1505
+ }, {
1506
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1507
+ height: string;
1508
+ width: string;
1509
+ borderRadius: string;
1510
+ color: string;
1511
+ colorHover: string;
1512
+ railInsetHorizontalBottom: string;
1513
+ railInsetHorizontalTop: string;
1514
+ railInsetVerticalRight: string;
1515
+ railInsetVerticalLeft: string;
1516
+ railColor: string;
1517
+ }, any>;
1518
+ }>;
1428
1519
  }>;
1429
1520
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1430
1521
  optionFontSizeTiny: string;
@@ -1555,7 +1646,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1555
1646
  paddingMedium: string;
1556
1647
  paddingLarge: string;
1557
1648
  clearSize: string;
1558
- }, any>;
1649
+ }, {
1650
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1651
+ height: string;
1652
+ width: string;
1653
+ borderRadius: string;
1654
+ color: string;
1655
+ colorHover: string;
1656
+ railInsetHorizontalBottom: string;
1657
+ railInsetHorizontalTop: string;
1658
+ railInsetVerticalRight: string;
1659
+ railInsetVerticalLeft: string;
1660
+ railColor: string;
1661
+ }, any>;
1662
+ }>;
1559
1663
  Popselect: import("../../_mixins").Theme<"Popselect", {
1560
1664
  menuBoxShadow: string;
1561
1665
  }, {
@@ -1572,7 +1676,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1572
1676
  arrowOffsetVertical: string;
1573
1677
  arrowHeight: string;
1574
1678
  padding: string;
1575
- }, any>;
1679
+ }, {
1680
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1681
+ height: string;
1682
+ width: string;
1683
+ borderRadius: string;
1684
+ color: string;
1685
+ colorHover: string;
1686
+ railInsetHorizontalBottom: string;
1687
+ railInsetHorizontalTop: string;
1688
+ railInsetVerticalRight: string;
1689
+ railInsetVerticalLeft: string;
1690
+ railColor: string;
1691
+ }, any>;
1692
+ }>;
1576
1693
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1577
1694
  optionFontSizeTiny: string;
1578
1695
  optionFontSizeSmall: string;
@@ -1682,7 +1799,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1682
1799
  arrowOffsetVertical: string;
1683
1800
  arrowHeight: string;
1684
1801
  padding: string;
1685
- }, any>;
1802
+ }, {
1803
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1804
+ height: string;
1805
+ width: string;
1806
+ borderRadius: string;
1807
+ color: string;
1808
+ colorHover: string;
1809
+ railInsetHorizontalBottom: string;
1810
+ railInsetHorizontalTop: string;
1811
+ railInsetVerticalRight: string;
1812
+ railInsetVerticalLeft: string;
1813
+ railColor: string;
1814
+ }, any>;
1815
+ }>;
1686
1816
  Ellipsis: import("../../_mixins").Theme<"Ellipsis", unknown, {
1687
1817
  Tooltip: import("../../_mixins").Theme<"Tooltip", {
1688
1818
  borderRadius: string;
@@ -1704,7 +1834,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1704
1834
  arrowOffsetVertical: string;
1705
1835
  arrowHeight: string;
1706
1836
  padding: string;
1707
- }, any>;
1837
+ }, {
1838
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1839
+ height: string;
1840
+ width: string;
1841
+ borderRadius: string;
1842
+ color: string;
1843
+ colorHover: string;
1844
+ railInsetHorizontalBottom: string;
1845
+ railInsetHorizontalTop: string;
1846
+ railInsetVerticalRight: string;
1847
+ railInsetVerticalLeft: string;
1848
+ railColor: string;
1849
+ }, any>;
1850
+ }>;
1708
1851
  }>;
1709
1852
  }>;
1710
1853
  Dropdown: import("../../_mixins").Theme<"Dropdown", {
@@ -1775,7 +1918,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1775
1918
  arrowOffsetVertical: string;
1776
1919
  arrowHeight: string;
1777
1920
  padding: string;
1778
- }, any>;
1921
+ }, {
1922
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1923
+ height: string;
1924
+ width: string;
1925
+ borderRadius: string;
1926
+ color: string;
1927
+ colorHover: string;
1928
+ railInsetHorizontalBottom: string;
1929
+ railInsetHorizontalTop: string;
1930
+ railInsetVerticalRight: string;
1931
+ railInsetVerticalLeft: string;
1932
+ railColor: string;
1933
+ }, any>;
1934
+ }>;
1779
1935
  }>;
1780
1936
  }>>>;
1781
1937
  readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DataTable", {
@@ -2251,7 +2407,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2251
2407
  arrowOffsetVertical: string;
2252
2408
  arrowHeight: string;
2253
2409
  padding: string;
2254
- }, any>;
2410
+ }, {
2411
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2412
+ height: string;
2413
+ width: string;
2414
+ borderRadius: string;
2415
+ color: string;
2416
+ colorHover: string;
2417
+ railInsetHorizontalBottom: string;
2418
+ railInsetHorizontalTop: string;
2419
+ railInsetVerticalRight: string;
2420
+ railInsetVerticalLeft: string;
2421
+ railColor: string;
2422
+ }, any>;
2423
+ }>;
2255
2424
  }>;
2256
2425
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2257
2426
  optionFontSizeTiny: string;
@@ -2382,7 +2551,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2382
2551
  paddingMedium: string;
2383
2552
  paddingLarge: string;
2384
2553
  clearSize: string;
2385
- }, any>;
2554
+ }, {
2555
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2556
+ height: string;
2557
+ width: string;
2558
+ borderRadius: string;
2559
+ color: string;
2560
+ colorHover: string;
2561
+ railInsetHorizontalBottom: string;
2562
+ railInsetHorizontalTop: string;
2563
+ railInsetVerticalRight: string;
2564
+ railInsetVerticalLeft: string;
2565
+ railColor: string;
2566
+ }, any>;
2567
+ }>;
2386
2568
  Popselect: import("../../_mixins").Theme<"Popselect", {
2387
2569
  menuBoxShadow: string;
2388
2570
  }, {
@@ -2399,7 +2581,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2399
2581
  arrowOffsetVertical: string;
2400
2582
  arrowHeight: string;
2401
2583
  padding: string;
2402
- }, any>;
2584
+ }, {
2585
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2586
+ height: string;
2587
+ width: string;
2588
+ borderRadius: string;
2589
+ color: string;
2590
+ colorHover: string;
2591
+ railInsetHorizontalBottom: string;
2592
+ railInsetHorizontalTop: string;
2593
+ railInsetVerticalRight: string;
2594
+ railInsetVerticalLeft: string;
2595
+ railColor: string;
2596
+ }, any>;
2597
+ }>;
2403
2598
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
2404
2599
  optionFontSizeTiny: string;
2405
2600
  optionFontSizeSmall: string;
@@ -2509,7 +2704,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2509
2704
  arrowOffsetVertical: string;
2510
2705
  arrowHeight: string;
2511
2706
  padding: string;
2512
- }, any>;
2707
+ }, {
2708
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2709
+ height: string;
2710
+ width: string;
2711
+ borderRadius: string;
2712
+ color: string;
2713
+ colorHover: string;
2714
+ railInsetHorizontalBottom: string;
2715
+ railInsetHorizontalTop: string;
2716
+ railInsetVerticalRight: string;
2717
+ railInsetVerticalLeft: string;
2718
+ railColor: string;
2719
+ }, any>;
2720
+ }>;
2513
2721
  Ellipsis: import("../../_mixins").Theme<"Ellipsis", unknown, {
2514
2722
  Tooltip: import("../../_mixins").Theme<"Tooltip", {
2515
2723
  borderRadius: string;
@@ -2531,7 +2739,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2531
2739
  arrowOffsetVertical: string;
2532
2740
  arrowHeight: string;
2533
2741
  padding: string;
2534
- }, any>;
2742
+ }, {
2743
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2744
+ height: string;
2745
+ width: string;
2746
+ borderRadius: string;
2747
+ color: string;
2748
+ colorHover: string;
2749
+ railInsetHorizontalBottom: string;
2750
+ railInsetHorizontalTop: string;
2751
+ railInsetVerticalRight: string;
2752
+ railInsetVerticalLeft: string;
2753
+ railColor: string;
2754
+ }, any>;
2755
+ }>;
2535
2756
  }>;
2536
2757
  }>;
2537
2758
  Dropdown: import("../../_mixins").Theme<"Dropdown", {
@@ -2602,7 +2823,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2602
2823
  arrowOffsetVertical: string;
2603
2824
  arrowHeight: string;
2604
2825
  padding: string;
2605
- }, any>;
2826
+ }, {
2827
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2828
+ height: string;
2829
+ width: string;
2830
+ borderRadius: string;
2831
+ color: string;
2832
+ colorHover: string;
2833
+ railInsetHorizontalBottom: string;
2834
+ railInsetHorizontalTop: string;
2835
+ railInsetVerticalRight: string;
2836
+ railInsetVerticalLeft: string;
2837
+ railColor: string;
2838
+ }, any>;
2839
+ }>;
2606
2840
  }>;
2607
2841
  }>>>;
2608
2842
  }>, {
@@ -3102,7 +3336,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3102
3336
  arrowOffsetVertical: string;
3103
3337
  arrowHeight: string;
3104
3338
  padding: string;
3105
- }, any>;
3339
+ }, {
3340
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3341
+ height: string;
3342
+ width: string;
3343
+ borderRadius: string;
3344
+ color: string;
3345
+ colorHover: string;
3346
+ railInsetHorizontalBottom: string;
3347
+ railInsetHorizontalTop: string;
3348
+ railInsetVerticalRight: string;
3349
+ railInsetVerticalLeft: string;
3350
+ railColor: string;
3351
+ }, any>;
3352
+ }>;
3106
3353
  }>;
3107
3354
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
3108
3355
  optionFontSizeTiny: string;
@@ -3233,7 +3480,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3233
3480
  paddingMedium: string;
3234
3481
  paddingLarge: string;
3235
3482
  clearSize: string;
3236
- }, any>;
3483
+ }, {
3484
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3485
+ height: string;
3486
+ width: string;
3487
+ borderRadius: string;
3488
+ color: string;
3489
+ colorHover: string;
3490
+ railInsetHorizontalBottom: string;
3491
+ railInsetHorizontalTop: string;
3492
+ railInsetVerticalRight: string;
3493
+ railInsetVerticalLeft: string;
3494
+ railColor: string;
3495
+ }, any>;
3496
+ }>;
3237
3497
  Popselect: import("../../_mixins").Theme<"Popselect", {
3238
3498
  menuBoxShadow: string;
3239
3499
  }, {
@@ -3250,7 +3510,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3250
3510
  arrowOffsetVertical: string;
3251
3511
  arrowHeight: string;
3252
3512
  padding: string;
3253
- }, any>;
3513
+ }, {
3514
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3515
+ height: string;
3516
+ width: string;
3517
+ borderRadius: string;
3518
+ color: string;
3519
+ colorHover: string;
3520
+ railInsetHorizontalBottom: string;
3521
+ railInsetHorizontalTop: string;
3522
+ railInsetVerticalRight: string;
3523
+ railInsetVerticalLeft: string;
3524
+ railColor: string;
3525
+ }, any>;
3526
+ }>;
3254
3527
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
3255
3528
  optionFontSizeTiny: string;
3256
3529
  optionFontSizeSmall: string;
@@ -3360,7 +3633,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3360
3633
  arrowOffsetVertical: string;
3361
3634
  arrowHeight: string;
3362
3635
  padding: string;
3363
- }, any>;
3636
+ }, {
3637
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3638
+ height: string;
3639
+ width: string;
3640
+ borderRadius: string;
3641
+ color: string;
3642
+ colorHover: string;
3643
+ railInsetHorizontalBottom: string;
3644
+ railInsetHorizontalTop: string;
3645
+ railInsetVerticalRight: string;
3646
+ railInsetVerticalLeft: string;
3647
+ railColor: string;
3648
+ }, any>;
3649
+ }>;
3364
3650
  Ellipsis: import("../../_mixins").Theme<"Ellipsis", unknown, {
3365
3651
  Tooltip: import("../../_mixins").Theme<"Tooltip", {
3366
3652
  borderRadius: string;
@@ -3382,7 +3668,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3382
3668
  arrowOffsetVertical: string;
3383
3669
  arrowHeight: string;
3384
3670
  padding: string;
3385
- }, any>;
3671
+ }, {
3672
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3673
+ height: string;
3674
+ width: string;
3675
+ borderRadius: string;
3676
+ color: string;
3677
+ colorHover: string;
3678
+ railInsetHorizontalBottom: string;
3679
+ railInsetHorizontalTop: string;
3680
+ railInsetVerticalRight: string;
3681
+ railInsetVerticalLeft: string;
3682
+ railColor: string;
3683
+ }, any>;
3684
+ }>;
3386
3685
  }>;
3387
3686
  }>;
3388
3687
  Dropdown: import("../../_mixins").Theme<"Dropdown", {
@@ -3453,7 +3752,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3453
3752
  arrowOffsetVertical: string;
3454
3753
  arrowHeight: string;
3455
3754
  padding: string;
3456
- }, any>;
3755
+ }, {
3756
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3757
+ height: string;
3758
+ width: string;
3759
+ borderRadius: string;
3760
+ color: string;
3761
+ colorHover: string;
3762
+ railInsetHorizontalBottom: string;
3763
+ railInsetHorizontalTop: string;
3764
+ railInsetVerticalRight: string;
3765
+ railInsetVerticalLeft: string;
3766
+ railColor: string;
3767
+ }, any>;
3768
+ }>;
3457
3769
  }>;
3458
3770
  };
3459
3771
  peerOverrides: {
@@ -3545,7 +3857,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3545
3857
  arrowOffsetVertical: string;
3546
3858
  arrowHeight: string;
3547
3859
  padding: string;
3548
- }, any>;
3860
+ }, {
3861
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3862
+ height: string;
3863
+ width: string;
3864
+ borderRadius: string;
3865
+ color: string;
3866
+ colorHover: string;
3867
+ railInsetHorizontalBottom: string;
3868
+ railInsetHorizontalTop: string;
3869
+ railInsetVerticalRight: string;
3870
+ railInsetVerticalLeft: string;
3871
+ railColor: string;
3872
+ }, any>;
3873
+ }>;
3549
3874
  }>;
3550
3875
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
3551
3876
  optionFontSizeTiny: string;
@@ -3676,7 +4001,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3676
4001
  paddingMedium: string;
3677
4002
  paddingLarge: string;
3678
4003
  clearSize: string;
3679
- }, any>> | undefined;
4004
+ }, {
4005
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4006
+ height: string;
4007
+ width: string;
4008
+ borderRadius: string;
4009
+ color: string;
4010
+ colorHover: string;
4011
+ railInsetHorizontalBottom: string;
4012
+ railInsetHorizontalTop: string;
4013
+ railInsetVerticalRight: string;
4014
+ railInsetVerticalLeft: string;
4015
+ railColor: string;
4016
+ }, any>;
4017
+ }>> | undefined;
3680
4018
  Popselect?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Popselect", {
3681
4019
  menuBoxShadow: string;
3682
4020
  }, {
@@ -3693,7 +4031,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3693
4031
  arrowOffsetVertical: string;
3694
4032
  arrowHeight: string;
3695
4033
  padding: string;
3696
- }, any>;
4034
+ }, {
4035
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4036
+ height: string;
4037
+ width: string;
4038
+ borderRadius: string;
4039
+ color: string;
4040
+ colorHover: string;
4041
+ railInsetHorizontalBottom: string;
4042
+ railInsetHorizontalTop: string;
4043
+ railInsetVerticalRight: string;
4044
+ railInsetVerticalLeft: string;
4045
+ railColor: string;
4046
+ }, any>;
4047
+ }>;
3697
4048
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
3698
4049
  optionFontSizeTiny: string;
3699
4050
  optionFontSizeSmall: string;
@@ -3776,7 +4127,18 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3776
4127
  } | undefined;
3777
4128
  Popover?: {
3778
4129
  peers?: {
3779
- [x: string]: any;
4130
+ Scrollbar?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Scrollbar", {
4131
+ height: string;
4132
+ width: string;
4133
+ borderRadius: string;
4134
+ color: string;
4135
+ colorHover: string;
4136
+ railInsetHorizontalBottom: string;
4137
+ railInsetHorizontalTop: string;
4138
+ railInsetVerticalRight: string;
4139
+ railInsetVerticalLeft: string;
4140
+ railColor: string;
4141
+ }, any>> | undefined;
3780
4142
  } | undefined;
3781
4143
  } | undefined;
3782
4144
  Ellipsis?: {
@@ -3801,7 +4163,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3801
4163
  arrowOffsetVertical: string;
3802
4164
  arrowHeight: string;
3803
4165
  padding: string;
3804
- }, any>;
4166
+ }, {
4167
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4168
+ height: string;
4169
+ width: string;
4170
+ borderRadius: string;
4171
+ color: string;
4172
+ colorHover: string;
4173
+ railInsetHorizontalBottom: string;
4174
+ railInsetHorizontalTop: string;
4175
+ railInsetVerticalRight: string;
4176
+ railInsetVerticalLeft: string;
4177
+ railColor: string;
4178
+ }, any>;
4179
+ }>;
3805
4180
  }>> | undefined;
3806
4181
  } | undefined;
3807
4182
  } | undefined;
@@ -3820,7 +4195,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3820
4195
  arrowOffsetVertical: string;
3821
4196
  arrowHeight: string;
3822
4197
  padding: string;
3823
- }, any>> | undefined;
4198
+ }, {
4199
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4200
+ height: string;
4201
+ width: string;
4202
+ borderRadius: string;
4203
+ color: string;
4204
+ colorHover: string;
4205
+ railInsetHorizontalBottom: string;
4206
+ railInsetHorizontalTop: string;
4207
+ railInsetVerticalRight: string;
4208
+ railInsetVerticalLeft: string;
4209
+ railColor: string;
4210
+ }, any>;
4211
+ }>> | undefined;
3824
4212
  } | undefined;
3825
4213
  } | undefined;
3826
4214
  };
@@ -3828,7 +4216,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3828
4216
  paginatedData: import("vue").ComputedRef<import("./interface").TmNode[]>;
3829
4217
  mergedBordered: import("vue").ComputedRef<boolean>;
3830
4218
  mergedBottomBordered: import("vue").ComputedRef<boolean>;
3831
- mergedPagination: import("vue").ComputedRef<import("../../pagination").PaginationProps>;
4219
+ mergedPagination: import("vue").ComputedRef<import("../..").PaginationProps>;
3832
4220
  mergedShowPagination: import("vue").ComputedRef<boolean | 0 | undefined>;
3833
4221
  cssVars: import("vue").ComputedRef<{
3834
4222
  '--n-font-size': string;
@@ -3884,7 +4272,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3884
4272
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
3885
4273
  readonly onUnstableColumnResize: import("vue").PropType<(resizedWidth: number, limitedWidth: number, column: import("./interface").TableBaseColumn, getColumnWidth: (key: import("./interface").ColumnKey) => number | undefined) => void>;
3886
4274
  readonly pagination: {
3887
- readonly type: import("vue").PropType<false | import("../../pagination").PaginationProps>;
4275
+ readonly type: import("vue").PropType<false | import("../..").PaginationProps>;
3888
4276
  readonly default: false;
3889
4277
  };
3890
4278
  readonly paginateSinglePage: {
@@ -3987,10 +4375,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3987
4375
  readonly getCsvCell: import("vue").PropType<import("./publicTypes").DataTableGetCsvCell>;
3988
4376
  readonly getCsvHeader: import("vue").PropType<import("./publicTypes").DataTableGetCsvHeader>;
3989
4377
  readonly onLoad: import("vue").PropType<import("./interface").DataTableOnLoad>;
3990
- readonly 'onUpdate:page': import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:page"]>;
3991
- readonly onUpdatePage: import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:page"]>;
3992
- readonly 'onUpdate:pageSize': import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:pageSize"]>;
3993
- readonly onUpdatePageSize: import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:pageSize"]>;
4378
+ readonly 'onUpdate:page': import("vue").PropType<import("../..").PaginationProps["onUpdate:page"]>;
4379
+ readonly onUpdatePage: import("vue").PropType<import("../..").PaginationProps["onUpdate:page"]>;
4380
+ readonly 'onUpdate:pageSize': import("vue").PropType<import("../..").PaginationProps["onUpdate:pageSize"]>;
4381
+ readonly onUpdatePageSize: import("vue").PropType<import("../..").PaginationProps["onUpdate:pageSize"]>;
3994
4382
  readonly 'onUpdate:sorter': import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateSorter>>;
3995
4383
  readonly onUpdateSorter: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateSorter>>;
3996
4384
  readonly 'onUpdate:filters': import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateFilters>>;
@@ -4000,8 +4388,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4000
4388
  readonly 'onUpdate:expandedRowKeys': import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateExpandedRowKeys>>;
4001
4389
  readonly onUpdateExpandedRowKeys: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateExpandedRowKeys>>;
4002
4390
  readonly onScroll: import("vue").PropType<(e: Event) => void>;
4003
- readonly onPageChange: import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:page"]>;
4004
- readonly onPageSizeChange: import("vue").PropType<import("../../pagination").PaginationProps["onUpdate:pageSize"]>;
4391
+ readonly onPageChange: import("vue").PropType<import("../..").PaginationProps["onUpdate:page"]>;
4392
+ readonly onPageSizeChange: import("vue").PropType<import("../..").PaginationProps["onUpdate:pageSize"]>;
4005
4393
  readonly onSorterChange: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateSorter> | undefined>;
4006
4394
  readonly onFiltersChange: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateFilters> | undefined>;
4007
4395
  readonly onCheckedRowKeysChange: import("vue").PropType<import("../../_utils").MaybeArray<import("./interface").OnUpdateCheckedRowKeys> | undefined>;
@@ -4478,7 +4866,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4478
4866
  arrowOffsetVertical: string;
4479
4867
  arrowHeight: string;
4480
4868
  padding: string;
4481
- }, any>;
4869
+ }, {
4870
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4871
+ height: string;
4872
+ width: string;
4873
+ borderRadius: string;
4874
+ color: string;
4875
+ colorHover: string;
4876
+ railInsetHorizontalBottom: string;
4877
+ railInsetHorizontalTop: string;
4878
+ railInsetVerticalRight: string;
4879
+ railInsetVerticalLeft: string;
4880
+ railColor: string;
4881
+ }, any>;
4882
+ }>;
4482
4883
  }>;
4483
4884
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
4484
4885
  optionFontSizeTiny: string;
@@ -4609,7 +5010,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4609
5010
  paddingMedium: string;
4610
5011
  paddingLarge: string;
4611
5012
  clearSize: string;
4612
- }, any>;
5013
+ }, {
5014
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5015
+ height: string;
5016
+ width: string;
5017
+ borderRadius: string;
5018
+ color: string;
5019
+ colorHover: string;
5020
+ railInsetHorizontalBottom: string;
5021
+ railInsetHorizontalTop: string;
5022
+ railInsetVerticalRight: string;
5023
+ railInsetVerticalLeft: string;
5024
+ railColor: string;
5025
+ }, any>;
5026
+ }>;
4613
5027
  Popselect: import("../../_mixins").Theme<"Popselect", {
4614
5028
  menuBoxShadow: string;
4615
5029
  }, {
@@ -4626,7 +5040,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4626
5040
  arrowOffsetVertical: string;
4627
5041
  arrowHeight: string;
4628
5042
  padding: string;
4629
- }, any>;
5043
+ }, {
5044
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5045
+ height: string;
5046
+ width: string;
5047
+ borderRadius: string;
5048
+ color: string;
5049
+ colorHover: string;
5050
+ railInsetHorizontalBottom: string;
5051
+ railInsetHorizontalTop: string;
5052
+ railInsetVerticalRight: string;
5053
+ railInsetVerticalLeft: string;
5054
+ railColor: string;
5055
+ }, any>;
5056
+ }>;
4630
5057
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
4631
5058
  optionFontSizeTiny: string;
4632
5059
  optionFontSizeSmall: string;
@@ -4736,7 +5163,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4736
5163
  arrowOffsetVertical: string;
4737
5164
  arrowHeight: string;
4738
5165
  padding: string;
4739
- }, any>;
5166
+ }, {
5167
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5168
+ height: string;
5169
+ width: string;
5170
+ borderRadius: string;
5171
+ color: string;
5172
+ colorHover: string;
5173
+ railInsetHorizontalBottom: string;
5174
+ railInsetHorizontalTop: string;
5175
+ railInsetVerticalRight: string;
5176
+ railInsetVerticalLeft: string;
5177
+ railColor: string;
5178
+ }, any>;
5179
+ }>;
4740
5180
  Ellipsis: import("../../_mixins").Theme<"Ellipsis", unknown, {
4741
5181
  Tooltip: import("../../_mixins").Theme<"Tooltip", {
4742
5182
  borderRadius: string;
@@ -4758,7 +5198,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4758
5198
  arrowOffsetVertical: string;
4759
5199
  arrowHeight: string;
4760
5200
  padding: string;
4761
- }, any>;
5201
+ }, {
5202
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5203
+ height: string;
5204
+ width: string;
5205
+ borderRadius: string;
5206
+ color: string;
5207
+ colorHover: string;
5208
+ railInsetHorizontalBottom: string;
5209
+ railInsetHorizontalTop: string;
5210
+ railInsetVerticalRight: string;
5211
+ railInsetVerticalLeft: string;
5212
+ railColor: string;
5213
+ }, any>;
5214
+ }>;
4762
5215
  }>;
4763
5216
  }>;
4764
5217
  Dropdown: import("../../_mixins").Theme<"Dropdown", {
@@ -4829,7 +5282,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4829
5282
  arrowOffsetVertical: string;
4830
5283
  arrowHeight: string;
4831
5284
  padding: string;
4832
- }, any>;
5285
+ }, {
5286
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5287
+ height: string;
5288
+ width: string;
5289
+ borderRadius: string;
5290
+ color: string;
5291
+ colorHover: string;
5292
+ railInsetHorizontalBottom: string;
5293
+ railInsetHorizontalTop: string;
5294
+ railInsetVerticalRight: string;
5295
+ railInsetVerticalLeft: string;
5296
+ railColor: string;
5297
+ }, any>;
5298
+ }>;
4833
5299
  }>;
4834
5300
  }>>;
4835
5301
  readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DataTable", {
@@ -5305,7 +5771,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5305
5771
  arrowOffsetVertical: string;
5306
5772
  arrowHeight: string;
5307
5773
  padding: string;
5308
- }, any>;
5774
+ }, {
5775
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5776
+ height: string;
5777
+ width: string;
5778
+ borderRadius: string;
5779
+ color: string;
5780
+ colorHover: string;
5781
+ railInsetHorizontalBottom: string;
5782
+ railInsetHorizontalTop: string;
5783
+ railInsetVerticalRight: string;
5784
+ railInsetVerticalLeft: string;
5785
+ railColor: string;
5786
+ }, any>;
5787
+ }>;
5309
5788
  }>;
5310
5789
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
5311
5790
  optionFontSizeTiny: string;
@@ -5436,7 +5915,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5436
5915
  paddingMedium: string;
5437
5916
  paddingLarge: string;
5438
5917
  clearSize: string;
5439
- }, any>;
5918
+ }, {
5919
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5920
+ height: string;
5921
+ width: string;
5922
+ borderRadius: string;
5923
+ color: string;
5924
+ colorHover: string;
5925
+ railInsetHorizontalBottom: string;
5926
+ railInsetHorizontalTop: string;
5927
+ railInsetVerticalRight: string;
5928
+ railInsetVerticalLeft: string;
5929
+ railColor: string;
5930
+ }, any>;
5931
+ }>;
5440
5932
  Popselect: import("../../_mixins").Theme<"Popselect", {
5441
5933
  menuBoxShadow: string;
5442
5934
  }, {
@@ -5453,7 +5945,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5453
5945
  arrowOffsetVertical: string;
5454
5946
  arrowHeight: string;
5455
5947
  padding: string;
5456
- }, any>;
5948
+ }, {
5949
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
5950
+ height: string;
5951
+ width: string;
5952
+ borderRadius: string;
5953
+ color: string;
5954
+ colorHover: string;
5955
+ railInsetHorizontalBottom: string;
5956
+ railInsetHorizontalTop: string;
5957
+ railInsetVerticalRight: string;
5958
+ railInsetVerticalLeft: string;
5959
+ railColor: string;
5960
+ }, any>;
5961
+ }>;
5457
5962
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
5458
5963
  optionFontSizeTiny: string;
5459
5964
  optionFontSizeSmall: string;
@@ -5563,7 +6068,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5563
6068
  arrowOffsetVertical: string;
5564
6069
  arrowHeight: string;
5565
6070
  padding: string;
5566
- }, any>;
6071
+ }, {
6072
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6073
+ height: string;
6074
+ width: string;
6075
+ borderRadius: string;
6076
+ color: string;
6077
+ colorHover: string;
6078
+ railInsetHorizontalBottom: string;
6079
+ railInsetHorizontalTop: string;
6080
+ railInsetVerticalRight: string;
6081
+ railInsetVerticalLeft: string;
6082
+ railColor: string;
6083
+ }, any>;
6084
+ }>;
5567
6085
  Ellipsis: import("../../_mixins").Theme<"Ellipsis", unknown, {
5568
6086
  Tooltip: import("../../_mixins").Theme<"Tooltip", {
5569
6087
  borderRadius: string;
@@ -5585,7 +6103,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5585
6103
  arrowOffsetVertical: string;
5586
6104
  arrowHeight: string;
5587
6105
  padding: string;
5588
- }, any>;
6106
+ }, {
6107
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6108
+ height: string;
6109
+ width: string;
6110
+ borderRadius: string;
6111
+ color: string;
6112
+ colorHover: string;
6113
+ railInsetHorizontalBottom: string;
6114
+ railInsetHorizontalTop: string;
6115
+ railInsetVerticalRight: string;
6116
+ railInsetVerticalLeft: string;
6117
+ railColor: string;
6118
+ }, any>;
6119
+ }>;
5589
6120
  }>;
5590
6121
  }>;
5591
6122
  Dropdown: import("../../_mixins").Theme<"Dropdown", {
@@ -5656,7 +6187,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5656
6187
  arrowOffsetVertical: string;
5657
6188
  arrowHeight: string;
5658
6189
  padding: string;
5659
- }, any>;
6190
+ }, {
6191
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6192
+ height: string;
6193
+ width: string;
6194
+ borderRadius: string;
6195
+ color: string;
6196
+ colorHover: string;
6197
+ railInsetHorizontalBottom: string;
6198
+ railInsetHorizontalTop: string;
6199
+ railInsetVerticalRight: string;
6200
+ railInsetVerticalLeft: string;
6201
+ railColor: string;
6202
+ }, any>;
6203
+ }>;
5660
6204
  }>;
5661
6205
  }>>>;
5662
6206
  readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DataTable", {
@@ -6132,7 +6676,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6132
6676
  arrowOffsetVertical: string;
6133
6677
  arrowHeight: string;
6134
6678
  padding: string;
6135
- }, any>;
6679
+ }, {
6680
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6681
+ height: string;
6682
+ width: string;
6683
+ borderRadius: string;
6684
+ color: string;
6685
+ colorHover: string;
6686
+ railInsetHorizontalBottom: string;
6687
+ railInsetHorizontalTop: string;
6688
+ railInsetVerticalRight: string;
6689
+ railInsetVerticalLeft: string;
6690
+ railColor: string;
6691
+ }, any>;
6692
+ }>;
6136
6693
  }>;
6137
6694
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
6138
6695
  optionFontSizeTiny: string;
@@ -6263,7 +6820,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6263
6820
  paddingMedium: string;
6264
6821
  paddingLarge: string;
6265
6822
  clearSize: string;
6266
- }, any>;
6823
+ }, {
6824
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6825
+ height: string;
6826
+ width: string;
6827
+ borderRadius: string;
6828
+ color: string;
6829
+ colorHover: string;
6830
+ railInsetHorizontalBottom: string;
6831
+ railInsetHorizontalTop: string;
6832
+ railInsetVerticalRight: string;
6833
+ railInsetVerticalLeft: string;
6834
+ railColor: string;
6835
+ }, any>;
6836
+ }>;
6267
6837
  Popselect: import("../../_mixins").Theme<"Popselect", {
6268
6838
  menuBoxShadow: string;
6269
6839
  }, {
@@ -6280,7 +6850,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6280
6850
  arrowOffsetVertical: string;
6281
6851
  arrowHeight: string;
6282
6852
  padding: string;
6283
- }, any>;
6853
+ }, {
6854
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6855
+ height: string;
6856
+ width: string;
6857
+ borderRadius: string;
6858
+ color: string;
6859
+ colorHover: string;
6860
+ railInsetHorizontalBottom: string;
6861
+ railInsetHorizontalTop: string;
6862
+ railInsetVerticalRight: string;
6863
+ railInsetVerticalLeft: string;
6864
+ railColor: string;
6865
+ }, any>;
6866
+ }>;
6284
6867
  InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
6285
6868
  optionFontSizeTiny: string;
6286
6869
  optionFontSizeSmall: string;
@@ -6390,7 +6973,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6390
6973
  arrowOffsetVertical: string;
6391
6974
  arrowHeight: string;
6392
6975
  padding: string;
6393
- }, any>;
6976
+ }, {
6977
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
6978
+ height: string;
6979
+ width: string;
6980
+ borderRadius: string;
6981
+ color: string;
6982
+ colorHover: string;
6983
+ railInsetHorizontalBottom: string;
6984
+ railInsetHorizontalTop: string;
6985
+ railInsetVerticalRight: string;
6986
+ railInsetVerticalLeft: string;
6987
+ railColor: string;
6988
+ }, any>;
6989
+ }>;
6394
6990
  Ellipsis: import("../../_mixins").Theme<"Ellipsis", unknown, {
6395
6991
  Tooltip: import("../../_mixins").Theme<"Tooltip", {
6396
6992
  borderRadius: string;
@@ -6412,7 +7008,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6412
7008
  arrowOffsetVertical: string;
6413
7009
  arrowHeight: string;
6414
7010
  padding: string;
6415
- }, any>;
7011
+ }, {
7012
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7013
+ height: string;
7014
+ width: string;
7015
+ borderRadius: string;
7016
+ color: string;
7017
+ colorHover: string;
7018
+ railInsetHorizontalBottom: string;
7019
+ railInsetHorizontalTop: string;
7020
+ railInsetVerticalRight: string;
7021
+ railInsetVerticalLeft: string;
7022
+ railColor: string;
7023
+ }, any>;
7024
+ }>;
6416
7025
  }>;
6417
7026
  }>;
6418
7027
  Dropdown: import("../../_mixins").Theme<"Dropdown", {
@@ -6483,7 +7092,20 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6483
7092
  arrowOffsetVertical: string;
6484
7093
  arrowHeight: string;
6485
7094
  padding: string;
6486
- }, any>;
7095
+ }, {
7096
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
7097
+ height: string;
7098
+ width: string;
7099
+ borderRadius: string;
7100
+ color: string;
7101
+ colorHover: string;
7102
+ railInsetHorizontalBottom: string;
7103
+ railInsetHorizontalTop: string;
7104
+ railInsetVerticalRight: string;
7105
+ railInsetVerticalLeft: string;
7106
+ railColor: string;
7107
+ }, any>;
7108
+ }>;
6487
7109
  }>;
6488
7110
  }>>>;
6489
7111
  }>> & Readonly<{}>, {
@@ -6492,10 +7114,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6492
7114
  readonly tableLayout: "fixed" | "auto";
6493
7115
  readonly columns: import("./interface").TableColumns<any>;
6494
7116
  readonly loading: boolean;
7117
+ readonly spinProps: import("../../_internal").BaseLoadingExposedProps;
6495
7118
  readonly bordered: boolean | undefined;
6496
- readonly virtualScroll: boolean;
7119
+ readonly allowCheckingNotLoaded: boolean;
6497
7120
  readonly remote: boolean;
6498
- readonly pagination: false | import("../../pagination").PaginationProps;
7121
+ readonly cascade: boolean;
7122
+ readonly virtualScroll: boolean;
7123
+ readonly pagination: false | import("../..").PaginationProps;
6499
7124
  readonly paginateSinglePage: boolean;
6500
7125
  readonly bottomBordered: boolean | undefined;
6501
7126
  readonly striped: boolean;
@@ -6509,13 +7134,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6509
7134
  readonly virtualScrollHeader: boolean;
6510
7135
  readonly headerHeight: number;
6511
7136
  readonly minRowHeight: number;
6512
- readonly allowCheckingNotLoaded: boolean;
6513
- readonly cascade: boolean;
6514
7137
  readonly childrenKey: string;
6515
7138
  readonly indent: number;
6516
7139
  readonly flexHeight: boolean;
6517
7140
  readonly summaryPlacement: "top" | "bottom";
6518
7141
  readonly paginationBehaviorOnFilter: "first" | "current";
6519
- readonly spinProps: import("../../_internal").BaseLoadingExposedProps;
6520
7142
  }, SlotsType<DataTableSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
6521
7143
  export default _default;