@dt-frames/ui 2.0.23 → 3.0.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 (350) hide show
  1. package/README.md +9 -9
  2. package/es/assets/icons/ui-blank.svg +1 -0
  3. package/es/assets/icons/ui-docx.svg +1 -0
  4. package/es/assets/icons/ui-exl.svg +1 -0
  5. package/es/assets/icons/ui-forder-open.svg +1 -0
  6. package/es/assets/icons/ui-forder.svg +1 -0
  7. package/es/assets/icons/ui-jpg.svg +1 -0
  8. package/es/assets/icons/ui-pdf.svg +1 -0
  9. package/es/assets/icons/ui-ppt.svg +1 -0
  10. package/es/assets/icons/ui-rar.svg +1 -0
  11. package/es/assets/icons/ui-table-empty.svg +1 -0
  12. package/es/assets/icons/ui-txt.svg +1 -0
  13. package/es/assets/index.e67ea2f5.css +1 -0
  14. package/es/assets/locales/en.d.ts +1 -0
  15. package/es/assets/locales/en.ts +1 -0
  16. package/es/assets/locales/zh.d.ts +1 -0
  17. package/es/assets/locales/zh.ts +1 -0
  18. package/es/assets/test.ts +1 -0
  19. package/es/components/container/index.d.ts +2 -93
  20. package/es/components/container/index.js +92 -15
  21. package/es/components/container/src/components/bar.d.ts +2 -2
  22. package/es/components/container/{index.less → src/index.scss} +9 -16
  23. package/es/components/container/src/utils/scroll.d.ts +1 -1
  24. package/es/components/curd/index.d.ts +3 -1
  25. package/es/components/curd/index.js +66 -141
  26. package/es/components/curd/src/components/props.d.ts +53 -0
  27. package/es/components/curd/src/components/types/curd.type.d.ts +13 -0
  28. package/es/components/curd/src/hooks/useCurd.d.ts +3 -110
  29. package/es/components/curd/src/props.d.ts +109 -159
  30. package/es/components/curd/src/types/curd.type.d.ts +54 -8
  31. package/es/components/drawer/index.d.ts +3 -7881
  32. package/es/components/drawer/index.js +209 -307
  33. package/es/components/drawer/src/components/DrawerFooter.d.ts +19 -21
  34. package/es/components/drawer/src/hooks/useDrawer.d.ts +2 -2
  35. package/es/components/drawer/src/index.d.ts +11 -7876
  36. package/es/components/drawer/src/index.scss +24 -0
  37. package/es/components/drawer/src/props.d.ts +2 -64
  38. package/es/components/drawer/src/{types/index.type.d.ts → type/drawer.type.d.ts} +26 -14
  39. package/es/components/form/index.d.ts +5 -5
  40. package/es/components/form/index.js +641 -634
  41. package/es/components/form/src/components/DynanicInput.d.ts +2 -0
  42. package/es/components/form/src/components/FormButtons.d.ts +13 -3086
  43. package/es/components/form/src/components/FormInputUseDialog.d.ts +2 -0
  44. package/es/components/form/src/components/FormItem.d.ts +53 -156
  45. package/es/components/form/src/components/RadioButton.d.ts +26 -0
  46. package/es/components/form/src/components/componentMap.d.ts +2 -2
  47. package/es/components/form/src/components/index.d.ts +2 -4
  48. package/es/components/form/src/hooks/useForm.d.ts +3 -3
  49. package/es/components/form/src/hooks/useFormActions.d.ts +38 -5
  50. package/es/components/form/src/hooks/useFormEvent.d.ts +9 -7
  51. package/es/components/form/src/hooks/useFormValue.d.ts +2 -2
  52. package/es/components/form/src/hooks/useFormValues.d.ts +8 -6
  53. package/es/components/form/src/hooks/useLabelWidth.d.ts +1 -1
  54. package/es/components/form/src/index.d.ts +358 -0
  55. package/es/components/form/src/index.scss +162 -0
  56. package/es/components/form/src/props.d.ts +45 -7
  57. package/es/components/form/src/types/actions.type.d.ts +1 -1
  58. package/es/components/form/src/types/form.type.d.ts +59 -26
  59. package/es/components/form/src/types/items.type.d.ts +33 -33
  60. package/es/components/form/src/{hooks → utils}/helper.d.ts +7 -0
  61. package/es/components/icons/index.d.ts +2 -497
  62. package/es/components/icons/index.js +42 -1911
  63. package/es/components/icons/src/{svg-icon.d.ts → SvgIcon.d.ts} +7 -14
  64. package/es/components/icons/src/index.scss +3 -0
  65. package/es/components/iframe/index.js +40 -29
  66. package/es/components/iframe/src/index.d.ts +16 -11
  67. package/es/components/iframe/src/index.scss +20 -0
  68. package/es/components/modal/index.d.ts +3 -2
  69. package/es/components/modal/index.js +188 -198
  70. package/es/components/modal/src/components/CloseIcon.d.ts +4 -20
  71. package/es/components/modal/src/components/Modal.d.ts +201 -108
  72. package/es/components/modal/src/components/ModalFooter.d.ts +12 -20
  73. package/es/components/modal/src/hooks/useDrag.d.ts +2 -3
  74. package/es/components/modal/src/hooks/useFullScreen.d.ts +1 -1
  75. package/es/components/modal/src/hooks/useModal.d.ts +3 -3
  76. package/es/components/modal/src/index.d.ts +32 -359
  77. package/es/components/modal/{index.less → src/index.scss} +104 -82
  78. package/es/components/modal/src/props.d.ts +10 -17
  79. package/es/components/modal/src/types/{modal.type.d.ts → index.type.d.ts} +7 -6
  80. package/es/components/source/index.d.ts +1 -1
  81. package/es/components/source/index.js +142 -113
  82. package/es/components/source/{hooks → src/hooks}/useDownload.d.ts +1 -1
  83. package/es/components/source/{hooks → src/hooks}/useSource.d.ts +24 -20
  84. package/es/components/source/{types → src/types}/source.type.d.ts +12 -13
  85. package/es/components/table/index.d.ts +7 -2
  86. package/es/components/table/index.js +197 -286
  87. package/es/components/table/src/components/TableAction.d.ts +16 -24
  88. package/es/components/table/src/components/TableHeader.d.ts +35 -0
  89. package/es/components/table/src/components/TableRender.d.ts +10 -14
  90. package/es/components/table/src/components/editTable/CellComponent.d.ts +4 -4
  91. package/es/components/table/src/components/editTable/EditTableCell.d.ts +15 -57
  92. package/es/components/table/src/components/editTable/componentMap.d.ts +1 -1
  93. package/es/components/table/src/components/editTable/index.d.ts +3 -3
  94. package/es/components/table/src/components/editTable/props.d.ts +6 -6
  95. package/es/components/table/src/components/tableSetting/Column.d.ts +3 -68
  96. package/es/components/table/src/components/tableSetting/Download.d.ts +11 -0
  97. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +2 -22
  98. package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +2 -22
  99. package/es/components/table/src/components/tableSetting/index.d.ts +17 -0
  100. package/es/components/table/src/hooks/useDataSource.d.ts +3 -4
  101. package/es/components/table/src/hooks/useHeader.d.ts +3 -3
  102. package/es/components/table/src/hooks/useHeaderCode.d.ts +2 -2
  103. package/es/components/table/src/hooks/useLoading.d.ts +3 -3
  104. package/es/components/table/src/hooks/usePagination.d.ts +2 -2
  105. package/es/components/table/src/hooks/useRowSelection.d.ts +1 -1
  106. package/es/components/table/src/hooks/useTable.d.ts +1 -1
  107. package/es/components/table/src/hooks/useTableInstance.d.ts +2 -2
  108. package/es/components/table/src/hooks/useTableScroll.d.ts +0 -1
  109. package/es/components/table/src/hooks/useTableStyle.d.ts +5 -0
  110. package/es/components/table/src/index.d.ts +169 -324
  111. package/es/components/table/{index.less → src/index.scss} +309 -279
  112. package/es/components/table/src/props.d.ts +39 -14
  113. package/es/components/table/src/types/actions.type.d.ts +5 -5
  114. package/es/components/table/src/types/header.type.d.ts +6 -6
  115. package/es/components/table/src/types/table.type.d.ts +84 -21
  116. package/es/components/tree/index.d.ts +2 -1
  117. package/es/components/tree/index.js +320 -324
  118. package/es/components/tree/src/basicProps.d.ts +9 -9
  119. package/es/components/tree/src/components/ContextMenu.d.ts +17 -17
  120. package/es/components/tree/src/components/TreeHeader.d.ts +13 -33
  121. package/es/components/tree/src/hooks/useContextMenu.d.ts +2 -2
  122. package/es/components/tree/src/hooks/useMethod.d.ts +16 -0
  123. package/es/components/tree/src/hooks/useTree.d.ts +5 -15
  124. package/es/components/tree/src/index.d.ts +52 -6369
  125. package/es/components/tree/src/index.scss +178 -0
  126. package/es/components/tree/src/types/action.type.d.ts +64 -0
  127. package/es/components/tree/src/{type → types}/menu.d.ts +1 -1
  128. package/es/components/tree/src/types/tree.d.ts +31 -0
  129. package/es/components/tree/src/utils/tree.d.ts +1 -1
  130. package/es/components/upload/index.d.ts +1 -1
  131. package/es/components/upload/index.js +111 -102
  132. package/es/components/upload/src/basicProps.d.ts +11 -7
  133. package/es/components/upload/src/components/PdfView.d.ts +2 -9
  134. package/es/components/upload/src/components/WordView.d.ts +2 -7
  135. package/es/components/upload/src/hooks/useFile.d.ts +3 -3
  136. package/es/components/upload/src/index.d.ts +47 -96
  137. package/es/components/upload/{index.less → src/index.scss} +19 -13
  138. package/es/components/upload/src/type/file.d.ts +2 -2
  139. package/es/components/upload/src/utils/upload.d.ts +1 -1
  140. package/es/components/vxe_table/index.d.ts +4 -0
  141. package/es/components/vxe_table/index.js +1162 -0
  142. package/es/components/vxe_table/src/components/AApiSelect.d.ts +12 -0
  143. package/es/components/vxe_table/src/components/AAutoComplete.d.ts +2 -0
  144. package/es/components/vxe_table/src/components/AButton.d.ts +12 -0
  145. package/es/components/vxe_table/src/components/AButtonGroup.d.ts +2 -0
  146. package/es/components/vxe_table/src/components/ACascader.d.ts +2 -0
  147. package/es/components/vxe_table/src/components/ACheckbox.d.ts +2 -0
  148. package/es/components/vxe_table/src/components/ACheckboxGroup.d.ts +6 -0
  149. package/es/components/vxe_table/src/components/ADatePicker.d.ts +4 -0
  150. package/es/components/vxe_table/src/components/AEmpty.d.ts +6 -0
  151. package/es/components/vxe_table/src/components/AInput.d.ts +2 -0
  152. package/es/components/vxe_table/src/components/AInputNumber.d.ts +2 -0
  153. package/es/components/vxe_table/src/components/AInputSearch.d.ts +2 -0
  154. package/es/components/vxe_table/src/components/AMonthPicker.d.ts +2 -0
  155. package/es/components/vxe_table/src/components/ARadioGroup.d.ts +6 -0
  156. package/es/components/vxe_table/src/components/ARangePicker.d.ts +2 -0
  157. package/es/components/vxe_table/src/components/ARate.d.ts +2 -0
  158. package/es/components/vxe_table/src/components/ASelect.d.ts +2 -0
  159. package/es/components/vxe_table/src/components/ASwitch.d.ts +2 -0
  160. package/es/components/vxe_table/src/components/ATimePicker.d.ts +2 -0
  161. package/es/components/vxe_table/src/components/ATreeSelect.d.ts +2 -0
  162. package/es/components/vxe_table/src/components/AWeekPicker.d.ts +2 -0
  163. package/es/components/vxe_table/src/components/AYearPicker.d.ts +2 -0
  164. package/es/components/vxe_table/src/components/Select.d.ts +2 -0
  165. package/es/components/vxe_table/src/components/common.d.ts +52 -0
  166. package/es/components/vxe_table/src/components/componentMap.d.ts +3 -0
  167. package/es/components/vxe_table/src/components/index.d.ts +4 -0
  168. package/es/components/vxe_table/src/hooks/useColumns.d.ts +1 -0
  169. package/es/components/vxe_table/src/hooks/useComponents.d.ts +2 -0
  170. package/es/components/vxe_table/src/hooks/useHeader.d.ts +6 -0
  171. package/es/components/vxe_table/src/hooks/useProps.d.ts +3 -0
  172. package/es/components/vxe_table/src/hooks/useVxeTable.d.ts +7 -0
  173. package/es/components/vxe_table/src/index.d.ts +26 -0
  174. package/es/components/vxe_table/src/index.scss +13 -0
  175. package/es/components/vxe_table/src/props.d.ts +1 -0
  176. package/es/components/vxe_table/src/types/componentType.d.ts +1 -0
  177. package/es/components/vxe_table/src/types/vxeTable.type.d.ts +45 -0
  178. package/es/components/vxe_table/src/utils/index.d.ts +6 -0
  179. package/es/directives/index.d.ts +1 -4
  180. package/es/directives/index.js +6 -1991
  181. package/es/theme/index.d.ts +9 -9
  182. package/es/theme/index.js +2112 -2344
  183. package/es/theme/src/components/content/index.d.ts +2 -31
  184. package/es/theme/src/components/feature/BackTop.d.ts +2 -0
  185. package/es/theme/src/components/feature/index.d.ts +2 -7
  186. package/es/theme/src/components/footer/index.d.ts +2 -31
  187. package/es/theme/src/components/header/MultipleHeader.d.ts +2 -0
  188. package/es/theme/src/components/header/components/BreadCrumb.d.ts +2 -0
  189. package/es/theme/src/components/header/components/FullScreen.d.ts +2 -0
  190. package/es/theme/src/components/header/components/LangPicker.d.ts +12 -0
  191. package/es/theme/src/components/header/components/Logo.d.ts +22 -0
  192. package/es/theme/src/components/header/components/MenuFilter.d.ts +2 -0
  193. package/es/theme/src/components/header/components/Notice.d.ts +2 -0
  194. package/es/theme/src/components/header/components/SettintTheme.d.ts +2 -0
  195. package/es/theme/src/components/header/components/Size.d.ts +2 -0
  196. package/es/theme/src/components/header/components/Trigger.d.ts +6 -0
  197. package/es/theme/src/components/header/components/UserInfo.d.ts +2 -0
  198. package/es/theme/src/components/header/components/lock/Lockscreen.d.ts +2 -85
  199. package/es/theme/src/components/header/components/lock/Recharge.d.ts +4 -6
  200. package/es/theme/src/components/header/components/lock/useBattery.d.ts +4 -4
  201. package/es/theme/src/components/header/components/lock/useTime.d.ts +5 -5
  202. package/es/theme/src/components/header/components/theme-drawer/Color.d.ts +26 -0
  203. package/es/theme/src/components/header/components/theme-drawer/ColorPrimary.d.ts +27 -0
  204. package/es/theme/src/components/header/components/theme-drawer/Feature.d.ts +2 -0
  205. package/es/theme/src/components/header/components/theme-drawer/InputNumber.d.ts +28 -0
  206. package/es/theme/src/components/header/components/theme-drawer/MenuType.d.ts +2 -0
  207. package/es/theme/src/components/header/components/theme-drawer/Select.d.ts +44 -0
  208. package/es/theme/src/components/header/components/theme-drawer/Switch.d.ts +29 -0
  209. package/es/theme/src/components/header/components/theme-drawer/Var.d.ts +2 -0
  210. package/es/theme/src/components/header/components/theme-drawer/styles/GlobalStyle.d.ts +2 -0
  211. package/es/theme/src/components/header/components/theme-drawer/styles/MenuStyle.d.ts +2 -0
  212. package/es/theme/src/components/header/helper/changeTheme.d.ts +15 -0
  213. package/es/theme/src/components/header/helper/{menu-tree.d.ts → menuTree.d.ts} +1 -1
  214. package/es/theme/src/components/header/index.d.ts +4 -547
  215. package/es/theme/src/components/sider/components/DragBar.d.ts +2 -0
  216. package/es/theme/src/components/sider/components/{layout-menu.d.ts → LayoutMenu.d.ts} +5 -5
  217. package/es/theme/src/components/sider/components/MixSider.d.ts +2 -0
  218. package/es/theme/src/components/sider/components/SiderTrigger.d.ts +14 -0
  219. package/es/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +8 -35
  220. package/es/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +8 -100
  221. package/es/theme/src/components/sider/components/basic-menu/index.d.ts +64 -0
  222. package/es/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +6 -10
  223. package/es/theme/src/components/sider/components/{props.d.ts → basic-menu/props.d.ts} +12 -29
  224. package/es/theme/src/components/sider/helper/sider.d.ts +3 -3
  225. package/es/theme/src/components/sider/helper/split-menu.d.ts +2 -2
  226. package/es/theme/src/components/sider/index.d.ts +2 -235
  227. package/es/theme/src/components/tabs/components/TabContent.d.ts +4 -21
  228. package/es/theme/src/components/tabs/components/TabRedo.d.ts +2 -23
  229. package/es/theme/src/components/tabs/hooks/useTabDropdown.d.ts +9 -3
  230. package/es/theme/src/components/tabs/hooks/useTabs.d.ts +1 -1
  231. package/es/theme/src/components/tabs/index.d.ts +2 -86
  232. package/es/theme/src/consts/color.d.ts +3 -0
  233. package/es/theme/src/consts/index.d.ts +14 -0
  234. package/es/theme/src/enums/index.d.ts +34 -1
  235. package/es/theme/src/hooks/index.d.ts +6 -6
  236. package/es/theme/src/hooks/useDragLine.d.ts +1 -1
  237. package/es/theme/src/hooks/useHeader.d.ts +22 -23
  238. package/es/theme/src/hooks/useMenu.d.ts +26 -26
  239. package/es/theme/src/hooks/useMultifyTab.d.ts +6 -6
  240. package/es/theme/src/hooks/useOpenKeys.d.ts +3 -3
  241. package/es/theme/src/hooks/useTheme.d.ts +25 -7
  242. package/es/theme/src/index.d.ts +2 -1630
  243. package/es/theme/src/index.scss +1134 -0
  244. package/es/theme/src/stores/index.d.ts +2 -2
  245. package/es/theme/src/stores/lockscreen.store.d.ts +7 -5
  246. package/es/theme/src/stores/routeReuse.store.d.ts +18 -20
  247. package/es/theme/src/stores/theme.store.d.ts +9 -15
  248. package/es/theme/{transition.less → src/transition.scss} +1 -1
  249. package/es/theme/src/types/index.d.ts +0 -3
  250. package/es/theme/src/types/menu.type.d.ts +2 -1
  251. package/es/theme/src/types/theme.type.d.ts +31 -12
  252. package/es/theme/src/utils/color.d.ts +14 -0
  253. package/es/theme/src/utils/index.d.ts +3 -0
  254. package/es/theme/src/utils.ts/index.d.ts +3 -0
  255. package/index.d.ts +12 -13
  256. package/index.js +44 -62
  257. package/manualContentPath.js +73 -19
  258. package/package.json +65 -65
  259. package/tsconfig.json +19 -30
  260. package/tsconfig.tsbuildinfo +1 -0
  261. package/vite.config.ts +82 -68
  262. package/es/assets/data/icons/actions.d.ts +0 -1
  263. package/es/assets/data/icons/actions.ts +0 -423
  264. package/es/assets/data/icons/code.d.ts +0 -1
  265. package/es/assets/data/icons/code.ts +0 -10
  266. package/es/assets/data/icons/commuticate.d.ts +0 -1
  267. package/es/assets/data/icons/commuticate.ts +0 -182
  268. package/es/assets/data/icons/currency.d.ts +0 -1
  269. package/es/assets/data/icons/currency.ts +0 -44
  270. package/es/assets/data/icons/devices.d.ts +0 -1
  271. package/es/assets/data/icons/devices.ts +0 -126
  272. package/es/assets/data/icons/edit.d.ts +0 -1
  273. package/es/assets/data/icons/edit.ts +0 -163
  274. package/es/assets/data/icons/file.d.ts +0 -1
  275. package/es/assets/data/icons/file.ts +0 -99
  276. package/es/assets/data/icons/math.d.ts +0 -1
  277. package/es/assets/data/icons/math.ts +0 -53
  278. package/es/assets/data/icons/message.d.ts +0 -1
  279. package/es/assets/data/icons/message.ts +0 -68
  280. package/es/assets/data/icons/navigate.d.ts +0 -1
  281. package/es/assets/data/icons/navigate.ts +0 -181
  282. package/es/assets/data/icons/other.d.ts +0 -1
  283. package/es/assets/data/icons/other.ts +0 -324
  284. package/es/assets/data/index.d.ts +0 -4
  285. package/es/assets/data/index.ts +0 -58
  286. package/es/assets/imgs/tree/forder-open.svg +0 -1
  287. package/es/assets/imgs/tree/forder.svg +0 -1
  288. package/es/components/container/src/components/scroll-bar.d.ts +0 -70
  289. package/es/components/container/src/scroll-container.d.ts +0 -76
  290. package/es/components/container/src/slot-container.d.ts +0 -20
  291. package/es/components/curd/src/components/Curd.d.ts +0 -384
  292. package/es/components/drawer/index.less +0 -16
  293. package/es/components/drawer/src/components/DrawerHeader.d.ts +0 -11
  294. package/es/components/form/index.less +0 -361
  295. package/es/components/form/src/components/formIcon.d.ts +0 -14
  296. package/es/components/form/src/components/formInputUseDialog.d.ts +0 -17
  297. package/es/components/form/src/components/radioButton.d.ts +0 -34
  298. package/es/components/form/src/enums/index.d.ts +0 -7
  299. package/es/components/icons/index.less +0 -47
  300. package/es/components/icons/src/pick-icon.d.ts +0 -455
  301. package/es/components/iframe/index.less +0 -29
  302. package/es/components/modal/src/components/ModalWrap.d.ts +0 -79
  303. package/es/components/source/utils/index.d.ts +0 -8
  304. package/es/components/table/src/enums/table.enum.d.ts +0 -5
  305. package/es/components/table/src/hooks/useRow.d.ts +0 -5
  306. package/es/components/tree/index.less +0 -200
  307. package/es/components/tree/src/type/tree.d.ts +0 -50
  308. package/es/directives/icon.d.ts +0 -2
  309. package/es/global.d.ts +0 -7
  310. package/es/index.d.ts +0 -1
  311. package/es/index.js +0 -4
  312. package/es/theme/index.less +0 -1003
  313. package/es/theme/src/components/feature/back-top.d.ts +0 -5
  314. package/es/theme/src/components/header/components/bread-crumb.d.ts +0 -6
  315. package/es/theme/src/components/header/components/fullscreen.d.ts +0 -5
  316. package/es/theme/src/components/header/components/index.d.ts +0 -11
  317. package/es/theme/src/components/header/components/lang-picker.d.ts +0 -23
  318. package/es/theme/src/components/header/components/lock/index.d.ts +0 -2
  319. package/es/theme/src/components/header/components/logo.d.ts +0 -55
  320. package/es/theme/src/components/header/components/menu-filter.d.ts +0 -22
  321. package/es/theme/src/components/header/components/notify.d.ts +0 -22
  322. package/es/theme/src/components/header/components/setting-theme.d.ts +0 -223
  323. package/es/theme/src/components/header/components/size.d.ts +0 -21
  324. package/es/theme/src/components/header/components/theme-drawer/feature.d.ts +0 -138
  325. package/es/theme/src/components/header/components/theme-drawer/index.d.ts +0 -3
  326. package/es/theme/src/components/header/components/theme-drawer/menu-type.d.ts +0 -16
  327. package/es/theme/src/components/header/components/theme-drawer/select.d.ts +0 -58
  328. package/es/theme/src/components/header/components/theme-drawer/switch.d.ts +0 -49
  329. package/es/theme/src/components/header/components/trigger.d.ts +0 -10
  330. package/es/theme/src/components/header/components/user-info.d.ts +0 -44
  331. package/es/theme/src/components/header/helper/change-theme.d.ts +0 -13
  332. package/es/theme/src/components/header/multiple-header.d.ts +0 -660
  333. package/es/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +0 -207
  334. package/es/theme/src/components/sider/components/drag-bar.d.ts +0 -14
  335. package/es/theme/src/components/sider/components/sider-trigger.d.ts +0 -17
  336. package/es/theme/src/components/sider/mix-sider.d.ts +0 -167
  337. package/es/theme/src/components/tabs/components/index.d.ts +0 -3
  338. package/es/theme/src/components/tabs/types/tabs.type.d.ts +0 -7
  339. package/es/theme/src/enums/theme.enum.d.ts +0 -34
  340. package/es/theme/src/setting/theme.setting.d.ts +0 -2
  341. package/es/utils/withInstall.d.ts +0 -4
  342. package/tailwind.config.cjs +0 -11
  343. package/tsconfig.node.json +0 -9
  344. /package/es/assets/{icons → fonts}/iconfont.css +0 -0
  345. /package/es/assets/{icons → fonts}/iconfont.eot +0 -0
  346. /package/es/assets/{icons → fonts}/iconfont.svg +0 -0
  347. /package/es/assets/{icons → fonts}/iconfont.ttf +0 -0
  348. /package/es/assets/{icons → fonts}/iconfont.woff +0 -0
  349. /package/es/assets/{icons → fonts}/iconfont.woff2 +0 -0
  350. /package/es/components/container/src/types/{scroll.type.d.ts → index.d.ts} +0 -0
@@ -1,551 +1,8 @@
1
- import { unref } from 'vue';
2
- import { MenuSplitTye, MenuMode } from '../../enums';
3
- declare const _sfc_main: import("vue").DefineComponent<{
1
+ declare const _default: import("vue").DefineComponent<{
4
2
  fixed: BooleanConstructor;
5
- }, {
6
- getSplit: import("vue").ComputedRef<boolean>;
7
- getHeaderTheme: import("vue").ComputedRef<import("../../enums").Theme>;
8
- getShowHeaderLogo: import("vue").ComputedRef<boolean>;
9
- getShowHeaderTrigger: import("vue").ComputedRef<boolean>;
10
- getShowBread: import("vue").ComputedRef<boolean>;
11
- getShowLocale: import("vue").ComputedRef<boolean>;
12
- getShowFullScreen: import("vue").ComputedRef<boolean>;
13
- getShowSettingTheme: import("vue").ComputedRef<boolean>;
14
- getShowNotice: import("vue").ComputedRef<boolean>;
15
- getShowTopMenu: import("vue").ComputedRef<boolean>;
16
- getShowSearch: import("vue").ComputedRef<boolean>;
17
- getShowUiSize: import("vue").ComputedRef<boolean>;
18
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
19
- getMultipleTabPosIsTop: import("vue").ComputedRef<boolean>;
20
- getSplitType: import("vue").ComputedRef<MenuSplitTye.NONE | MenuSplitTye.TOP>;
21
- getMenuMode: import("vue").ComputedRef<MenuMode>;
22
- getShowTab: import("vue").ComputedRef<boolean>;
23
- props: any;
24
- getHeaderCls: import("vue").ComputedRef<string>;
25
- MultipleTabs: import("vue").DefineComponent<{}, {
26
- router: import("vue-router").Router;
27
- go: (path: string, isReplace?: boolean) => void;
28
- tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
29
- getTabList(): import("vue-router").RouteLocationNormalized[];
30
- getCachedTabList(): string[];
31
- getLastDragEndIndex(): number;
32
- }, {
33
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
34
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
35
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
36
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
37
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
38
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
39
- closeTabByKey(path: string, router: import("vue-router").Router): void;
40
- bulkCloseTabs(pathList: string[]): void;
41
- updateCacheTab(): void;
42
- refreshPage(router: import("vue-router").Router): Promise<void>;
43
- sortTabs(oldIndex: number, newIndex: number): void;
44
- resetState(): void;
45
- }>;
46
- getShowQuick: import("vue").ComputedRef<boolean>;
47
- getShowRedo: import("vue").ComputedRef<boolean>;
48
- activeKeyRef: any;
49
- getTabsState: import("vue").ComputedRef<import("vue-router").RouteLocationNormalized[]>;
50
- unClose: import("vue").ComputedRef<boolean>;
51
- handleChange: (activeKey: string) => void;
52
- handleEdit: (targetKey: string) => void;
53
- affixTextList: string[];
54
- readonly DtTabRedo: import("vue").DefineComponent<{}, {
55
- tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
56
- getTabList(): import("vue-router").RouteLocationNormalized[];
57
- getCachedTabList(): string[];
58
- getLastDragEndIndex(): number;
59
- }, {
60
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
61
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
62
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
63
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
64
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
65
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
66
- closeTabByKey(path: string, router: import("vue-router").Router): void;
67
- bulkCloseTabs(pathList: string[]): void;
68
- updateCacheTab(): void;
69
- refreshPage(router: import("vue-router").Router): Promise<void>;
70
- sortTabs(oldIndex: number, newIndex: number): void;
71
- resetState(): void;
72
- }>;
73
- router: import("vue-router").Router;
74
- handleRedo: () => void;
75
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
76
- readonly DtTabContent: import("vue").DefineComponent<{
77
- tabItem: {
78
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
79
- default: any;
80
- };
81
- isExtra: BooleanConstructor;
82
- }, {
83
- t: {
84
- (key: string): string;
85
- (key: string, locale: string): string;
86
- (key: string, locale: string, list: unknown[]): string;
87
- (key: string, locale: string, named: Record<string, unknown>): string;
88
- (key: string, list: unknown[]): string;
89
- (key: string, named: Record<string, unknown>): string;
90
- };
91
- props: any;
92
- menuLabelMap: Map<any, any>;
93
- getIsTabs: import("vue").ComputedRef<boolean>;
94
- getTrigger: import("vue").ComputedRef<("hover" | "click" | "contextmenu")[]>;
95
- getDropMenuList: import("vue").ComputedRef<import("../tabs/types/tabs.type").DropMenu[]>;
96
- handleContextMenu: (tabItem: import("vue-router").RouteLocationNormalized) => (e: Event) => void;
97
- handleMenuEvent: (item: import("../tabs/types/tabs.type").DropMenu) => void;
98
- handleContext: (e: any) => void;
99
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
100
- tabItem: {
101
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
102
- default: any;
103
- };
104
- isExtra: BooleanConstructor;
105
- }>>, {
106
- tabItem: import("vue-router").RouteLocationNormalized;
107
- isExtra: boolean;
108
- }>;
109
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
110
- readonly DtFullScreen: import("vue").DefineComponent<{}, {
111
- toggle: () => Promise<void>;
112
- isFullscreen: import("vue").Ref<boolean>;
113
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
114
- readonly DtLogo: import("vue").DefineComponent<{
115
- theme: {
116
- type: StringConstructor;
117
- validator: (v: string) => boolean;
118
- };
119
- showTitle: {
120
- type: BooleanConstructor;
121
- default: boolean;
122
- };
123
- }, {
124
- t: {
125
- (key: string): string;
126
- (key: string, locale: string): string;
127
- (key: string, locale: string, list: unknown[]): string;
128
- (key: string, locale: string, named: Record<string, unknown>): string;
129
- (key: string, list: unknown[]): string;
130
- (key: string, named: Record<string, unknown>): string;
131
- };
132
- slots: import("vue").Ref<any>;
133
- title: string;
134
- getLogoWidth: import("vue").ComputedRef<string | number>;
135
- props: any;
136
- getLogoClass: import("vue").ComputedRef<string>;
137
- readonly DtSlotContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
138
- template: {
139
- type: FunctionConstructor;
140
- };
141
- data: {
142
- type: ObjectConstructor;
143
- };
144
- }, {
145
- props: any;
146
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
147
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
148
- template: {
149
- type: FunctionConstructor;
150
- };
151
- data: {
152
- type: ObjectConstructor;
153
- };
154
- }>>, {}>>;
155
- readonly logoUrl: string;
156
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
157
- theme: {
158
- type: StringConstructor;
159
- validator: (v: string) => boolean;
160
- };
161
- showTitle: {
162
- type: BooleanConstructor;
163
- default: boolean;
164
- };
165
- }>>, {
166
- showTitle: boolean;
167
- }>;
168
- readonly DtTrigger: import("vue").DefineComponent<{
169
- theme: StringConstructor;
170
- }, {
171
- props: any;
172
- getCollapsed: import("vue").ComputedRef<boolean>;
173
- toggleCollapsed: () => void;
174
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
175
- theme: StringConstructor;
176
- }>>, {}>;
177
- readonly DtBreadCrumb: import("vue").DefineComponent<{}, {
178
- getIsZH: import("vue").ComputedRef<boolean>;
179
- routes: import("vue").Ref<any[]>;
180
- currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
181
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
182
- readonly DtMenuFilter: import("vue").DefineComponent<{}, {
183
- t: {
184
- (key: string): string;
185
- (key: string, locale: string): string;
186
- (key: string, locale: string, list: unknown[]): string;
187
- (key: string, locale: string, named: Record<string, unknown>): string;
188
- (key: string, list: unknown[]): string;
189
- (key: string, named: Record<string, unknown>): string;
190
- };
191
- menuList: import("vue").Ref<any[]>;
192
- router: import("vue-router").Router;
193
- filter: import("vue").Ref<string>;
194
- getShowSearch: import("vue").ComputedRef<boolean>;
195
- getIsZH: import("vue").ComputedRef<boolean>;
196
- isUseDef: import("vue").ComputedRef<boolean>;
197
- visibleChange: (e: any) => void;
198
- filterMenu: () => void;
199
- navigation: (url: string) => void;
200
- readonly UiSize: typeof import("../../enums").UiSize;
201
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
202
- readonly DtLangPicker: import("vue").DefineComponent<{
203
- reload: {
204
- type: BooleanConstructor;
205
- };
206
- }, {
207
- visible: import("vue").Ref<boolean>;
208
- currentLang: any;
209
- props: any;
210
- toggleLang: (lang: import("@dt-frames/core").Language) => Promise<void>;
211
- readonly localeList: {
212
- text: string;
213
- event: import("@dt-frames/core").Language;
214
- icon: string;
215
- }[];
216
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
217
- reload: {
218
- type: BooleanConstructor;
219
- };
220
- }>>, {
221
- reload: boolean;
222
- }>;
223
- readonly DtNotify: import("vue").DefineComponent<{}, {
224
- slots: import("vue").Ref<any>;
225
- readonly DtSlotContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
226
- template: {
227
- type: FunctionConstructor;
228
- };
229
- data: {
230
- type: ObjectConstructor;
231
- };
232
- }, {
233
- props: any;
234
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
235
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
236
- template: {
237
- type: FunctionConstructor;
238
- };
239
- data: {
240
- type: ObjectConstructor;
241
- };
242
- }>>, {}>>;
243
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
244
- readonly DtSize: import("vue").DefineComponent<{}, {
245
- t: {
246
- (key: string): string;
247
- (key: string, locale: string): string;
248
- (key: string, locale: string, list: unknown[]): string;
249
- (key: string, locale: string, named: Record<string, unknown>): string;
250
- (key: string, list: unknown[]): string;
251
- (key: string, named: Record<string, unknown>): string;
252
- };
253
- setThemeConf: (options?: import("../../types/theme.type").ThemeOptions) => void;
254
- getUiSize: import("vue").ComputedRef<import("../../enums").UiSize>;
255
- sizeList: {
256
- text: string;
257
- event: import("../../enums").UiSize;
258
- }[];
259
- visible: import("vue").Ref<boolean>;
260
- toggleLang: (size: import("../../enums").UiSize) => Promise<void>;
261
- readonly Popover: any;
262
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
263
- readonly DtUserInfo: import("vue").DefineComponent<{}, {
264
- t: {
265
- (key: string): string;
266
- (key: string, locale: string): string;
267
- (key: string, locale: string, list: unknown[]): string;
268
- (key: string, locale: string, named: Record<string, unknown>): string;
269
- (key: string, list: unknown[]): string;
270
- (key: string, named: Record<string, unknown>): string;
271
- };
272
- go: (path: string, isReplace?: boolean) => void;
273
- getShowLoginOut: import("vue").ComputedRef<boolean>;
274
- getLockscreen: import("vue").ComputedRef<boolean>;
275
- loginOutClick: () => {};
276
- useLockscreen: import("pinia").Store<"lockscreen", import("../../stores/lockscreen.store").ILockscreenState, {}, {
277
- setLock(payload: any, pwd?: string): void;
278
- }>;
279
- slots: import("vue").Ref<any>;
280
- popoverVisible: import("vue").Ref<boolean>;
281
- visible: import("vue").Ref<boolean>;
282
- password: any;
283
- getUserInfo: any;
284
- signOut: () => void;
285
- lockScreen: () => void;
286
- onLock: () => void;
287
- readonly DtSlotContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
288
- template: {
289
- type: FunctionConstructor;
290
- };
291
- data: {
292
- type: ObjectConstructor;
293
- };
294
- }, {
295
- props: any;
296
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
297
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
298
- template: {
299
- type: FunctionConstructor;
300
- };
301
- data: {
302
- type: ObjectConstructor;
303
- };
304
- }>>, {}>>;
305
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
306
- readonly DtSettingTheme: import("vue").DefineComponent<{}, {
307
- t: {
308
- (key: string): string;
309
- (key: string, locale: string): string;
310
- (key: string, locale: string, list: unknown[]): string;
311
- (key: string, locale: string, named: Record<string, unknown>): string;
312
- (key: string, list: unknown[]): string;
313
- (key: string, named: Record<string, unknown>): string;
314
- };
315
- visible: import("vue").Ref<boolean>;
316
- getShowBread: import("vue").ComputedRef<boolean>;
317
- getShowSearch: import("vue").ComputedRef<boolean>;
318
- getShowUiSize: import("vue").ComputedRef<boolean>;
319
- getShowNotice: import("vue").ComputedRef<boolean>;
320
- getShowFullScreen: import("vue").ComputedRef<boolean>;
321
- getShowLocale: import("vue").ComputedRef<boolean>;
322
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
323
- getShowFooter: import("vue").ComputedRef<any>;
324
- getContentMode: import("vue").ComputedRef<import("../../enums").ContentMode>;
325
- getMenuType: import("vue").ComputedRef<import("../../enums").MenuType>;
326
- getMenuMode: import("vue").ComputedRef<MenuMode>;
327
- defaultConf: {
328
- contentMode: import("../../enums").ContentMode;
329
- menuOptions: {
330
- mode: MenuMode;
331
- type: import("../../enums").MenuType;
332
- split: boolean;
333
- };
334
- headOptions: {
335
- showBreadCrumb: boolean;
336
- showSearch: boolean;
337
- notice: boolean;
338
- showFullScreen: boolean;
339
- showLocaleSwitch: boolean;
340
- };
341
- mulTabsOptions: {
342
- show: boolean;
343
- };
344
- footerOptions: {
345
- show: any;
346
- };
347
- };
348
- getConfig: () => {
349
- contentMode: import("../../enums").ContentMode;
350
- menuOptions: {
351
- mode: MenuMode;
352
- type: import("../../enums").MenuType;
353
- split: boolean;
354
- };
355
- headOptions: {
356
- showBreadCrumb: boolean;
357
- showSearch: boolean;
358
- notice: boolean;
359
- showFullScreen: boolean;
360
- showLocaleSwitch: boolean;
361
- };
362
- mulTabsOptions: {
363
- show: boolean;
364
- };
365
- footerOptions: {
366
- show: any;
367
- };
368
- };
369
- copy: () => void;
370
- reset: () => void;
371
- readonly DtMenuType: import("vue").DefineComponent<{}, {
372
- getMenuType: import("vue").ComputedRef<import("../../enums").MenuType>;
373
- getMenuMode: import("vue").ComputedRef<MenuMode>;
374
- menuTypeList: {
375
- title: string;
376
- headTheme: import("../../enums").Theme;
377
- menuTheme: import("../../enums").Theme;
378
- mode: MenuMode;
379
- type: import("../../enums").MenuType;
380
- split: boolean;
381
- }[];
382
- changeMenuType: (item: {
383
- title: string;
384
- headTheme: import("../../enums").Theme;
385
- menuTheme: import("../../enums").Theme;
386
- mode: MenuMode;
387
- type: import("../../enums").MenuType;
388
- split: boolean;
389
- }) => void;
390
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
391
- readonly DtFeature: import("vue").DefineComponent<{}, {
392
- t: {
393
- (key: string): string;
394
- (key: string, locale: string): string;
395
- (key: string, locale: string, list: unknown[]): string;
396
- (key: string, locale: string, named: Record<string, unknown>): string;
397
- (key: string, list: unknown[]): string;
398
- (key: string, named: Record<string, unknown>): string;
399
- };
400
- getShowBread: import("vue").ComputedRef<boolean>;
401
- getShowSearch: import("vue").ComputedRef<boolean>;
402
- getShowUiSize: import("vue").ComputedRef<boolean>;
403
- getShowNotice: import("vue").ComputedRef<boolean>;
404
- getShowFullScreen: import("vue").ComputedRef<boolean>;
405
- getShowLocale: import("vue").ComputedRef<boolean>;
406
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
407
- getShowFooter: import("vue").ComputedRef<any>;
408
- getContentMode: import("vue").ComputedRef<import("../../enums").ContentMode>;
409
- switchItems: {
410
- title: string;
411
- event: import("./helper/change-theme").HandlerEnum;
412
- def: import("vue").ComputedRef<any>;
413
- }[];
414
- selectItems: {
415
- title: string;
416
- event: import("./helper/change-theme").HandlerEnum;
417
- def: import("vue").ComputedRef<import("../../enums").ContentMode>;
418
- options: {
419
- value: import("../../enums").ContentMode;
420
- label: string;
421
- }[];
422
- }[];
423
- unref: typeof unref;
424
- DtTSelect: import("vue").DefineComponent<{
425
- event: {
426
- type: import("vue").PropType<import("./helper/change-theme").HandlerEnum>;
427
- };
428
- disabled: {
429
- type: BooleanConstructor;
430
- };
431
- title: {
432
- type: StringConstructor;
433
- };
434
- def: {
435
- type: import("vue").PropType<string | number>;
436
- };
437
- initValue: {
438
- type: import("vue").PropType<string | number>;
439
- };
440
- options: {
441
- type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
442
- default: () => any[];
443
- };
444
- }, {
445
- props: any;
446
- getBindValue: import("vue").ComputedRef<{
447
- value: string | number;
448
- defaultValue: string | number;
449
- } | {
450
- value?: undefined;
451
- defaultValue?: undefined;
452
- }>;
453
- handleChange: (val: any) => void;
454
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
455
- event: {
456
- type: import("vue").PropType<import("./helper/change-theme").HandlerEnum>;
457
- };
458
- disabled: {
459
- type: BooleanConstructor;
460
- };
461
- title: {
462
- type: StringConstructor;
463
- };
464
- def: {
465
- type: import("vue").PropType<string | number>;
466
- };
467
- initValue: {
468
- type: import("vue").PropType<string | number>;
469
- };
470
- options: {
471
- type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
472
- default: () => any[];
473
- };
474
- }>>, {
475
- disabled: boolean;
476
- options: import("ant-design-vue/es/select").DefaultOptionType[];
477
- }>;
478
- DtTSwitch: import("vue").DefineComponent<{
479
- event: {
480
- type: import("vue").PropType<import("./helper/change-theme").HandlerEnum>;
481
- };
482
- disabled: {
483
- type: BooleanConstructor;
484
- };
485
- title: {
486
- type: StringConstructor;
487
- };
488
- def: {
489
- type: BooleanConstructor;
490
- };
491
- }, {
492
- t: {
493
- (key: string): string;
494
- (key: string, locale: string): string;
495
- (key: string, locale: string, list: unknown[]): string;
496
- (key: string, locale: string, named: Record<string, unknown>): string;
497
- (key: string, list: unknown[]): string;
498
- (key: string, named: Record<string, unknown>): string;
499
- };
500
- props: any;
501
- getBindValue: import("vue").ComputedRef<{
502
- checked: true;
503
- } | {
504
- checked?: undefined;
505
- }>;
506
- handleChange: (e: any) => void;
507
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
508
- event: {
509
- type: import("vue").PropType<import("./helper/change-theme").HandlerEnum>;
510
- };
511
- disabled: {
512
- type: BooleanConstructor;
513
- };
514
- title: {
515
- type: StringConstructor;
516
- };
517
- def: {
518
- type: BooleanConstructor;
519
- };
520
- }>>, {
521
- def: boolean;
522
- disabled: boolean;
523
- }>;
524
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
525
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
526
- LayoutMenu: import("vue").DefineComponent<{
527
- theme: StringConstructor;
528
- splitType: {
529
- type: NumberConstructor;
530
- default: MenuSplitTye;
531
- };
532
- isHorizontal: BooleanConstructor;
533
- menuMode: StringConstructor;
534
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
535
- theme: StringConstructor;
536
- splitType: {
537
- type: NumberConstructor;
538
- default: MenuSplitTye;
539
- };
540
- isHorizontal: BooleanConstructor;
541
- menuMode: StringConstructor;
542
- }>>, {
543
- splitType: number;
544
- isHorizontal: boolean;
545
- }>;
546
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
547
4
  fixed: BooleanConstructor;
548
5
  }>>, {
549
6
  fixed: boolean;
550
- }>;
551
- export default _sfc_main;
7
+ }, {}>;
8
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -1,5 +1,5 @@
1
- import { MenuSplitTye } from '../../../../src/enums';
2
- declare const _sfc_main: import("vue").DefineComponent<{
1
+ import { MenuSplitTye } from '../../../../../theme/src/enums';
2
+ declare const _default: import("vue").DefineComponent<{
3
3
  theme: StringConstructor;
4
4
  splitType: {
5
5
  type: NumberConstructor;
@@ -16,7 +16,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
16
16
  isHorizontal: BooleanConstructor;
17
17
  menuMode: StringConstructor;
18
18
  }>>, {
19
- splitType: number;
20
19
  isHorizontal: boolean;
21
- }>;
22
- export default _sfc_main;
20
+ splitType: number;
21
+ }, {}>;
22
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,14 @@
1
+ declare const _default: import("vue").DefineComponent<{
2
+ type: {
3
+ type: StringConstructor;
4
+ default: any;
5
+ };
6
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ type: {
8
+ type: StringConstructor;
9
+ default: any;
10
+ };
11
+ }>>, {
12
+ type: string;
13
+ }, {}>;
14
+ export default _default;