@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,660 +0,0 @@
1
- import { CSSProperties, unref } from 'vue';
2
- import { MenuSplitTye } from '../../../src/enums';
3
- declare const _sfc_main: import("vue").DefineComponent<{}, {
4
- getHeaderHeight: import("vue").ComputedRef<number>;
5
- getFixed: import("vue").ComputedRef<boolean>;
6
- getShowFullHeaderRef: import("vue").ComputedRef<boolean>;
7
- getShowInsetHeaderRef: import("vue").ComputedRef<boolean>;
8
- getTabsHeight: import("vue").ComputedRef<number>;
9
- getCalcContentWidth: import("vue").ComputedRef<string>;
10
- getIsMixMode: import("vue").ComputedRef<boolean>;
11
- getSplit: import("vue").ComputedRef<boolean>;
12
- getIsMixSidebar: import("vue").ComputedRef<boolean>;
13
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
14
- getMultipleTabPosIsTop: import("vue").ComputedRef<boolean>;
15
- getPlaceholderDomStyle: import("vue").ComputedRef<{
16
- height: string;
17
- }>;
18
- getSplitType: import("vue").ComputedRef<MenuSplitTye.NONE | MenuSplitTye.LEFT>;
19
- menusRef: import("vue").Ref<{
20
- parentPath?: string;
21
- children?: any[];
22
- includesPath?: string[];
23
- }[]>;
24
- getWrapStyle: import("vue").ComputedRef<CSSProperties>;
25
- getClass: import("vue").ComputedRef<string>;
26
- LayoutHeader: import("vue").DefineComponent<{
27
- fixed: BooleanConstructor;
28
- }, {
29
- getSplit: import("vue").ComputedRef<boolean>;
30
- getHeaderTheme: import("vue").ComputedRef<import('../../../src/enums').Theme>;
31
- getShowHeaderLogo: import("vue").ComputedRef<boolean>;
32
- getShowHeaderTrigger: import("vue").ComputedRef<boolean>;
33
- getShowBread: import("vue").ComputedRef<boolean>;
34
- getShowLocale: import("vue").ComputedRef<boolean>;
35
- getShowFullScreen: import("vue").ComputedRef<boolean>;
36
- getShowSettingTheme: import("vue").ComputedRef<boolean>;
37
- getShowNotice: import("vue").ComputedRef<boolean>;
38
- getShowTopMenu: import("vue").ComputedRef<boolean>;
39
- getShowSearch: import("vue").ComputedRef<boolean>;
40
- getShowUiSize: import("vue").ComputedRef<boolean>;
41
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
42
- getMultipleTabPosIsTop: import("vue").ComputedRef<boolean>;
43
- getSplitType: import("vue").ComputedRef<MenuSplitTye.NONE | MenuSplitTye.TOP>;
44
- getMenuMode: import("vue").ComputedRef<import('../../../src/enums').MenuMode>;
45
- getShowTab: import("vue").ComputedRef<boolean>;
46
- props: any;
47
- getHeaderCls: import("vue").ComputedRef<string>;
48
- MultipleTabs: import("vue").DefineComponent<{}, {
49
- router: import("vue-router").Router;
50
- go: (path: string, isReplace?: boolean) => void;
51
- tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
52
- getTabList(): import("vue-router").RouteLocationNormalized[];
53
- getCachedTabList(): string[];
54
- getLastDragEndIndex(): number;
55
- }, {
56
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
57
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
58
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
59
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
60
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
61
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
62
- closeTabByKey(path: string, router: import("vue-router").Router): void;
63
- bulkCloseTabs(pathList: string[]): void;
64
- updateCacheTab(): void;
65
- refreshPage(router: import("vue-router").Router): Promise<void>;
66
- sortTabs(oldIndex: number, newIndex: number): void;
67
- resetState(): void;
68
- }>;
69
- getShowQuick: import("vue").ComputedRef<boolean>;
70
- getShowRedo: import("vue").ComputedRef<boolean>;
71
- activeKeyRef: any;
72
- getTabsState: import("vue").ComputedRef<import("vue-router").RouteLocationNormalized[]>;
73
- unClose: import("vue").ComputedRef<boolean>;
74
- handleChange: (activeKey: string) => void;
75
- handleEdit: (targetKey: string) => void;
76
- affixTextList: string[];
77
- readonly DtTabRedo: import("vue").DefineComponent<{}, {
78
- tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
79
- getTabList(): import("vue-router").RouteLocationNormalized[];
80
- getCachedTabList(): string[];
81
- getLastDragEndIndex(): number;
82
- }, {
83
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
84
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
85
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
86
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
87
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
88
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
89
- closeTabByKey(path: string, router: import("vue-router").Router): void;
90
- bulkCloseTabs(pathList: string[]): void;
91
- updateCacheTab(): void;
92
- refreshPage(router: import("vue-router").Router): Promise<void>;
93
- sortTabs(oldIndex: number, newIndex: number): void;
94
- resetState(): void;
95
- }>;
96
- router: import("vue-router").Router;
97
- handleRedo: () => void;
98
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
99
- readonly DtTabContent: import("vue").DefineComponent<{
100
- tabItem: {
101
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
102
- default: any;
103
- };
104
- isExtra: BooleanConstructor;
105
- }, {
106
- t: {
107
- (key: string): string;
108
- (key: string, locale: string): string;
109
- (key: string, locale: string, list: unknown[]): string;
110
- (key: string, locale: string, named: Record<string, unknown>): string;
111
- (key: string, list: unknown[]): string;
112
- (key: string, named: Record<string, unknown>): string;
113
- };
114
- props: any;
115
- menuLabelMap: Map<any, any>;
116
- getIsTabs: import("vue").ComputedRef<boolean>;
117
- getTrigger: import("vue").ComputedRef<("hover" | "click" | "contextmenu")[]>;
118
- getDropMenuList: import("vue").ComputedRef<import("../tabs/types/tabs.type").DropMenu[]>;
119
- handleContextMenu: (tabItem: import("vue-router").RouteLocationNormalized) => (e: Event) => void;
120
- handleMenuEvent: (item: import("../tabs/types/tabs.type").DropMenu) => void;
121
- handleContext: (e: any) => void;
122
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
123
- tabItem: {
124
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
125
- default: any;
126
- };
127
- isExtra: BooleanConstructor;
128
- }>>, {
129
- tabItem: import("vue-router").RouteLocationNormalized;
130
- isExtra: boolean;
131
- }>;
132
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
133
- readonly DtFullScreen: import("vue").DefineComponent<{}, {
134
- toggle: () => Promise<void>;
135
- isFullscreen: import("vue").Ref<boolean>;
136
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
137
- readonly DtLogo: import("vue").DefineComponent<{
138
- theme: {
139
- type: StringConstructor;
140
- validator: (v: string) => boolean;
141
- };
142
- showTitle: {
143
- type: BooleanConstructor;
144
- default: boolean;
145
- };
146
- }, {
147
- t: {
148
- (key: string): string;
149
- (key: string, locale: string): string;
150
- (key: string, locale: string, list: unknown[]): string;
151
- (key: string, locale: string, named: Record<string, unknown>): string;
152
- (key: string, list: unknown[]): string;
153
- (key: string, named: Record<string, unknown>): string;
154
- };
155
- slots: import("vue").Ref<any>;
156
- title: string;
157
- getLogoWidth: import("vue").ComputedRef<string | number>;
158
- props: any;
159
- getLogoClass: import("vue").ComputedRef<string>;
160
- readonly DtSlotContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
161
- template: {
162
- type: FunctionConstructor;
163
- };
164
- data: {
165
- type: ObjectConstructor;
166
- };
167
- }, {
168
- props: any;
169
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
170
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
171
- template: {
172
- type: FunctionConstructor;
173
- };
174
- data: {
175
- type: ObjectConstructor;
176
- };
177
- }>>, {}>>;
178
- readonly logoUrl: string;
179
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
180
- theme: {
181
- type: StringConstructor;
182
- validator: (v: string) => boolean;
183
- };
184
- showTitle: {
185
- type: BooleanConstructor;
186
- default: boolean;
187
- };
188
- }>>, {
189
- showTitle: boolean;
190
- }>;
191
- readonly DtTrigger: import("vue").DefineComponent<{
192
- theme: StringConstructor;
193
- }, {
194
- props: any;
195
- getCollapsed: import("vue").ComputedRef<boolean>;
196
- toggleCollapsed: () => void;
197
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
198
- theme: StringConstructor;
199
- }>>, {}>;
200
- readonly DtBreadCrumb: import("vue").DefineComponent<{}, {
201
- getIsZH: import("vue").ComputedRef<boolean>;
202
- routes: import("vue").Ref<any[]>;
203
- currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
204
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
205
- readonly DtMenuFilter: import("vue").DefineComponent<{}, {
206
- t: {
207
- (key: string): string;
208
- (key: string, locale: string): string;
209
- (key: string, locale: string, list: unknown[]): string;
210
- (key: string, locale: string, named: Record<string, unknown>): string;
211
- (key: string, list: unknown[]): string;
212
- (key: string, named: Record<string, unknown>): string;
213
- };
214
- menuList: import("vue").Ref<any[]>;
215
- router: import("vue-router").Router;
216
- filter: import("vue").Ref<string>;
217
- getShowSearch: import("vue").ComputedRef<boolean>;
218
- getIsZH: import("vue").ComputedRef<boolean>;
219
- isUseDef: import("vue").ComputedRef<boolean>;
220
- visibleChange: (e: any) => void;
221
- filterMenu: () => void;
222
- navigation: (url: string) => void;
223
- readonly UiSize: typeof import('../../../src/enums').UiSize;
224
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
225
- readonly DtLangPicker: import("vue").DefineComponent<{
226
- reload: {
227
- type: BooleanConstructor;
228
- };
229
- }, {
230
- visible: import("vue").Ref<boolean>;
231
- currentLang: any;
232
- props: any;
233
- toggleLang: (lang: import("@dt-frames/core").Language) => Promise<void>;
234
- readonly localeList: {
235
- text: string;
236
- event: import("@dt-frames/core").Language;
237
- icon: string;
238
- }[];
239
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
240
- reload: {
241
- type: BooleanConstructor;
242
- };
243
- }>>, {
244
- reload: boolean;
245
- }>;
246
- readonly DtNotify: import("vue").DefineComponent<{}, {
247
- slots: import("vue").Ref<any>;
248
- readonly DtSlotContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
249
- template: {
250
- type: FunctionConstructor;
251
- };
252
- data: {
253
- type: ObjectConstructor;
254
- };
255
- }, {
256
- props: any;
257
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
258
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
259
- template: {
260
- type: FunctionConstructor;
261
- };
262
- data: {
263
- type: ObjectConstructor;
264
- };
265
- }>>, {}>>;
266
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
267
- readonly DtSize: import("vue").DefineComponent<{}, {
268
- t: {
269
- (key: string): string;
270
- (key: string, locale: string): string;
271
- (key: string, locale: string, list: unknown[]): string;
272
- (key: string, locale: string, named: Record<string, unknown>): string;
273
- (key: string, list: unknown[]): string;
274
- (key: string, named: Record<string, unknown>): string;
275
- };
276
- setThemeConf: (options?: import("../../types/theme.type").ThemeOptions) => void;
277
- getUiSize: import("vue").ComputedRef<import('../../../src/enums').UiSize>;
278
- sizeList: {
279
- text: string;
280
- event: import('../../../src/enums').UiSize;
281
- }[];
282
- visible: import("vue").Ref<boolean>;
283
- toggleLang: (size: import('../../../src/enums').UiSize) => Promise<void>;
284
- readonly Popover: any;
285
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
286
- readonly DtUserInfo: import("vue").DefineComponent<{}, {
287
- t: {
288
- (key: string): string;
289
- (key: string, locale: string): string;
290
- (key: string, locale: string, list: unknown[]): string;
291
- (key: string, locale: string, named: Record<string, unknown>): string;
292
- (key: string, list: unknown[]): string;
293
- (key: string, named: Record<string, unknown>): string;
294
- };
295
- go: (path: string, isReplace?: boolean) => void;
296
- getShowLoginOut: import("vue").ComputedRef<boolean>;
297
- getLockscreen: import("vue").ComputedRef<boolean>;
298
- loginOutClick: () => {};
299
- useLockscreen: import("pinia").Store<"lockscreen", import("../../stores/lockscreen.store").ILockscreenState, {}, {
300
- setLock(payload: any, pwd?: string): void;
301
- }>;
302
- slots: import("vue").Ref<any>;
303
- popoverVisible: import("vue").Ref<boolean>;
304
- visible: import("vue").Ref<boolean>;
305
- password: any;
306
- getUserInfo: any;
307
- signOut: () => void;
308
- lockScreen: () => void;
309
- onLock: () => void;
310
- readonly DtSlotContainer: import("../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
311
- template: {
312
- type: FunctionConstructor;
313
- };
314
- data: {
315
- type: ObjectConstructor;
316
- };
317
- }, {
318
- props: any;
319
- Container: import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
320
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
321
- template: {
322
- type: FunctionConstructor;
323
- };
324
- data: {
325
- type: ObjectConstructor;
326
- };
327
- }>>, {}>>;
328
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
329
- readonly DtSettingTheme: import("vue").DefineComponent<{}, {
330
- t: {
331
- (key: string): string;
332
- (key: string, locale: string): string;
333
- (key: string, locale: string, list: unknown[]): string;
334
- (key: string, locale: string, named: Record<string, unknown>): string;
335
- (key: string, list: unknown[]): string;
336
- (key: string, named: Record<string, unknown>): string;
337
- };
338
- visible: import("vue").Ref<boolean>;
339
- getShowBread: import("vue").ComputedRef<boolean>;
340
- getShowSearch: import("vue").ComputedRef<boolean>;
341
- getShowUiSize: import("vue").ComputedRef<boolean>;
342
- getShowNotice: import("vue").ComputedRef<boolean>;
343
- getShowFullScreen: import("vue").ComputedRef<boolean>;
344
- getShowLocale: import("vue").ComputedRef<boolean>;
345
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
346
- getShowFooter: import("vue").ComputedRef<any>;
347
- getContentMode: import("vue").ComputedRef<import('../../../src/enums').ContentMode>;
348
- getMenuType: import("vue").ComputedRef<import('../../../src/enums').MenuType>;
349
- getMenuMode: import("vue").ComputedRef<import('../../../src/enums').MenuMode>;
350
- defaultConf: {
351
- contentMode: import('../../../src/enums').ContentMode;
352
- menuOptions: {
353
- mode: import('../../../src/enums').MenuMode;
354
- type: import('../../../src/enums').MenuType;
355
- split: boolean;
356
- };
357
- headOptions: {
358
- showBreadCrumb: boolean;
359
- showSearch: boolean;
360
- notice: boolean;
361
- showFullScreen: boolean;
362
- showLocaleSwitch: boolean;
363
- };
364
- mulTabsOptions: {
365
- show: boolean;
366
- };
367
- footerOptions: {
368
- show: any;
369
- };
370
- };
371
- getConfig: () => {
372
- contentMode: import('../../../src/enums').ContentMode;
373
- menuOptions: {
374
- mode: import('../../../src/enums').MenuMode;
375
- type: import('../../../src/enums').MenuType;
376
- split: boolean;
377
- };
378
- headOptions: {
379
- showBreadCrumb: boolean;
380
- showSearch: boolean;
381
- notice: boolean;
382
- showFullScreen: boolean;
383
- showLocaleSwitch: boolean;
384
- };
385
- mulTabsOptions: {
386
- show: boolean;
387
- };
388
- footerOptions: {
389
- show: any;
390
- };
391
- };
392
- copy: () => void;
393
- reset: () => void;
394
- readonly DtMenuType: import("vue").DefineComponent<{}, {
395
- getMenuType: import("vue").ComputedRef<import('../../../src/enums').MenuType>;
396
- getMenuMode: import("vue").ComputedRef<import('../../../src/enums').MenuMode>;
397
- menuTypeList: {
398
- title: string;
399
- headTheme: import('../../../src/enums').Theme;
400
- menuTheme: import('../../../src/enums').Theme;
401
- mode: import('../../../src/enums').MenuMode;
402
- type: import('../../../src/enums').MenuType;
403
- split: boolean;
404
- }[];
405
- changeMenuType: (item: {
406
- title: string;
407
- headTheme: import('../../../src/enums').Theme;
408
- menuTheme: import('../../../src/enums').Theme;
409
- mode: import('../../../src/enums').MenuMode;
410
- type: import('../../../src/enums').MenuType;
411
- split: boolean;
412
- }) => void;
413
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
414
- readonly DtFeature: import("vue").DefineComponent<{}, {
415
- t: {
416
- (key: string): string;
417
- (key: string, locale: string): string;
418
- (key: string, locale: string, list: unknown[]): string;
419
- (key: string, locale: string, named: Record<string, unknown>): string;
420
- (key: string, list: unknown[]): string;
421
- (key: string, named: Record<string, unknown>): string;
422
- };
423
- getShowBread: import("vue").ComputedRef<boolean>;
424
- getShowSearch: import("vue").ComputedRef<boolean>;
425
- getShowUiSize: import("vue").ComputedRef<boolean>;
426
- getShowNotice: import("vue").ComputedRef<boolean>;
427
- getShowFullScreen: import("vue").ComputedRef<boolean>;
428
- getShowLocale: import("vue").ComputedRef<boolean>;
429
- getShowMultipleTab: import("vue").ComputedRef<boolean>;
430
- getShowFooter: import("vue").ComputedRef<any>;
431
- getContentMode: import("vue").ComputedRef<import('../../../src/enums').ContentMode>;
432
- switchItems: {
433
- title: string;
434
- event: import("./helper/change-theme").HandlerEnum;
435
- def: import("vue").ComputedRef<any>;
436
- }[];
437
- selectItems: {
438
- title: string;
439
- event: import("./helper/change-theme").HandlerEnum;
440
- def: import("vue").ComputedRef<import('../../../src/enums').ContentMode>;
441
- options: {
442
- value: import('../../../src/enums').ContentMode;
443
- label: string;
444
- }[];
445
- }[];
446
- unref: typeof unref;
447
- DtTSelect: import("vue").DefineComponent<{
448
- event: {
449
- type: import("vue").PropType<import("./helper/change-theme").HandlerEnum>;
450
- };
451
- disabled: {
452
- type: BooleanConstructor;
453
- };
454
- title: {
455
- type: StringConstructor;
456
- };
457
- def: {
458
- type: import("vue").PropType<string | number>;
459
- };
460
- initValue: {
461
- type: import("vue").PropType<string | number>;
462
- };
463
- options: {
464
- type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
465
- default: () => any[];
466
- };
467
- }, {
468
- props: any;
469
- getBindValue: import("vue").ComputedRef<{
470
- value: string | number;
471
- defaultValue: string | number;
472
- } | {
473
- value?: undefined;
474
- defaultValue?: undefined;
475
- }>;
476
- handleChange: (val: any) => void;
477
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
478
- event: {
479
- type: import("vue").PropType<import("./helper/change-theme").HandlerEnum>;
480
- };
481
- disabled: {
482
- type: BooleanConstructor;
483
- };
484
- title: {
485
- type: StringConstructor;
486
- };
487
- def: {
488
- type: import("vue").PropType<string | number>;
489
- };
490
- initValue: {
491
- type: import("vue").PropType<string | number>;
492
- };
493
- options: {
494
- type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
495
- default: () => any[];
496
- };
497
- }>>, {
498
- disabled: boolean;
499
- options: import("ant-design-vue/es/select").DefaultOptionType[];
500
- }>;
501
- DtTSwitch: import("vue").DefineComponent<{
502
- event: {
503
- type: import("vue").PropType<import("./helper/change-theme").HandlerEnum>;
504
- };
505
- disabled: {
506
- type: BooleanConstructor;
507
- };
508
- title: {
509
- type: StringConstructor;
510
- };
511
- def: {
512
- type: BooleanConstructor;
513
- };
514
- }, {
515
- t: {
516
- (key: string): string;
517
- (key: string, locale: string): string;
518
- (key: string, locale: string, list: unknown[]): string;
519
- (key: string, locale: string, named: Record<string, unknown>): string;
520
- (key: string, list: unknown[]): string;
521
- (key: string, named: Record<string, unknown>): string;
522
- };
523
- props: any;
524
- getBindValue: import("vue").ComputedRef<{
525
- checked: true;
526
- } | {
527
- checked?: undefined;
528
- }>;
529
- handleChange: (e: any) => void;
530
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
531
- event: {
532
- type: import("vue").PropType<import("./helper/change-theme").HandlerEnum>;
533
- };
534
- disabled: {
535
- type: BooleanConstructor;
536
- };
537
- title: {
538
- type: StringConstructor;
539
- };
540
- def: {
541
- type: BooleanConstructor;
542
- };
543
- }>>, {
544
- def: boolean;
545
- disabled: boolean;
546
- }>;
547
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
548
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
549
- LayoutMenu: import("vue").DefineComponent<{
550
- theme: StringConstructor;
551
- splitType: {
552
- type: NumberConstructor;
553
- default: MenuSplitTye;
554
- };
555
- isHorizontal: BooleanConstructor;
556
- menuMode: StringConstructor;
557
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
558
- theme: StringConstructor;
559
- splitType: {
560
- type: NumberConstructor;
561
- default: MenuSplitTye;
562
- };
563
- isHorizontal: BooleanConstructor;
564
- menuMode: StringConstructor;
565
- }>>, {
566
- splitType: number;
567
- isHorizontal: boolean;
568
- }>;
569
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
570
- fixed: BooleanConstructor;
571
- }>>, {
572
- fixed: boolean;
573
- }>;
574
- MultipleTabs: import("vue").DefineComponent<{}, {
575
- router: import("vue-router").Router;
576
- go: (path: string, isReplace?: boolean) => void;
577
- tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
578
- getTabList(): import("vue-router").RouteLocationNormalized[];
579
- getCachedTabList(): string[];
580
- getLastDragEndIndex(): number;
581
- }, {
582
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
583
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
584
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
585
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
586
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
587
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
588
- closeTabByKey(path: string, router: import("vue-router").Router): void;
589
- bulkCloseTabs(pathList: string[]): void;
590
- updateCacheTab(): void;
591
- refreshPage(router: import("vue-router").Router): Promise<void>;
592
- sortTabs(oldIndex: number, newIndex: number): void;
593
- resetState(): void;
594
- }>;
595
- getShowQuick: import("vue").ComputedRef<boolean>;
596
- getShowRedo: import("vue").ComputedRef<boolean>;
597
- activeKeyRef: any;
598
- getTabsState: import("vue").ComputedRef<import("vue-router").RouteLocationNormalized[]>;
599
- unClose: import("vue").ComputedRef<boolean>;
600
- handleChange: (activeKey: string) => void;
601
- handleEdit: (targetKey: string) => void;
602
- affixTextList: string[];
603
- readonly DtTabRedo: import("vue").DefineComponent<{}, {
604
- tabStore: import("pinia").Store<"route-reuse", import("../../stores/routeReuse.store").RouteReuseState, {
605
- getTabList(): import("vue-router").RouteLocationNormalized[];
606
- getCachedTabList(): string[];
607
- getLastDragEndIndex(): number;
608
- }, {
609
- addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
610
- closeTab(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
611
- closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
612
- closeLeftTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
613
- closeRightTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
614
- closeOtherTabs(route: import("vue-router").RouteLocationNormalized, router: import("vue-router").Router): void;
615
- closeTabByKey(path: string, router: import("vue-router").Router): void;
616
- bulkCloseTabs(pathList: string[]): void;
617
- updateCacheTab(): void;
618
- refreshPage(router: import("vue-router").Router): Promise<void>;
619
- sortTabs(oldIndex: number, newIndex: number): void;
620
- resetState(): void;
621
- }>;
622
- router: import("vue-router").Router;
623
- handleRedo: () => void;
624
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
625
- readonly DtTabContent: import("vue").DefineComponent<{
626
- tabItem: {
627
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
628
- default: any;
629
- };
630
- isExtra: BooleanConstructor;
631
- }, {
632
- t: {
633
- (key: string): string;
634
- (key: string, locale: string): string;
635
- (key: string, locale: string, list: unknown[]): string;
636
- (key: string, locale: string, named: Record<string, unknown>): string;
637
- (key: string, list: unknown[]): string;
638
- (key: string, named: Record<string, unknown>): string;
639
- };
640
- props: any;
641
- menuLabelMap: Map<any, any>;
642
- getIsTabs: import("vue").ComputedRef<boolean>;
643
- getTrigger: import("vue").ComputedRef<("hover" | "click" | "contextmenu")[]>;
644
- getDropMenuList: import("vue").ComputedRef<import("../tabs/types/tabs.type").DropMenu[]>;
645
- handleContextMenu: (tabItem: import("vue-router").RouteLocationNormalized) => (e: Event) => void;
646
- handleMenuEvent: (item: import("../tabs/types/tabs.type").DropMenu) => void;
647
- handleContext: (e: any) => void;
648
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
649
- tabItem: {
650
- type: import("vue").PropType<import("vue-router").RouteLocationNormalized>;
651
- default: any;
652
- };
653
- isExtra: BooleanConstructor;
654
- }>>, {
655
- tabItem: import("vue-router").RouteLocationNormalized;
656
- isExtra: boolean;
657
- }>;
658
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
659
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
660
- export default _sfc_main;