@dt-frames/ui 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (363) hide show
  1. package/README.md +15 -0
  2. package/es/assets/app-antd-dark-theme-style.e3b0c442.css +0 -0
  3. package/es/assets/app-theme-style.e3b0c442.css +0 -0
  4. package/es/assets/data/icon.d.ts +4 -0
  5. package/es/assets/data/icon.ts +69 -0
  6. package/es/assets/data/icon11.ts +69 -0
  7. package/es/assets/data/icons/actions.d.ts +1 -0
  8. package/es/assets/data/icons/actions.ts +427 -0
  9. package/es/assets/data/icons/code.d.ts +1 -0
  10. package/es/assets/data/icons/code.ts +10 -0
  11. package/es/assets/data/icons/commuticate.d.ts +1 -0
  12. package/es/assets/data/icons/commuticate.ts +190 -0
  13. package/es/assets/data/icons/currency.d.ts +1 -0
  14. package/es/assets/data/icons/currency.ts +46 -0
  15. package/es/assets/data/icons/devices.d.ts +1 -0
  16. package/es/assets/data/icons/devices.ts +128 -0
  17. package/es/assets/data/icons/edit.d.ts +1 -0
  18. package/es/assets/data/icons/edit.ts +165 -0
  19. package/es/assets/data/icons/file.d.ts +1 -0
  20. package/es/assets/data/icons/file.ts +104 -0
  21. package/es/assets/data/icons/math.d.ts +1 -0
  22. package/es/assets/data/icons/math.ts +53 -0
  23. package/es/assets/data/icons/message.d.ts +1 -0
  24. package/es/assets/data/icons/message.ts +75 -0
  25. package/es/assets/data/icons/navigate.d.ts +1 -0
  26. package/es/assets/data/icons/navigate.ts +181 -0
  27. package/es/assets/data/icons/other.d.ts +1 -0
  28. package/es/assets/data/icons/other.ts +333 -0
  29. package/es/assets/data/icons.d.ts +4 -0
  30. package/es/assets/data/icons.ts +58 -0
  31. package/es/assets/imgs/logo/logo.png +0 -0
  32. package/es/assets/locales/en_US.json +3 -0
  33. package/es/assets/locales/zh_CN.json +3 -0
  34. package/es/assets/style/index.less +10 -0
  35. package/es/assets/style/reset.less +20 -0
  36. package/es/assets/style/var.less +42 -0
  37. package/es/components/container/index.d.ts +3 -0
  38. package/es/components/container/src/bar.d.ts +14 -0
  39. package/es/components/container/src/scroll-bar.d.ts +93 -0
  40. package/es/components/container/src/scroll-container.d.ts +99 -0
  41. package/es/components/curd/index.d.ts +2 -0
  42. package/es/components/curd/src/components/dialog.d.ts +1494 -0
  43. package/es/components/curd/src/components/props.d.ts +33 -0
  44. package/es/components/curd/src/hooks/useCurd.d.ts +11 -0
  45. package/es/components/curd/src/types/curd.type.d.ts +19 -0
  46. package/es/components/excel/index.d.ts +2 -0
  47. package/es/components/excel/src/export2Excel.d.ts +3 -0
  48. package/es/components/forms/index.d.ts +5 -0
  49. package/es/components/forms/src/componentMap.d.ts +4 -0
  50. package/es/components/forms/src/components/formButton.d.ts +75 -0
  51. package/es/components/forms/src/components/formIcon.d.ts +2845 -0
  52. package/es/components/forms/src/components/formItem.d.ts +59 -0
  53. package/es/components/forms/src/components/radioButton.d.ts +33 -0
  54. package/es/components/forms/src/const/form.const.d.ts +7 -0
  55. package/es/components/forms/src/hooks/helper.d.ts +6 -0
  56. package/es/components/forms/src/hooks/useForm.d.ts +5 -0
  57. package/es/components/forms/src/hooks/useFormActions.d.ts +13 -0
  58. package/es/components/forms/src/hooks/useFormEvents.d.ts +26 -0
  59. package/es/components/forms/src/hooks/useFormValue.d.ts +3 -0
  60. package/es/components/forms/src/hooks/useFormValues.d.ts +14 -0
  61. package/es/components/forms/src/hooks/useLabelWidth.d.ts +35 -0
  62. package/es/components/forms/src/index.d.ts +186 -0
  63. package/es/components/forms/src/prop.d.ts +79 -0
  64. package/es/components/forms/src/types/form.type.d.ts +124 -0
  65. package/es/components/icons/index.d.ts +3 -0
  66. package/es/components/icons/pick-icon.d.ts +529 -0
  67. package/es/components/icons/src/pick-icon.d.ts +432 -0
  68. package/es/components/icons/src/svg-icon.d.ts +44 -0
  69. package/es/components/icons/svg-icon.d.ts +44 -0
  70. package/es/components/iframe/index.d.ts +2 -0
  71. package/es/components/iframe/src/index.d.ts +967 -0
  72. package/es/components/index.d.ts +14 -0
  73. package/es/components/modal/index.d.ts +3 -0
  74. package/es/components/modal/src/components/close-icon.d.ts +344 -0
  75. package/es/components/modal/src/components/modal-wrap.d.ts +236 -0
  76. package/es/components/modal/src/components/modal.d.ts +194 -0
  77. package/es/components/modal/src/components/modalFooter.d.ts +102 -0
  78. package/es/components/modal/src/hooks/useDrag.d.ts +7 -0
  79. package/es/components/modal/src/hooks/useFullScreen.d.ts +12 -0
  80. package/es/components/modal/src/hooks/useModal.d.ts +4 -0
  81. package/es/components/modal/src/index.d.ts +1187 -0
  82. package/es/components/modal/src/props.d.ts +89 -0
  83. package/es/components/modal/src/types/modal.type.d.ts +22 -0
  84. package/es/components/router/base-router.d.ts +2 -0
  85. package/es/components/router/index.d.ts +2 -0
  86. package/es/components/source/index.d.ts +1 -0
  87. package/es/components/source/src/hooks/useFetch.d.ts +5 -0
  88. package/es/components/source/src/hooks/useSource.d.ts +33 -0
  89. package/es/components/source/src/index.d.ts +2 -0
  90. package/es/components/source/src/types/source.type.d.ts +31 -0
  91. package/es/components/source/src/types/table.type.d.ts +7 -0
  92. package/es/components/table/index.d.ts +3 -0
  93. package/es/components/table/src/components/TableActions.d.ts +1279 -0
  94. package/es/components/table/src/components/TableHeader.d.ts +28 -0
  95. package/es/components/table/src/components/TableRender.d.ts +25 -0
  96. package/es/components/table/src/components/setting/Column.d.ts +1349 -0
  97. package/es/components/table/src/components/setting/Download.d.ts +1144 -0
  98. package/es/components/table/src/components/setting/Fullscreen.d.ts +270 -0
  99. package/es/components/table/src/components/setting/Size.d.ts +1145 -0
  100. package/es/components/table/src/components/setting/index.d.ts +26 -0
  101. package/es/components/table/src/const.d.ts +12 -0
  102. package/es/components/table/src/hooks/useColumns.d.ts +12 -0
  103. package/es/components/table/src/hooks/useDataSource.d.ts +16 -0
  104. package/es/components/table/src/hooks/useFormat.d.ts +2 -0
  105. package/es/components/table/src/hooks/useLoading.d.ts +6 -0
  106. package/es/components/table/src/hooks/usePagination.d.ts +122 -0
  107. package/es/components/table/src/hooks/useRowSelection.d.ts +13 -0
  108. package/es/components/table/src/hooks/useRows.d.ts +5 -0
  109. package/es/components/table/src/hooks/useTable.d.ts +5 -0
  110. package/es/components/table/src/hooks/useTableHeader.d.ts +8 -0
  111. package/es/components/table/src/hooks/useTableInstance.d.ts +13 -0
  112. package/es/components/table/src/hooks/useTableScroll.d.ts +12 -0
  113. package/es/components/table/src/hooks/useVirtualScroll.d.ts +5 -0
  114. package/es/components/table/src/index.d.ts +565 -0
  115. package/es/components/table/src/props.d.ts +192 -0
  116. package/es/components/table/src/types/table.type.d.ts +89 -0
  117. package/es/components/table/src/types/tableHeader.type.d.ts +23 -0
  118. package/es/components/table/src/utils/format.d.ts +1 -0
  119. package/es/directives/icon.d.ts +2 -0
  120. package/es/directives/index.d.ts +6 -0
  121. package/es/directives/permission.d.ts +2 -0
  122. package/es/global.d.ts +8 -0
  123. package/es/index.css +1 -0
  124. package/es/index.d.ts +3 -0
  125. package/es/index.js +8867 -0
  126. package/es/style/assets/style/index.less +10 -0
  127. package/es/style/assets/style/reset.less +20 -0
  128. package/es/style/assets/style/var.less +42 -0
  129. package/es/style/components/container/index.less +85 -0
  130. package/es/style/components/forms/src/index.less +82 -0
  131. package/es/style/components/icons/index.less +96 -0
  132. package/es/style/components/icons/src/index.less +96 -0
  133. package/es/style/components/iframe/src/index.less +3 -0
  134. package/es/style/components/modal/src/index.less +60 -0
  135. package/es/style/components/table/src/index.less +162 -0
  136. package/es/style/theme/footer/index.less +16 -0
  137. package/es/style/theme/header/index.less +438 -0
  138. package/es/style/theme/header/set-theme.less +68 -0
  139. package/es/style/theme/sider/index.less +203 -0
  140. package/es/style/theme/tabs/index.less +165 -0
  141. package/es/style/theme/theme.less +66 -0
  142. package/es/style/theme/transition.less +99 -0
  143. package/es/theme/content/index.d.ts +29 -0
  144. package/es/theme/feature/back-top.d.ts +105 -0
  145. package/es/theme/feature/index.d.ts +107 -0
  146. package/es/theme/footer/index.d.ts +30 -0
  147. package/es/theme/header/components/bread-crumb.d.ts +127 -0
  148. package/es/theme/header/components/fullscreen.d.ts +5 -0
  149. package/es/theme/header/components/handler.d.ts +2 -0
  150. package/es/theme/header/components/index.d.ts +10 -0
  151. package/es/theme/header/components/lang-picker.d.ts +290 -0
  152. package/es/theme/header/components/logo.d.ts +40 -0
  153. package/es/theme/header/components/menu-search.d.ts +528 -0
  154. package/es/theme/header/components/notify.d.ts +269 -0
  155. package/es/theme/header/components/setting-theme.d.ts +2550 -0
  156. package/es/theme/header/components/theme-drawer/enum.d.ts +5 -0
  157. package/es/theme/header/components/theme-drawer/feature.d.ts +1096 -0
  158. package/es/theme/header/components/theme-drawer/index.d.ts +3 -0
  159. package/es/theme/header/components/theme-drawer/menu-type.d.ts +273 -0
  160. package/es/theme/header/components/theme-drawer/select-item.d.ts +778 -0
  161. package/es/theme/header/components/theme-drawer/switch-item.d.ts +289 -0
  162. package/es/theme/header/components/trigger.d.ts +14 -0
  163. package/es/theme/header/components/user-info.d.ts +452 -0
  164. package/es/theme/header/const/index.d.ts +20 -0
  165. package/es/theme/header/helper/menu-tree.d.ts +3 -0
  166. package/es/theme/header/index.d.ts +4369 -0
  167. package/es/theme/header/multiple-header.d.ts +2001 -0
  168. package/es/theme/index.d.ts +2 -0
  169. package/es/theme/sider/components/basic-menu/basic-menu-item.d.ts +121 -0
  170. package/es/theme/sider/components/basic-menu/basic-menu.d.ts +752 -0
  171. package/es/theme/sider/components/basic-menu/basic-sub-menu-item.d.ts +250 -0
  172. package/es/theme/sider/components/basic-menu/menu-item-content.d.ts +34 -0
  173. package/es/theme/sider/components/drag-bar.d.ts +14 -0
  174. package/es/theme/sider/components/layout-menu.d.ts +22 -0
  175. package/es/theme/sider/components/props.d.ts +69 -0
  176. package/es/theme/sider/components/sider-trigger.d.ts +68 -0
  177. package/es/theme/sider/helper/sider.d.ts +12 -0
  178. package/es/theme/sider/helper/split-menu.d.ts +10 -0
  179. package/es/theme/sider/hooks/useDragLine.d.ts +2 -0
  180. package/es/theme/sider/hooks/useOpenKeys.d.ts +13 -0
  181. package/es/theme/sider/index.d.ts +152 -0
  182. package/es/theme/styles/hooks/changeTheme.d.ts +1 -0
  183. package/es/theme/styles/hooks/generate.d.ts +13 -0
  184. package/es/theme/styles/index.d.ts +2 -0
  185. package/es/theme/tabs/components/TabContent.d.ts +887 -0
  186. package/es/theme/tabs/components/TabRedo.d.ts +49 -0
  187. package/es/theme/tabs/hooks/useMultifyTabs.d.ts +7 -0
  188. package/es/theme/tabs/hooks/useTabDropdown.d.ts +6 -0
  189. package/es/theme/tabs/index.d.ts +1399 -0
  190. package/es/theme/tabs/types/tabs.type.d.ts +7 -0
  191. package/es/theme/theme/initTheme.d.ts +3 -0
  192. package/es/theme/theme/util.d.ts +5 -0
  193. package/es/theme/theme.d.ts +4911 -0
  194. package/es/themes/generate.ts +74 -0
  195. package/es/themes/index.ts +10 -0
  196. package/es/themes/modifyVars.ts +33 -0
  197. package/es/themes/themePlugiin.ts +74 -0
  198. package/package.json +49 -0
  199. package/src/assets/data/icons/actions.ts +427 -0
  200. package/src/assets/data/icons/code.ts +10 -0
  201. package/src/assets/data/icons/commuticate.ts +190 -0
  202. package/src/assets/data/icons/currency.ts +46 -0
  203. package/src/assets/data/icons/devices.ts +128 -0
  204. package/src/assets/data/icons/edit.ts +165 -0
  205. package/src/assets/data/icons/file.ts +104 -0
  206. package/src/assets/data/icons/math.ts +53 -0
  207. package/src/assets/data/icons/message.ts +75 -0
  208. package/src/assets/data/icons/navigate.ts +181 -0
  209. package/src/assets/data/icons/other.ts +333 -0
  210. package/src/assets/data/icons.ts +58 -0
  211. package/src/assets/imgs/logo/logo.png +0 -0
  212. package/src/assets/locales/en_US.json +3 -0
  213. package/src/assets/locales/zh_CN.json +3 -0
  214. package/src/assets/style/index.less +10 -0
  215. package/src/assets/style/reset.less +20 -0
  216. package/src/components/container/index.less +85 -0
  217. package/src/components/container/index.ts +8 -0
  218. package/src/components/container/src/bar.ts +107 -0
  219. package/src/components/container/src/lazy-container.vue +9 -0
  220. package/src/components/container/src/scroll-bar.vue +117 -0
  221. package/src/components/container/src/scroll-container.vue +61 -0
  222. package/src/components/curd/index.ts +5 -0
  223. package/src/components/curd/src/components/dialog.vue +65 -0
  224. package/src/components/curd/src/components/props.ts +32 -0
  225. package/src/components/curd/src/hooks/useCurd.tsx +72 -0
  226. package/src/components/curd/src/types/curd.type.ts +29 -0
  227. package/src/components/excel/index.ts +6 -0
  228. package/src/components/excel/src/export2Excel.ts +44 -0
  229. package/src/components/forms/index.ts +12 -0
  230. package/src/components/forms/src/componentMap.ts +44 -0
  231. package/src/components/forms/src/components/formButton.vue +150 -0
  232. package/src/components/forms/src/components/formIcon.vue +50 -0
  233. package/src/components/forms/src/components/formItem.vue +407 -0
  234. package/src/components/forms/src/components/radioButton.vue +58 -0
  235. package/src/components/forms/src/const/form.const.ts +7 -0
  236. package/src/components/forms/src/hooks/helper.ts +70 -0
  237. package/src/components/forms/src/hooks/useForm.ts +130 -0
  238. package/src/components/forms/src/hooks/useFormActions.ts +63 -0
  239. package/src/components/forms/src/hooks/useFormEvents.ts +247 -0
  240. package/src/components/forms/src/hooks/useFormValue.ts +49 -0
  241. package/src/components/forms/src/hooks/useFormValues.ts +131 -0
  242. package/src/components/forms/src/hooks/useLabelWidth.ts +57 -0
  243. package/src/components/forms/src/index.less +82 -0
  244. package/src/components/forms/src/index.vue +306 -0
  245. package/src/components/forms/src/prop.ts +80 -0
  246. package/src/components/forms/src/types/form.type.ts +269 -0
  247. package/src/components/icons/index.ts +7 -0
  248. package/src/components/icons/src/index.less +96 -0
  249. package/src/components/icons/src/pick-icon.vue +117 -0
  250. package/src/components/icons/src/svg-icon.vue +117 -0
  251. package/src/components/iframe/index.ts +5 -0
  252. package/src/components/iframe/src/index.less +3 -0
  253. package/src/components/iframe/src/index.vue +38 -0
  254. package/src/components/index.ts +46 -0
  255. package/src/components/modal/index.ts +8 -0
  256. package/src/components/modal/src/components/close-icon.vue +47 -0
  257. package/src/components/modal/src/components/modal-wrap.vue +118 -0
  258. package/src/components/modal/src/components/modal.tsx +30 -0
  259. package/src/components/modal/src/components/modalFooter.vue +38 -0
  260. package/src/components/modal/src/hooks/useDrag.ts +107 -0
  261. package/src/components/modal/src/hooks/useFullScreen.ts +27 -0
  262. package/src/components/modal/src/hooks/useModal.ts +177 -0
  263. package/src/components/modal/src/index.less +60 -0
  264. package/src/components/modal/src/index.vue +173 -0
  265. package/src/components/modal/src/props.ts +43 -0
  266. package/src/components/modal/src/types/modal.type.ts +27 -0
  267. package/src/components/router/base-router.vue +11 -0
  268. package/src/components/router/index.ts +3 -0
  269. package/src/components/source/index.ts +1 -0
  270. package/src/components/source/src/hooks/useFetch.ts +70 -0
  271. package/src/components/source/src/hooks/usePage.ts +3 -0
  272. package/src/components/source/src/hooks/useSource.ts +178 -0
  273. package/src/components/source/src/index.ts +5 -0
  274. package/src/components/source/src/types/source.type.ts +68 -0
  275. package/src/components/source/src/types/table.type.ts +8 -0
  276. package/src/components/table/index.ts +7 -0
  277. package/src/components/table/src/components/TableActions.vue +108 -0
  278. package/src/components/table/src/components/TableHeader.vue +77 -0
  279. package/src/components/table/src/components/TableRender.vue +76 -0
  280. package/src/components/table/src/components/setting/Column.vue +355 -0
  281. package/src/components/table/src/components/setting/Download.vue +55 -0
  282. package/src/components/table/src/components/setting/Fullscreen.vue +43 -0
  283. package/src/components/table/src/components/setting/Size.vue +42 -0
  284. package/src/components/table/src/components/setting/index.vue +64 -0
  285. package/src/components/table/src/const.ts +13 -0
  286. package/src/components/table/src/hooks/useColumns.ts +319 -0
  287. package/src/components/table/src/hooks/useCustomRow.ts +0 -0
  288. package/src/components/table/src/hooks/useDataSource.ts +99 -0
  289. package/src/components/table/src/hooks/useLoading.ts +29 -0
  290. package/src/components/table/src/hooks/usePagination.ts +76 -0
  291. package/src/components/table/src/hooks/useRowSelection.ts +146 -0
  292. package/src/components/table/src/hooks/useRows.ts +30 -0
  293. package/src/components/table/src/hooks/useTable.ts +77 -0
  294. package/src/components/table/src/hooks/useTableHeader.ts +48 -0
  295. package/src/components/table/src/hooks/useTableInstance.ts +29 -0
  296. package/src/components/table/src/hooks/useTableScroll.ts +227 -0
  297. package/src/components/table/src/index.less +162 -0
  298. package/src/components/table/src/index.vue +198 -0
  299. package/src/components/table/src/props.ts +152 -0
  300. package/src/components/table/src/types/table.type.ts +133 -0
  301. package/src/components/table/src/types/tableHeader.type.ts +27 -0
  302. package/src/components/type.ts +0 -0
  303. package/src/directives/icon.ts +36 -0
  304. package/src/directives/index.ts +26 -0
  305. package/src/directives/permission.ts +21 -0
  306. package/src/global.d.ts +8 -0
  307. package/src/index.ts +4 -0
  308. package/src/theme/content/index.vue +37 -0
  309. package/src/theme/feature/back-top.vue +11 -0
  310. package/src/theme/feature/index.vue +7 -0
  311. package/src/theme/footer/index.less +16 -0
  312. package/src/theme/footer/index.vue +24 -0
  313. package/src/theme/header/components/bread-crumb.vue +26 -0
  314. package/src/theme/header/components/fullscreen.vue +14 -0
  315. package/src/theme/header/components/handler.ts +81 -0
  316. package/src/theme/header/components/index.ts +21 -0
  317. package/src/theme/header/components/lang-picker.vue +36 -0
  318. package/src/theme/header/components/logo.vue +33 -0
  319. package/src/theme/header/components/menu-search.vue +62 -0
  320. package/src/theme/header/components/notify.vue +23 -0
  321. package/src/theme/header/components/setting-theme.vue +123 -0
  322. package/src/theme/header/components/theme-drawer/enum.ts +12 -0
  323. package/src/theme/header/components/theme-drawer/feature.vue +75 -0
  324. package/src/theme/header/components/theme-drawer/index.ts +7 -0
  325. package/src/theme/header/components/theme-drawer/menu-type.vue +40 -0
  326. package/src/theme/header/components/theme-drawer/select-item.vue +46 -0
  327. package/src/theme/header/components/theme-drawer/switch-item.vue +39 -0
  328. package/src/theme/header/components/theme-drawer/theme-color.vue +26 -0
  329. package/src/theme/header/components/trigger.vue +14 -0
  330. package/src/theme/header/components/user-info.vue +43 -0
  331. package/src/theme/header/const/index.ts +40 -0
  332. package/src/theme/header/helper/menu-tree.ts +67 -0
  333. package/src/theme/header/index.less +438 -0
  334. package/src/theme/header/index.ts +0 -0
  335. package/src/theme/header/index.vue +96 -0
  336. package/src/theme/header/multiple-header.vue +67 -0
  337. package/src/theme/header/set-theme.less +68 -0
  338. package/src/theme/index.ts +3 -0
  339. package/src/theme/sider/components/basic-menu/basic-menu-item.vue +14 -0
  340. package/src/theme/sider/components/basic-menu/basic-menu.vue +122 -0
  341. package/src/theme/sider/components/basic-menu/basic-sub-menu-item.vue +46 -0
  342. package/src/theme/sider/components/basic-menu/menu-item-content.vue +13 -0
  343. package/src/theme/sider/components/drag-bar.vue +26 -0
  344. package/src/theme/sider/components/layout-menu.vue +132 -0
  345. package/src/theme/sider/components/props.ts +97 -0
  346. package/src/theme/sider/components/sider-trigger.vue +24 -0
  347. package/src/theme/sider/helper/sider.ts +52 -0
  348. package/src/theme/sider/helper/split-menu.ts +147 -0
  349. package/src/theme/sider/hooks/useDragLine.ts +86 -0
  350. package/src/theme/sider/hooks/useOpenKeys.ts +57 -0
  351. package/src/theme/sider/index.less +203 -0
  352. package/src/theme/sider/index.vue +88 -0
  353. package/src/theme/tabs/components/TabContent.vue +37 -0
  354. package/src/theme/tabs/components/TabRedo.vue +18 -0
  355. package/src/theme/tabs/hooks/useMultifyTabs.ts +96 -0
  356. package/src/theme/tabs/hooks/useTabDropdown.ts +89 -0
  357. package/src/theme/tabs/index.less +165 -0
  358. package/src/theme/tabs/index.vue +98 -0
  359. package/src/theme/tabs/types/tabs.type.ts +8 -0
  360. package/src/theme/theme.less +66 -0
  361. package/src/theme/theme.vue +89 -0
  362. package/src/theme/transition.less +99 -0
  363. package/tsconfig.json +28 -0
@@ -0,0 +1,967 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ showLoading: {
3
+ type: BooleanConstructor;
4
+ default: boolean;
5
+ };
6
+ src: {
7
+ type: StringConstructor;
8
+ };
9
+ postMsg: any;
10
+ }, {
11
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
12
+ showLoading: {
13
+ type: BooleanConstructor;
14
+ default: boolean;
15
+ };
16
+ src: {
17
+ type: StringConstructor;
18
+ };
19
+ postMsg: any;
20
+ }>> & {
21
+ [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any);
22
+ }>>;
23
+ loading: import("vue").Ref<boolean>;
24
+ frameRef: import("vue").Ref<any>;
25
+ afterLoaded: () => void;
26
+ Spin: {
27
+ new (...args: any[]): {
28
+ $: import("vue").ComponentInternalInstance;
29
+ $data: {
30
+ sSpinning: boolean;
31
+ };
32
+ $props: Partial<{
33
+ spinning: boolean;
34
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
35
+ prefixCls: StringConstructor;
36
+ spinning: {
37
+ type: BooleanConstructor;
38
+ default: any;
39
+ };
40
+ size: import("vue").PropType<import("ant-design-vue/lib/spin/Spin").SpinSize>;
41
+ wrapperClassName: StringConstructor;
42
+ tip: import("vue-types").VueTypeValidableDef<any>;
43
+ delay: NumberConstructor;
44
+ indicator: import("vue-types").VueTypeValidableDef<any>;
45
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "spinning">;
46
+ $attrs: {
47
+ [x: string]: unknown;
48
+ };
49
+ $refs: {
50
+ [x: string]: unknown;
51
+ };
52
+ $slots: Readonly<{
53
+ [name: string]: import("vue").Slot;
54
+ }>;
55
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
56
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
57
+ $emit: (event: string, ...args: any[]) => void;
58
+ $el: any;
59
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
60
+ prefixCls: StringConstructor;
61
+ spinning: {
62
+ type: BooleanConstructor;
63
+ default: any;
64
+ };
65
+ size: import("vue").PropType<import("ant-design-vue/lib/spin/Spin").SpinSize>;
66
+ wrapperClassName: StringConstructor;
67
+ tip: import("vue-types").VueTypeValidableDef<any>;
68
+ delay: NumberConstructor;
69
+ indicator: import("vue-types").VueTypeValidableDef<any>;
70
+ }>>, {
71
+ originalUpdateSpinning: any;
72
+ configProvider: {
73
+ form?: {
74
+ validateMessages?: {
75
+ default?: string | (() => string);
76
+ required?: string | (() => string);
77
+ enum?: string | (() => string);
78
+ whitespace?: string | (() => string);
79
+ date?: {
80
+ format?: string | (() => string);
81
+ parse?: string | (() => string);
82
+ invalid?: string | (() => string);
83
+ };
84
+ types?: {
85
+ string?: string | (() => string);
86
+ method?: string | (() => string);
87
+ array?: string | (() => string);
88
+ object?: string | (() => string);
89
+ number?: string | (() => string);
90
+ date?: string | (() => string);
91
+ boolean?: string | (() => string);
92
+ integer?: string | (() => string);
93
+ float?: string | (() => string);
94
+ regexp?: string | (() => string);
95
+ email?: string | (() => string);
96
+ url?: string | (() => string);
97
+ hex?: string | (() => string);
98
+ };
99
+ string?: {
100
+ len?: string | (() => string);
101
+ min?: string | (() => string);
102
+ max?: string | (() => string);
103
+ range?: string | (() => string);
104
+ };
105
+ number?: {
106
+ len?: string | (() => string);
107
+ min?: string | (() => string);
108
+ max?: string | (() => string);
109
+ range?: string | (() => string);
110
+ };
111
+ array?: {
112
+ len?: string | (() => string);
113
+ min?: string | (() => string);
114
+ max?: string | (() => string);
115
+ range?: string | (() => string);
116
+ };
117
+ pattern?: {
118
+ mismatch?: string | (() => string);
119
+ };
120
+ };
121
+ requiredMark?: import("ant-design-vue/lib/form/Form").RequiredMark;
122
+ colon?: boolean;
123
+ };
124
+ locale?: {
125
+ locale: string;
126
+ Pagination?: {
127
+ items_per_page?: string;
128
+ jump_to?: string;
129
+ jump_to_confirm?: string;
130
+ page?: string;
131
+ prev_page?: string;
132
+ next_page?: string;
133
+ prev_5?: string;
134
+ next_5?: string;
135
+ prev_3?: string;
136
+ next_3?: string;
137
+ };
138
+ Table?: {
139
+ filterTitle?: string;
140
+ filterConfirm?: any;
141
+ filterReset?: any;
142
+ filterEmptyText?: any;
143
+ filterCheckall?: any;
144
+ filterSearchPlaceholder?: any;
145
+ emptyText?: any;
146
+ selectAll?: any;
147
+ selectNone?: any;
148
+ selectInvert?: any;
149
+ selectionAll?: any;
150
+ sortTitle?: string;
151
+ expand?: string;
152
+ collapse?: string;
153
+ triggerDesc?: string;
154
+ triggerAsc?: string;
155
+ cancelSort?: string;
156
+ };
157
+ Popconfirm?: Record<string, any>;
158
+ Form?: {
159
+ optional?: string;
160
+ defaultValidateMessages: {
161
+ default?: string | (() => string);
162
+ required?: string | (() => string);
163
+ enum?: string | (() => string);
164
+ whitespace?: string | (() => string);
165
+ date?: {
166
+ format?: string | (() => string);
167
+ parse?: string | (() => string);
168
+ invalid?: string | (() => string);
169
+ };
170
+ types?: {
171
+ string?: string | (() => string);
172
+ method?: string | (() => string);
173
+ array?: string | (() => string);
174
+ object?: string | (() => string);
175
+ number?: string | (() => string);
176
+ date?: string | (() => string);
177
+ boolean?: string | (() => string);
178
+ integer?: string | (() => string);
179
+ float?: string | (() => string);
180
+ regexp?: string | (() => string);
181
+ email?: string | (() => string);
182
+ url?: string | (() => string);
183
+ hex?: string | (() => string);
184
+ };
185
+ string?: {
186
+ len?: string | (() => string);
187
+ min?: string | (() => string);
188
+ max?: string | (() => string);
189
+ range?: string | (() => string);
190
+ };
191
+ number?: {
192
+ len?: string | (() => string);
193
+ min?: string | (() => string);
194
+ max?: string | (() => string);
195
+ range?: string | (() => string);
196
+ };
197
+ array?: {
198
+ len?: string | (() => string);
199
+ min?: string | (() => string);
200
+ max?: string | (() => string);
201
+ range?: string | (() => string);
202
+ };
203
+ pattern?: {
204
+ mismatch?: string | (() => string);
205
+ };
206
+ };
207
+ };
208
+ Image?: {
209
+ preview: string;
210
+ };
211
+ DatePicker?: {
212
+ lang: {
213
+ locale: string;
214
+ monthBeforeYear?: boolean;
215
+ yearFormat: string;
216
+ monthFormat?: string;
217
+ quarterFormat?: string;
218
+ today: string;
219
+ now: string;
220
+ backToToday: string;
221
+ ok: string;
222
+ timeSelect: string;
223
+ dateSelect: string;
224
+ weekSelect?: string;
225
+ clear: string;
226
+ month: string;
227
+ year: string;
228
+ previousMonth: string;
229
+ nextMonth: string;
230
+ monthSelect: string;
231
+ yearSelect: string;
232
+ decadeSelect: string;
233
+ dayFormat: string;
234
+ dateFormat: string;
235
+ dateTimeFormat: string;
236
+ previousYear: string;
237
+ nextYear: string;
238
+ previousDecade: string;
239
+ nextDecade: string;
240
+ previousCentury: string;
241
+ nextCentury: string;
242
+ shortWeekDays?: string[];
243
+ shortMonths?: string[];
244
+ placeholder: string;
245
+ yearPlaceholder?: string;
246
+ quarterPlaceholder?: string;
247
+ monthPlaceholder?: string;
248
+ weekPlaceholder?: string;
249
+ rangeYearPlaceholder?: [string, string];
250
+ rangeQuarterPlaceholder?: [string, string];
251
+ rangeMonthPlaceholder?: [string, string];
252
+ rangeWeekPlaceholder?: [string, string];
253
+ rangePlaceholder?: [string, string];
254
+ };
255
+ timePickerLocale: {
256
+ placeholder?: string;
257
+ rangePlaceholder?: [string, string];
258
+ };
259
+ dateFormat?: string;
260
+ dateTimeFormat?: string;
261
+ weekFormat?: string;
262
+ monthFormat?: string;
263
+ };
264
+ TimePicker?: Record<string, any>;
265
+ Calendar?: Record<string, any>;
266
+ Modal?: {
267
+ okText: string;
268
+ cancelText: string;
269
+ justOkText: string;
270
+ };
271
+ Transfer?: {
272
+ titles?: (string | number | boolean | void | JSX.Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
273
+ [key: string]: any;
274
+ }> | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
275
+ [key: string]: any;
276
+ }>)[])[];
277
+ notFoundContent?: string | number | boolean | void | JSX.Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
278
+ [key: string]: any;
279
+ }> | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
280
+ [key: string]: any;
281
+ }>)[];
282
+ searchPlaceholder?: string;
283
+ itemUnit?: string;
284
+ itemsUnit?: string;
285
+ remove?: string;
286
+ selectAll?: string;
287
+ selectCurrent?: string;
288
+ selectInvert?: string;
289
+ removeAll?: string;
290
+ removeCurrent?: string;
291
+ };
292
+ Select?: Record<string, any>;
293
+ Upload?: {
294
+ uploading?: string;
295
+ removeFile?: string;
296
+ downloadFile?: string;
297
+ uploadError?: string;
298
+ previewFile?: string;
299
+ };
300
+ Empty?: {
301
+ description: string;
302
+ };
303
+ global?: Record<string, any>;
304
+ PageHeader?: {
305
+ back: string;
306
+ };
307
+ Icon?: Record<string, any>;
308
+ Text?: {
309
+ edit?: any;
310
+ copy?: any;
311
+ copied?: any;
312
+ expand?: any;
313
+ };
314
+ };
315
+ csp?: {
316
+ nonce?: string;
317
+ };
318
+ dropdownMatchSelectWidth?: number | boolean;
319
+ notUpdateGlobalConfig?: boolean;
320
+ prefixCls?: string;
321
+ input?: {
322
+ autocomplete: string;
323
+ };
324
+ space?: {
325
+ size: number | import("ant-design-vue/lib/button").ButtonSize;
326
+ };
327
+ direction?: "ltr" | "rtl";
328
+ getTargetContainer?: () => HTMLElement;
329
+ getPopupContainer?: (triggerNode?: HTMLElement) => HTMLElement;
330
+ getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
331
+ renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
332
+ transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
333
+ autoInsertSpaceInButton?: boolean;
334
+ pageHeader?: {
335
+ ghost: boolean;
336
+ };
337
+ componentSize?: import("ant-design-vue/lib/button").ButtonSize;
338
+ virtual?: boolean;
339
+ };
340
+ }, {
341
+ sSpinning: boolean;
342
+ }, {}, {
343
+ debouncifyUpdateSpinning(props?: any): void;
344
+ updateSpinning(): void;
345
+ cancelExistingSpin(): void;
346
+ renderIndicator(prefixCls: string): JSX.Element;
347
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
348
+ spinning: boolean;
349
+ }> & {
350
+ beforeCreate?: (() => void) | (() => void)[];
351
+ created?: (() => void) | (() => void)[];
352
+ beforeMount?: (() => void) | (() => void)[];
353
+ mounted?: (() => void) | (() => void)[];
354
+ beforeUpdate?: (() => void) | (() => void)[];
355
+ updated?: (() => void) | (() => void)[];
356
+ activated?: (() => void) | (() => void)[];
357
+ deactivated?: (() => void) | (() => void)[];
358
+ beforeDestroy?: (() => void) | (() => void)[];
359
+ beforeUnmount?: (() => void) | (() => void)[];
360
+ destroyed?: (() => void) | (() => void)[];
361
+ unmounted?: (() => void) | (() => void)[];
362
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
363
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
364
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
365
+ };
366
+ $forceUpdate: () => void;
367
+ $nextTick: typeof import("vue").nextTick;
368
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
369
+ } & Readonly<import("vue").ExtractPropTypes<{
370
+ prefixCls: StringConstructor;
371
+ spinning: {
372
+ type: BooleanConstructor;
373
+ default: any;
374
+ };
375
+ size: import("vue").PropType<import("ant-design-vue/lib/spin/Spin").SpinSize>;
376
+ wrapperClassName: StringConstructor;
377
+ tip: import("vue-types").VueTypeValidableDef<any>;
378
+ delay: NumberConstructor;
379
+ indicator: import("vue-types").VueTypeValidableDef<any>;
380
+ }>> & import("vue").ShallowUnwrapRef<{
381
+ originalUpdateSpinning: any;
382
+ configProvider: {
383
+ form?: {
384
+ validateMessages?: {
385
+ default?: string | (() => string);
386
+ required?: string | (() => string);
387
+ enum?: string | (() => string);
388
+ whitespace?: string | (() => string);
389
+ date?: {
390
+ format?: string | (() => string);
391
+ parse?: string | (() => string);
392
+ invalid?: string | (() => string);
393
+ };
394
+ types?: {
395
+ string?: string | (() => string);
396
+ method?: string | (() => string);
397
+ array?: string | (() => string);
398
+ object?: string | (() => string);
399
+ number?: string | (() => string);
400
+ date?: string | (() => string);
401
+ boolean?: string | (() => string);
402
+ integer?: string | (() => string);
403
+ float?: string | (() => string);
404
+ regexp?: string | (() => string);
405
+ email?: string | (() => string);
406
+ url?: string | (() => string);
407
+ hex?: string | (() => string);
408
+ };
409
+ string?: {
410
+ len?: string | (() => string);
411
+ min?: string | (() => string);
412
+ max?: string | (() => string);
413
+ range?: string | (() => string);
414
+ };
415
+ number?: {
416
+ len?: string | (() => string);
417
+ min?: string | (() => string);
418
+ max?: string | (() => string);
419
+ range?: string | (() => string);
420
+ };
421
+ array?: {
422
+ len?: string | (() => string);
423
+ min?: string | (() => string);
424
+ max?: string | (() => string);
425
+ range?: string | (() => string);
426
+ };
427
+ pattern?: {
428
+ mismatch?: string | (() => string);
429
+ };
430
+ };
431
+ requiredMark?: import("ant-design-vue/lib/form/Form").RequiredMark;
432
+ colon?: boolean;
433
+ };
434
+ locale?: {
435
+ locale: string;
436
+ Pagination?: {
437
+ items_per_page?: string;
438
+ jump_to?: string;
439
+ jump_to_confirm?: string;
440
+ page?: string;
441
+ prev_page?: string;
442
+ next_page?: string;
443
+ prev_5?: string;
444
+ next_5?: string;
445
+ prev_3?: string;
446
+ next_3?: string;
447
+ };
448
+ Table?: {
449
+ filterTitle?: string;
450
+ filterConfirm?: any;
451
+ filterReset?: any;
452
+ filterEmptyText?: any;
453
+ filterCheckall?: any;
454
+ filterSearchPlaceholder?: any;
455
+ emptyText?: any;
456
+ selectAll?: any;
457
+ selectNone?: any;
458
+ selectInvert?: any;
459
+ selectionAll?: any;
460
+ sortTitle?: string;
461
+ expand?: string;
462
+ collapse?: string;
463
+ triggerDesc?: string;
464
+ triggerAsc?: string;
465
+ cancelSort?: string;
466
+ };
467
+ Popconfirm?: Record<string, any>;
468
+ Form?: {
469
+ optional?: string;
470
+ defaultValidateMessages: {
471
+ default?: string | (() => string);
472
+ required?: string | (() => string);
473
+ enum?: string | (() => string);
474
+ whitespace?: string | (() => string);
475
+ date?: {
476
+ format?: string | (() => string);
477
+ parse?: string | (() => string);
478
+ invalid?: string | (() => string);
479
+ };
480
+ types?: {
481
+ string?: string | (() => string);
482
+ method?: string | (() => string);
483
+ array?: string | (() => string);
484
+ object?: string | (() => string);
485
+ number?: string | (() => string);
486
+ date?: string | (() => string);
487
+ boolean?: string | (() => string);
488
+ integer?: string | (() => string);
489
+ float?: string | (() => string);
490
+ regexp?: string | (() => string);
491
+ email?: string | (() => string);
492
+ url?: string | (() => string);
493
+ hex?: string | (() => string);
494
+ };
495
+ string?: {
496
+ len?: string | (() => string);
497
+ min?: string | (() => string);
498
+ max?: string | (() => string);
499
+ range?: string | (() => string);
500
+ };
501
+ number?: {
502
+ len?: string | (() => string);
503
+ min?: string | (() => string);
504
+ max?: string | (() => string);
505
+ range?: string | (() => string);
506
+ };
507
+ array?: {
508
+ len?: string | (() => string);
509
+ min?: string | (() => string);
510
+ max?: string | (() => string);
511
+ range?: string | (() => string);
512
+ };
513
+ pattern?: {
514
+ mismatch?: string | (() => string);
515
+ };
516
+ };
517
+ };
518
+ Image?: {
519
+ preview: string;
520
+ };
521
+ DatePicker?: {
522
+ lang: {
523
+ locale: string;
524
+ monthBeforeYear?: boolean;
525
+ yearFormat: string;
526
+ monthFormat?: string;
527
+ quarterFormat?: string;
528
+ today: string;
529
+ now: string;
530
+ backToToday: string;
531
+ ok: string;
532
+ timeSelect: string;
533
+ dateSelect: string;
534
+ weekSelect?: string;
535
+ clear: string;
536
+ month: string;
537
+ year: string;
538
+ previousMonth: string;
539
+ nextMonth: string;
540
+ monthSelect: string;
541
+ yearSelect: string;
542
+ decadeSelect: string;
543
+ dayFormat: string;
544
+ dateFormat: string;
545
+ dateTimeFormat: string;
546
+ previousYear: string;
547
+ nextYear: string;
548
+ previousDecade: string;
549
+ nextDecade: string;
550
+ previousCentury: string;
551
+ nextCentury: string;
552
+ shortWeekDays?: string[];
553
+ shortMonths?: string[];
554
+ placeholder: string;
555
+ yearPlaceholder?: string;
556
+ quarterPlaceholder?: string;
557
+ monthPlaceholder?: string;
558
+ weekPlaceholder?: string;
559
+ rangeYearPlaceholder?: [string, string];
560
+ rangeQuarterPlaceholder?: [string, string];
561
+ rangeMonthPlaceholder?: [string, string];
562
+ rangeWeekPlaceholder?: [string, string];
563
+ rangePlaceholder?: [string, string];
564
+ };
565
+ timePickerLocale: {
566
+ placeholder?: string;
567
+ rangePlaceholder?: [string, string];
568
+ };
569
+ dateFormat?: string;
570
+ dateTimeFormat?: string;
571
+ weekFormat?: string;
572
+ monthFormat?: string;
573
+ };
574
+ TimePicker?: Record<string, any>;
575
+ Calendar?: Record<string, any>;
576
+ Modal?: {
577
+ okText: string;
578
+ cancelText: string;
579
+ justOkText: string;
580
+ };
581
+ Transfer?: {
582
+ titles?: (string | number | boolean | void | JSX.Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
583
+ [key: string]: any;
584
+ }> | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
585
+ [key: string]: any;
586
+ }>)[])[];
587
+ notFoundContent?: string | number | boolean | void | JSX.Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
588
+ [key: string]: any;
589
+ }> | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
590
+ [key: string]: any;
591
+ }>)[];
592
+ searchPlaceholder?: string;
593
+ itemUnit?: string;
594
+ itemsUnit?: string;
595
+ remove?: string;
596
+ selectAll?: string;
597
+ selectCurrent?: string;
598
+ selectInvert?: string;
599
+ removeAll?: string;
600
+ removeCurrent?: string;
601
+ };
602
+ Select?: Record<string, any>;
603
+ Upload?: {
604
+ uploading?: string;
605
+ removeFile?: string;
606
+ downloadFile?: string;
607
+ uploadError?: string;
608
+ previewFile?: string;
609
+ };
610
+ Empty?: {
611
+ description: string;
612
+ };
613
+ global?: Record<string, any>;
614
+ PageHeader?: {
615
+ back: string;
616
+ };
617
+ Icon?: Record<string, any>;
618
+ Text?: {
619
+ edit?: any;
620
+ copy?: any;
621
+ copied?: any;
622
+ expand?: any;
623
+ };
624
+ };
625
+ csp?: {
626
+ nonce?: string;
627
+ };
628
+ dropdownMatchSelectWidth?: number | boolean;
629
+ notUpdateGlobalConfig?: boolean;
630
+ prefixCls?: string;
631
+ input?: {
632
+ autocomplete: string;
633
+ };
634
+ space?: {
635
+ size: number | import("ant-design-vue/lib/button").ButtonSize;
636
+ };
637
+ direction?: "ltr" | "rtl";
638
+ getTargetContainer?: () => HTMLElement;
639
+ getPopupContainer?: (triggerNode?: HTMLElement) => HTMLElement;
640
+ getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
641
+ renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
642
+ transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
643
+ autoInsertSpaceInButton?: boolean;
644
+ pageHeader?: {
645
+ ghost: boolean;
646
+ };
647
+ componentSize?: import("ant-design-vue/lib/button").ButtonSize;
648
+ virtual?: boolean;
649
+ };
650
+ }> & {
651
+ sSpinning: boolean;
652
+ } & {
653
+ debouncifyUpdateSpinning(props?: any): void;
654
+ updateSpinning(): void;
655
+ cancelExistingSpin(): void;
656
+ renderIndicator(prefixCls: string): JSX.Element;
657
+ } & import("vue").ComponentCustomProperties;
658
+ __isFragment?: never;
659
+ __isTeleport?: never;
660
+ __isSuspense?: never;
661
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
662
+ prefixCls: StringConstructor;
663
+ spinning: {
664
+ type: BooleanConstructor;
665
+ default: any;
666
+ };
667
+ size: import("vue").PropType<import("ant-design-vue/lib/spin/Spin").SpinSize>;
668
+ wrapperClassName: StringConstructor;
669
+ tip: import("vue-types").VueTypeValidableDef<any>;
670
+ delay: NumberConstructor;
671
+ indicator: import("vue-types").VueTypeValidableDef<any>;
672
+ }>>, {
673
+ originalUpdateSpinning: any;
674
+ configProvider: {
675
+ form?: {
676
+ validateMessages?: {
677
+ default?: string | (() => string);
678
+ required?: string | (() => string);
679
+ enum?: string | (() => string);
680
+ whitespace?: string | (() => string);
681
+ date?: {
682
+ format?: string | (() => string);
683
+ parse?: string | (() => string);
684
+ invalid?: string | (() => string);
685
+ };
686
+ types?: {
687
+ string?: string | (() => string);
688
+ method?: string | (() => string);
689
+ array?: string | (() => string);
690
+ object?: string | (() => string);
691
+ number?: string | (() => string);
692
+ date?: string | (() => string);
693
+ boolean?: string | (() => string);
694
+ integer?: string | (() => string);
695
+ float?: string | (() => string);
696
+ regexp?: string | (() => string);
697
+ email?: string | (() => string);
698
+ url?: string | (() => string);
699
+ hex?: string | (() => string);
700
+ };
701
+ string?: {
702
+ len?: string | (() => string);
703
+ min?: string | (() => string);
704
+ max?: string | (() => string);
705
+ range?: string | (() => string);
706
+ };
707
+ number?: {
708
+ len?: string | (() => string);
709
+ min?: string | (() => string);
710
+ max?: string | (() => string);
711
+ range?: string | (() => string);
712
+ };
713
+ array?: {
714
+ len?: string | (() => string);
715
+ min?: string | (() => string);
716
+ max?: string | (() => string);
717
+ range?: string | (() => string);
718
+ };
719
+ pattern?: {
720
+ mismatch?: string | (() => string);
721
+ };
722
+ };
723
+ requiredMark?: import("ant-design-vue/lib/form/Form").RequiredMark;
724
+ colon?: boolean;
725
+ };
726
+ locale?: {
727
+ locale: string;
728
+ Pagination?: {
729
+ items_per_page?: string;
730
+ jump_to?: string;
731
+ jump_to_confirm?: string;
732
+ page?: string;
733
+ prev_page?: string;
734
+ next_page?: string;
735
+ prev_5?: string;
736
+ next_5?: string;
737
+ prev_3?: string;
738
+ next_3?: string;
739
+ };
740
+ Table?: {
741
+ filterTitle?: string;
742
+ filterConfirm?: any;
743
+ filterReset?: any;
744
+ filterEmptyText?: any;
745
+ filterCheckall?: any;
746
+ filterSearchPlaceholder?: any;
747
+ emptyText?: any;
748
+ selectAll?: any;
749
+ selectNone?: any;
750
+ selectInvert?: any;
751
+ selectionAll?: any;
752
+ sortTitle?: string;
753
+ expand?: string;
754
+ collapse?: string;
755
+ triggerDesc?: string;
756
+ triggerAsc?: string;
757
+ cancelSort?: string;
758
+ };
759
+ Popconfirm?: Record<string, any>;
760
+ Form?: {
761
+ optional?: string;
762
+ defaultValidateMessages: {
763
+ default?: string | (() => string);
764
+ required?: string | (() => string);
765
+ enum?: string | (() => string);
766
+ whitespace?: string | (() => string);
767
+ date?: {
768
+ format?: string | (() => string);
769
+ parse?: string | (() => string);
770
+ invalid?: string | (() => string);
771
+ };
772
+ types?: {
773
+ string?: string | (() => string);
774
+ method?: string | (() => string);
775
+ array?: string | (() => string);
776
+ object?: string | (() => string);
777
+ number?: string | (() => string);
778
+ date?: string | (() => string);
779
+ boolean?: string | (() => string);
780
+ integer?: string | (() => string);
781
+ float?: string | (() => string);
782
+ regexp?: string | (() => string);
783
+ email?: string | (() => string);
784
+ url?: string | (() => string);
785
+ hex?: string | (() => string);
786
+ };
787
+ string?: {
788
+ len?: string | (() => string);
789
+ min?: string | (() => string);
790
+ max?: string | (() => string);
791
+ range?: string | (() => string);
792
+ };
793
+ number?: {
794
+ len?: string | (() => string);
795
+ min?: string | (() => string);
796
+ max?: string | (() => string);
797
+ range?: string | (() => string);
798
+ };
799
+ array?: {
800
+ len?: string | (() => string);
801
+ min?: string | (() => string);
802
+ max?: string | (() => string);
803
+ range?: string | (() => string);
804
+ };
805
+ pattern?: {
806
+ mismatch?: string | (() => string);
807
+ };
808
+ };
809
+ };
810
+ Image?: {
811
+ preview: string;
812
+ };
813
+ DatePicker?: {
814
+ lang: {
815
+ locale: string;
816
+ monthBeforeYear?: boolean;
817
+ yearFormat: string;
818
+ monthFormat?: string;
819
+ quarterFormat?: string;
820
+ today: string;
821
+ now: string;
822
+ backToToday: string;
823
+ ok: string;
824
+ timeSelect: string;
825
+ dateSelect: string;
826
+ weekSelect?: string;
827
+ clear: string;
828
+ month: string;
829
+ year: string;
830
+ previousMonth: string;
831
+ nextMonth: string;
832
+ monthSelect: string;
833
+ yearSelect: string;
834
+ decadeSelect: string;
835
+ dayFormat: string;
836
+ dateFormat: string;
837
+ dateTimeFormat: string;
838
+ previousYear: string;
839
+ nextYear: string;
840
+ previousDecade: string;
841
+ nextDecade: string;
842
+ previousCentury: string;
843
+ nextCentury: string;
844
+ shortWeekDays?: string[];
845
+ shortMonths?: string[];
846
+ placeholder: string;
847
+ yearPlaceholder?: string;
848
+ quarterPlaceholder?: string;
849
+ monthPlaceholder?: string;
850
+ weekPlaceholder?: string;
851
+ rangeYearPlaceholder?: [string, string];
852
+ rangeQuarterPlaceholder?: [string, string];
853
+ rangeMonthPlaceholder?: [string, string];
854
+ rangeWeekPlaceholder?: [string, string];
855
+ rangePlaceholder?: [string, string];
856
+ };
857
+ timePickerLocale: {
858
+ placeholder?: string;
859
+ rangePlaceholder?: [string, string];
860
+ };
861
+ dateFormat?: string;
862
+ dateTimeFormat?: string;
863
+ weekFormat?: string;
864
+ monthFormat?: string;
865
+ };
866
+ TimePicker?: Record<string, any>;
867
+ Calendar?: Record<string, any>;
868
+ Modal?: {
869
+ okText: string;
870
+ cancelText: string;
871
+ justOkText: string;
872
+ };
873
+ Transfer?: {
874
+ titles?: (string | number | boolean | void | JSX.Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
875
+ [key: string]: any;
876
+ }> | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
877
+ [key: string]: any;
878
+ }>)[])[];
879
+ notFoundContent?: string | number | boolean | void | JSX.Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
880
+ [key: string]: any;
881
+ }> | (string | number | boolean | void | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
882
+ [key: string]: any;
883
+ }>)[];
884
+ searchPlaceholder?: string;
885
+ itemUnit?: string;
886
+ itemsUnit?: string;
887
+ remove?: string;
888
+ selectAll?: string;
889
+ selectCurrent?: string;
890
+ selectInvert?: string;
891
+ removeAll?: string;
892
+ removeCurrent?: string;
893
+ };
894
+ Select?: Record<string, any>;
895
+ Upload?: {
896
+ uploading?: string;
897
+ removeFile?: string;
898
+ downloadFile?: string;
899
+ uploadError?: string;
900
+ previewFile?: string;
901
+ };
902
+ Empty?: {
903
+ description: string;
904
+ };
905
+ global?: Record<string, any>;
906
+ PageHeader?: {
907
+ back: string;
908
+ };
909
+ Icon?: Record<string, any>;
910
+ Text?: {
911
+ edit?: any;
912
+ copy?: any;
913
+ copied?: any;
914
+ expand?: any;
915
+ };
916
+ };
917
+ csp?: {
918
+ nonce?: string;
919
+ };
920
+ dropdownMatchSelectWidth?: number | boolean;
921
+ notUpdateGlobalConfig?: boolean;
922
+ prefixCls?: string;
923
+ input?: {
924
+ autocomplete: string;
925
+ };
926
+ space?: {
927
+ size: number | import("ant-design-vue/lib/button").ButtonSize;
928
+ };
929
+ direction?: "ltr" | "rtl";
930
+ getTargetContainer?: () => HTMLElement;
931
+ getPopupContainer?: (triggerNode?: HTMLElement) => HTMLElement;
932
+ getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
933
+ renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
934
+ transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
935
+ autoInsertSpaceInButton?: boolean;
936
+ pageHeader?: {
937
+ ghost: boolean;
938
+ };
939
+ componentSize?: import("ant-design-vue/lib/button").ButtonSize;
940
+ virtual?: boolean;
941
+ };
942
+ }, {
943
+ sSpinning: boolean;
944
+ }, {}, {
945
+ debouncifyUpdateSpinning(props?: any): void;
946
+ updateSpinning(): void;
947
+ cancelExistingSpin(): void;
948
+ renderIndicator(prefixCls: string): JSX.Element;
949
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
950
+ spinning: boolean;
951
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
952
+ readonly setDefaultIndicator: typeof import("ant-design-vue/lib/spin/Spin").setDefaultIndicator;
953
+ };
954
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
955
+ showLoading: {
956
+ type: BooleanConstructor;
957
+ default: boolean;
958
+ };
959
+ src: {
960
+ type: StringConstructor;
961
+ };
962
+ postMsg: any;
963
+ }>>, {
964
+ showLoading: boolean;
965
+ postMsg: any;
966
+ }>;
967
+ export default _sfc_main;