@dt-frames/ui 2.0.24 → 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 +640 -636
  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,1630 +1,2 @@
1
- import { unref, CSSProperties } from 'vue';
2
- declare const _sfc_main: import("vue").DefineComponent<{}, {
3
- currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
4
- getShowFullHeaderRef: import("vue").ComputedRef<boolean>;
5
- getIsZH: import("vue").ComputedRef<boolean>;
6
- getHeaderHeight: import("vue").ComputedRef<number>;
7
- getUiSize: import("vue").ComputedRef<import("./enums").UiSize>;
8
- getLockscreen: import("vue").ComputedRef<boolean>;
9
- getSplit: import("vue").ComputedRef<boolean>;
10
- getShowMenu: import("vue").ComputedRef<boolean>;
11
- getShowSidebar: import("vue").ComputedRef<boolean>;
12
- getIsMixSidebar: import("vue").ComputedRef<boolean>;
13
- getFooter: import("vue").ComputedRef<import("./types/theme.type").FooterOptions>;
14
- getShowFooter: import("vue").ComputedRef<any>;
15
- height: any;
16
- useLockscreen: import("pinia").Store<"lockscreen", import("./stores/lockscreen.store").ILockscreenState, {}, {
17
- setLock(payload: any, pwd?: string): void;
18
- }>;
19
- isLock: import("vue").ComputedRef<boolean>;
20
- layoutClass: import("vue").ComputedRef<string>;
21
- layoutOption: import("vue").ComputedRef<{
22
- paddingTop: string;
23
- background: string;
24
- }>;
25
- getContentStyle: import("vue").ComputedRef<CSSProperties>;
26
- router: import("vue-router").Router;
27
- readonly RouterView: new () => {
28
- $props: import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").VNodeProps & import("vue-router").RouterViewProps;
29
- $slots: {
30
- default?: ({ Component, route, }: {
31
- Component: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
32
- [key: string]: any;
33
- }>;
34
- route: import("vue-router").RouteLocationNormalizedLoaded;
35
- }) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
36
- [key: string]: any;
37
- }>[];
38
- };
39
- };
40
- DtFeature: import("vue").DefineComponent<{}, {
41
- DtBackTop: import("vue").DefineComponent<{}, {
42
- getTarget: () => HTMLElement;
43
- getShowBackToTop: import("vue").ComputedRef<boolean>;
44
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
45
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
46
- DtHeader: import("vue").DefineComponent<{
47
- fixed: BooleanConstructor;
48
- }, {
49
- getSplit: import("vue").ComputedRef<boolean>;
50
- getHeaderTheme: import("vue").ComputedRef<import("./enums").Theme>;
51
- getShowHeaderLogo: import("vue").ComputedRef<boolean>;
52
- getShowHeaderTrigger: import("vue").ComputedRef<boolean>;
53
- getShowBread: import("vue").ComputedRef<boolean>;
54
- getShowLocale: import("vue").ComputedRef<boolean>;
55
- getShowFullScreen: import("vue").ComputedRef<boolean>;
56
- getShowSettingTheme: import("vue").ComputedRef<boolean>;
57
- getShowNotice: import("vue").ComputedRef<boolean>;
58
- getShowTopMenu: import("vue").ComputedRef<boolean>;
59
- getShowSearch: import("vue").ComputedRef<boolean>;
60
- getShowUiSize: import("vue").ComputedRef<boolean>;
61
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
62
- getMultipleTabPosIsTop: import("vue").ComputedRef<boolean>;
63
- getSplitType: import("vue").ComputedRef<import("./enums").MenuSplitTye.NONE | import("./enums").MenuSplitTye.TOP>;
64
- getMenuMode: import("vue").ComputedRef<import("./enums").MenuMode>;
65
- getShowTab: import("vue").ComputedRef<boolean>;
66
- props: any;
67
- getHeaderCls: import("vue").ComputedRef<string>;
68
- MultipleTabs: import("vue").DefineComponent<{}, {
69
- router: import("vue-router").Router;
70
- go: (path: string, isReplace?: boolean) => void;
71
- tabStore: import("pinia").Store<"route-reuse", import("./stores/routeReuse.store").RouteReuseState, {
72
- getTabList(): import("vue-router").RouteLocationNormalized[];
73
- getCachedTabList(): string[];
74
- getLastDragEndIndex(): number;
75
- }, {
76
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
77
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
78
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
79
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
80
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
81
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
82
- closeTabByKey(path: string, router: import("vue-router").Router): void;
83
- bulkCloseTabs(pathList: string[]): void;
84
- updateCacheTab(): void;
85
- refreshPage(router: import("vue-router").Router): Promise<void>;
86
- sortTabs(oldIndex: number, newIndex: number): void;
87
- resetState(): void;
88
- }>;
89
- getShowQuick: import("vue").ComputedRef<boolean>;
90
- getShowRedo: import("vue").ComputedRef<boolean>;
91
- activeKeyRef: any;
92
- getTabsState: import("vue").ComputedRef<import("vue-router").RouteLocationNormalized[]>;
93
- unClose: import("vue").ComputedRef<boolean>;
94
- handleChange: (activeKey: string) => void;
95
- handleEdit: (targetKey: string) => void;
96
- affixTextList: string[];
97
- readonly DtTabRedo: import("vue").DefineComponent<{}, {
98
- tabStore: import("pinia").Store<"route-reuse", import("./stores/routeReuse.store").RouteReuseState, {
99
- getTabList(): import("vue-router").RouteLocationNormalized[];
100
- getCachedTabList(): string[];
101
- getLastDragEndIndex(): number;
102
- }, {
103
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
104
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
105
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
106
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
107
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
108
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
109
- closeTabByKey(path: string, router: import("vue-router").Router): void;
110
- bulkCloseTabs(pathList: string[]): void;
111
- updateCacheTab(): void;
112
- refreshPage(router: import("vue-router").Router): Promise<void>;
113
- sortTabs(oldIndex: number, newIndex: number): void;
114
- resetState(): void;
115
- }>;
116
- router: import("vue-router").Router;
117
- handleRedo: () => void;
118
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
119
- readonly DtTabContent: import("vue").DefineComponent<{
120
- tabItem: {
121
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
122
- default: any;
123
- };
124
- isExtra: BooleanConstructor;
125
- }, {
126
- t: {
127
- (key: string): string;
128
- (key: string, locale: string): string;
129
- (key: string, locale: string, list: unknown[]): string;
130
- (key: string, locale: string, named: Record<string, unknown>): string;
131
- (key: string, list: unknown[]): string;
132
- (key: string, named: Record<string, unknown>): string;
133
- };
134
- props: any;
135
- menuLabelMap: Map<any, any>;
136
- getIsTabs: import("vue").ComputedRef<boolean>;
137
- getTrigger: import("vue").ComputedRef<("hover" | "click" | "contextmenu")[]>;
138
- getDropMenuList: import("vue").ComputedRef<import("./components/tabs/types/tabs.type").DropMenu[]>;
139
- handleContextMenu: (tabItem: import("vue-router").RouteLocationNormalized) => (e: Event) => void;
140
- handleMenuEvent: (item: import("./components/tabs/types/tabs.type").DropMenu) => void;
141
- handleContext: (e: any) => void;
142
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
143
- tabItem: {
144
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
145
- default: any;
146
- };
147
- isExtra: BooleanConstructor;
148
- }>>, {
149
- tabItem: import("vue-router").RouteLocationNormalized;
150
- isExtra: boolean;
151
- }>;
152
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
153
- readonly DtFullScreen: import("vue").DefineComponent<{}, {
154
- toggle: () => Promise<void>;
155
- isFullscreen: import("vue").Ref<boolean>;
156
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
157
- readonly DtLogo: import("vue").DefineComponent<{
158
- theme: {
159
- type: StringConstructor;
160
- validator: (v: string) => boolean;
161
- };
162
- showTitle: {
163
- type: BooleanConstructor;
164
- default: boolean;
165
- };
166
- }, {
167
- t: {
168
- (key: string): string;
169
- (key: string, locale: string): string;
170
- (key: string, locale: string, list: unknown[]): string;
171
- (key: string, locale: string, named: Record<string, unknown>): string;
172
- (key: string, list: unknown[]): string;
173
- (key: string, named: Record<string, unknown>): string;
174
- };
175
- slots: import("vue").Ref<any>;
176
- title: string;
177
- getLogoWidth: import("vue").ComputedRef<string | number>;
178
- props: any;
179
- getLogoClass: import("vue").ComputedRef<string>;
180
- readonly DtSlotContainer: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
181
- template: {
182
- type: FunctionConstructor;
183
- };
184
- data: {
185
- type: ObjectConstructor;
186
- };
187
- }, {
188
- props: any;
189
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
190
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
191
- template: {
192
- type: FunctionConstructor;
193
- };
194
- data: {
195
- type: ObjectConstructor;
196
- };
197
- }>>, {}>>;
198
- readonly logoUrl: string;
199
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
200
- theme: {
201
- type: StringConstructor;
202
- validator: (v: string) => boolean;
203
- };
204
- showTitle: {
205
- type: BooleanConstructor;
206
- default: boolean;
207
- };
208
- }>>, {
209
- showTitle: boolean;
210
- }>;
211
- readonly DtTrigger: import("vue").DefineComponent<{
212
- theme: StringConstructor;
213
- }, {
214
- props: any;
215
- getCollapsed: import("vue").ComputedRef<boolean>;
216
- toggleCollapsed: () => void;
217
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
218
- theme: StringConstructor;
219
- }>>, {}>;
220
- readonly DtBreadCrumb: import("vue").DefineComponent<{}, {
221
- getIsZH: import("vue").ComputedRef<boolean>;
222
- routes: import("vue").Ref<any[]>;
223
- currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
224
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
225
- readonly DtMenuFilter: import("vue").DefineComponent<{}, {
226
- t: {
227
- (key: string): string;
228
- (key: string, locale: string): string;
229
- (key: string, locale: string, list: unknown[]): string;
230
- (key: string, locale: string, named: Record<string, unknown>): string;
231
- (key: string, list: unknown[]): string;
232
- (key: string, named: Record<string, unknown>): string;
233
- };
234
- menuList: import("vue").Ref<any[]>;
235
- router: import("vue-router").Router;
236
- filter: import("vue").Ref<string>;
237
- getShowSearch: import("vue").ComputedRef<boolean>;
238
- getIsZH: import("vue").ComputedRef<boolean>;
239
- isUseDef: import("vue").ComputedRef<boolean>;
240
- visibleChange: (e: any) => void;
241
- filterMenu: () => void;
242
- navigation: (url: string) => void;
243
- readonly UiSize: typeof import("./enums").UiSize;
244
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
245
- readonly DtLangPicker: import("vue").DefineComponent<{
246
- reload: {
247
- type: BooleanConstructor;
248
- };
249
- }, {
250
- visible: import("vue").Ref<boolean>;
251
- currentLang: any;
252
- props: any;
253
- toggleLang: (lang: import("@dt-frames/core").Language) => Promise<void>;
254
- readonly localeList: {
255
- text: string;
256
- event: import("@dt-frames/core").Language;
257
- icon: string;
258
- }[];
259
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
260
- reload: {
261
- type: BooleanConstructor;
262
- };
263
- }>>, {
264
- reload: boolean;
265
- }>;
266
- readonly DtNotify: import("vue").DefineComponent<{}, {
267
- slots: import("vue").Ref<any>;
268
- readonly DtSlotContainer: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
269
- template: {
270
- type: FunctionConstructor;
271
- };
272
- data: {
273
- type: ObjectConstructor;
274
- };
275
- }, {
276
- props: any;
277
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
278
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
279
- template: {
280
- type: FunctionConstructor;
281
- };
282
- data: {
283
- type: ObjectConstructor;
284
- };
285
- }>>, {}>>;
286
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
287
- readonly DtSize: import("vue").DefineComponent<{}, {
288
- t: {
289
- (key: string): string;
290
- (key: string, locale: string): string;
291
- (key: string, locale: string, list: unknown[]): string;
292
- (key: string, locale: string, named: Record<string, unknown>): string;
293
- (key: string, list: unknown[]): string;
294
- (key: string, named: Record<string, unknown>): string;
295
- };
296
- setThemeConf: (options?: import("./types/theme.type").ThemeOptions) => void;
297
- getUiSize: import("vue").ComputedRef<import("./enums").UiSize>;
298
- sizeList: {
299
- text: string;
300
- event: import("./enums").UiSize;
301
- }[];
302
- visible: import("vue").Ref<boolean>;
303
- toggleLang: (size: import("./enums").UiSize) => Promise<void>;
304
- readonly Popover: any;
305
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
306
- readonly DtUserInfo: 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
- go: (path: string, isReplace?: boolean) => void;
316
- getShowLoginOut: import("vue").ComputedRef<boolean>;
317
- getLockscreen: import("vue").ComputedRef<boolean>;
318
- loginOutClick: () => {};
319
- useLockscreen: import("pinia").Store<"lockscreen", import("./stores/lockscreen.store").ILockscreenState, {}, {
320
- setLock(payload: any, pwd?: string): void;
321
- }>;
322
- slots: import("vue").Ref<any>;
323
- popoverVisible: import("vue").Ref<boolean>;
324
- visible: import("vue").Ref<boolean>;
325
- password: any;
326
- getUserInfo: any;
327
- signOut: () => void;
328
- lockScreen: () => void;
329
- onLock: () => void;
330
- readonly DtSlotContainer: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
331
- template: {
332
- type: FunctionConstructor;
333
- };
334
- data: {
335
- type: ObjectConstructor;
336
- };
337
- }, {
338
- props: any;
339
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
340
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
341
- template: {
342
- type: FunctionConstructor;
343
- };
344
- data: {
345
- type: ObjectConstructor;
346
- };
347
- }>>, {}>>;
348
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
349
- readonly DtSettingTheme: import("vue").DefineComponent<{}, {
350
- t: {
351
- (key: string): string;
352
- (key: string, locale: string): string;
353
- (key: string, locale: string, list: unknown[]): string;
354
- (key: string, locale: string, named: Record<string, unknown>): string;
355
- (key: string, list: unknown[]): string;
356
- (key: string, named: Record<string, unknown>): string;
357
- };
358
- visible: import("vue").Ref<boolean>;
359
- getShowBread: import("vue").ComputedRef<boolean>;
360
- getShowSearch: import("vue").ComputedRef<boolean>;
361
- getShowUiSize: import("vue").ComputedRef<boolean>;
362
- getShowNotice: import("vue").ComputedRef<boolean>;
363
- getShowFullScreen: import("vue").ComputedRef<boolean>;
364
- getShowLocale: import("vue").ComputedRef<boolean>;
365
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
366
- getShowFooter: import("vue").ComputedRef<any>;
367
- getContentMode: import("vue").ComputedRef<import("./enums").ContentMode>;
368
- getMenuType: import("vue").ComputedRef<import("./enums").MenuType>;
369
- getMenuMode: import("vue").ComputedRef<import("./enums").MenuMode>;
370
- defaultConf: {
371
- contentMode: import("./enums").ContentMode;
372
- menuOptions: {
373
- mode: import("./enums").MenuMode;
374
- type: import("./enums").MenuType;
375
- split: boolean;
376
- };
377
- headOptions: {
378
- showBreadCrumb: boolean;
379
- showSearch: boolean;
380
- notice: boolean;
381
- showFullScreen: boolean;
382
- showLocaleSwitch: boolean;
383
- };
384
- mulTabsOptions: {
385
- show: boolean;
386
- };
387
- footerOptions: {
388
- show: any;
389
- };
390
- };
391
- getConfig: () => {
392
- contentMode: import("./enums").ContentMode;
393
- menuOptions: {
394
- mode: import("./enums").MenuMode;
395
- type: import("./enums").MenuType;
396
- split: boolean;
397
- };
398
- headOptions: {
399
- showBreadCrumb: boolean;
400
- showSearch: boolean;
401
- notice: boolean;
402
- showFullScreen: boolean;
403
- showLocaleSwitch: boolean;
404
- };
405
- mulTabsOptions: {
406
- show: boolean;
407
- };
408
- footerOptions: {
409
- show: any;
410
- };
411
- };
412
- copy: () => void;
413
- reset: () => void;
414
- readonly DtMenuType: import("vue").DefineComponent<{}, {
415
- getMenuType: import("vue").ComputedRef<import("./enums").MenuType>;
416
- getMenuMode: import("vue").ComputedRef<import("./enums").MenuMode>;
417
- menuTypeList: {
418
- title: string;
419
- headTheme: import("./enums").Theme;
420
- menuTheme: import("./enums").Theme;
421
- mode: import("./enums").MenuMode;
422
- type: import("./enums").MenuType;
423
- split: boolean;
424
- }[];
425
- changeMenuType: (item: {
426
- title: string;
427
- headTheme: import("./enums").Theme;
428
- menuTheme: import("./enums").Theme;
429
- mode: import("./enums").MenuMode;
430
- type: import("./enums").MenuType;
431
- split: boolean;
432
- }) => void;
433
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
434
- readonly DtFeature: import("vue").DefineComponent<{}, {
435
- t: {
436
- (key: string): string;
437
- (key: string, locale: string): string;
438
- (key: string, locale: string, list: unknown[]): string;
439
- (key: string, locale: string, named: Record<string, unknown>): string;
440
- (key: string, list: unknown[]): string;
441
- (key: string, named: Record<string, unknown>): string;
442
- };
443
- getShowBread: import("vue").ComputedRef<boolean>;
444
- getShowSearch: import("vue").ComputedRef<boolean>;
445
- getShowUiSize: import("vue").ComputedRef<boolean>;
446
- getShowNotice: import("vue").ComputedRef<boolean>;
447
- getShowFullScreen: import("vue").ComputedRef<boolean>;
448
- getShowLocale: import("vue").ComputedRef<boolean>;
449
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
450
- getShowFooter: import("vue").ComputedRef<any>;
451
- getContentMode: import("vue").ComputedRef<import("./enums").ContentMode>;
452
- switchItems: {
453
- title: string;
454
- event: import("./components/header/helper/change-theme").HandlerEnum;
455
- def: import("vue").ComputedRef<any>;
456
- }[];
457
- selectItems: {
458
- title: string;
459
- event: import("./components/header/helper/change-theme").HandlerEnum;
460
- def: import("vue").ComputedRef<import("./enums").ContentMode>;
461
- options: {
462
- value: import("./enums").ContentMode;
463
- label: string;
464
- }[];
465
- }[];
466
- unref: typeof unref;
467
- DtTSelect: import("vue").DefineComponent<{
468
- event: {
469
- type: import("vue").PropType<import("./components/header/helper/change-theme").HandlerEnum>;
470
- };
471
- disabled: {
472
- type: BooleanConstructor;
473
- };
474
- title: {
475
- type: StringConstructor;
476
- };
477
- def: {
478
- type: import("vue").PropType<string | number>;
479
- };
480
- initValue: {
481
- type: import("vue").PropType<string | number>;
482
- };
483
- options: {
484
- type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
485
- default: () => any[];
486
- };
487
- }, {
488
- props: any;
489
- getBindValue: import("vue").ComputedRef<{
490
- value: string | number;
491
- defaultValue: string | number;
492
- } | {
493
- value?: undefined;
494
- defaultValue?: undefined;
495
- }>;
496
- handleChange: (val: any) => void;
497
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
498
- event: {
499
- type: import("vue").PropType<import("./components/header/helper/change-theme").HandlerEnum>;
500
- };
501
- disabled: {
502
- type: BooleanConstructor;
503
- };
504
- title: {
505
- type: StringConstructor;
506
- };
507
- def: {
508
- type: import("vue").PropType<string | number>;
509
- };
510
- initValue: {
511
- type: import("vue").PropType<string | number>;
512
- };
513
- options: {
514
- type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
515
- default: () => any[];
516
- };
517
- }>>, {
518
- disabled: boolean;
519
- options: import("ant-design-vue/es/select").DefaultOptionType[];
520
- }>;
521
- DtTSwitch: import("vue").DefineComponent<{
522
- event: {
523
- type: import("vue").PropType<import("./components/header/helper/change-theme").HandlerEnum>;
524
- };
525
- disabled: {
526
- type: BooleanConstructor;
527
- };
528
- title: {
529
- type: StringConstructor;
530
- };
531
- def: {
532
- type: BooleanConstructor;
533
- };
534
- }, {
535
- t: {
536
- (key: string): string;
537
- (key: string, locale: string): string;
538
- (key: string, locale: string, list: unknown[]): string;
539
- (key: string, locale: string, named: Record<string, unknown>): string;
540
- (key: string, list: unknown[]): string;
541
- (key: string, named: Record<string, unknown>): string;
542
- };
543
- props: any;
544
- getBindValue: import("vue").ComputedRef<{
545
- checked: true;
546
- } | {
547
- checked?: undefined;
548
- }>;
549
- handleChange: (e: any) => void;
550
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
551
- event: {
552
- type: import("vue").PropType<import("./components/header/helper/change-theme").HandlerEnum>;
553
- };
554
- disabled: {
555
- type: BooleanConstructor;
556
- };
557
- title: {
558
- type: StringConstructor;
559
- };
560
- def: {
561
- type: BooleanConstructor;
562
- };
563
- }>>, {
564
- def: boolean;
565
- disabled: boolean;
566
- }>;
567
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
568
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
569
- LayoutMenu: import("vue").DefineComponent<{
570
- theme: StringConstructor;
571
- splitType: {
572
- type: NumberConstructor;
573
- default: import("./enums").MenuSplitTye;
574
- };
575
- isHorizontal: BooleanConstructor;
576
- menuMode: StringConstructor;
577
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
578
- theme: StringConstructor;
579
- splitType: {
580
- type: NumberConstructor;
581
- default: import("./enums").MenuSplitTye;
582
- };
583
- isHorizontal: BooleanConstructor;
584
- menuMode: StringConstructor;
585
- }>>, {
586
- splitType: number;
587
- isHorizontal: boolean;
588
- }>;
589
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
590
- fixed: BooleanConstructor;
591
- }>>, {
592
- fixed: boolean;
593
- }>;
594
- LayoutSideBar: import("vue").DefineComponent<{}, {
595
- getMenuFixed: import("vue").ComputedRef<boolean>;
596
- getSplit: import("vue").ComputedRef<boolean>;
597
- getMenuHidden: import("vue").ComputedRef<boolean>;
598
- getMenuWidth: import("vue").ComputedRef<number>;
599
- getCollapsed: import("vue").ComputedRef<boolean>;
600
- getMenuTheme: import("vue").ComputedRef<import("./enums").Theme>;
601
- getRealWidth: import("vue").ComputedRef<number>;
602
- getIsMixMode: import("vue").ComputedRef<boolean>;
603
- getIsMixSidebar: import("vue").ComputedRef<boolean>;
604
- getCollapsedWidth: import("vue").ComputedRef<80 | 48 | 0>;
605
- onBreakPointChange: (broken: boolean) => void;
606
- getTriggerAttr: import("vue").ComputedRef<{
607
- trigger?: undefined;
608
- } | {
609
- trigger: any;
610
- }>;
611
- getShowTrigger: import("vue").ComputedRef<boolean>;
612
- dragBarRef: any;
613
- sideRef: any;
614
- hiddenDomStyle: import("vue").ComputedRef<{
615
- width: string;
616
- overflow: string;
617
- flex: string;
618
- maxWidth: string;
619
- minWidth: string;
620
- transition: string;
621
- }>;
622
- showClassSideBarRef: import("vue").ComputedRef<boolean>;
623
- getSiderClass: import("vue").ComputedRef<string>;
624
- getSplitType: import("vue").ComputedRef<import("./enums").MenuSplitTye.NONE | import("./enums").MenuSplitTye.LEFT>;
625
- getMode: import("vue").ComputedRef<import("./enums").MenuMode>;
626
- renderTrigger: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
627
- [key: string]: any;
628
- }>;
629
- LayoutMenu: import("vue").DefineComponent<{
630
- theme: StringConstructor;
631
- splitType: {
632
- type: NumberConstructor;
633
- default: import("./enums").MenuSplitTye;
634
- };
635
- isHorizontal: BooleanConstructor;
636
- menuMode: StringConstructor;
637
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
638
- theme: StringConstructor;
639
- splitType: {
640
- type: NumberConstructor;
641
- default: import("./enums").MenuSplitTye;
642
- };
643
- isHorizontal: BooleanConstructor;
644
- menuMode: StringConstructor;
645
- }>>, {
646
- splitType: number;
647
- isHorizontal: boolean;
648
- }>;
649
- DragBar: import("vue").DefineComponent<{}, {
650
- getCollapsed: import("vue").ComputedRef<boolean>;
651
- getCanDrag: import("vue").ComputedRef<boolean>;
652
- getMenuWidth: import("vue").ComputedRef<number>;
653
- getDragBarStyle: import("vue").ComputedRef<{
654
- left: string;
655
- } | {
656
- left?: undefined;
657
- }>;
658
- getClass: import("vue").ComputedRef<(string | {
659
- 'dt-darg-bar--hide': boolean;
660
- })[]>;
661
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
662
- MixSider: import("vue").DefineComponent<{}, {
663
- MENU_WIDTH: number;
664
- go: (path: string, isReplace?: boolean) => void;
665
- getMenuWidth: import("vue").ComputedRef<number>;
666
- getMenuTheme: import("vue").ComputedRef<import("./enums").Theme>;
667
- getMixSideTrigger: import("vue").ComputedRef<"hover" | "click">;
668
- setMixSiderIsHasMenu: (val: boolean) => void;
669
- menuModules: any;
670
- activeId: any;
671
- activePath: any;
672
- subMenus: import("vue").Ref<any[]>;
673
- getDomStyle: import("vue").ComputedRef<CSSProperties>;
674
- getWrapStyle: import("vue").ComputedRef<CSSProperties>;
675
- getSubMenuStyle: import("vue").ComputedRef<CSSProperties>;
676
- setDomWidth: (width: string) => {
677
- width: string;
678
- minWidth: string;
679
- maxWidth: string;
680
- flex: string;
681
- transition: string;
682
- };
683
- getMenuEvents: {
684
- onMouseleave: () => void;
685
- };
686
- getItemEvents: (item: import("@dt-frames/core").Menus) => {
687
- onMouseenter: () => void;
688
- onClick: () => void;
689
- } | {
690
- onClick: () => void;
691
- onMouseenter?: undefined;
692
- };
693
- currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
694
- setActive: (path: string, isHover?: boolean) => void;
695
- handleModuleClick: (path: string, isHover?: boolean) => void;
696
- DtLogo: import("vue").DefineComponent<{
697
- theme: {
698
- type: StringConstructor;
699
- validator: (v: string) => boolean;
700
- };
701
- showTitle: {
702
- type: BooleanConstructor;
703
- default: boolean;
704
- };
705
- }, {
706
- t: {
707
- (key: string): string;
708
- (key: string, locale: string): string;
709
- (key: string, locale: string, list: unknown[]): string;
710
- (key: string, locale: string, named: Record<string, unknown>): string;
711
- (key: string, list: unknown[]): string;
712
- (key: string, named: Record<string, unknown>): string;
713
- };
714
- slots: import("vue").Ref<any>;
715
- title: string;
716
- getLogoWidth: import("vue").ComputedRef<string | number>;
717
- props: any;
718
- getLogoClass: import("vue").ComputedRef<string>;
719
- readonly DtSlotContainer: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
720
- template: {
721
- type: FunctionConstructor;
722
- };
723
- data: {
724
- type: ObjectConstructor;
725
- };
726
- }, {
727
- props: any;
728
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
729
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
730
- template: {
731
- type: FunctionConstructor;
732
- };
733
- data: {
734
- type: ObjectConstructor;
735
- };
736
- }>>, {}>>;
737
- readonly logoUrl: string;
738
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
739
- theme: {
740
- type: StringConstructor;
741
- validator: (v: string) => boolean;
742
- };
743
- showTitle: {
744
- type: BooleanConstructor;
745
- default: boolean;
746
- };
747
- }>>, {
748
- showTitle: boolean;
749
- }>;
750
- readonly DtScrollContainer: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{}, {
751
- scrollbarRef: any;
752
- scrollTo: (to: number, duration?: number) => void;
753
- getScrollWrap: () => any;
754
- scrollBottom: () => void;
755
- ScrollBar: import("vue").DefineComponent<{
756
- wrapClass: {
757
- type: (StringConstructor | ArrayConstructor)[];
758
- default: string;
759
- };
760
- wrapStyle: ArrayConstructor;
761
- viewClass: {
762
- type: (StringConstructor | ArrayConstructor)[];
763
- default: string;
764
- };
765
- viewStyle: {
766
- type: (StringConstructor | ArrayConstructor)[];
767
- default: string;
768
- };
769
- noresize: BooleanConstructor;
770
- tag: {
771
- type: StringConstructor;
772
- default: string;
773
- };
774
- }, {
775
- sizeWidth: import("vue").Ref<string>;
776
- sizeHeight: import("vue").Ref<string>;
777
- moveX: import("vue").Ref<number>;
778
- moveY: import("vue").Ref<number>;
779
- wrap: import("vue").Ref<any>;
780
- resize: import("vue").Ref<any>;
781
- props: any;
782
- style: import("vue").ComputedRef<{}>;
783
- handleScroll: () => void;
784
- update: () => void;
785
- readonly Bar: import("vue").DefineComponent<{
786
- vertical: BooleanConstructor;
787
- size: StringConstructor;
788
- move: NumberConstructor;
789
- }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
790
- [key: string]: any;
791
- }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
792
- vertical: BooleanConstructor;
793
- size: StringConstructor;
794
- move: NumberConstructor;
795
- }>>, {
796
- vertical: boolean;
797
- }>;
798
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
799
- wrapClass: {
800
- type: (StringConstructor | ArrayConstructor)[];
801
- default: string;
802
- };
803
- wrapStyle: ArrayConstructor;
804
- viewClass: {
805
- type: (StringConstructor | ArrayConstructor)[];
806
- default: string;
807
- };
808
- viewStyle: {
809
- type: (StringConstructor | ArrayConstructor)[];
810
- default: string;
811
- };
812
- noresize: BooleanConstructor;
813
- tag: {
814
- type: StringConstructor;
815
- default: string;
816
- };
817
- }>>, {
818
- wrapClass: string | unknown[];
819
- viewClass: string | unknown[];
820
- viewStyle: string | unknown[];
821
- noresize: boolean;
822
- tag: string;
823
- }>;
824
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>>;
825
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
826
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
827
- LayoutMultipleHeader: import("vue").DefineComponent<{}, {
828
- getHeaderHeight: import("vue").ComputedRef<number>;
829
- getFixed: import("vue").ComputedRef<boolean>;
830
- getShowFullHeaderRef: import("vue").ComputedRef<boolean>;
831
- getShowInsetHeaderRef: import("vue").ComputedRef<boolean>;
832
- getTabsHeight: import("vue").ComputedRef<number>;
833
- getCalcContentWidth: import("vue").ComputedRef<string>;
834
- getIsMixMode: import("vue").ComputedRef<boolean>;
835
- getSplit: import("vue").ComputedRef<boolean>;
836
- getIsMixSidebar: import("vue").ComputedRef<boolean>;
837
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
838
- getMultipleTabPosIsTop: import("vue").ComputedRef<boolean>;
839
- getPlaceholderDomStyle: import("vue").ComputedRef<{
840
- height: string;
841
- }>;
842
- getSplitType: import("vue").ComputedRef<import("./enums").MenuSplitTye.NONE | import("./enums").MenuSplitTye.LEFT>;
843
- menusRef: import("vue").Ref<{
844
- parentPath?: string;
845
- children?: any[];
846
- includesPath?: string[];
847
- }[]>;
848
- getWrapStyle: import("vue").ComputedRef<CSSProperties>;
849
- getClass: import("vue").ComputedRef<string>;
850
- LayoutHeader: import("vue").DefineComponent<{
851
- fixed: BooleanConstructor;
852
- }, {
853
- getSplit: import("vue").ComputedRef<boolean>;
854
- getHeaderTheme: import("vue").ComputedRef<import("./enums").Theme>;
855
- getShowHeaderLogo: import("vue").ComputedRef<boolean>;
856
- getShowHeaderTrigger: import("vue").ComputedRef<boolean>;
857
- getShowBread: import("vue").ComputedRef<boolean>;
858
- getShowLocale: import("vue").ComputedRef<boolean>;
859
- getShowFullScreen: import("vue").ComputedRef<boolean>;
860
- getShowSettingTheme: import("vue").ComputedRef<boolean>;
861
- getShowNotice: import("vue").ComputedRef<boolean>;
862
- getShowTopMenu: import("vue").ComputedRef<boolean>;
863
- getShowSearch: import("vue").ComputedRef<boolean>;
864
- getShowUiSize: import("vue").ComputedRef<boolean>;
865
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
866
- getMultipleTabPosIsTop: import("vue").ComputedRef<boolean>;
867
- getSplitType: import("vue").ComputedRef<import("./enums").MenuSplitTye.NONE | import("./enums").MenuSplitTye.TOP>;
868
- getMenuMode: import("vue").ComputedRef<import("./enums").MenuMode>;
869
- getShowTab: import("vue").ComputedRef<boolean>;
870
- props: any;
871
- getHeaderCls: import("vue").ComputedRef<string>;
872
- MultipleTabs: import("vue").DefineComponent<{}, {
873
- router: import("vue-router").Router;
874
- go: (path: string, isReplace?: boolean) => void;
875
- tabStore: import("pinia").Store<"route-reuse", import("./stores/routeReuse.store").RouteReuseState, {
876
- getTabList(): import("vue-router").RouteLocationNormalized[];
877
- getCachedTabList(): string[];
878
- getLastDragEndIndex(): number;
879
- }, {
880
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
881
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
882
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
883
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
884
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
885
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
886
- closeTabByKey(path: string, router: import("vue-router").Router): void;
887
- bulkCloseTabs(pathList: string[]): void;
888
- updateCacheTab(): void;
889
- refreshPage(router: import("vue-router").Router): Promise<void>;
890
- sortTabs(oldIndex: number, newIndex: number): void;
891
- resetState(): void;
892
- }>;
893
- getShowQuick: import("vue").ComputedRef<boolean>;
894
- getShowRedo: import("vue").ComputedRef<boolean>;
895
- activeKeyRef: any;
896
- getTabsState: import("vue").ComputedRef<import("vue-router").RouteLocationNormalized[]>;
897
- unClose: import("vue").ComputedRef<boolean>;
898
- handleChange: (activeKey: string) => void;
899
- handleEdit: (targetKey: string) => void;
900
- affixTextList: string[];
901
- readonly DtTabRedo: import("vue").DefineComponent<{}, {
902
- tabStore: import("pinia").Store<"route-reuse", import("./stores/routeReuse.store").RouteReuseState, {
903
- getTabList(): import("vue-router").RouteLocationNormalized[];
904
- getCachedTabList(): string[];
905
- getLastDragEndIndex(): number;
906
- }, {
907
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
908
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
909
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
910
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
911
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
912
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
913
- closeTabByKey(path: string, router: import("vue-router").Router): void;
914
- bulkCloseTabs(pathList: string[]): void;
915
- updateCacheTab(): void;
916
- refreshPage(router: import("vue-router").Router): Promise<void>;
917
- sortTabs(oldIndex: number, newIndex: number): void;
918
- resetState(): void;
919
- }>;
920
- router: import("vue-router").Router;
921
- handleRedo: () => void;
922
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
923
- readonly DtTabContent: import("vue").DefineComponent<{
924
- tabItem: {
925
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
926
- default: any;
927
- };
928
- isExtra: BooleanConstructor;
929
- }, {
930
- t: {
931
- (key: string): string;
932
- (key: string, locale: string): string;
933
- (key: string, locale: string, list: unknown[]): string;
934
- (key: string, locale: string, named: Record<string, unknown>): string;
935
- (key: string, list: unknown[]): string;
936
- (key: string, named: Record<string, unknown>): string;
937
- };
938
- props: any;
939
- menuLabelMap: Map<any, any>;
940
- getIsTabs: import("vue").ComputedRef<boolean>;
941
- getTrigger: import("vue").ComputedRef<("hover" | "click" | "contextmenu")[]>;
942
- getDropMenuList: import("vue").ComputedRef<import("./components/tabs/types/tabs.type").DropMenu[]>;
943
- handleContextMenu: (tabItem: import("vue-router").RouteLocationNormalized) => (e: Event) => void;
944
- handleMenuEvent: (item: import("./components/tabs/types/tabs.type").DropMenu) => void;
945
- handleContext: (e: any) => void;
946
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
947
- tabItem: {
948
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
949
- default: any;
950
- };
951
- isExtra: BooleanConstructor;
952
- }>>, {
953
- tabItem: import("vue-router").RouteLocationNormalized;
954
- isExtra: boolean;
955
- }>;
956
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
957
- readonly DtFullScreen: import("vue").DefineComponent<{}, {
958
- toggle: () => Promise<void>;
959
- isFullscreen: import("vue").Ref<boolean>;
960
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
961
- readonly DtLogo: import("vue").DefineComponent<{
962
- theme: {
963
- type: StringConstructor;
964
- validator: (v: string) => boolean;
965
- };
966
- showTitle: {
967
- type: BooleanConstructor;
968
- default: boolean;
969
- };
970
- }, {
971
- t: {
972
- (key: string): string;
973
- (key: string, locale: string): string;
974
- (key: string, locale: string, list: unknown[]): string;
975
- (key: string, locale: string, named: Record<string, unknown>): string;
976
- (key: string, list: unknown[]): string;
977
- (key: string, named: Record<string, unknown>): string;
978
- };
979
- slots: import("vue").Ref<any>;
980
- title: string;
981
- getLogoWidth: import("vue").ComputedRef<string | number>;
982
- props: any;
983
- getLogoClass: import("vue").ComputedRef<string>;
984
- readonly DtSlotContainer: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
985
- template: {
986
- type: FunctionConstructor;
987
- };
988
- data: {
989
- type: ObjectConstructor;
990
- };
991
- }, {
992
- props: any;
993
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
994
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
995
- template: {
996
- type: FunctionConstructor;
997
- };
998
- data: {
999
- type: ObjectConstructor;
1000
- };
1001
- }>>, {}>>;
1002
- readonly logoUrl: string;
1003
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1004
- theme: {
1005
- type: StringConstructor;
1006
- validator: (v: string) => boolean;
1007
- };
1008
- showTitle: {
1009
- type: BooleanConstructor;
1010
- default: boolean;
1011
- };
1012
- }>>, {
1013
- showTitle: boolean;
1014
- }>;
1015
- readonly DtTrigger: import("vue").DefineComponent<{
1016
- theme: StringConstructor;
1017
- }, {
1018
- props: any;
1019
- getCollapsed: import("vue").ComputedRef<boolean>;
1020
- toggleCollapsed: () => void;
1021
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1022
- theme: StringConstructor;
1023
- }>>, {}>;
1024
- readonly DtBreadCrumb: import("vue").DefineComponent<{}, {
1025
- getIsZH: import("vue").ComputedRef<boolean>;
1026
- routes: import("vue").Ref<any[]>;
1027
- currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
1028
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1029
- readonly DtMenuFilter: import("vue").DefineComponent<{}, {
1030
- t: {
1031
- (key: string): string;
1032
- (key: string, locale: string): string;
1033
- (key: string, locale: string, list: unknown[]): string;
1034
- (key: string, locale: string, named: Record<string, unknown>): string;
1035
- (key: string, list: unknown[]): string;
1036
- (key: string, named: Record<string, unknown>): string;
1037
- };
1038
- menuList: import("vue").Ref<any[]>;
1039
- router: import("vue-router").Router;
1040
- filter: import("vue").Ref<string>;
1041
- getShowSearch: import("vue").ComputedRef<boolean>;
1042
- getIsZH: import("vue").ComputedRef<boolean>;
1043
- isUseDef: import("vue").ComputedRef<boolean>;
1044
- visibleChange: (e: any) => void;
1045
- filterMenu: () => void;
1046
- navigation: (url: string) => void;
1047
- readonly UiSize: typeof import("./enums").UiSize;
1048
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1049
- readonly DtLangPicker: import("vue").DefineComponent<{
1050
- reload: {
1051
- type: BooleanConstructor;
1052
- };
1053
- }, {
1054
- visible: import("vue").Ref<boolean>;
1055
- currentLang: any;
1056
- props: any;
1057
- toggleLang: (lang: import("@dt-frames/core").Language) => Promise<void>;
1058
- readonly localeList: {
1059
- text: string;
1060
- event: import("@dt-frames/core").Language;
1061
- icon: string;
1062
- }[];
1063
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1064
- reload: {
1065
- type: BooleanConstructor;
1066
- };
1067
- }>>, {
1068
- reload: boolean;
1069
- }>;
1070
- readonly DtNotify: import("vue").DefineComponent<{}, {
1071
- slots: import("vue").Ref<any>;
1072
- readonly DtSlotContainer: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
1073
- template: {
1074
- type: FunctionConstructor;
1075
- };
1076
- data: {
1077
- type: ObjectConstructor;
1078
- };
1079
- }, {
1080
- props: any;
1081
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
1082
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1083
- template: {
1084
- type: FunctionConstructor;
1085
- };
1086
- data: {
1087
- type: ObjectConstructor;
1088
- };
1089
- }>>, {}>>;
1090
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1091
- readonly DtSize: import("vue").DefineComponent<{}, {
1092
- t: {
1093
- (key: string): string;
1094
- (key: string, locale: string): string;
1095
- (key: string, locale: string, list: unknown[]): string;
1096
- (key: string, locale: string, named: Record<string, unknown>): string;
1097
- (key: string, list: unknown[]): string;
1098
- (key: string, named: Record<string, unknown>): string;
1099
- };
1100
- setThemeConf: (options?: import("./types/theme.type").ThemeOptions) => void;
1101
- getUiSize: import("vue").ComputedRef<import("./enums").UiSize>;
1102
- sizeList: {
1103
- text: string;
1104
- event: import("./enums").UiSize;
1105
- }[];
1106
- visible: import("vue").Ref<boolean>;
1107
- toggleLang: (size: import("./enums").UiSize) => Promise<void>;
1108
- readonly Popover: any;
1109
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1110
- readonly DtUserInfo: import("vue").DefineComponent<{}, {
1111
- t: {
1112
- (key: string): string;
1113
- (key: string, locale: string): string;
1114
- (key: string, locale: string, list: unknown[]): string;
1115
- (key: string, locale: string, named: Record<string, unknown>): string;
1116
- (key: string, list: unknown[]): string;
1117
- (key: string, named: Record<string, unknown>): string;
1118
- };
1119
- go: (path: string, isReplace?: boolean) => void;
1120
- getShowLoginOut: import("vue").ComputedRef<boolean>;
1121
- getLockscreen: import("vue").ComputedRef<boolean>;
1122
- loginOutClick: () => {};
1123
- useLockscreen: import("pinia").Store<"lockscreen", import("./stores/lockscreen.store").ILockscreenState, {}, {
1124
- setLock(payload: any, pwd?: string): void;
1125
- }>;
1126
- slots: import("vue").Ref<any>;
1127
- popoverVisible: import("vue").Ref<boolean>;
1128
- visible: import("vue").Ref<boolean>;
1129
- password: any;
1130
- getUserInfo: any;
1131
- signOut: () => void;
1132
- lockScreen: () => void;
1133
- onLock: () => void;
1134
- readonly DtSlotContainer: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
1135
- template: {
1136
- type: FunctionConstructor;
1137
- };
1138
- data: {
1139
- type: ObjectConstructor;
1140
- };
1141
- }, {
1142
- props: any;
1143
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
1144
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1145
- template: {
1146
- type: FunctionConstructor;
1147
- };
1148
- data: {
1149
- type: ObjectConstructor;
1150
- };
1151
- }>>, {}>>;
1152
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1153
- readonly DtSettingTheme: import("vue").DefineComponent<{}, {
1154
- t: {
1155
- (key: string): string;
1156
- (key: string, locale: string): string;
1157
- (key: string, locale: string, list: unknown[]): string;
1158
- (key: string, locale: string, named: Record<string, unknown>): string;
1159
- (key: string, list: unknown[]): string;
1160
- (key: string, named: Record<string, unknown>): string;
1161
- };
1162
- visible: import("vue").Ref<boolean>;
1163
- getShowBread: import("vue").ComputedRef<boolean>;
1164
- getShowSearch: import("vue").ComputedRef<boolean>;
1165
- getShowUiSize: import("vue").ComputedRef<boolean>;
1166
- getShowNotice: import("vue").ComputedRef<boolean>;
1167
- getShowFullScreen: import("vue").ComputedRef<boolean>;
1168
- getShowLocale: import("vue").ComputedRef<boolean>;
1169
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
1170
- getShowFooter: import("vue").ComputedRef<any>;
1171
- getContentMode: import("vue").ComputedRef<import("./enums").ContentMode>;
1172
- getMenuType: import("vue").ComputedRef<import("./enums").MenuType>;
1173
- getMenuMode: import("vue").ComputedRef<import("./enums").MenuMode>;
1174
- defaultConf: {
1175
- contentMode: import("./enums").ContentMode;
1176
- menuOptions: {
1177
- mode: import("./enums").MenuMode;
1178
- type: import("./enums").MenuType;
1179
- split: boolean;
1180
- };
1181
- headOptions: {
1182
- showBreadCrumb: boolean;
1183
- showSearch: boolean;
1184
- notice: boolean;
1185
- showFullScreen: boolean;
1186
- showLocaleSwitch: boolean;
1187
- };
1188
- mulTabsOptions: {
1189
- show: boolean;
1190
- };
1191
- footerOptions: {
1192
- show: any;
1193
- };
1194
- };
1195
- getConfig: () => {
1196
- contentMode: import("./enums").ContentMode;
1197
- menuOptions: {
1198
- mode: import("./enums").MenuMode;
1199
- type: import("./enums").MenuType;
1200
- split: boolean;
1201
- };
1202
- headOptions: {
1203
- showBreadCrumb: boolean;
1204
- showSearch: boolean;
1205
- notice: boolean;
1206
- showFullScreen: boolean;
1207
- showLocaleSwitch: boolean;
1208
- };
1209
- mulTabsOptions: {
1210
- show: boolean;
1211
- };
1212
- footerOptions: {
1213
- show: any;
1214
- };
1215
- };
1216
- copy: () => void;
1217
- reset: () => void;
1218
- readonly DtMenuType: import("vue").DefineComponent<{}, {
1219
- getMenuType: import("vue").ComputedRef<import("./enums").MenuType>;
1220
- getMenuMode: import("vue").ComputedRef<import("./enums").MenuMode>;
1221
- menuTypeList: {
1222
- title: string;
1223
- headTheme: import("./enums").Theme;
1224
- menuTheme: import("./enums").Theme;
1225
- mode: import("./enums").MenuMode;
1226
- type: import("./enums").MenuType;
1227
- split: boolean;
1228
- }[];
1229
- changeMenuType: (item: {
1230
- title: string;
1231
- headTheme: import("./enums").Theme;
1232
- menuTheme: import("./enums").Theme;
1233
- mode: import("./enums").MenuMode;
1234
- type: import("./enums").MenuType;
1235
- split: boolean;
1236
- }) => void;
1237
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1238
- readonly DtFeature: import("vue").DefineComponent<{}, {
1239
- t: {
1240
- (key: string): string;
1241
- (key: string, locale: string): string;
1242
- (key: string, locale: string, list: unknown[]): string;
1243
- (key: string, locale: string, named: Record<string, unknown>): string;
1244
- (key: string, list: unknown[]): string;
1245
- (key: string, named: Record<string, unknown>): string;
1246
- };
1247
- getShowBread: import("vue").ComputedRef<boolean>;
1248
- getShowSearch: import("vue").ComputedRef<boolean>;
1249
- getShowUiSize: import("vue").ComputedRef<boolean>;
1250
- getShowNotice: import("vue").ComputedRef<boolean>;
1251
- getShowFullScreen: import("vue").ComputedRef<boolean>;
1252
- getShowLocale: import("vue").ComputedRef<boolean>;
1253
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
1254
- getShowFooter: import("vue").ComputedRef<any>;
1255
- getContentMode: import("vue").ComputedRef<import("./enums").ContentMode>;
1256
- switchItems: {
1257
- title: string;
1258
- event: import("./components/header/helper/change-theme").HandlerEnum;
1259
- def: import("vue").ComputedRef<any>;
1260
- }[];
1261
- selectItems: {
1262
- title: string;
1263
- event: import("./components/header/helper/change-theme").HandlerEnum;
1264
- def: import("vue").ComputedRef<import("./enums").ContentMode>;
1265
- options: {
1266
- value: import("./enums").ContentMode;
1267
- label: string;
1268
- }[];
1269
- }[];
1270
- unref: typeof unref;
1271
- DtTSelect: import("vue").DefineComponent<{
1272
- event: {
1273
- type: import("vue").PropType<import("./components/header/helper/change-theme").HandlerEnum>;
1274
- };
1275
- disabled: {
1276
- type: BooleanConstructor;
1277
- };
1278
- title: {
1279
- type: StringConstructor;
1280
- };
1281
- def: {
1282
- type: import("vue").PropType<string | number>;
1283
- };
1284
- initValue: {
1285
- type: import("vue").PropType<string | number>;
1286
- };
1287
- options: {
1288
- type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
1289
- default: () => any[];
1290
- };
1291
- }, {
1292
- props: any;
1293
- getBindValue: import("vue").ComputedRef<{
1294
- value: string | number;
1295
- defaultValue: string | number;
1296
- } | {
1297
- value?: undefined;
1298
- defaultValue?: undefined;
1299
- }>;
1300
- handleChange: (val: any) => void;
1301
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1302
- event: {
1303
- type: import("vue").PropType<import("./components/header/helper/change-theme").HandlerEnum>;
1304
- };
1305
- disabled: {
1306
- type: BooleanConstructor;
1307
- };
1308
- title: {
1309
- type: StringConstructor;
1310
- };
1311
- def: {
1312
- type: import("vue").PropType<string | number>;
1313
- };
1314
- initValue: {
1315
- type: import("vue").PropType<string | number>;
1316
- };
1317
- options: {
1318
- type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
1319
- default: () => any[];
1320
- };
1321
- }>>, {
1322
- disabled: boolean;
1323
- options: import("ant-design-vue/es/select").DefaultOptionType[];
1324
- }>;
1325
- DtTSwitch: import("vue").DefineComponent<{
1326
- event: {
1327
- type: import("vue").PropType<import("./components/header/helper/change-theme").HandlerEnum>;
1328
- };
1329
- disabled: {
1330
- type: BooleanConstructor;
1331
- };
1332
- title: {
1333
- type: StringConstructor;
1334
- };
1335
- def: {
1336
- type: BooleanConstructor;
1337
- };
1338
- }, {
1339
- t: {
1340
- (key: string): string;
1341
- (key: string, locale: string): string;
1342
- (key: string, locale: string, list: unknown[]): string;
1343
- (key: string, locale: string, named: Record<string, unknown>): string;
1344
- (key: string, list: unknown[]): string;
1345
- (key: string, named: Record<string, unknown>): string;
1346
- };
1347
- props: any;
1348
- getBindValue: import("vue").ComputedRef<{
1349
- checked: true;
1350
- } | {
1351
- checked?: undefined;
1352
- }>;
1353
- handleChange: (e: any) => void;
1354
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1355
- event: {
1356
- type: import("vue").PropType<import("./components/header/helper/change-theme").HandlerEnum>;
1357
- };
1358
- disabled: {
1359
- type: BooleanConstructor;
1360
- };
1361
- title: {
1362
- type: StringConstructor;
1363
- };
1364
- def: {
1365
- type: BooleanConstructor;
1366
- };
1367
- }>>, {
1368
- def: boolean;
1369
- disabled: boolean;
1370
- }>;
1371
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1372
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1373
- LayoutMenu: import("vue").DefineComponent<{
1374
- theme: StringConstructor;
1375
- splitType: {
1376
- type: NumberConstructor;
1377
- default: import("./enums").MenuSplitTye;
1378
- };
1379
- isHorizontal: BooleanConstructor;
1380
- menuMode: StringConstructor;
1381
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1382
- theme: StringConstructor;
1383
- splitType: {
1384
- type: NumberConstructor;
1385
- default: import("./enums").MenuSplitTye;
1386
- };
1387
- isHorizontal: BooleanConstructor;
1388
- menuMode: StringConstructor;
1389
- }>>, {
1390
- splitType: number;
1391
- isHorizontal: boolean;
1392
- }>;
1393
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1394
- fixed: BooleanConstructor;
1395
- }>>, {
1396
- fixed: boolean;
1397
- }>;
1398
- MultipleTabs: import("vue").DefineComponent<{}, {
1399
- router: import("vue-router").Router;
1400
- go: (path: string, isReplace?: boolean) => void;
1401
- tabStore: import("pinia").Store<"route-reuse", import("./stores/routeReuse.store").RouteReuseState, {
1402
- getTabList(): import("vue-router").RouteLocationNormalized[];
1403
- getCachedTabList(): string[];
1404
- getLastDragEndIndex(): number;
1405
- }, {
1406
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
1407
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1408
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
1409
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1410
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1411
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1412
- closeTabByKey(path: string, router: import("vue-router").Router): void;
1413
- bulkCloseTabs(pathList: string[]): void;
1414
- updateCacheTab(): void;
1415
- refreshPage(router: import("vue-router").Router): Promise<void>;
1416
- sortTabs(oldIndex: number, newIndex: number): void;
1417
- resetState(): void;
1418
- }>;
1419
- getShowQuick: import("vue").ComputedRef<boolean>;
1420
- getShowRedo: import("vue").ComputedRef<boolean>;
1421
- activeKeyRef: any;
1422
- getTabsState: import("vue").ComputedRef<import("vue-router").RouteLocationNormalized[]>;
1423
- unClose: import("vue").ComputedRef<boolean>;
1424
- handleChange: (activeKey: string) => void;
1425
- handleEdit: (targetKey: string) => void;
1426
- affixTextList: string[];
1427
- readonly DtTabRedo: import("vue").DefineComponent<{}, {
1428
- tabStore: import("pinia").Store<"route-reuse", import("./stores/routeReuse.store").RouteReuseState, {
1429
- getTabList(): import("vue-router").RouteLocationNormalized[];
1430
- getCachedTabList(): string[];
1431
- getLastDragEndIndex(): number;
1432
- }, {
1433
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
1434
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1435
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
1436
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1437
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1438
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1439
- closeTabByKey(path: string, router: import("vue-router").Router): void;
1440
- bulkCloseTabs(pathList: string[]): void;
1441
- updateCacheTab(): void;
1442
- refreshPage(router: import("vue-router").Router): Promise<void>;
1443
- sortTabs(oldIndex: number, newIndex: number): void;
1444
- resetState(): void;
1445
- }>;
1446
- router: import("vue-router").Router;
1447
- handleRedo: () => void;
1448
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1449
- readonly DtTabContent: import("vue").DefineComponent<{
1450
- tabItem: {
1451
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
1452
- default: any;
1453
- };
1454
- isExtra: BooleanConstructor;
1455
- }, {
1456
- t: {
1457
- (key: string): string;
1458
- (key: string, locale: string): string;
1459
- (key: string, locale: string, list: unknown[]): string;
1460
- (key: string, locale: string, named: Record<string, unknown>): string;
1461
- (key: string, list: unknown[]): string;
1462
- (key: string, named: Record<string, unknown>): string;
1463
- };
1464
- props: any;
1465
- menuLabelMap: Map<any, any>;
1466
- getIsTabs: import("vue").ComputedRef<boolean>;
1467
- getTrigger: import("vue").ComputedRef<("hover" | "click" | "contextmenu")[]>;
1468
- getDropMenuList: import("vue").ComputedRef<import("./components/tabs/types/tabs.type").DropMenu[]>;
1469
- handleContextMenu: (tabItem: import("vue-router").RouteLocationNormalized) => (e: Event) => void;
1470
- handleMenuEvent: (item: import("./components/tabs/types/tabs.type").DropMenu) => void;
1471
- handleContext: (e: any) => void;
1472
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1473
- tabItem: {
1474
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
1475
- default: any;
1476
- };
1477
- isExtra: BooleanConstructor;
1478
- }>>, {
1479
- tabItem: import("vue-router").RouteLocationNormalized;
1480
- isExtra: boolean;
1481
- }>;
1482
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1483
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1484
- LayoutFooter: import("vue").DefineComponent<{}, {
1485
- getFooter: import("vue").ComputedRef<import("./types/theme.type").FooterOptions>;
1486
- title: any;
1487
- subTitle: any;
1488
- height: any;
1489
- footerOptions: import("vue").ComputedRef<{
1490
- lineHeight: string;
1491
- height: string;
1492
- padding: string;
1493
- width: string;
1494
- color: string;
1495
- }>;
1496
- readonly LayoutFooter: import("vue").DefineComponent<{
1497
- prefixCls: StringConstructor;
1498
- hasSider: {
1499
- type: BooleanConstructor;
1500
- default: any;
1501
- };
1502
- tagName: StringConstructor;
1503
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1504
- prefixCls: StringConstructor;
1505
- hasSider: {
1506
- type: BooleanConstructor;
1507
- default: any;
1508
- };
1509
- tagName: StringConstructor;
1510
- }>>, {
1511
- hasSider: boolean;
1512
- }>;
1513
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1514
- LayoutContent: import("vue").DefineComponent<{}, {
1515
- getTransitionMode: import("vue").ComputedRef<import("@dt-frames/core").RouterTransition>;
1516
- getLayoutContentMode: import("vue").ComputedRef<import("./enums").ContentMode>;
1517
- getPageLoading: boolean;
1518
- getOpenPageLoading: import("vue").ComputedRef<boolean>;
1519
- getCanCache: import("vue").ComputedRef<boolean>;
1520
- tabStore: import("pinia").Store<"route-reuse", import("./stores/routeReuse.store").RouteReuseState, {
1521
- getTabList(): import("vue-router").RouteLocationNormalized[];
1522
- getCachedTabList(): string[];
1523
- getLastDragEndIndex(): number;
1524
- }, {
1525
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
1526
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1527
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
1528
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1529
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1530
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
1531
- closeTabByKey(path: string, router: import("vue-router").Router): void;
1532
- bulkCloseTabs(pathList: string[]): void;
1533
- updateCacheTab(): void;
1534
- refreshPage(router: import("vue-router").Router): Promise<void>;
1535
- sortTabs(oldIndex: number, newIndex: number): void;
1536
- resetState(): void;
1537
- }>;
1538
- currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
1539
- contentMode: import("vue").ComputedRef<unknown>;
1540
- getTransitionName: (route: import("vue-router").RouteRecordRaw) => string;
1541
- getCaches: import("vue").ComputedRef<string[]>;
1542
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1543
- readonly LockScreen: import("vue").DefineComponent<{}, {
1544
- go: (path: string, isReplace?: boolean) => void;
1545
- slots: import("vue").Ref<any>;
1546
- loginOutClick: () => {};
1547
- getUserInfo: any;
1548
- useLockscreen: import("pinia").Store<"lockscreen", import("./stores/lockscreen.store").ILockscreenState, {}, {
1549
- setLock(payload: any, pwd?: string): void;
1550
- }>;
1551
- online: import("vue").ComputedRef<boolean>;
1552
- month: import("vue").Ref<any>;
1553
- week: import("vue").Ref<any>;
1554
- date: import("vue").Ref<any>;
1555
- hour: import("vue").Ref<any>;
1556
- minute: import("vue").Ref<any>;
1557
- state: {
1558
- showLogin: boolean;
1559
- loginLoading: boolean;
1560
- loginParams: {
1561
- password: string;
1562
- };
1563
- };
1564
- onLockLogin: (value: boolean) => boolean;
1565
- battery: import("vue").Ref<{
1566
- charging: boolean;
1567
- chargingTime: number;
1568
- dischargingTime: number;
1569
- level: number;
1570
- }>;
1571
- batteryStatus: import("vue").ComputedRef<"已充满" | "充电中" | "已断开电源">;
1572
- calcDischargingTime: import("vue").ComputedRef<string>;
1573
- calcChargingTime: import("vue").ComputedRef<string>;
1574
- goLogin: () => void;
1575
- resetLockInfo: () => void;
1576
- onLogin: () => void;
1577
- Recharge: import("vue").DefineComponent<{
1578
- battery: {
1579
- type: ObjectConstructor;
1580
- };
1581
- calcDischargingTime: {
1582
- type: StringConstructor;
1583
- };
1584
- calcChargingTime: {
1585
- type: StringConstructor;
1586
- };
1587
- batteryStatus: {
1588
- type: StringConstructor;
1589
- validator: (val: string) => boolean;
1590
- };
1591
- }, {
1592
- props: any;
1593
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1594
- battery: {
1595
- type: ObjectConstructor;
1596
- };
1597
- calcDischargingTime: {
1598
- type: StringConstructor;
1599
- };
1600
- calcChargingTime: {
1601
- type: StringConstructor;
1602
- };
1603
- batteryStatus: {
1604
- type: StringConstructor;
1605
- validator: (val: string) => boolean;
1606
- };
1607
- }>>, {}>;
1608
- readonly DtSlotContainer: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
1609
- template: {
1610
- type: FunctionConstructor;
1611
- };
1612
- data: {
1613
- type: ObjectConstructor;
1614
- };
1615
- }, {
1616
- props: any;
1617
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
1618
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1619
- template: {
1620
- type: FunctionConstructor;
1621
- };
1622
- data: {
1623
- type: ObjectConstructor;
1624
- };
1625
- }>>, {}>>;
1626
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1627
- readonly zhCN: import("ant-design-vue/es/locale-provider").Locale;
1628
- readonly en: import("ant-design-vue/es/locale-provider").Locale;
1629
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1630
- export default _sfc_main;
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;