@dt-frames/ui 3.0.1 → 4.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 (687) hide show
  1. package/dist/es/_virtual/preload-helper.mjs +1 -0
  2. package/dist/es/assets/node_modules/.pnpm/nprogress@0.2.0/node_modules/nprogress/nprogress-BgDCIyLK.css +1 -0
  3. package/dist/es/components/drawer/index.d.ts +5 -0
  4. package/dist/es/components/drawer/index.mjs +1 -0
  5. package/{es → dist/es}/components/drawer/src/hooks/useDrawer.d.ts +1 -1
  6. package/dist/es/components/drawer/src/index.d.ts +20 -0
  7. package/dist/es/components/drawer/src/types/index.d.ts +208 -0
  8. package/dist/es/components/drawer/src/types/index.ts +223 -0
  9. package/dist/es/components/form/index.d.ts +9 -0
  10. package/dist/es/components/form/index.mjs +1 -0
  11. package/dist/es/components/form/src/conponents/FormButtons.d.ts +29 -0
  12. package/dist/es/components/form/src/conponents/FormItems.d.ts +19 -0
  13. package/dist/es/components/form/src/conponents/RadioGroup.d.ts +10 -0
  14. package/{es/components/form/src/components → dist/es/components/form/src/conponents}/componentMap.d.ts +1 -1
  15. package/dist/es/components/form/src/hooks/useForm.d.ts +8 -0
  16. package/dist/es/components/form/src/hooks/useFormActions.d.ts +32 -0
  17. package/dist/es/components/form/src/hooks/useFormEvent.d.ts +29 -0
  18. package/dist/es/components/form/src/hooks/useFormValues.d.ts +13 -0
  19. package/dist/es/components/form/src/index.d.ts +493 -0
  20. package/dist/es/components/form/src/types/form.d.ts +355 -0
  21. package/dist/es/components/form/src/types/form.ts +391 -0
  22. package/dist/es/components/form/src/types/item.d.ts +3036 -0
  23. package/dist/es/components/form/src/types/item.ts +3169 -0
  24. package/dist/es/components/form/src/utils/index.d.ts +16 -0
  25. package/dist/es/components/form/styles/index.scss +10 -0
  26. package/dist/es/components/hover-card/index.d.ts +7 -0
  27. package/dist/es/components/hover-card/index.mjs +1 -0
  28. package/dist/es/components/hover-card/src/hover-card-content.d.ts +24 -0
  29. package/dist/es/components/hover-card/src/hover-card-trigger.d.ts +18 -0
  30. package/dist/es/components/hover-card/src/hover-card.d.ts +22 -0
  31. package/dist/es/components/icon/index.d.ts +4 -0
  32. package/dist/es/components/icon/index.mjs +1 -0
  33. package/dist/es/components/icon/src/index.d.ts +31 -0
  34. package/dist/es/components/icon/src/types/index.d.ts +6 -0
  35. package/dist/es/components/icon-picker/index.d.ts +4 -0
  36. package/dist/es/components/icon-picker/index.mjs +9 -0
  37. package/dist/es/components/icon-picker/src/components/IconPicker.d.ts +23 -0
  38. package/dist/es/components/icon-picker/src/components/SelectIcon.d.ts +39 -0
  39. package/dist/es/components/icon-picker/src/icon.d.ts +13 -0
  40. package/dist/es/components/icon-picker/src/index.d.ts +27 -0
  41. package/dist/es/components/icon-picker/styles/index.scss +0 -0
  42. package/dist/es/components/iframe/index.d.ts +4 -0
  43. package/dist/es/components/iframe/index.mjs +1 -0
  44. package/dist/es/components/iframe/src/index.d.ts +46 -0
  45. package/dist/es/components/modal/index.d.ts +7 -0
  46. package/dist/es/components/modal/index.mjs +1 -0
  47. package/dist/es/components/modal/src/components/Header.d.ts +8 -0
  48. package/dist/es/components/modal/src/hooks/useModal.d.ts +24 -0
  49. package/dist/es/components/modal/src/index.d.ts +822 -0
  50. package/dist/es/components/modal/src/types/modal.d.ts +246 -0
  51. package/dist/es/components/modal/src/types/modal.ts +265 -0
  52. package/dist/es/components/modal/styles/index.scss +8 -0
  53. package/dist/es/components/table/index.d.ts +9 -0
  54. package/dist/es/components/table/index.mjs +1 -0
  55. package/dist/es/components/table/src/components/Pagination.d.ts +15 -0
  56. package/dist/es/components/table/src/components/TableAction.d.ts +18 -0
  57. package/dist/es/components/table/src/components/TableHeader.d.ts +28 -0
  58. package/dist/es/components/table/src/components/TableLoading.d.ts +2 -0
  59. package/dist/es/components/table/src/components/tableSetting/Column.d.ts +222 -0
  60. package/dist/es/components/table/src/components/tableSetting/Download.d.ts +6 -0
  61. package/dist/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +2 -0
  62. package/dist/es/components/table/src/components/tableSetting/Fullscreen.d.ts +2 -0
  63. package/dist/es/components/table/src/components/tableSetting/Search.d.ts +5 -0
  64. package/dist/es/components/table/src/components/tableSetting/index.d.ts +7 -0
  65. package/dist/es/components/table/src/hooks/useColumns.d.ts +18 -0
  66. package/dist/es/components/table/src/hooks/useDataSource.d.ts +17 -0
  67. package/dist/es/components/table/src/hooks/useLoading.d.ts +7 -0
  68. package/dist/es/components/table/src/hooks/usePagination.d.ts +9 -0
  69. package/dist/es/components/table/src/hooks/useRowSelection.d.ts +7 -0
  70. package/dist/es/components/table/src/hooks/useTable.d.ts +3 -0
  71. package/dist/es/components/table/src/hooks/useTableIns.d.ts +12 -0
  72. package/dist/es/components/table/src/index.d.ts +775 -0
  73. package/dist/es/components/table/src/types/pagination.d.ts +100 -0
  74. package/dist/es/components/table/src/types/pagination.ts +102 -0
  75. package/dist/es/components/table/src/types/table.d.ts +632 -0
  76. package/dist/es/components/table/src/types/table.ts +668 -0
  77. package/dist/es/components/table/styles/index.scss +66 -0
  78. package/dist/es/components/tree/index.d.ts +7 -0
  79. package/dist/es/components/tree/index.mjs +1 -0
  80. package/dist/es/components/tree/src/components/ContextMenu.d.ts +80 -0
  81. package/dist/es/components/tree/src/components/TreeHeader.d.ts +31 -0
  82. package/dist/es/components/tree/src/hooks/useContextMenu.d.ts +11 -0
  83. package/dist/es/components/tree/src/hooks/useTree.d.ts +2 -0
  84. package/dist/es/components/tree/src/index.d.ts +116 -0
  85. package/dist/es/components/tree/src/types/index.d.ts +758 -0
  86. package/dist/es/components/tree/src/types/index.ts +788 -0
  87. package/dist/es/components/tree/styles/index.scss +15 -0
  88. package/dist/es/components/upload/assets/docx-preview-BLYEK_jf.js +38 -0
  89. package/dist/es/components/upload/assets/index-CUsgWuYW.css +1 -0
  90. package/dist/es/components/upload/assets/nprogress-BgDCIyLK.css +1 -0
  91. package/dist/es/components/upload/index.d.ts +6 -0
  92. package/dist/es/components/upload/index.mjs +1 -0
  93. package/dist/es/components/upload/src/components/PdfView.d.ts +2 -0
  94. package/dist/es/components/upload/src/components/WordView.d.ts +4 -0
  95. package/dist/es/components/upload/src/hooks/useFile.d.ts +14 -0
  96. package/dist/es/components/upload/src/index.d.ts +23 -0
  97. package/dist/es/components/upload/src/types/index.d.ts +229 -0
  98. package/dist/es/components/upload/src/utils/index.d.ts +15 -0
  99. package/dist/es/components/upload/styles/index.scss +0 -0
  100. package/dist/es/components/virtual-list/index.d.ts +4 -0
  101. package/dist/es/components/virtual-list/index.mjs +1 -0
  102. package/dist/es/components/virtual-list/src/index.d.ts +32 -0
  103. package/dist/es/components/virtual-list/src/types/index.d.ts +26 -0
  104. package/dist/es/components/virtual-list/styles/index.scss +0 -0
  105. package/dist/es/components/vxe-table/index.d.ts +7 -0
  106. package/dist/es/components/vxe-table/index.mjs +1 -0
  107. package/dist/es/components/vxe-table/src/components/Header.d.ts +28 -0
  108. package/dist/es/components/vxe-table/src/components/Pagination.d.ts +15 -0
  109. package/dist/es/components/vxe-table/src/components/RenderCell.d.ts +10 -0
  110. package/dist/es/components/vxe-table/src/components/TableAction.d.ts +18 -0
  111. package/dist/es/components/vxe-table/src/components/tableSetting/Column.d.ts +222 -0
  112. package/dist/es/components/vxe-table/src/components/tableSetting/Download.d.ts +6 -0
  113. package/dist/es/components/vxe-table/src/components/tableSetting/DownloadCtrl.d.ts +2 -0
  114. package/dist/es/components/vxe-table/src/components/tableSetting/Fullscreen.d.ts +2 -0
  115. package/dist/es/components/vxe-table/src/components/tableSetting/index.d.ts +7 -0
  116. package/dist/es/components/vxe-table/src/helper/index.d.ts +7 -0
  117. package/dist/es/components/vxe-table/src/hooks/useColumns.d.ts +5 -0
  118. package/dist/es/components/vxe-table/src/hooks/usePagination.d.ts +7 -0
  119. package/dist/es/components/vxe-table/src/hooks/useTableIns.d.ts +15 -0
  120. package/dist/es/components/vxe-table/src/hooks/useVxeTable.d.ts +2 -0
  121. package/dist/es/components/vxe-table/src/index.d.ts +155 -0
  122. package/dist/es/components/vxe-table/src/types/index.d.ts +181 -0
  123. package/dist/es/components/vxe-table/src/types/pagination.d.ts +100 -0
  124. package/dist/es/components/vxe-table/src/types/table.d.ts +25 -0
  125. package/dist/es/components/vxe-table/src/utils/index.d.ts +5 -0
  126. package/dist/es/components/vxe-table/styles/index.scss +6 -0
  127. package/dist/es/hooks/useCurd.d.ts +4 -0
  128. package/dist/es/hooks/useCurd.mjs +1 -0
  129. package/dist/es/hooks/useDownload.d.ts +9 -0
  130. package/dist/es/hooks/useDownload.mjs +1 -0
  131. package/dist/es/hooks/useSource.d.ts +10 -0
  132. package/dist/es/hooks/useSource.mjs +1 -0
  133. package/dist/es/index.d.ts +11 -0
  134. package/dist/es/index.mjs +1 -0
  135. package/dist/es/init/config.d.ts +6 -0
  136. package/dist/es/init/config.mjs +1 -0
  137. package/dist/es/init/index.d.ts +11 -0
  138. package/dist/es/init/index.mjs +1 -0
  139. package/dist/es/init/types/appConf.d.ts +331 -0
  140. package/dist/es/init/vxeTable.d.ts +5 -0
  141. package/dist/es/layout/assets/avator-uscRzRXF.png +0 -0
  142. package/dist/es/layout/index.d.ts +11 -0
  143. package/dist/es/layout/index.mjs +3 -0
  144. package/dist/es/layout/src/components/LayoutContent.d.ts +22 -0
  145. package/dist/es/layout/src/components/LayoutFooter.d.ts +23 -0
  146. package/dist/es/layout/src/components/LayoutHeader.d.ts +49 -0
  147. package/dist/es/layout/src/components/LayoutSidebar.d.ts +116 -0
  148. package/dist/es/layout/src/components/LayoutTabbar.d.ts +20 -0
  149. package/dist/es/layout/src/components/content/Content.d.ts +2 -0
  150. package/dist/es/layout/src/components/footer/CopyRight.d.ts +15 -0
  151. package/dist/es/layout/src/components/header/ArrowRight.d.ts +2 -0
  152. package/dist/es/layout/src/components/header/Breadcrumb.d.ts +13 -0
  153. package/dist/es/layout/src/components/header/FullScreen.d.ts +2 -0
  154. package/dist/es/layout/src/components/header/GlobalSearch.d.ts +417 -0
  155. package/dist/es/layout/src/components/header/Header.d.ts +22 -0
  156. package/dist/es/layout/src/components/header/IconButton.d.ts +29 -0
  157. package/dist/es/layout/src/components/header/LanguageToggle.d.ts +8 -0
  158. package/dist/es/layout/src/components/header/Logo.d.ts +54 -0
  159. package/dist/es/layout/src/components/header/User.d.ts +2 -0
  160. package/dist/es/layout/src/components/header/perferences/block/block.d.ts +22 -0
  161. package/dist/es/layout/src/components/header/perferences/block/component/CheckboxItem.d.ts +38 -0
  162. package/dist/es/layout/src/components/header/perferences/block/component/InputItem.d.ts +35 -0
  163. package/dist/es/layout/src/components/header/perferences/block/component/NumberItem.d.ts +36 -0
  164. package/dist/es/layout/src/components/header/perferences/block/component/SelectItem.d.ts +35 -0
  165. package/dist/es/layout/src/components/header/perferences/block/component/SwitchItem.d.ts +33 -0
  166. package/dist/es/layout/src/components/header/perferences/block/component/ToggleItem.d.ts +32 -0
  167. package/dist/es/layout/src/components/header/perferences/block/general/Animation.d.ts +18 -0
  168. package/dist/es/layout/src/components/header/perferences/block/general/General.d.ts +18 -0
  169. package/dist/es/layout/src/components/header/perferences/block/layout/Breadcrumb.d.ts +24 -0
  170. package/dist/es/layout/src/components/header/perferences/block/layout/Content.d.ts +9 -0
  171. package/dist/es/layout/src/components/header/perferences/block/layout/Copyright.d.ts +27 -0
  172. package/dist/es/layout/src/components/header/perferences/block/layout/Footer.d.ts +12 -0
  173. package/dist/es/layout/src/components/header/perferences/block/layout/Header.d.ts +19 -0
  174. package/dist/es/layout/src/components/header/perferences/block/layout/Layout.d.ts +10 -0
  175. package/dist/es/layout/src/components/header/perferences/block/layout/Navigation.d.ts +19 -0
  176. package/dist/es/layout/src/components/header/perferences/block/layout/Sidebar.d.ts +35 -0
  177. package/dist/es/layout/src/components/header/perferences/block/layout/Tabbar.d.ts +39 -0
  178. package/dist/es/layout/src/components/header/perferences/block/layout/Widget.d.ts +33 -0
  179. package/dist/es/layout/src/components/header/perferences/block/shortcut-keys/Global.d.ts +18 -0
  180. package/dist/es/layout/src/components/header/perferences/block/theme/BuiltinTheme.d.ts +16 -0
  181. package/dist/es/layout/src/components/header/perferences/block/theme/ColorMode.d.ts +12 -0
  182. package/dist/es/layout/src/components/header/perferences/block/theme/Radius.d.ts +9 -0
  183. package/dist/es/layout/src/components/header/perferences/block/theme/Theme.d.ts +15 -0
  184. package/dist/es/layout/src/components/header/perferences/icons/content-compact.d.ts +2 -0
  185. package/dist/es/layout/src/components/header/perferences/icons/full-content.d.ts +2 -0
  186. package/dist/es/layout/src/components/header/perferences/icons/header-mixed-nav.d.ts +2 -0
  187. package/dist/es/layout/src/components/header/perferences/icons/header-nav.d.ts +2 -0
  188. package/dist/es/layout/src/components/header/perferences/icons/header-sidebar-nav.d.ts +2 -0
  189. package/dist/es/layout/src/components/header/perferences/icons/index.d.ts +10 -0
  190. package/dist/es/layout/src/components/header/perferences/icons/mixed-nav.d.ts +2 -0
  191. package/dist/es/layout/src/components/header/perferences/icons/sidebar-mixed-nav.d.ts +2 -0
  192. package/dist/es/layout/src/components/header/perferences/icons/sidebar-nav.d.ts +2 -0
  193. package/dist/es/layout/src/components/header/perferences/preferences-button.d.ts +6 -0
  194. package/dist/es/layout/src/components/header/perferences/preferences-drawer.d.ts +223 -0
  195. package/dist/es/layout/src/components/header/perferences/preferences.d.ts +27 -0
  196. package/dist/es/layout/src/components/lockscreen/Lockscreen.d.ts +2 -0
  197. package/{es/theme/src/components/header/components/lock → dist/es/layout/src/components/lockscreen}/Recharge.d.ts +3 -3
  198. package/dist/es/layout/src/components/lockscreen/useBattery.d.ts +16 -0
  199. package/dist/es/layout/src/components/lockscreen/useTime.d.ts +3 -0
  200. package/dist/es/layout/src/components/menu/ExtraMenu.d.ts +11 -0
  201. package/dist/es/layout/src/components/menu/Menu.d.ts +12 -0
  202. package/dist/es/layout/src/components/menu/MixedMenu.d.ts +11 -0
  203. package/dist/es/layout/src/components/menu/SidebarCollapseButton.d.ts +9 -0
  204. package/dist/es/layout/src/components/menu/SidebarFixedButton.d.ts +9 -0
  205. package/dist/es/layout/src/components/menu/basic-menu/BasicMenu.d.ts +37 -0
  206. package/dist/es/layout/src/components/menu/basic-menu/CollapseTransition.d.ts +17 -0
  207. package/dist/es/layout/src/components/menu/basic-menu/HoverCard.d.ts +29 -0
  208. package/dist/es/layout/src/components/menu/basic-menu/Menu.d.ts +5 -0
  209. package/dist/es/layout/src/components/menu/basic-menu/MenuBadge.d.ts +6 -0
  210. package/dist/es/layout/src/components/menu/basic-menu/MenuBadgeDot.d.ts +10 -0
  211. package/dist/es/layout/src/components/menu/basic-menu/MenuItem.d.ts +28 -0
  212. package/dist/es/layout/src/components/menu/basic-menu/NoramalMenu.d.ts +14 -0
  213. package/dist/es/layout/src/components/menu/basic-menu/SubMenu.d.ts +6 -0
  214. package/dist/es/layout/src/components/menu/basic-menu/SubMenuCom.d.ts +25 -0
  215. package/dist/es/layout/src/components/menu/basic-menu/SubMenuContent.d.ts +27 -0
  216. package/dist/es/layout/src/components/menu/basic-menu/index.d.ts +2 -0
  217. package/dist/es/layout/src/components/menu/basic-menu/type.d.ts +127 -0
  218. package/dist/es/layout/src/components/menu/hooks/useMenu.d.ts +9 -0
  219. package/dist/es/layout/src/components/menu/hooks/useMenuScroll.d.ts +9 -0
  220. package/dist/es/layout/src/components/tabbar/Tabbar.d.ts +6 -0
  221. package/dist/es/layout/src/components/tabbar/hooks/useTab.d.ts +25 -0
  222. package/dist/es/layout/src/components/tabbar/hooks/useTabbar.d.ts +15 -0
  223. package/dist/es/layout/src/components/tabbar/hooks/useTabsDrag.d.ts +8 -0
  224. package/dist/es/layout/src/components/tabbar/hooks/useTabsViewScroll.d.ts +11 -0
  225. package/dist/es/layout/src/components/tabbar/tabsView/TabsContent.d.ts +959 -0
  226. package/dist/es/layout/src/components/tabbar/tabsView/ToolScreen.d.ts +9 -0
  227. package/dist/es/layout/src/components/tabbar/tabsView/ToolsMore.d.ts +6 -0
  228. package/dist/es/layout/src/components/tabbar/tabsView/types.d.ts +68 -0
  229. package/dist/es/layout/src/const/constants.d.ts +13 -0
  230. package/dist/es/layout/src/const/preferences.config.d.ts +8 -0
  231. package/dist/es/layout/src/hooks/useContext.d.ts +6 -0
  232. package/dist/es/layout/src/hooks/useDesignTokens.d.ts +1 -0
  233. package/dist/es/layout/src/hooks/useExtraMenu.d.ts +12 -0
  234. package/dist/es/layout/src/hooks/useLayoutStyle.d.ts +36 -0
  235. package/dist/es/layout/src/hooks/useMenu.d.ts +4 -0
  236. package/dist/es/layout/src/hooks/useMixedMenu.d.ts +13 -0
  237. package/dist/es/layout/src/hooks/useNavigation.d.ts +5 -0
  238. package/dist/es/layout/src/hooks/useTheme.d.ts +34 -0
  239. package/dist/es/layout/src/index.d.ts +28 -0
  240. package/dist/es/layout/src/layout.d.ts +71 -0
  241. package/dist/es/layout/src/stores/preferences.store.d.ts +66 -0
  242. package/dist/es/layout/src/stores/useTabbar.store.d.ts +185 -0
  243. package/dist/es/layout/src/types/basic.type.d.ts +5 -0
  244. package/dist/es/layout/src/types/menu.type.d.ts +102 -0
  245. package/dist/es/layout/src/types/perferences.type.d.ts +287 -0
  246. package/dist/es/layout/src/types/route.type.d.ts +109 -0
  247. package/dist/es/layout/src/utils/color.d.ts +19 -0
  248. package/dist/es/layout/src/utils/css.d.ts +14 -0
  249. package/dist/es/layout/src/utils/diff.d.ts +6 -0
  250. package/dist/es/layout/src/utils/dom.d.ts +6 -0
  251. package/dist/es/layout/src/utils/letter.d.ts +20 -0
  252. package/dist/es/layout/src/utils/menu.d.ts +20 -0
  253. package/dist/es/layout/styles/css/animation.css +299 -0
  254. package/dist/es/layout/styles/css/dark.css +232 -0
  255. package/dist/es/layout/styles/css/default.css +174 -0
  256. package/dist/es/layout/styles/css/uncss.css +109 -0
  257. package/dist/es/layout/styles/index.scss +871 -0
  258. package/dist/es/lib/components/drawer/index.d.ts +5 -0
  259. package/dist/es/lib/components/drawer/src/hooks/useDrawer.d.ts +3 -0
  260. package/dist/es/lib/components/drawer/src/types/index.d.ts +208 -0
  261. package/dist/es/lib/components/form/index.d.ts +9 -0
  262. package/dist/es/lib/components/form/src/conponents/componentMap.d.ts +4 -0
  263. package/dist/es/lib/components/form/src/hooks/useForm.d.ts +8 -0
  264. package/dist/es/lib/components/form/src/hooks/useFormActions.d.ts +32 -0
  265. package/dist/es/lib/components/form/src/hooks/useFormEvent.d.ts +29 -0
  266. package/dist/es/lib/components/form/src/hooks/useFormValues.d.ts +13 -0
  267. package/dist/es/lib/components/form/src/types/form.d.ts +355 -0
  268. package/dist/es/lib/components/form/src/types/item.d.ts +3170 -0
  269. package/dist/es/lib/components/form/src/utils/index.d.ts +16 -0
  270. package/dist/es/lib/components/hover-card/index.d.ts +7 -0
  271. package/dist/es/lib/components/icon/index.d.ts +4 -0
  272. package/dist/es/lib/components/icon-picker/index.d.ts +4 -0
  273. package/dist/es/lib/components/icon-picker/src/icon.d.ts +13 -0
  274. package/dist/es/lib/components/iframe/index.d.ts +4 -0
  275. package/dist/es/lib/components/modal/index.d.ts +7 -0
  276. package/dist/es/lib/components/modal/src/hooks/useModal.d.ts +24 -0
  277. package/dist/es/lib/components/modal/src/types/modal.d.ts +246 -0
  278. package/dist/es/lib/components/table/index.d.ts +9 -0
  279. package/dist/es/lib/components/table/src/hooks/useColumns.d.ts +18 -0
  280. package/dist/es/lib/components/table/src/hooks/useDataSource.d.ts +17 -0
  281. package/dist/es/lib/components/table/src/hooks/useLoading.d.ts +7 -0
  282. package/dist/es/lib/components/table/src/hooks/usePagination.d.ts +9 -0
  283. package/dist/es/lib/components/table/src/hooks/useRowSelection.d.ts +7 -0
  284. package/dist/es/lib/components/table/src/hooks/useTable.d.ts +3 -0
  285. package/dist/es/lib/components/table/src/hooks/useTableIns.d.ts +12 -0
  286. package/dist/es/lib/components/table/src/types/pagination.d.ts +100 -0
  287. package/dist/es/lib/components/table/src/types/table.d.ts +632 -0
  288. package/dist/es/lib/components/tree/index.d.ts +7 -0
  289. package/dist/es/lib/components/tree/src/enums/index.d.ts +6 -0
  290. package/dist/es/lib/components/tree/src/hooks/useContextMenu.d.ts +11 -0
  291. package/dist/es/lib/components/tree/src/hooks/useTree.d.ts +2 -0
  292. package/dist/es/lib/components/tree/src/types/index.d.ts +758 -0
  293. package/dist/es/lib/components/upload/index.d.ts +4 -0
  294. package/dist/es/lib/components/upload/src/hooks/useFile.d.ts +14 -0
  295. package/dist/es/lib/components/upload/src/types/index.d.ts +88 -0
  296. package/dist/es/lib/components/upload/src/utils/index.d.ts +15 -0
  297. package/dist/es/lib/components/virtual-list/index.d.ts +4 -0
  298. package/dist/es/lib/components/virtual-list/src/types/index.d.ts +26 -0
  299. package/dist/es/lib/components/vxe-table/index.d.ts +7 -0
  300. package/dist/es/lib/components/vxe-table/src/helper/index.d.ts +7 -0
  301. package/dist/es/lib/components/vxe-table/src/hooks/useColumns.d.ts +5 -0
  302. package/dist/es/lib/components/vxe-table/src/hooks/usePagination.d.ts +7 -0
  303. package/dist/es/lib/components/vxe-table/src/hooks/useTableIns.d.ts +15 -0
  304. package/dist/es/lib/components/vxe-table/src/hooks/useVxeTable.d.ts +2 -0
  305. package/dist/es/lib/components/vxe-table/src/types/index.d.ts +181 -0
  306. package/dist/es/lib/components/vxe-table/src/types/pagination.d.ts +100 -0
  307. package/dist/es/lib/components/vxe-table/src/types/table.d.ts +25 -0
  308. package/dist/es/lib/components/vxe-table/src/utils/index.d.ts +5 -0
  309. package/dist/es/lib/hooks/useCurd.d.ts +4 -0
  310. package/dist/es/lib/hooks/useDownload.d.ts +9 -0
  311. package/dist/es/lib/hooks/useSource.d.ts +10 -0
  312. package/dist/es/lib/index.d.ts +10 -0
  313. package/dist/es/lib/init/config.d.ts +6 -0
  314. package/dist/es/lib/init/index.d.ts +11 -0
  315. package/dist/es/lib/init/types/appConf.d.ts +331 -0
  316. package/dist/es/lib/init/vxeTable.d.ts +9 -0
  317. package/dist/es/lib/layout/index.d.ts +11 -0
  318. package/dist/es/lib/layout/src/components/header/perferences/icons/index.d.ts +10 -0
  319. package/dist/es/lib/layout/src/components/lockscreen/lockscreen.store.d.ts +9 -0
  320. package/dist/es/lib/layout/src/components/lockscreen/useBattery.d.ts +16 -0
  321. package/dist/es/lib/layout/src/components/lockscreen/useTime.d.ts +3 -0
  322. package/dist/es/lib/layout/src/components/menu/basic-menu/index.d.ts +2 -0
  323. package/dist/es/lib/layout/src/components/menu/basic-menu/type.d.ts +127 -0
  324. package/dist/es/lib/layout/src/components/menu/hooks/useMenu.d.ts +9 -0
  325. package/dist/es/lib/layout/src/components/menu/hooks/useMenuScroll.d.ts +9 -0
  326. package/dist/es/lib/layout/src/components/tabbar/hooks/useTab.d.ts +25 -0
  327. package/dist/es/lib/layout/src/components/tabbar/hooks/useTabbar.d.ts +15 -0
  328. package/dist/es/lib/layout/src/components/tabbar/hooks/useTabsDrag.d.ts +8 -0
  329. package/dist/es/lib/layout/src/components/tabbar/hooks/useTabsViewScroll.d.ts +11 -0
  330. package/dist/es/lib/layout/src/components/tabbar/tabsView/types.d.ts +68 -0
  331. package/dist/es/lib/layout/src/const/constants.d.ts +13 -0
  332. package/dist/es/lib/layout/src/const/preferences.config.d.ts +8 -0
  333. package/dist/es/lib/layout/src/hooks/useContext.d.ts +6 -0
  334. package/dist/es/lib/layout/src/hooks/useDesignTokens.d.ts +1 -0
  335. package/dist/es/lib/layout/src/hooks/useExtraMenu.d.ts +12 -0
  336. package/dist/es/lib/layout/src/hooks/useLayoutStyle.d.ts +36 -0
  337. package/dist/es/lib/layout/src/hooks/useMenu.d.ts +4 -0
  338. package/dist/es/lib/layout/src/hooks/useMixedMenu.d.ts +13 -0
  339. package/dist/es/lib/layout/src/hooks/useNavigation.d.ts +5 -0
  340. package/dist/es/lib/layout/src/hooks/useTheme.d.ts +34 -0
  341. package/dist/es/lib/layout/src/stores/preferences.store.d.ts +66 -0
  342. package/dist/es/lib/layout/src/stores/useTabbar.store.d.ts +185 -0
  343. package/dist/es/lib/layout/src/types/basic.type.d.ts +5 -0
  344. package/dist/es/lib/layout/src/types/menu.type.d.ts +102 -0
  345. package/dist/es/lib/layout/src/types/perferences.type.d.ts +287 -0
  346. package/dist/es/lib/layout/src/types/route.type.d.ts +109 -0
  347. package/dist/es/lib/layout/src/utils/color.d.ts +19 -0
  348. package/dist/es/lib/layout/src/utils/css.d.ts +14 -0
  349. package/dist/es/lib/layout/src/utils/diff.d.ts +6 -0
  350. package/dist/es/lib/layout/src/utils/dom.d.ts +6 -0
  351. package/dist/es/lib/layout/src/utils/letter.d.ts +20 -0
  352. package/dist/es/lib/layout/src/utils/menu.d.ts +20 -0
  353. package/dist/es/lib/router/goPage.d.ts +1 -0
  354. package/dist/es/lib/router/guard.d.ts +3 -0
  355. package/dist/es/lib/router/index.d.ts +8 -0
  356. package/dist/es/lib/stores/access.store.d.ts +59 -0
  357. package/dist/es/lib/stores/app.store.d.ts +11 -0
  358. package/dist/es/lib/stores/auth.store.d.ts +35 -0
  359. package/dist/es/lib/stores/user.store.d.ts +19 -0
  360. package/dist/es/lib/types/curd.type.d.ts +55 -0
  361. package/dist/es/lib/types/source.type.d.ts +177 -0
  362. package/dist/es/lib/types/user.type.d.ts +32 -0
  363. package/dist/es/lib/utils/api.d.ts +2 -0
  364. package/dist/es/lib/utils/index.d.ts +4 -0
  365. package/dist/es/lib/utils/namespace.d.ts +17 -0
  366. package/dist/es/lib/utils/progress.d.ts +11 -0
  367. package/dist/es/lib/utils/useAuth.d.ts +3 -0
  368. package/dist/es/lib/utils/withInstall.d.ts +4 -0
  369. package/dist/es/mock/userInfo.d.ts +13 -0
  370. package/dist/es/mock/userInfo.mjs +1 -0
  371. package/dist/es/pages/iframe.d.ts +4 -0
  372. package/dist/es/pages/iframe.vue.mjs +1 -0
  373. package/dist/es/pages/iframe.vue2.mjs +1 -0
  374. package/dist/es/pages/init-project.d.ts +2 -0
  375. package/dist/es/pages/init-project.vue.mjs +1 -0
  376. package/dist/es/pages/init-project.vue2.mjs +1 -0
  377. package/dist/es/pages/not-found.d.ts +2 -0
  378. package/dist/es/pages/not-found.vue.mjs +1 -0
  379. package/dist/es/pages/not-found.vue2.mjs +1 -0
  380. package/dist/es/router/goPage.d.ts +1 -0
  381. package/dist/es/router/goPage.mjs +1 -0
  382. package/dist/es/router/guard.d.ts +3 -0
  383. package/dist/es/router/guard.mjs +1 -0
  384. package/dist/es/router/index.d.ts +8 -0
  385. package/dist/es/router/index.mjs +2 -0
  386. package/dist/es/src/index.d.ts +34 -0
  387. package/dist/es/src/types/index.d.ts +6 -0
  388. package/dist/es/stores/access.store.d.ts +59 -0
  389. package/dist/es/stores/access.store.mjs +1 -0
  390. package/dist/es/stores/app.store.d.ts +11 -0
  391. package/dist/es/stores/app.store.mjs +1 -0
  392. package/dist/es/stores/auth.store.d.ts +35 -0
  393. package/dist/es/stores/auth.store.mjs +1 -0
  394. package/dist/es/stores/user.store.d.ts +19 -0
  395. package/dist/es/stores/user.store.mjs +1 -0
  396. package/dist/es/types/curd.type.d.ts +55 -0
  397. package/dist/es/types/source.type.d.ts +177 -0
  398. package/dist/es/types/user.type.d.ts +32 -0
  399. package/dist/es/utils/api.d.ts +2 -0
  400. package/dist/es/utils/index.d.ts +4 -0
  401. package/dist/es/utils/namespace.d.ts +17 -0
  402. package/dist/es/utils/namespace.mjs +1 -0
  403. package/dist/es/utils/progress.d.ts +11 -0
  404. package/dist/es/utils/progress.mjs +2 -0
  405. package/dist/es/utils/useAuth.d.ts +3 -0
  406. package/dist/es/utils/withInstall.d.ts +4 -0
  407. package/dist/es/utils/withInstall.mjs +1 -0
  408. package/dist/es/vite.config.d.ts +30 -0
  409. package/index.d.ts +83 -12
  410. package/index.ts +16 -0
  411. package/package.json +75 -49
  412. package/README.md +0 -18
  413. package/es/assets/fonts/iconfont.css +0 -7266
  414. package/es/assets/fonts/iconfont.eot +0 -0
  415. package/es/assets/fonts/iconfont.svg +0 -5445
  416. package/es/assets/fonts/iconfont.ttf +0 -0
  417. package/es/assets/fonts/iconfont.woff +0 -0
  418. package/es/assets/fonts/iconfont.woff2 +0 -0
  419. package/es/assets/icons/ui-blank.svg +0 -1
  420. package/es/assets/icons/ui-docx.svg +0 -1
  421. package/es/assets/icons/ui-exl.svg +0 -1
  422. package/es/assets/icons/ui-forder-open.svg +0 -1
  423. package/es/assets/icons/ui-forder.svg +0 -1
  424. package/es/assets/icons/ui-jpg.svg +0 -1
  425. package/es/assets/icons/ui-pdf.svg +0 -1
  426. package/es/assets/icons/ui-ppt.svg +0 -1
  427. package/es/assets/icons/ui-rar.svg +0 -1
  428. package/es/assets/icons/ui-table-empty.svg +0 -1
  429. package/es/assets/icons/ui-txt.svg +0 -1
  430. package/es/assets/imgs/header/avatar.png +0 -0
  431. package/es/assets/imgs/logo/logo.png +0 -0
  432. package/es/assets/imgs/table/empty.png +0 -0
  433. package/es/assets/index.e67ea2f5.css +0 -1
  434. package/es/assets/locales/en.d.ts +0 -104
  435. package/es/assets/locales/en.ts +0 -104
  436. package/es/assets/locales/index.d.ts +0 -2
  437. package/es/assets/locales/index.ts +0 -5
  438. package/es/assets/locales/zh.d.ts +0 -105
  439. package/es/assets/locales/zh.ts +0 -105
  440. package/es/assets/test.ts +0 -1
  441. package/es/components/container/index.d.ts +0 -3
  442. package/es/components/container/index.js +0 -367
  443. package/es/components/container/src/components/bar.d.ts +0 -14
  444. package/es/components/container/src/hooks/scroll.d.ts +0 -10
  445. package/es/components/container/src/index.scss +0 -57
  446. package/es/components/container/src/types/index.d.ts +0 -22
  447. package/es/components/container/src/utils/scroll.d.ts +0 -5
  448. package/es/components/curd/index.d.ts +0 -4
  449. package/es/components/curd/index.js +0 -141
  450. package/es/components/curd/src/components/props.d.ts +0 -53
  451. package/es/components/curd/src/components/types/curd.type.d.ts +0 -13
  452. package/es/components/curd/src/hooks/useCurd.d.ts +0 -3
  453. package/es/components/curd/src/props.d.ts +0 -138
  454. package/es/components/curd/src/types/curd.type.d.ts +0 -59
  455. package/es/components/drawer/index.d.ts +0 -3
  456. package/es/components/drawer/index.js +0 -299
  457. package/es/components/drawer/src/components/DrawerFooter.d.ts +0 -54
  458. package/es/components/drawer/src/index.d.ts +0 -16
  459. package/es/components/drawer/src/index.scss +0 -24
  460. package/es/components/drawer/src/props.d.ts +0 -2
  461. package/es/components/drawer/src/type/drawer.type.d.ts +0 -62
  462. package/es/components/form/index.d.ts +0 -7
  463. package/es/components/form/index.js +0 -1604
  464. package/es/components/form/src/components/DynanicInput.d.ts +0 -2
  465. package/es/components/form/src/components/FormButtons.d.ts +0 -84
  466. package/es/components/form/src/components/FormInputUseDialog.d.ts +0 -2
  467. package/es/components/form/src/components/FormItem.d.ts +0 -55
  468. package/es/components/form/src/components/RadioButton.d.ts +0 -26
  469. package/es/components/form/src/components/index.d.ts +0 -2
  470. package/es/components/form/src/hooks/useForm.d.ts +0 -6
  471. package/es/components/form/src/hooks/useFormActions.d.ts +0 -45
  472. package/es/components/form/src/hooks/useFormEvent.d.ts +0 -27
  473. package/es/components/form/src/hooks/useFormValue.d.ts +0 -3
  474. package/es/components/form/src/hooks/useFormValues.d.ts +0 -13
  475. package/es/components/form/src/hooks/useLabelWidth.d.ts +0 -6
  476. package/es/components/form/src/index.d.ts +0 -358
  477. package/es/components/form/src/index.scss +0 -162
  478. package/es/components/form/src/props.d.ts +0 -165
  479. package/es/components/form/src/types/actions.type.d.ts +0 -15
  480. package/es/components/form/src/types/form.type.d.ts +0 -113
  481. package/es/components/form/src/types/items.type.d.ts +0 -417
  482. package/es/components/form/src/utils/helper.d.ts +0 -21
  483. package/es/components/icons/index.d.ts +0 -2
  484. package/es/components/icons/index.js +0 -100
  485. package/es/components/icons/src/SvgIcon.d.ts +0 -37
  486. package/es/components/icons/src/index.scss +0 -3
  487. package/es/components/iframe/index.d.ts +0 -2
  488. package/es/components/iframe/index.js +0 -83
  489. package/es/components/iframe/src/index.d.ts +0 -43
  490. package/es/components/iframe/src/index.scss +0 -20
  491. package/es/components/modal/index.d.ts +0 -5
  492. package/es/components/modal/index.js +0 -636
  493. package/es/components/modal/src/components/CloseIcon.d.ts +0 -24
  494. package/es/components/modal/src/components/Modal.d.ts +0 -201
  495. package/es/components/modal/src/components/ModalFooter.d.ts +0 -54
  496. package/es/components/modal/src/hooks/useDrag.d.ts +0 -6
  497. package/es/components/modal/src/hooks/useFullScreen.d.ts +0 -6
  498. package/es/components/modal/src/hooks/useModal.d.ts +0 -5
  499. package/es/components/modal/src/index.d.ts +0 -216
  500. package/es/components/modal/src/index.scss +0 -104
  501. package/es/components/modal/src/props.d.ts +0 -94
  502. package/es/components/modal/src/types/index.type.d.ts +0 -18
  503. package/es/components/source/index.d.ts +0 -2
  504. package/es/components/source/index.js +0 -448
  505. package/es/components/source/src/hooks/useDownload.d.ts +0 -8
  506. package/es/components/source/src/hooks/useSource.d.ts +0 -61
  507. package/es/components/source/src/types/source.type.d.ts +0 -34
  508. package/es/components/table/index.d.ts +0 -8
  509. package/es/components/table/index.js +0 -2356
  510. package/es/components/table/src/components/TableAction.d.ts +0 -75
  511. package/es/components/table/src/components/TableHeader.d.ts +0 -35
  512. package/es/components/table/src/components/TableRender.d.ts +0 -13
  513. package/es/components/table/src/components/editTable/CellComponent.d.ts +0 -22
  514. package/es/components/table/src/components/editTable/EditTableCell.d.ts +0 -52
  515. package/es/components/table/src/components/editTable/componentMap.d.ts +0 -4
  516. package/es/components/table/src/components/editTable/index.d.ts +0 -9
  517. package/es/components/table/src/components/editTable/props.d.ts +0 -27
  518. package/es/components/table/src/components/tableSetting/Column.d.ts +0 -4
  519. package/es/components/table/src/components/tableSetting/Download.d.ts +0 -11
  520. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +0 -2
  521. package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +0 -2
  522. package/es/components/table/src/components/tableSetting/index.d.ts +0 -17
  523. package/es/components/table/src/hooks/useColumns.d.ts +0 -14
  524. package/es/components/table/src/hooks/useCustomRow.d.ts +0 -20
  525. package/es/components/table/src/hooks/useDataSource.d.ts +0 -14
  526. package/es/components/table/src/hooks/useHeader.d.ts +0 -8
  527. package/es/components/table/src/hooks/useHeaderCode.d.ts +0 -3
  528. package/es/components/table/src/hooks/useLoading.d.ts +0 -6
  529. package/es/components/table/src/hooks/usePagination.d.ts +0 -7
  530. package/es/components/table/src/hooks/useRowSelection.d.ts +0 -12
  531. package/es/components/table/src/hooks/useTable.d.ts +0 -9
  532. package/es/components/table/src/hooks/useTableInstance.d.ts +0 -16
  533. package/es/components/table/src/hooks/useTableScroll.d.ts +0 -12
  534. package/es/components/table/src/hooks/useTableStyle.d.ts +0 -5
  535. package/es/components/table/src/index.d.ts +0 -470
  536. package/es/components/table/src/index.scss +0 -310
  537. package/es/components/table/src/props.d.ts +0 -205
  538. package/es/components/table/src/types/actions.type.d.ts +0 -21
  539. package/es/components/table/src/types/header.type.d.ts +0 -23
  540. package/es/components/table/src/types/table.type.d.ts +0 -167
  541. package/es/components/tree/index.d.ts +0 -3
  542. package/es/components/tree/index.js +0 -1199
  543. package/es/components/tree/src/basicProps.d.ts +0 -190
  544. package/es/components/tree/src/components/ContextMenu.d.ts +0 -70
  545. package/es/components/tree/src/components/TreeHeader.d.ts +0 -78
  546. package/es/components/tree/src/hooks/useContextMenu.d.ts +0 -2
  547. package/es/components/tree/src/hooks/useMethod.d.ts +0 -16
  548. package/es/components/tree/src/hooks/useTree.d.ts +0 -5
  549. package/es/components/tree/src/index.d.ts +0 -300
  550. package/es/components/tree/src/index.scss +0 -178
  551. package/es/components/tree/src/types/action.type.d.ts +0 -64
  552. package/es/components/tree/src/types/menu.d.ts +0 -36
  553. package/es/components/tree/src/types/tree.d.ts +0 -31
  554. package/es/components/tree/src/utils/tree.d.ts +0 -7
  555. package/es/components/upload/index.d.ts +0 -4
  556. package/es/components/upload/index.js +0 -664
  557. package/es/components/upload/src/basicProps.d.ts +0 -95
  558. package/es/components/upload/src/components/PdfView.d.ts +0 -2
  559. package/es/components/upload/src/components/WordView.d.ts +0 -2
  560. package/es/components/upload/src/hooks/useFile.d.ts +0 -17
  561. package/es/components/upload/src/index.d.ts +0 -209
  562. package/es/components/upload/src/index.scss +0 -89
  563. package/es/components/upload/src/type/file.d.ts +0 -17
  564. package/es/components/upload/src/utils/fileSize.d.ts +0 -1
  565. package/es/components/upload/src/utils/upload.d.ts +0 -2
  566. package/es/components/vxe_table/index.d.ts +0 -4
  567. package/es/components/vxe_table/index.js +0 -1162
  568. package/es/components/vxe_table/src/components/AApiSelect.d.ts +0 -12
  569. package/es/components/vxe_table/src/components/AAutoComplete.d.ts +0 -2
  570. package/es/components/vxe_table/src/components/AButton.d.ts +0 -12
  571. package/es/components/vxe_table/src/components/AButtonGroup.d.ts +0 -2
  572. package/es/components/vxe_table/src/components/ACascader.d.ts +0 -2
  573. package/es/components/vxe_table/src/components/ACheckbox.d.ts +0 -2
  574. package/es/components/vxe_table/src/components/ACheckboxGroup.d.ts +0 -6
  575. package/es/components/vxe_table/src/components/ADatePicker.d.ts +0 -4
  576. package/es/components/vxe_table/src/components/AEmpty.d.ts +0 -6
  577. package/es/components/vxe_table/src/components/AInput.d.ts +0 -2
  578. package/es/components/vxe_table/src/components/AInputNumber.d.ts +0 -2
  579. package/es/components/vxe_table/src/components/AInputSearch.d.ts +0 -2
  580. package/es/components/vxe_table/src/components/AMonthPicker.d.ts +0 -2
  581. package/es/components/vxe_table/src/components/ARadioGroup.d.ts +0 -6
  582. package/es/components/vxe_table/src/components/ARangePicker.d.ts +0 -2
  583. package/es/components/vxe_table/src/components/ARate.d.ts +0 -2
  584. package/es/components/vxe_table/src/components/ASelect.d.ts +0 -2
  585. package/es/components/vxe_table/src/components/ASwitch.d.ts +0 -2
  586. package/es/components/vxe_table/src/components/ATimePicker.d.ts +0 -2
  587. package/es/components/vxe_table/src/components/ATreeSelect.d.ts +0 -2
  588. package/es/components/vxe_table/src/components/AWeekPicker.d.ts +0 -2
  589. package/es/components/vxe_table/src/components/AYearPicker.d.ts +0 -2
  590. package/es/components/vxe_table/src/components/Select.d.ts +0 -2
  591. package/es/components/vxe_table/src/components/common.d.ts +0 -52
  592. package/es/components/vxe_table/src/components/componentMap.d.ts +0 -3
  593. package/es/components/vxe_table/src/components/index.d.ts +0 -4
  594. package/es/components/vxe_table/src/hooks/useColumns.d.ts +0 -1
  595. package/es/components/vxe_table/src/hooks/useComponents.d.ts +0 -2
  596. package/es/components/vxe_table/src/hooks/useHeader.d.ts +0 -6
  597. package/es/components/vxe_table/src/hooks/useProps.d.ts +0 -3
  598. package/es/components/vxe_table/src/hooks/useVxeTable.d.ts +0 -7
  599. package/es/components/vxe_table/src/index.d.ts +0 -26
  600. package/es/components/vxe_table/src/index.scss +0 -13
  601. package/es/components/vxe_table/src/props.d.ts +0 -1
  602. package/es/components/vxe_table/src/types/componentType.d.ts +0 -1
  603. package/es/components/vxe_table/src/types/vxeTable.type.d.ts +0 -45
  604. package/es/components/vxe_table/src/utils/index.d.ts +0 -6
  605. package/es/directives/index.d.ts +0 -4
  606. package/es/directives/index.js +0 -30
  607. package/es/directives/permission.d.ts +0 -2
  608. package/es/theme/index.d.ts +0 -12
  609. package/es/theme/index.js +0 -3792
  610. package/es/theme/src/components/content/index.d.ts +0 -2
  611. package/es/theme/src/components/feature/BackTop.d.ts +0 -2
  612. package/es/theme/src/components/feature/index.d.ts +0 -2
  613. package/es/theme/src/components/footer/index.d.ts +0 -2
  614. package/es/theme/src/components/header/MultipleHeader.d.ts +0 -2
  615. package/es/theme/src/components/header/components/BreadCrumb.d.ts +0 -2
  616. package/es/theme/src/components/header/components/FullScreen.d.ts +0 -2
  617. package/es/theme/src/components/header/components/LangPicker.d.ts +0 -12
  618. package/es/theme/src/components/header/components/Logo.d.ts +0 -22
  619. package/es/theme/src/components/header/components/MenuFilter.d.ts +0 -2
  620. package/es/theme/src/components/header/components/Notice.d.ts +0 -2
  621. package/es/theme/src/components/header/components/SettintTheme.d.ts +0 -2
  622. package/es/theme/src/components/header/components/Size.d.ts +0 -2
  623. package/es/theme/src/components/header/components/Trigger.d.ts +0 -6
  624. package/es/theme/src/components/header/components/UserInfo.d.ts +0 -2
  625. package/es/theme/src/components/header/components/lock/Lockscreen.d.ts +0 -2
  626. package/es/theme/src/components/header/components/lock/useBattery.d.ts +0 -11
  627. package/es/theme/src/components/header/components/lock/useTime.d.ts +0 -7
  628. package/es/theme/src/components/header/components/theme-drawer/Color.d.ts +0 -26
  629. package/es/theme/src/components/header/components/theme-drawer/ColorPrimary.d.ts +0 -27
  630. package/es/theme/src/components/header/components/theme-drawer/Feature.d.ts +0 -2
  631. package/es/theme/src/components/header/components/theme-drawer/InputNumber.d.ts +0 -28
  632. package/es/theme/src/components/header/components/theme-drawer/MenuType.d.ts +0 -2
  633. package/es/theme/src/components/header/components/theme-drawer/Select.d.ts +0 -44
  634. package/es/theme/src/components/header/components/theme-drawer/Switch.d.ts +0 -29
  635. package/es/theme/src/components/header/components/theme-drawer/Var.d.ts +0 -2
  636. package/es/theme/src/components/header/components/theme-drawer/styles/GlobalStyle.d.ts +0 -2
  637. package/es/theme/src/components/header/components/theme-drawer/styles/MenuStyle.d.ts +0 -2
  638. package/es/theme/src/components/header/helper/changeTheme.d.ts +0 -15
  639. package/es/theme/src/components/header/helper/menuTree.d.ts +0 -4
  640. package/es/theme/src/components/header/index.d.ts +0 -8
  641. package/es/theme/src/components/sider/components/DragBar.d.ts +0 -2
  642. package/es/theme/src/components/sider/components/LayoutMenu.d.ts +0 -22
  643. package/es/theme/src/components/sider/components/MixSider.d.ts +0 -2
  644. package/es/theme/src/components/sider/components/SiderTrigger.d.ts +0 -14
  645. package/es/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +0 -35
  646. package/es/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +0 -35
  647. package/es/theme/src/components/sider/components/basic-menu/index.d.ts +0 -64
  648. package/es/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +0 -22
  649. package/es/theme/src/components/sider/components/basic-menu/props.d.ts +0 -52
  650. package/es/theme/src/components/sider/helper/sider.d.ts +0 -12
  651. package/es/theme/src/components/sider/helper/split-menu.d.ts +0 -10
  652. package/es/theme/src/components/sider/index.d.ts +0 -2
  653. package/es/theme/src/components/tabs/components/TabContent.d.ts +0 -19
  654. package/es/theme/src/components/tabs/components/TabRedo.d.ts +0 -2
  655. package/es/theme/src/components/tabs/hooks/useMultifyTabs.d.ts +0 -7
  656. package/es/theme/src/components/tabs/hooks/useTabDropdown.d.ts +0 -14
  657. package/es/theme/src/components/tabs/hooks/useTabs.d.ts +0 -10
  658. package/es/theme/src/components/tabs/index.d.ts +0 -2
  659. package/es/theme/src/consts/color.d.ts +0 -3
  660. package/es/theme/src/consts/index.d.ts +0 -14
  661. package/es/theme/src/enums/index.d.ts +0 -34
  662. package/es/theme/src/hooks/index.d.ts +0 -6
  663. package/es/theme/src/hooks/useDragLine.d.ts +0 -2
  664. package/es/theme/src/hooks/useHeader.d.ts +0 -25
  665. package/es/theme/src/hooks/useMenu.d.ts +0 -29
  666. package/es/theme/src/hooks/useMultifyTab.d.ts +0 -8
  667. package/es/theme/src/hooks/useOpenKeys.d.ts +0 -7
  668. package/es/theme/src/hooks/useTheme.d.ts +0 -27
  669. package/es/theme/src/index.d.ts +0 -2
  670. package/es/theme/src/index.scss +0 -1134
  671. package/es/theme/src/stores/index.d.ts +0 -3
  672. package/es/theme/src/stores/routeReuse.store.d.ts +0 -23
  673. package/es/theme/src/stores/theme.store.d.ts +0 -13
  674. package/es/theme/src/transition.scss +0 -105
  675. package/es/theme/src/types/menu.type.d.ts +0 -16
  676. package/es/theme/src/types/theme.type.d.ts +0 -81
  677. package/es/theme/src/utils/color.d.ts +0 -14
  678. package/es/theme/src/utils/index.d.ts +0 -3
  679. package/es/theme/src/utils.ts/index.d.ts +0 -3
  680. package/index.js +0 -44
  681. package/manualContentPath.js +0 -192
  682. package/tsconfig.json +0 -31
  683. package/tsconfig.tsbuildinfo +0 -1
  684. package/vite.config.ts +0 -82
  685. /package/{es/theme/src/types/index.d.ts → dist/es/components/drawer/styles/index.scss} +0 -0
  686. /package/{es → dist/es}/components/tree/src/enums/index.d.ts +0 -0
  687. /package/{es/theme/src/stores → dist/es/layout/src/components/lockscreen}/lockscreen.store.d.ts +0 -0
Binary file
Binary file
Binary file
@@ -1 +0,0 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312712473" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="18083" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M677.504 64a64 64 0 0 1 45.226667 18.773333l154.538666 154.453334A64 64 0 0 1 896 282.538667V896a64 64 0 0 1-64 64h-640A64 64 0 0 1 128 896V128a64 64 0 0 1 64-64h485.504z m0.298667 467.413333c-48.469333 0-76.586667 18.048-76.586667 82.773334 0 64.768 28.117333 82.816 76.586667 82.816 26.026667 0 49.066667-5.034667 58.538666-10.666667v-30.122667c-10.922667 5.290667-32.810667 10.922667-52.053333 10.922667-31.914667 0-44.928-12.117333-45.781333-39.04l104.661333-6.784c0.853333-5.632 1.450667-13.013333 1.450667-20.992 0-37.546667-11.52-68.906667-66.816-68.906667zM558.336 469.333333h-36.949333v187.477334c0 27.178667 11.264 38.997333 42.88 38.997333 6.528 0 12.416-0.554667 17.749333-1.749333v-29.013334a36.693333 36.693333 0 0 1-9.770667 1.194667c-10.325333 0-13.909333-3.242667-13.909333-18.346667V469.333333z m-155.221333 19.498667H281.6v205.226667h38.741333v-83.669334H397.226667v-33.706666H320.341333v-54.144h82.773334v-33.706667z m72.149333 45.568h-36.949333v159.658667h36.949333v-159.658667z m202.538667 25.429333c28.373333 0 32.512 16.853333 32.512 36.650667l-71.808 5.333333c0.853333-27.52 9.728-41.984 39.296-41.984z m-220.885334-89.898666c-16.554667 0-20.992 1.749333-20.992 19.797333 0 17.749333 4.437333 20.096 20.992 20.096 16.597333 0 21.034667-2.346667 21.034667-20.053333 0-18.090667-4.437333-19.84-21.034667-19.84z" fill="#A78F8F" p-id="18084"></path></svg>
@@ -1 +0,0 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312399002" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6916" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M950.272 843.776H527.36c-16.384 0-29.696-13.312-29.696-29.696V210.944c0-16.384 13.312-29.696 29.696-29.696h422.912c16.384 0 29.696 13.312 29.696 29.696v603.136c0 16.384-13.312 29.696-29.696 29.696z" fill="#E8E8E8" p-id="6917"></path><path d="M829.44 361.472H527.36c-16.384 0-29.696-13.312-29.696-29.696s13.312-29.696 29.696-29.696H829.44c16.384 0 29.696 13.312 29.696 29.696 0 15.36-13.312 29.696-29.696 29.696z m0 120.832H527.36c-16.384 0-29.696-13.312-29.696-29.696s13.312-29.696 29.696-29.696H829.44c16.384 0 29.696 13.312 29.696 29.696s-13.312 29.696-29.696 29.696z m0 119.808H527.36c-16.384 0-29.696-13.312-29.696-29.696s13.312-29.696 29.696-29.696H829.44c16.384 0 29.696 13.312 29.696 29.696s-13.312 29.696-29.696 29.696z m0 120.832H527.36c-16.384 0-29.696-13.312-29.696-29.696s13.312-29.696 29.696-29.696H829.44c16.384 0 29.696 13.312 29.696 29.696s-13.312 29.696-29.696 29.696z" fill="#B2B2B2" p-id="6918"></path><path d="M607.232 995.328l-563.2-107.52V135.168l563.2-107.52v967.68z" fill="#0D47A1" p-id="6919"></path><path d="M447.488 696.32h-71.68l-47.104-236.544c-3.072-13.312-4.096-27.648-4.096-40.96h-1.024c-1.024 16.384-3.072 30.72-5.12 40.96L269.312 696.32H194.56l-74.752-368.64h70.656l39.936 245.76c2.048 10.24 3.072 24.576 4.096 41.984h1.024c0-13.312 3.072-27.648 6.144-43.008l51.2-244.736h68.608l47.104 247.808c2.048 9.216 3.072 22.528 4.096 39.936h1.024c1.024-13.312 2.048-26.624 4.096-40.96l39.936-245.76H522.24L447.488 696.32z" fill="#FFFFFF" p-id="6920"></path></svg>
@@ -1 +0,0 @@
1
- <svg t="1698314002749" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="31094" width="200" height="200"><path d="M1006.933333 85.333333H580.266667V34.133333c0-6.826667-3.413333-10.24-6.826667-13.653333s-10.24-3.413333-13.653333-3.413333l-546.133334 136.533333c-6.826667 3.413333-13.653333 10.24-13.653333 17.066667v716.8c0 6.826667 6.826667 13.653333 13.653333 17.066666l546.133334 102.4h3.413333c3.413333 0 6.826667 0 10.24-3.413333 3.413333-3.413333 6.826667-6.826667 6.826667-13.653333v-51.2h426.666666c10.24 0 17.066667-6.826667 17.066667-17.066667V102.4c0-10.24-6.826667-17.066667-17.066667-17.066667z m-17.066666 682.666667h-238.933334v-102.4h238.933334v102.4zM174.08 672.426667l92.16-153.6c3.413333-6.826667 3.413333-13.653333 0-17.066667l-92.16-153.6C170.666667 344.746667 170.666667 341.333333 170.666667 337.92s3.413333-6.826667 6.826666-10.24c6.826667-3.413333 17.066667-3.413333 23.893334 6.826667L273.066667 457.386667c6.826667 10.24 23.893333 10.24 30.72 0L375.466667 334.506667c3.413333-6.826667 17.066667-10.24 23.893333-6.826667 6.826667 0 10.24 6.826667 10.24 10.24 0 3.413333 0 10.24-3.413333 13.653333l-92.16 153.6c-3.413333 6.826667-3.413333 13.653333 0 17.066667l92.16 153.6c3.413333 3.413333 3.413333 6.826667 3.413333 10.24s-3.413333 6.826667-6.826667 10.24c-6.826667 3.413333-17.066667 3.413333-23.893333-6.826667L307.2 566.613333c-3.413333-6.826667-10.24-6.826667-13.653333-6.826666s-10.24 3.413333-13.653334 6.826666l-71.68 122.88c-3.413333 6.826667-17.066667 10.24-23.893333 6.826667-10.24 0-13.653333-3.413333-13.653333-10.24 0-3.413333 0-6.826667 3.413333-13.653333zM580.266667 529.066667h136.533333v102.4h-136.533333v-102.4z m0-34.133334v-102.4h136.533333v102.4h-136.533333z m170.666666-102.4h238.933334v102.4h-238.933334v-102.4z m238.933334-34.133333h-238.933334v-102.4h238.933334v102.4z m-273.066667 0h-136.533333v-102.4h136.533333v102.4z m-136.533333 307.2h136.533333v102.4h-136.533333v-102.4z m170.666666-34.133333v-102.4h238.933334v102.4h-238.933334z m238.933334-512v102.4h-238.933334v-102.4h238.933334z m-273.066667 0v102.4h-136.533333v-102.4h136.533333z m-136.533333 682.666666h136.533333v102.4h-136.533333v-102.4z m409.6 102.4h-238.933334v-102.4h238.933334v102.4z" fill="#e16531" p-id="31095"></path></svg>
@@ -1 +0,0 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1697954852066" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7755" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M928 444H820V330.4c0-17.7-14.3-32-32-32H473L355.7 186.2c-1.5-1.4-3.5-2.2-5.5-2.2H96c-17.7 0-32 14.3-32 32v592c0 17.7 14.3 32 32 32h698c13 0 24.8-7.9 29.7-20l134-332c1.5-3.8 2.3-7.9 2.3-12 0-17.7-14.3-32-32-32zM136 256h188.5l119.6 114.4H748V444H238c-13 0-24.8 7.9-29.7 20L136 643.2V256z m635.3 512H159l103.3-256h612.4L771.3 768z" p-id="7756"></path></svg>
@@ -1 +0,0 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1697954941223" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8385" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M880 298.4H521L403.7 186.2c-1.5-1.4-3.5-2.2-5.5-2.2H144c-17.7 0-32 14.3-32 32v592c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V330.4c0-17.7-14.3-32-32-32zM840 768H184V256h188.5l119.6 114.4H840V768z" p-id="8386"></path></svg>
@@ -1 +0,0 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312614169" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13003" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M910.2336 1024H113.7664C51.2 1024 0 972.8 0 910.2336V113.7664C0 51.2 51.2 0 113.7664 0h796.4672C972.8 0 1024 51.2 1024 113.7664v796.4672C1024 972.8 972.8 1024 910.2336 1024zM793.6 230.4H230.4c-28.2368 0-51.2 22.9632-51.2 51.2v460.8c0 28.2368 22.9632 51.2 51.2 51.2h563.2c28.2368 0 51.2-22.9632 51.2-51.2V281.6c0-28.2368-22.9632-51.2-51.2-51.2z m0 51.2l0.0256 416.9472L640 435.2l-128 230.4-128-128-153.6 175.5392V281.6h563.2z m-452.2752 173.5168a56.9088 56.9088 0 1 0-0.0256-113.8176 56.9088 56.9088 0 0 0 0.0256 113.8176z" fill="#1AA5DD" p-id="13004"></path></svg>
@@ -1 +0,0 @@
1
- <svg t="1698313655786" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="22917" width="200" height="200"><path d="M535.198324 0h69.53853v95.276816c124.175945 0.677323 248.351891-1.354647 373.205159 0.677324a40.6394 40.6394 0 0 1 45.154889 45.154889c1.919083 234.579649 0 469.272186 1.128872 703.851835-1.128872 24.044979 2.257744 50.686363-11.288722 72.022049-17.045971 12.417595-38.946092 11.288722-58.814243 11.288722H604.962628v95.276816h-72.925146C354.917429 990.924044 177.458715 960.557381 0 928.723184V95.502591C178.361812 63.555507 356.836512 32.51152 535.198324 0z" fill="#A33639" p-id="22918"></path><path d="M604.736854 130.949179h383.816558v762.101642h-383.816558v-95.276816h302.42487v-47.638408H604.736854v-59.491567h302.42487V643.457171H604.736854v-60.056002h302.42487v-47.638409H604.736854v-59.491566h302.42487V428.971447H604.736854v-59.830228h302.42487v-47.638408H604.736854V261.898357h302.42487v597.17341H604.736854z" fill="#FFFFFF" p-id="22919"></path><path d="M645.489141 529.66685h302.424871v47.638409H645.489141zM645.489141 611.510087h302.424871v47.638408H645.489141zM645.489141 693.353324h302.424871v47.638408H645.489141zM596.383199 775.19656h351.530813v47.638409H596.383199z" fill="#A33639" p-id="22920"></path><path d="M180.619557 317.325984c59.265792 2.822181 130.949179-24.044979 180.619557 21.335685 46.961085 58.475582 34.54349 165.831331-35.107927 200.713483-24.722302 12.982031-53.169882 11.288722-80.037041 10.272737v130.949179L180.619557 675.065594c-0.903098-119.208908-1.128872-238.530702 0-357.73961z" fill="#FFFFFF" p-id="22921"></path><path d="M245.642597 377.720648c21.448572-1.015985 48.089957-5.079925 62.539522 15.578437a82.407673 82.407673 0 0 1 1.467534 73.263808c-12.417595 22.577445-40.526513 20.771249-62.313747 23.367655-2.257744-37.365671-2.03197-74.731342-1.693309-112.2099zM885.713152 379.865505a83.988094 83.988094 0 0 1-48.315732-19.642376 460.57987 460.57987 0 0 0-77.666409 24.835189c-20.3197 36.011024-39.171866 54.411641-55.540514 54.411641a17.384632 17.384632 0 0 1-9.821188-2.596406 19.416602 19.416602 0 0 1-11.288723-17.723294c0-5.870136 1.354647-22.577445 63.329733-49.105942a467.917539 467.917539 0 0 0 34.656377-81.278801c-7.902106-15.691324-24.835189-54.298754-13.094918-73.941131a20.658362 20.658362 0 0 1 20.206813-10.498511 21.900121 21.900121 0 0 1 17.045971 8.466541c8.466542 11.288722 7.789218 36.688347-3.27373 73.376695A196.988204 196.988204 0 0 0 842.70312 338.661669a221.14607 221.14607 0 0 1 41.090949-4.515489c30.705325 0.677323 35.333701 15.014001 34.656377 23.59343 0 22.577445-21.56146 22.577445-32.624407 22.577444z m-185.022159 42.106935l2.257745-0.564436a45.154889 45.154889 0 0 0 23.932091-16.820197 56.443612 56.443612 0 0 0-26.189836 17.384633z m93.357734-200.261934h-2.144858a4.402602 4.402602 0 0 0-2.82218 0.677323 52.492559 52.492559 0 0 0 4.176827 33.866167 53.282769 53.282769 0 0 0 0.790211-34.54349zM790.210561 317.551758v1.24176l-0.677323-0.677324c-5.418587 14.336677-11.288722 28.44758-18.061956 42.332709l1.128872-0.677323V361.239114A346.338 346.338 0 0 1 812.788006 348.595745l-0.677324-0.564436h1.806196a196.310881 196.310881 0 0 1-23.706317-30.479551z m94.599493 34.769265a66.151913 66.151913 0 0 0-18.174843 1.693308 50.686363 50.686363 0 0 0 20.997024 6.660347 26.076949 26.076949 0 0 0 13.885128-1.580422c-0.451549-2.596406-3.273729-6.773233-17.158858-6.773233z" fill="#A33639" p-id="22922"></path></svg>
@@ -1 +0,0 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312279596" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4182" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M535.808 56.8832h58.6496v84.8896c110.5408 0.64 221.184-1.1776 331.5968 0.512 23.808-2.304 42.3936 16.64 40.0128 40.96 1.792 197.7344-0.384 427.0848 1.024 624.896-1.024 21.4016 2.048 45.1072-9.9072 64.0512-15.104 11.2128-34.7392 9.728-52.4288 10.5728-103.3984-0.512-206.7968-0.3328-310.2976-0.3328v84.6848h-64.3584c-157.5424-29.44-315.4432-56.32-473.1392-84.6848-0.1024-246.912-0.1024-493.824 0-740.6592C216.5248 113.5104 376.064 84.736 535.8336 56.8832z m63.8208 124.928v104.96c17.3312-3.712 34.688-7.2448 52.0704-10.624 1.4848 45.696 0.8448 91.5712 0.9728 137.344 46.4384 0 92.9792-0.1024 139.5456 0.2048-3.5328 45.4912-24.704 91.0848-65.3312 115.0208-37.5296 25.1392-85.376 25.4464-127.36 12.4928 0.1024 20.6336 0.1024 41.2928 0.2048 61.952h254.4384v42.112h-254.5408v52.6592h254.5408v42.112h-254.5408v110.592h336V181.8368H599.6288z m-490.24 374.784h23.2448v-47.104h15.1296c10.5216 0 18.56-0.6144 24.1152-1.792 4.352-1.1264 8.4736-3.1232 12.032-5.9136 4.1984-3.2768 7.552-7.5008 9.7792-12.3136 2.56-5.248 3.84-11.6992 3.84-19.3536 0-9.9328-2.2016-18.048-6.656-24.32a30.1056 30.1056 0 0 0-16.5632-12.2368c-4.2752-1.2544-13.4912-1.8688-27.6224-1.8688H109.3888v124.928z m23.2448-103.808h11.2384c8.3456 0 13.9264 0.2816 16.7168 0.8448a15.744 15.744 0 0 1 9.344 5.5296c2.5344 3.2 3.84 7.168 3.6864 11.264a17.8176 17.8176 0 0 1-2.6368 9.728 15.5136 15.5136 0 0 1-7.2704 6.1184c-3.072 1.3056-9.216 1.9712-18.3552 1.9712H132.608v-35.456z m83.968 103.8336h23.2448v-47.1296h15.104c10.5472 0 18.5856-0.6144 24.1408-1.792 4.352-1.1264 8.4736-3.1232 12.032-5.9136 4.1984-3.2768 7.552-7.5008 9.7792-12.3136 2.56-5.248 3.84-11.6992 3.84-19.3536 0-9.9328-2.2016-18.048-6.656-24.32a30.1056 30.1056 0 0 0-16.5632-12.2368c-4.3008-1.2544-13.4912-1.8688-27.648-1.8688H216.6272v124.928z m23.2448-103.8336h11.2128c8.3712 0 13.952 0.2816 16.7168 0.8448a15.744 15.744 0 0 1 9.344 5.5296c2.5344 3.2 3.84 7.168 3.6864 11.264a17.8176 17.8176 0 0 1-2.6368 9.728 15.5136 15.5136 0 0 1-7.2448 6.1184c-3.0976 1.3056-9.216 1.9712-18.3808 1.9712H239.872v-35.456z m109.8752 103.8336l23.2192-0.0512v-103.7824h34.048v-21.0944h-91.4176v21.0944h34.1504v103.8336zM671.872 253.184c72.6784 3.4816 133.8112 66.9696 137.7024 142.1824-45.952 0.5632-91.8784 0.3328-137.8048 0.3328 0-47.5392-0.128-95.0784 0.1024-142.5152z" fill="#E8673A" p-id="4183"></path></svg>
@@ -1 +0,0 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1698312537282" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10895" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M0 512h1024v332.986182c0 62.231273-6.516364 84.805818-18.618182 107.566545a126.882909 126.882909 0 0 1-52.829091 52.782546c-22.760727 12.194909-45.335273 18.664727-107.52 18.664727H178.920727c-62.184727 0-84.759273-6.516364-107.52-18.618182A126.882909 126.882909 0 0 1 18.618182 952.506182C6.469818 929.792 0 907.217455 0 845.032727V512z" fill="#5CBC04" p-id="10896"></path><path d="M179.013818 0h665.972364c62.231273 0 84.805818 6.516364 107.566545 18.618182 22.807273 12.194909 40.634182 30.068364 52.782546 52.829091 12.194909 22.760727 18.664727 45.335273 18.664727 107.52V512H0V179.013818c0-62.231273 6.516364-84.805818 18.618182-107.566545A126.882909 126.882909 0 0 1 71.493818 18.618182C94.208 6.469818 116.782545 0 178.967273 0z" fill="#47A6FF" p-id="10897"></path><path d="M384 0h256v1024h-256z" fill="#FFCC00" p-id="10898"></path><path d="M0 332.8h1024v358.4H0z" fill="#EA340F" p-id="10899"></path><path d="M665.6 409.6v204.8H358.4V409.6h307.2z" fill="#FFCC00" p-id="10900"></path></svg>
@@ -1 +0,0 @@
1
- <?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg height="1291" node-id="1" sillyvg="true" template-height="1291" template-width="1430" version="1.1" viewBox="0 0 1430 1291" width="1430" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs node-id="50"><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_10" node-id="5" spreadMethod="pad" x1="714.93" x2="714.93" y1="1290.92" y2="995.69"><stop offset="0" stop-color="#f7fbff" stop-opacity="0.5"></stop><stop offset="1" stop-color="#ecf5ff"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_15" node-id="8" spreadMethod="pad" x1="1227.25" x2="1007.27" y1="66.57" y2="66.57"><stop offset="0" stop-color="#f7fbff"></stop><stop offset="1" stop-color="#ecf5ff"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_15-2" node-id="11" spreadMethod="pad" x1="344.06" x2="191.03" y1="283.66" y2="283.66"><stop offset="0" stop-color="#f7fbff"></stop><stop offset="1" stop-color="#ecf5ff"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_35" node-id="12" spreadMethod="pad" x1="676.78" x2="985.63" y1="641.95" y2="641.95"><stop offset="0" stop-color="#fafafd"></stop><stop offset="1" stop-color="#e4eaf0"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_35-2" node-id="15" spreadMethod="pad" x1="553.18" x2="553.18" y1="782.95" y2="544.24"><stop offset="0" stop-color="#fafafd"></stop><stop offset="1" stop-color="#e4eaf0"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_14" node-id="16" spreadMethod="pad" x1="851.79" x2="851.79" y1="956.19" y2="585.41"><stop offset="0" stop-color="#dcedff"></stop><stop offset="1" stop-color="#4095e6"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_14-2" node-id="19" spreadMethod="pad" x1="573.77" x2="573.77" y1="954.34" y2="597.62"><stop offset="0" stop-color="#dcedff"></stop><stop offset="1" stop-color="#4095e6"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_42" node-id="20" spreadMethod="pad" x1="650.81" x2="444.6" y1="591.69" y2="797.89"><stop offset="0" stop-color="#fafafd"></stop><stop offset="1" stop-color="#bedcfa"></stop></linearGradient><linearGradient gradientUnits="userSpaceOnUse" id="_未命名的渐变_42-2" node-id="23" spreadMethod="pad" x1="789.55" x2="986.11" y1="782.46" y2="585.9"><stop offset="0" stop-color="#fafafd"></stop><stop offset="1" stop-color="#bedcfa"></stop></linearGradient></defs><g node-id="162"><path d="M 1429.86 1143.31 C 1429.86 1182.46 1354.54 1220.01 1220.46 1247.69 C 1086.39 1275.38 904.54 1290.93 714.93 1290.93 C 525.32 1290.93 343.47 1275.38 209.40 1247.69 C 75.32 1220.01 0.00 1182.46 0.00 1143.31 C 0.00 1104.16 75.32 1066.61 209.40 1038.93 C 343.47 1011.24 525.32 995.69 714.93 995.69 C 904.54 995.69 1086.39 1011.24 1220.46 1038.93 C 1354.54 1066.61 1429.86 1104.16 1429.86 1143.31 Z" fill="url(#_未命名的渐变_10)" fill-rule="nonzero" group-id="1" node-id="110" stroke="none" target-height="295.24005" target-width="1429.86" target-x="0" target-y="995.69"></path><g node-id="163"><path d="M 1162.16 989.30 L 1176.10 989.30 C 1178.02 989.30 1179.58 990.86 1179.58 992.78 L 1179.58 992.78 L 1179.58 1055.50 C 1179.58 1059.35 1176.46 1062.47 1172.61 1062.47 L 1165.64 1062.47 C 1161.79 1062.47 1158.67 1059.35 1158.67 1055.50 L 1158.67 1055.50 L 1158.67 992.78 C 1158.67 990.86 1160.23 989.30 1162.15 989.30 L 1162.15 989.30 Z" fill="#e9f0f4" fill-rule="nonzero" group-id="1,2" node-id="114" stroke="none" target-height="73.16998" target-width="20.909912" target-x="1158.67" target-y="989.3"></path><path d="M 1169.13 846.43 L 1169.13 1020.66 L 1099.44 989.30 L 1169.13 846.43 Z" fill="#e1eaef" fill-rule="nonzero" group-id="1,2" node-id="116" stroke="none" target-height="174.22998" target-width="69.69006" target-x="1099.44" target-y="846.43"></path><path d="M 1169.13 846.43 L 1169.13 1020.66 L 1238.82 989.30 L 1169.13 846.43 Z" fill="#f5f7fa" fill-rule="nonzero" group-id="1,2" node-id="118" stroke="none" target-height="174.22998" target-width="69.68994" target-x="1169.13" target-y="846.43"></path></g><g node-id="164"><path d="M 1263.74 988.50 L 1282.24 988.50 C 1284.79 988.50 1286.87 990.57 1286.87 993.13 L 1286.87 993.13 L 1286.87 1076.38 C 1286.87 1081.49 1282.73 1085.63 1277.62 1085.63 L 1268.37 1085.63 C 1263.26 1085.63 1259.12 1081.49 1259.12 1076.38 L 1259.12 1076.38 L 1259.12 993.13 C 1259.12 990.58 1261.19 988.50 1263.75 988.50 L 1263.75 988.50 Z" fill="#e9f0f4" fill-rule="nonzero" group-id="1,3" node-id="123" stroke="none" target-height="97.130005" target-width="27.75" target-x="1259.12" target-y="988.5"></path><path d="M 1272.99 798.87 L 1272.99 1030.13 L 1180.49 988.50 L 1272.99 798.87 Z" fill="#e1eaef" fill-rule="nonzero" group-id="1,3" node-id="125" stroke="none" target-height="231.26001" target-width="92.5" target-x="1180.49" target-y="798.87"></path><path d="M 1272.99 798.87 L 1272.99 1030.13 L 1365.49 988.50 L 1272.99 798.87 Z" fill="#f5f7fa" fill-rule="nonzero" group-id="1,3" node-id="127" stroke="none" target-height="231.26001" target-width="92.5" target-x="1272.99" target-y="798.87"></path></g><g node-id="165"><path d="M 244.89 976.92 L 263.39 976.92 C 265.94 976.92 268.02 978.99 268.02 981.55 L 268.02 981.55 L 268.02 1064.80 C 268.02 1069.91 263.88 1074.05 258.77 1074.05 L 249.52 1074.05 C 244.41 1074.05 240.27 1069.91 240.27 1064.80 L 240.27 1064.80 L 240.27 981.55 C 240.27 979.00 242.34 976.92 244.90 976.92 L 244.90 976.92 Z" fill="#e9f0f4" fill-rule="nonzero" group-id="1,4" node-id="132" stroke="none" target-height="97.130066" target-width="27.749985" target-x="240.27" target-y="976.92"></path><path d="M 254.14 787.29 L 254.14 1018.55 L 161.64 976.92 L 254.14 787.29 Z" fill="#e1eaef" fill-rule="nonzero" group-id="1,4" node-id="134" stroke="none" target-height="231.26001" target-width="92.5" target-x="161.64" target-y="787.29"></path><path d="M 254.14 787.29 L 254.14 1018.55 L 346.64 976.92 L 254.14 787.29 Z" fill="#f5f7fa" fill-rule="nonzero" group-id="1,4" node-id="136" stroke="none" target-height="231.26001" target-width="92.500015" target-x="254.14" target-y="787.29"></path></g><path d="M 1204.13 65.71 C 1204.05 65.68 1203.99 65.60 1203.99 65.52 C 1204.02 28.87 1175.53 0.00 1140.41 0.00 C 1119.72 0.00 1101.40 9.91 1089.77 25.19 C 1089.72 25.26 1089.63 25.29 1089.55 25.26 C 1085.52 23.92 1081.22 23.16 1076.74 23.16 C 1054.36 23.16 1036.22 41.30 1036.22 63.68 C 1036.22 63.85 1036.24 64.02 1036.25 64.20 C 1019.35 67.03 1006.57 82.02 1007.31 99.88 C 1008.09 118.79 1024.84 133.15 1043.76 133.15 L 1191.12 133.15 C 1209.06 133.15 1225.09 120.16 1227.05 102.33 C 1228.88 85.56 1218.76 70.91 1204.14 65.71 Z" fill="url(#_未命名的渐变_15)" fill-rule="nonzero" group-id="1" node-id="139" stroke="none" target-height="133.15" target-width="222.31" target-x="1006.57" target-y="0"></path><path d="M 327.98 283.05 C 327.92 283.03 327.89 282.98 327.89 282.92 C 327.91 257.43 308.09 237.34 283.66 237.34 C 269.27 237.34 256.52 244.23 248.43 254.86 C 248.39 254.91 248.33 254.93 248.27 254.91 C 245.47 253.97 242.48 253.45 239.36 253.45 C 223.79 253.45 211.17 266.07 211.17 281.64 C 211.17 281.76 211.19 281.88 211.19 282.00 C 199.43 283.97 190.55 294.39 191.06 306.82 C 191.60 319.97 203.25 329.96 216.42 329.96 L 318.93 329.96 C 331.41 329.96 342.56 320.92 343.92 308.52 C 345.20 296.85 338.15 286.66 327.99 283.05 Z" fill="url(#_未命名的渐变_15-2)" fill-rule="nonzero" group-id="1" node-id="141" stroke="none" target-height="92.619995" target-width="154.65001" target-x="190.55" target-y="237.34"></path><path d="M 431.32 1169.86 C 431.32 1182.86 557.98 1193.49 714.93 1193.49 C 871.88 1193.49 998.54 1182.85 998.54 1169.86 C 998.54 1156.87 871.86 1146.21 714.93 1146.21 C 557.98 1146.12 431.32 1156.25 431.32 1169.84" fill="#ced6dd" fill-opacity="0.3" fill-rule="nonzero" group-id="1,5" node-id="145" stroke="none" target-height="47.369995" target-width="567.22" target-x="431.32" target-y="1146.12"></path><path d="M 985.63 585.33 L 676.79 544.16 L 676.79 707.34 L 985.63 739.76 L 985.63 585.34 Z" fill="url(#_未命名的渐变_35)" fill-rule="nonzero" group-id="1,6" node-id="150" stroke="none" target-height="195.60004" target-width="308.84003" target-x="676.79" target-y="544.16"></path><path d="M 429.66 597.62 L 676.70 544.24 L 676.70 729.56 L 429.66 782.94 L 429.66 597.62 Z" fill="url(#_未命名的渐变_35-2)" fill-rule="nonzero" group-id="1,6" node-id="152" stroke="none" target-height="238.70001" target-width="247.04001" target-x="429.66" target-y="544.24"></path><path d="M 717.96 659.43 L 985.63 585.42 L 985.63 882.19 L 717.96 956.20 L 717.96 659.43 Z" fill="url(#_未命名的渐变_14)" fill-rule="nonzero" group-id="1,6" node-id="154" stroke="none" target-height="370.78003" target-width="267.66998" target-x="717.96" target-y="585.42"></path><path d="M 429.66 597.62 L 717.88 659.42 L 717.88 954.34 L 429.66 884.20 L 429.66 597.62 Z" fill="url(#_未命名的渐变_14-2)" fill-rule="nonzero" group-id="1,6" node-id="156" stroke="none" target-height="356.72003" target-width="288.22" target-x="429.66" target-y="597.62"></path><path d="M 717.96 658.84 L 429.66 597.63 L 367.86 721.15 L 666.43 791.29 L 717.96 658.84 L 717.96 658.84 Z" fill="url(#_未命名的渐变_42)" fill-rule="nonzero" group-id="1,6" node-id="158" stroke="none" target-height="193.65997" target-width="350.10004" target-x="367.86" target-y="597.63"></path><path d="M 717.96 659.43 L 985.63 585.42 L 1057.70 708.94 L 800.30 793.22 C 800.30 793.22 717.95 659.43 717.95 659.43 Z" fill="url(#_未命名的渐变_42-2)" fill-rule="nonzero" group-id="1,6" node-id="160" stroke="none" target-height="207.79999" target-width="339.74994" target-x="717.95" target-y="585.42"></path></g></svg>
@@ -1 +0,0 @@
1
- <svg t="1698313785376" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="25779" width="200" height="200"><path d="M535.94 71.69h57.58v91.4c108.56 0.61 217.22-1.12 325.68 0.51 23.36-2.23 41.64 15.95 39.3 39.3 1.73 189.71-0.41 379.52 1 569.33-1 20.51 2 43.26-9.75 61.44-14.83 10.76-34.12 9.34-51.48 10.16-101.56-0.51-203.11-0.31-304.77-0.31v101.55h-63.15C375.59 916.83 220.5 891 65.63 863.82q-0.15-355.4 0-710.69C222.34 126 379 98.39 535.94 71.69z" fill="#868695" p-id="25780"></path><path d="M138.52 547.51V444.39h-34.1v-21h91.31v21h-34v103.12zM199 547.51l39.27-64.77-35.58-59.35h27.12l23 39.88 22.57-39.88h26.89l-35.74 60.28 39.27 63.84h-28l-25.4-42.92-25.55 42.92zM343.63 547.51V444.39h-34.1v-21h91.31v21h-34v103.12zM590.14 193.55v302.14h126.94v12.69H590.14v88.86h265.74v38.08H590.14v48.24h265.74v38.08H590.14V813h335.14V193.55z m198.11 250c-4.53 6.7-10.62 17.86-12.12 31.13a8.11 8.11 0 0 1-5.17 6.88l-43.83 15.86-4.93-2.57 20.22-27.09a15.45 15.45 0 0 0 5 0.79c7.84-0.08 14.14-5.95 14.07-13.09s-6.49-12.89-14.33-12.81-14.14 5.94-14.06 13.09a11.89 11.89 0 0 0 1 4.63 8.05 8.05 0 0 1-0.55 8.14l-17.15 23-4.09-3.82-0.13-42.48a8.25 8.25 0 0 1 4.66-7.51c6.93-3.32 20.19-10.74 30.28-22.81a8.22 8.22 0 0 1 10.81-1.46l28 18.43a8.35 8.35 0 0 1 2.32 11.72z m19.94-14.67a8.35 8.35 0 0 1-11 2l-42.74-26.63a8.35 8.35 0 0 1-2.52-11.73l0.32-0.47c2.53-3.77 4.47-1.64 8.3 0.8L802.93 420c4.13 2.61 8.25 5 5.25 8.91z m36.18-53.69l-24.11 35.7a13 13 0 0 1-18 3.48l-28.55-19.27a13 13 0 0 1-3.48-18l24.11-35.69a12.94 12.94 0 0 1 18-3.48l28.56 19.29a13 13 0 0 1 3.46 18z" fill="#FFFFFF" p-id="25781"></path></svg>
Binary file
Binary file
Binary file
@@ -1 +0,0 @@
1
- :root{--vxe-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;--vxe-font-size: 14px;--vxe-font-size-medium: 14px;--vxe-font-size-small: 13px;--vxe-font-size-mini: 12px;--vxe-border-radius: 4px;--vxe-icon-font-family: Verdana, Arial, Tahoma;--vxe-icon-background-color: #fff;--vxe-font-color: #606266;--vxe-primary-color: #409eff;--vxe-success-color: #67c23a;--vxe-info-color: #909399;--vxe-warning-color: #e6a23c;--vxe-danger-color: #f56c6c;--vxe-font-lighten-color: #797b80;--vxe-primary-lighten-color: #73b8ff;--vxe-success-lighten-color: #85cf60;--vxe-info-lighten-color: #abadb1;--vxe-warning-lighten-color: #ecb869;--vxe-danger-lighten-color: #f89c9c;--vxe-font-darken-color: #47494c;--vxe-primary-darken-color: #0d84ff;--vxe-success-darken-color: #529b2e;--vxe-info-darken-color: #767980;--vxe-warning-darken-color: #d48a1b;--vxe-danger-darken-color: #f23c3c;--vxe-font-disabled-color: #BFBFBF;--vxe-primary-disabled-color: #a6d2ff;--vxe-success-disabled-color: #a3db87;--vxe-info-disabled-color: #c5c7ca;--vxe-warning-disabled-color: #f2cd96;--vxe-danger-disabled-color: #fbcccc;--vxe-input-border-color: #dcdfe6;--vxe-input-disabled-color: #dcdfe6;--vxe-input-disabled-background-color: #f3f3f3;--vxe-input-placeholder-color: #C0C4CC;--vxe-table-popup-border-color: #DADCE0;--vxe-table-header-font-color: #606266;--vxe-table-footer-font-color: #606266;--vxe-table-border-radius: 4px;--vxe-table-border-width: 1px;--vxe-table-border-color: #e8eaec;--vxe-table-resizable-line-color: #D9DDDF;--vxe-table-resizable-drag-line-color: #409eff;--vxe-table-header-background-color: #f8f8f9;--vxe-table-body-background-color: #ffffff;--vxe-table-footer-background-color: #ffffff;--vxe-table-tree-node-line-color: #909399;--vxe-table-tree-node-line-style: dotted;--vxe-table-header-font-weight: 700;--vxe-table-row-height-default: 48px;--vxe-table-row-height-medium: 44px;--vxe-table-row-height-small: 40px;--vxe-table-row-height-mini: 36px;--vxe-table-row-line-height: 22px;--vxe-table-row-hover-background-color: #f5f7fa;--vxe-table-row-striped-background-color: #fafafa;--vxe-table-row-hover-striped-background-color: #f5f7fa;--vxe-table-row-radio-checked-background-color: #fff3e0;--vxe-table-row-hover-radio-checked-background-color: #ffebbc;--vxe-table-row-checkbox-checked-background-color: #fff3e0;--vxe-table-row-hover-checkbox-checked-background-color: #ffebbc;--vxe-table-row-current-background-color: #e6f7ff;--vxe-table-row-hover-current-background-color: #d7effb;--vxe-table-column-padding-default: 13px 0;--vxe-table-column-padding-medium: 11px 0;--vxe-table-column-padding-small: 9px 0;--vxe-table-column-padding-mini: 7px 0;--vxe-table-column-hover-background-color: #d7effb;--vxe-table-column-current-background-color: #e6f7ff;--vxe-table-column-icon-border-color: #c0c4cc;--vxe-table-column-icon-border-hover-color: #515A6E;--vxe-table-cell-placeholder-color: #C0C4CC;--vxe-table-cell-padding-left: 10px;--vxe-table-cell-padding-right: 10px;--vxe-table-cell-input-height-default: 42px;--vxe-table-cell-input-height-medium: 38px;--vxe-table-cell-input-height-small: 34px;--vxe-table-cell-input-height-mini: 30px;--vxe-table-cell-dirty-width: 5px;--vxe-table-cell-dirty-update-color: #f56c6c;--vxe-table-cell-dirty-insert-color: #19A15F;--vxe-table-cell-area-border-color: #409eff;--vxe-table-cell-area-border-width: 1px;--vxe-table-cell-main-area-extension-border-color: #fff;--vxe-table-cell-main-area-extension-background-color: #409eff;--vxe-table-cell-extend-area-border-width: 2px;--vxe-table-cell-copy-area-border-width: 3px;--vxe-table-cell-active-area-border-width: 2px;--vxe-table-cell-copy-area-border-color: #409eff;--vxe-table-cell-extend-area-border-color: #409eff;--vxe-table-cell-active-area-border-color: #409eff;--vxe-table-cell-area-background-color: rgba(64, 158, 255, .2);--vxe-table-checkbox-range-border-width: 1px;--vxe-table-checkbox-range-border-color: #006af1;--vxe-table-checkbox-range-background-color: rgba(50, 128, 252, .2);--vxe-table-fixed-left-scrolling-box-shadow: 8px 0px 10px -5px rgba(0, 0, 0, .12);--vxe-table-fixed-right-scrolling-box-shadow: -8px 0px 10px -5px rgba(0, 0, 0, .12);--vxe-table-filter-panel-background-color: #fff;--vxe-table-menu-item-width: 178px;--vxe-table-menu-background-color: #fff;--vxe-loading-color: #409eff;--vxe-loading-background-color: rgba(255, 255, 255, .5);--vxe-loading-z-index: 999;--vxe-table-validate-error-color: #f56c6c;--vxe-table-validate-error-background-color: #ffffff;--vxe-grid-maximize-background-color: #fff;--vxe-toolbar-background-color: #fff;--vxe-toolbar-custom-active-background-color: #D9DADB;--vxe-toolbar-panel-background-color: #fff;--vxe-tooltip-dark-color: #fff;--vxe-tooltip-dark-background-color: #303133;--vxe-tooltip-light-background-color: #fff;--vxe-pager-background-color: #fff;--vxe-pager-perfect-background-color: #fff;--vxe-pager-perfect-button-background-color: #f4f4f5;--vxe-modal-header-background-color: #F8F8F8;--vxe-modal-body-background-color: #fff;--vxe-modal-border-color: #ebeef5;--vxe-checkbox-font-size-default: 15px;--vxe-checkbox-font-size-medium: 14px;--vxe-checkbox-font-size-small: 13px;--vxe-checkbox-font-size-mini: 12px;--vxe-checkbox-checked-width: .32em;--vxe-checkbox-checked-height: .64em;--vxe-checkbox-indeterminate-width: .6em;--vxe-checkbox-indeterminate-height: 2px;--vxe-checkbox-border-width: 2px;--vxe-checkbox-border-radius: 2px;--vxe-checkbox-icon-background-color: #fff;--vxe-checkbox-checked-icon-border-color: #fff;--vxe-checkbox-indeterminate-icon-background-color: #fff;--vxe-radio-font-size-default: 15px;--vxe-radio-font-size-medium: 14px;--vxe-radio-font-size-small: 13px;--vxe-radio-font-size-mini: 12px;--vxe-radio-border-width: 2px;--vxe-radio-icon-background-color: #fff;--vxe-radio-checked-icon-background-color: #fff;--vxe-radio-indeterminate-icon-background-color: #fff;--vxe-radio-button-default-background-color: #fff;--vxe-button-max-width: 500px;--vxe-button-default-background-color: #fff;--vxe-button-dropdown-panel-background-color: #fff;--vxe-button-height-default: 34px;--vxe-button-height-medium: 32px;--vxe-button-height-small: 30px;--vxe-button-height-mini: 28px;--vxe-button-round-border-radius-default: 17px;--vxe-button-round-border-radius-medium: 16px;--vxe-button-round-border-radius-small: 15px;--vxe-button-round-border-radius-mini: 14px;--vxe-input-background-color: #fff;--vxe-input-panel-background-color: #fff;--vxe-input-number-disabled-color: #e4e7ed;--vxe-input-date-festival-color: #999999;--vxe-input-date-festival-important-color: #409eff;--vxe-input-date-notice-background-color: #FF0000;--vxe-input-date-picker-hover-background-color: #f2f6fc;--vxe-input-date-picker-selected-color: #fff;--vxe-input-date-time-confirm-button-color: #fff;--vxe-input-date-picker-festival-selected-color: #fff;--vxe-input-date-picker-notice-selected-background-color: #fff;--vxe-input-date-extra-color: #67c23a;--vxe-input-date-extra-important-color: #fd2222;--vxe-input-date-title-height-default: 30px;--vxe-input-date-title-height-medium: 29px;--vxe-input-date-title-height-small: 28px;--vxe-input-date-title-height-mini: 26px;--vxe-input-date-time-week-row-height-default: 38px;--vxe-input-date-time-week-row-height-medium: 36px;--vxe-input-date-time-week-row-height-small: 34px;--vxe-input-date-time-week-row-height-mini: 32px;--vxe-input-date-month-year-row-height-default: 48px;--vxe-input-date-month-year-row-height-medium: 46px;--vxe-input-date-month-year-row-height-small: 44px;--vxe-input-date-month-year-row-height-mini: 42px;--vxe-input-date-quarter-row-height-default: 60px;--vxe-input-date-quarter-row-height-medium: 58px;--vxe-input-date-quarter-row-height-small: 56px;--vxe-input-date-quarter-row-height-mini: 54px;--vxe-input-height-default: 34px;--vxe-input-height-medium: 32px;--vxe-input-height-small: 30px;--vxe-input-height-mini: 28px;--vxe-input-count-color: #999;--vxe-input-count-background-color: #fff;--vxe-input-count-error-color: #f56c6c;--vxe-textarea-line-height: 1.5715;--vxe-textarea-background-color: #fff;--vxe-form-item-min-height-default: 36px;--vxe-form-item-min-height-medium: 34px;--vxe-form-item-min-height-small: 32px;--vxe-form-item-min-height-mini: 30px;--vxe-form-background-color: #fff;--vxe-form-validate-error-color: #f56c6c;--vxe-form-validate-error-background-color: inherit;--vxe-select-option-height-default: 30px;--vxe-select-option-height-medium: 28px;--vxe-select-option-height-small: 26px;--vxe-select-option-height-mini: 24px;--vxe-select-option-hover-background-color: #f5f7fa;--vxe-select-panel-background-color: #fff;--vxe-select-empty-color: #C0C4CC;--vxe-optgroup-title-color: #909399;--vxe-switch-font-color: #fff;--vxe-switch-icon-background-color: #fff;--vxe-switch-open-background-color: #409eff;--vxe-switch-close-background-color: rgba(0, 0, 0, .35);--vxe-switch-disabled-background-color: rgba(0, 0, 0, .15);--vxe-pulldown-panel-background-color: #fff}
@@ -1,104 +0,0 @@
1
- export declare const EN: {
2
- UI: {
3
- ADD: string;
4
- DELETE_CONFIRM: string;
5
- CONFIRM_DELETE: string;
6
- NEED_CURD: string;
7
- EDIT: string;
8
- EMPTY: string;
9
- EMPTY_URL: string;
10
- MULTIFY_DELETE_CONFIRM: string;
11
- CONFIRM_MULTIFY_DELETE: string;
12
- ADVANCED: string;
13
- EXPAND: string;
14
- SELECT_ICON: string;
15
- MUSE_FUNCTION: string;
16
- NEED_RENDER: string;
17
- SEARCH: string;
18
- RESET: string;
19
- PLEASE_INPUT: string;
20
- PLEASE_SELECT: string;
21
- PLEASE_SET_ICON: string;
22
- INPUT_FILTER: string;
23
- EXIT_FULLSCREEN: string;
24
- FULLSCREEN: string;
25
- SAVE: string;
26
- CLOSE: string;
27
- ADD_SUCCESS: string;
28
- UPDATE_SUCCESS: string;
29
- MULTIFY: string;
30
- DELETE_SUCCESS: string;
31
- COLUMN_CONTROL: string;
32
- COLUMN_SHOW: string;
33
- INDEX: string;
34
- CHECKBOX: string;
35
- FIXED_TO_LEFT: string;
36
- FIXED_TO_RIGHT: string;
37
- EXPORT: string;
38
- DOWNLOAD_TEMPLATE: string;
39
- EXPORT_CURRENT_PAGE: string;
40
- EXPORT_SELECT_COLUMN: string;
41
- EXPORT_ALL: string;
42
- SELECT_ALL: string;
43
- SETTING_EXPORT_COLUMN: string;
44
- NO_EXPORT_COLUMN: string;
45
- NUMBER: string;
46
- ACTIONS: string;
47
- TOTAL_PAGE: string;
48
- FILTER: string;
49
- EXPAND_ALL: string;
50
- COLLAPSE_ALL: string;
51
- SELECT_ALL1: string;
52
- CANCEL_SELECT_ALL: string;
53
- LEVEL_CONNECTION: string;
54
- LEVEL_SOLATE: string;
55
- LOADING: string;
56
- SUPPORT_FILES: string;
57
- MAX_SIZE: string;
58
- MAX_NUMBER: string;
59
- SUPPORT_TYPES: string;
60
- FILE_UPLOAD: string;
61
- FILE_NAME: string;
62
- FILE_STATUS: string;
63
- PREVIEW: string;
64
- DELETE: string;
65
- HISTORY_UPLOAD: string;
66
- MAX_MB: string;
67
- PRE_UPLOAD: string;
68
- COMPANY_NAME: string;
69
- FILTER_MORE: string;
70
- LARGE_SIZE: string;
71
- MIDDLE_SIZE: string;
72
- SMALL_SIZE: string;
73
- MODIFY_PASSWORD: string;
74
- LOGIN_OUT: string;
75
- REFRESH: string;
76
- CLOSE_CURRENT_TAG: string;
77
- CLOSE_LEFT_TAGS: string;
78
- CLOSE_RIGHT_TAGS: string;
79
- CLOSE_OTHER_TAGS: string;
80
- CLOSE_ALL_TAGE: string;
81
- SETTING_THEME: string;
82
- PROJECT_SETTING: string;
83
- NAV_MODE: string;
84
- PRIMARY_COLOR: string;
85
- PAGE_SHOW: string;
86
- COPY: string;
87
- DRAWER_TIPS: string;
88
- FULL: string;
89
- FIXED: string;
90
- BREAD_CURB: string;
91
- MENU_FILTER: string;
92
- NOTICE: string;
93
- SIZE: string;
94
- SHOW_FULLE: string;
95
- LOCAL: string;
96
- ROUTE_REUSE: string;
97
- SHOW_FOOTER: string;
98
- CONTENT_FIXED_WIDTH: string;
99
- ON: string;
100
- OFF: string;
101
- UNKNOWN_ROUTE: string;
102
- COPY_SUCCESS: string;
103
- };
104
- };
@@ -1,104 +0,0 @@
1
- export const EN = {
2
- "UI": {
3
- "ADD": "Add ",
4
- "DELETE_CONFIRM": "Delete Confirm",
5
- "CONFIRM_DELETE": "Confirm that you want to delete the selected data?",
6
- "NEED_CURD": "Missing curd function configuration, pass the curd parameter returned by useSource to the useCurd configuration option!",
7
- "EDIT": "Edit ",
8
- "EMPTY": "No Selected Data Yet!",
9
- "EMPTY_URL": "Request Url Can Not Empty!",
10
- "MULTIFY_DELETE_CONFIRM": "Batch Deletion Confirmation",
11
- "CONFIRM_MULTIFY_DELETE": "Confirm that you want to delete the selected data in batches?",
12
- "ADVANCED": "Retract",
13
- "EXPAND": "Expand",
14
- "SELECT_ICON": "Select Icon",
15
- "MUSE_FUNCTION": "openDialog must be a fouction",
16
- "NEED_RENDER": "Configure the render function",
17
- "SEARCH": "Search",
18
- "RESET": "Reset",
19
- "PLEASE_INPUT": "Please Input",
20
- "PLEASE_SELECT": "Please Select",
21
- "PLEASE_SET_ICON": "Please Set The Icon",
22
- "INPUT_FILTER": "Enter Filter Criteria",
23
- "EXIT_FULLSCREEN": "Exit Full Screen",
24
- "FULLSCREEN": "Full Screen",
25
- "SAVE": "Save",
26
- "CLOSE": "Close",
27
- "ADD_SUCCESS": "Add Success!",
28
- "UPDATE_SUCCESS": "Update data successfully!",
29
- "MULTIFY": "Batch",
30
- "DELETE_SUCCESS": "Successfully delete!",
31
- "COLUMN_CONTROL": "Column Control",
32
- "COLUMN_SHOW": "Column Show",
33
- "INDEX": "Serial Number",
34
- "CHECKBOX": "Checkbox",
35
- "FIXED_TO_LEFT": "Fixed to the left",
36
- "FIXED_TO_RIGHT": "Fixed to the right",
37
- "EXPORT": "Export",
38
- "DOWNLOAD_TEMPLATE": "Download Template",
39
- "EXPORT_CURRENT_PAGE": "Export the current page",
40
- "EXPORT_SELECT_COLUMN": "Export Selected columns",
41
- "EXPORT_ALL": "Export all columns",
42
- "SELECT_ALL": "Select All",
43
- "SETTING_EXPORT_COLUMN": "Setting the export column",
44
- "NO_EXPORT_COLUMN": "There are no exported columns!",
45
- "NUMBER": "Number",
46
- "ACTIONS": "Actions",
47
- "TOTAL_PAGE": "Total {total}",
48
- "FILTER": "Filter",
49
- "EXPAND_ALL": "Expand All",
50
- "COLLAPSE_ALL": "Collapse All",
51
- "SELECT_ALL1": "Select All",
52
- "CANCEL_SELECT_ALL": "Cancel Select All",
53
- "LEVEL_CONNECTION": "Level Connection",
54
- "LEVEL_SOLATE": "Independent Hierarchy",
55
- "LOADING": "Loading...",
56
- "SUPPORT_FILES": "Support {message} format",
57
- "MAX_SIZE": "Not exceeding {maxSize}M",
58
- "MAX_NUMBER": "A maximum of {maxNumber} files can be selected",
59
- "SUPPORT_TYPES": "Upload Types: pptx、doc、jpg、jpeg、png、bmp、gif、xls、xlsx、txt、rar、zip、7z、tar、gz",
60
- "FILE_UPLOAD": "Files Upload",
61
- "FILE_NAME": "File Name",
62
- "FILE_STATUS": "Upload Status",
63
- "PREVIEW": "Preview",
64
- "DELETE": "Delete",
65
- "HISTORY_UPLOAD": "History Upload",
66
- "MAX_MB": "Only files up to {maxSize}MB can be uploaded!",
67
- "PRE_UPLOAD": "To Upload",
68
- "COMPANY_NAME": "Longi Co overseas tax system",
69
- "FILTER_MORE": "Menu Search...",
70
- "LARGE_SIZE": "Large Size",
71
- "MIDDLE_SIZE": "Middle Size",
72
- "SMALL_SIZE": "Small Size",
73
- "MODIFY_PASSWORD": "Modify Password",
74
- "LOGIN_OUT": "Log out",
75
- "REFRESH": "Refresh",
76
- "CLOSE_CURRENT_TAG": "Close the current tab",
77
- "CLOSE_LEFT_TAGS": "Close the left tab",
78
- "CLOSE_RIGHT_TAGS": "Close the right tab",
79
- "CLOSE_OTHER_TAGS": "Close other tabs",
80
- "CLOSE_ALL_TAGE": "Close All",
81
- "SETTING_THEME": "Style Settings",
82
- "PROJECT_SETTING": "Project Configuration",
83
- "NAV_MODE": "Navigation bar mode",
84
- "PRIMARY_COLOR": "Primary Color",
85
- "PAGE_SHOW": "Interface Display",
86
- "COPY": "Copy",
87
- "DRAWER_TIPS": "The function mainly real-time preview layout effect, more complete configuration in the src/core/Settings/theme.ts. The layout preview function will be turned off in production.",
88
- "FULL": "Flow-based",
89
- "FIXED": "Fixed width",
90
- "BREAD_CURB": "Bread crumbs",
91
- "MENU_FILTER": "Menu search",
92
- "NOTICE": "Notification",
93
- "SIZE": "Size",
94
- "SHOW_FULLE": "Page full screen",
95
- "LOCAL": "Internationalization",
96
- "ROUTE_REUSE": "Routing reuse",
97
- "SHOW_FOOTER": "Show Footer",
98
- "CONTENT_FIXED_WIDTH": "Content area width",
99
- "ON": "On",
100
- "OFF": "Off",
101
- "UNKNOWN_ROUTE": "Unknown route",
102
- "COPY_SUCCESS": "Copy Success!"
103
- }
104
- }
@@ -1,2 +0,0 @@
1
- import { Recordable, Language } from "@dt-frames/core";
2
- export declare const uiLang: (lang: Language) => Recordable;
@@ -1,5 +0,0 @@
1
- import { Recordable, Language } from "@dt-frames/core"
2
- import { EN } from "./en"
3
- import { ZH } from "./zh"
4
-
5
- export const uiLang = (lang: Language): Recordable => lang === Language.ZH ? ZH : EN
@@ -1,105 +0,0 @@
1
- export declare const ZH: {
2
- UI: {
3
- ADD: string;
4
- DELETE_CONFIRM: string;
5
- CONFIRM_DELETE: string;
6
- NEED_CURD: string;
7
- EDIT: string;
8
- EMPTY: string;
9
- EMPTY_URL: string;
10
- MULTIFY_DELETE_CONFIRM: string;
11
- CONFIRM_MULTIFY_DELETE: string;
12
- ADVANCED: string;
13
- EXPAND: string;
14
- SELECT_ICON: string;
15
- MUSE_FUNCTION: string;
16
- NEED_RENDER: string;
17
- SEARCH: string;
18
- RESET: string;
19
- PLEASE_INPUT: string;
20
- PLEASE_SELECT: string;
21
- PLEASE_SET_ICON: string;
22
- INPUT_FILTER: string;
23
- EXIT_FULLSCREEN: string;
24
- FULLSCREEN: string;
25
- SAVE: string;
26
- CLOSE: string;
27
- ADD_SUCCESS: string;
28
- UPDATE_SUCCESS: string;
29
- MULTIFY: string;
30
- DELETE_SUCCESS: string;
31
- COLUMN_CONTROL: string;
32
- COLUMN_SHOW: string;
33
- INDEX: string;
34
- CHECKBOX: string;
35
- FIXED_TO_LEFT: string;
36
- FIXED_TO_RIGHT: string;
37
- EXPORT: string;
38
- DOWNLOAD_TEMPLATE: string;
39
- EXPORT_CURRENT_PAGE: string;
40
- EXPORT_SELECT_COLUMN: string;
41
- EXPORT_ALL: string;
42
- SELECT_ALL: string;
43
- SETTING_EXPORT_COLUMN: string;
44
- NO_EXPORT_COLUMN: string;
45
- NUMBER: string;
46
- ACTIONS: string;
47
- TOTAL_PAGE: string;
48
- FILTER: string;
49
- EXPAND_ALL: string;
50
- COLLAPSE_ALL: string;
51
- SELECT_ALL1: string;
52
- CANCEL_SELECT_ALL: string;
53
- LEVEL_CONNECTION: string;
54
- LEVEL_SOLATE: string;
55
- LOADING: string;
56
- SUPPORT_FILES: string;
57
- MAX_SIZE: string;
58
- MAX_NUMBER: string;
59
- SUPPORT_TYPES: string;
60
- FILE_UPLOAD: string;
61
- FILE_NAME: string;
62
- FILE_STATUS: string;
63
- PREVIEW: string;
64
- DELETE: string;
65
- HISTORY_UPLOAD: string;
66
- MAX_MB: string;
67
- PRE_UPLOAD: string;
68
- COMPANY_NAME: string;
69
- FILTER_MORE: string;
70
- LARGE_SIZE: string;
71
- MIDDLE_SIZE: string;
72
- SMALL_SIZE: string;
73
- MODIFY_PASSWORD: string;
74
- LOGIN_OUT: string;
75
- REFRESH: string;
76
- CLOSE_CURRENT_TAG: string;
77
- CLOSE_LEFT_TAGS: string;
78
- CLOSE_RIGHT_TAGS: string;
79
- CLOSE_OTHER_TAGS: string;
80
- CLOSE_ALL_TAGE: string;
81
- SETTING_THEME: string;
82
- PROJECT_SETTING: string;
83
- NAV_MODE: string;
84
- PRIMARY_COLOR: string;
85
- PAGE_SHOW: string;
86
- COPY: string;
87
- DRAWER_TIPS: string;
88
- FULL: string;
89
- FIXED: string;
90
- BREAD_CURB: string;
91
- MENU_FILTER: string;
92
- NOTICE: string;
93
- SIZE: string;
94
- SHOW_FULLE: string;
95
- LOCAL: string;
96
- ROUTE_REUSE: string;
97
- SHOW_FOOTER: string;
98
- CONTENT_FIXED_WIDTH: string;
99
- ON: string;
100
- OFF: string;
101
- DOWNLOAD: string;
102
- UNKNOWN_ROUTE: string;
103
- COPY_SUCCESS: string;
104
- };
105
- };
@@ -1,105 +0,0 @@
1
- export const ZH = {
2
- "UI": {
3
- "ADD": "新增",
4
- "DELETE_CONFIRM": "删除确认",
5
- "CONFIRM_DELETE": "确认要删除选中的数据?",
6
- "NEED_CURD": "缺少curd函数配置, 请将useSource中返回的curd参数传入useCurd配置项中!",
7
- "EDIT": "编辑",
8
- "EMPTY": "暂无选中的数据!",
9
- "EMPTY_URL": "请求url不能为空!",
10
- "MULTIFY_DELETE_CONFIRM": "批量删除确认",
11
- "CONFIRM_MULTIFY_DELETE": "确认要批量删除选中的数据?",
12
- "ADVANCED": "收起",
13
- "EXPAND": "展开",
14
- "SELECT_ICON": "选择字体图标",
15
- "MUSE_FUNCTION": "openDialog必须是函数",
16
- "NEED_RENDER": "请配置render函数",
17
- "SEARCH": "查询",
18
- "RESET": "重置",
19
- "PLEASE_INPUT": "请输入",
20
- "PLEASE_SELECT": "请选择",
21
- "PLEASE_SET_ICON": "请设置图标",
22
- "INPUT_FILTER": "请输入过滤条件",
23
- "EXIT_FULLSCREEN": "退出全屏",
24
- "FULLSCREEN": "全屏",
25
- "SAVE": "保存",
26
- "CLOSE": "关闭",
27
- "ADD_SUCCESS": "新增成功!",
28
- "UPDATE_SUCCESS": "更新数据成功!",
29
- "MULTIFY": "批量",
30
- "DELETE_SUCCESS": "删除成功!",
31
- "COLUMN_CONTROL": "列控制",
32
- "COLUMN_SHOW": "列展示",
33
- "INDEX": "序列号",
34
- "CHECKBOX": "复选框",
35
- "FIXED_TO_LEFT": "固定到左侧",
36
- "FIXED_TO_RIGHT": "固定到右侧",
37
- "EXPORT": "导出",
38
- "DOWNLOAD_TEMPLATE": "模板下载",
39
- "EXPORT_CURRENT_PAGE": "导出当前页",
40
- "EXPORT_SELECT_COLUMN": "导出选中列",
41
- "EXPORT_ALL": "导出所有列",
42
- "SELECT_ALL": "全选",
43
- "SETTING_EXPORT_COLUMN": "设置导出列",
44
- "NO_EXPORT_COLUMN": "暂无可导出的列!",
45
- "NUMBER": "序号",
46
- "ACTIONS": "操作",
47
- "TOTAL_PAGE": "总共{total}条",
48
- "FILTER": "搜索...",
49
- "EXPAND_ALL": "展开全部",
50
- "COLLAPSE_ALL": "折叠全部",
51
- "SELECT_ALL1": "选择全部",
52
- "CANCEL_SELECT_ALL": "取消选择",
53
- "LEVEL_CONNECTION": "层级关联",
54
- "LEVEL_SOLATE": "层级独立",
55
- "LOADING": "加载中...",
56
- "SUPPORT_FILES": "支持{message}格式",
57
- "MAX_SIZE": "不超过{maxSize}M",
58
- "MAX_NUMBER": "最多可选择{maxNumber}个文件",
59
- "SUPPORT_TYPES": "请上传pptx、doc、jpg、jpeg、png、bmp、gif、xls、xlsx、txt、rar、zip、7z、tar、gz格式文件",
60
- "FILE_UPLOAD": "文件上传",
61
- "FILE_NAME": "文件名称",
62
- "FILE_STATUS": "上传状态",
63
- "PREVIEW": "预览",
64
- "DELETE": "删除",
65
- "HISTORY_UPLOAD": "历史上传",
66
- "MAX_MB": "只能上传不超过{maxSize}MB的文件!",
67
- "PRE_UPLOAD": "待上传",
68
- "COMPANY_NAME": "安徽深迪中台系统模板",
69
- "FILTER_MORE": "菜单检索...",
70
- "LARGE_SIZE": "大尺寸",
71
- "MIDDLE_SIZE": "中尺寸",
72
- "SMALL_SIZE": "小尺寸",
73
- "MODIFY_PASSWORD": "修改密码",
74
- "LOGIN_OUT": "退出系统",
75
- "REFRESH": "重新加载",
76
- "CLOSE_CURRENT_TAG": "关闭当前",
77
- "CLOSE_LEFT_TAGS": "关闭左侧",
78
- "CLOSE_RIGHT_TAGS": "关闭右侧",
79
- "CLOSE_OTHER_TAGS": "关闭其他",
80
- "CLOSE_ALL_TAGE": "关闭全部",
81
- "SETTING_THEME": "风格设置",
82
- "PROJECT_SETTING": "项目配置",
83
- "NAV_MODE": "导航栏模式",
84
- "PRIMARY_COLOR": "主题色",
85
- "PAGE_SHOW": "界面显示",
86
- "COPY": "拷贝",
87
- "DRAWER_TIPS": "该功能主要实时预览各种布局效果,更多完整配置在 src/core/settings/theme.ts 中设置,在生产环境该布局预览功能将被关闭。",
88
- "FULL": "流式",
89
- "FIXED": "定宽",
90
- "BREAD_CURB": "面包屑",
91
- "MENU_FILTER": "菜单检索",
92
- "NOTICE": "通知公告",
93
- "SIZE": "元素尺寸",
94
- "SHOW_FULLE": "页面全屏",
95
- "LOCAL": "国际化",
96
- "ROUTE_REUSE": "路由复用",
97
- "SHOW_FOOTER": "显示底部",
98
- "CONTENT_FIXED_WIDTH": "内容区域宽度",
99
- "ON": "开",
100
- "OFF": "关",
101
- "DOWNLOAD": "下载",
102
- "UNKNOWN_ROUTE": "未知路由",
103
- "COPY_SUCCESS": "拷贝成功!"
104
- }
105
- }
package/es/assets/test.ts DELETED
@@ -1 +0,0 @@
1
- export const a = 1
@@ -1,3 +0,0 @@
1
- declare const DtScrollContainer: any;
2
- declare const DtSlotContainer: any;
3
- export { DtScrollContainer, DtSlotContainer };