epic-designer-gold 0.0.49 → 1.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.
- package/.eslintrc.js +10 -0
- package/.vscode/extensions.json +3 -0
- package/.vscode/settings.json +6 -0
- package/README.md +3 -6
- package/docs/.vitepress/config.ts +163 -0
- package/docs/.vitepress/theme/custom.css +38 -0
- package/docs/.vitepress/theme/index.ts +7 -0
- package/docs/.vitepress/theme/style.css +44 -0
- package/docs/guide/about/about.md +24 -0
- package/docs/guide/action/customFunctions.md +560 -0
- package/docs/guide/components/EBuilder.md +546 -0
- package/docs/guide/components/EDesigner.md +120 -0
- package/docs/guide/copyright/copyright.md +38 -0
- package/docs/guide/extensions/actionBar.md +55 -0
- package/docs/guide/extensions/component.md +115 -0
- package/docs/guide/extensions/icon.md +111 -0
- package/docs/guide/extensions/publicMethods.md +52 -0
- package/docs/guide/extensions/rightSidebar.md +57 -0
- package/docs/guide/start/dark-mode.md +149 -0
- package/docs/guide/start/i18n-cn.md +39 -0
- package/docs/guide/start/index.md +59 -0
- package/docs/guide/start/layoutGuide.md +0 -0
- package/docs/guide/start/quick-start.md +194 -0
- package/docs/guide/start/theme.md +125 -0
- package/docs/guide/utils/pageManager.md +94 -0
- package/docs/guide/utils/pluginManager.md +227 -0
- package/docs/index.md +41 -0
- package/docs/package.json +15 -0
- package/docs/public/certificate.jpg +0 -0
- package/docs/public/dark.png +0 -0
- package/docs/public/favicon.ico +0 -0
- package/docs/public/icons/demo.css +539 -0
- package/docs/public/icons/demo_index.html +589 -0
- package/docs/public/icons/iconfont.css +379 -0
- package/docs/public/icons/iconfont.js +1 -0
- package/docs/public/icons/iconfont.json +646 -0
- package/docs/public/icons/iconfont.ttf +0 -0
- package/docs/public/icons/iconfont.woff +0 -0
- package/docs/public/icons/iconfont.woff2 +0 -0
- package/docs/public/icons/iconify.css +271 -0
- package/docs/public/icons/iconify.html +333 -0
- package/docs/public/layout.jpg +0 -0
- package/docs/public/logo.png +0 -0
- package/docs/public/theme.jpg +0 -0
- package/docs/updateLog.md +461 -0
- package/docs/vite.config.ts +18 -0
- package/docs//345/210/235/345/247/213/345/214/226/345/270/203/345/261/200.jpg +0 -0
- package/docs//350/256/276/350/256/241/345/231/250/344/273/213/347/273/215.md +21 -0
- package/docs//350/256/276/350/256/241/345/231/250/345/270/203/345/261/200.jpg +0 -0
- package/examples/README.md +18 -0
- package/examples/index.html +14 -0
- package/examples/package.json +28 -0
- package/examples/public/favicon.ico +0 -0
- package/examples/src/App.vue +5 -0
- package/examples/src/assets/logo.png +0 -0
- package/examples/src/layout/baseLayout.vue +3 -0
- package/examples/src/layout/components/Header/index.vue +104 -0
- package/examples/src/layout/components/Main/Maximize.vue +77 -0
- package/examples/src/layout/components/Main/index.vue +16 -0
- package/examples/src/layout/components/Menu/index.vue +49 -0
- package/examples/src/layout/index.vue +26 -0
- package/examples/src/main.ts +6 -0
- package/examples/src/router/index.ts +122 -0
- package/examples/src/style/reset.css +253 -0
- package/examples/src/style.less +44 -0
- package/examples/src/views/builder/basic/index.vue +179 -0
- package/examples/src/views/builder/customForm/index.vue +238 -0
- package/examples/src/views/builder/disableDisplay/index.vue +153 -0
- package/examples/src/views/builder/disableDisplay copy/index.vue +111 -0
- package/examples/src/views/builder/loadData/index.vue +334 -0
- package/examples/src/views/builder/loadFormData/index.vue +195 -0
- package/examples/src/views/builder/sum/index.vue +127 -0
- package/examples/src/views/designer/basic/index.vue +62 -0
- package/examples/src/views/designer/formMode/index.vue +20 -0
- package/examples/src/views/designer/loadData/index.vue +109 -0
- package/examples/src/vite-env.d.ts +1 -0
- package/examples/tsconfig.json +27 -0
- package/examples/tsconfig.node.json +10 -0
- package/examples/uno.config.ts +2 -0
- package/examples/vite.config.ts +35 -0
- package/package.json +50 -75
- package/packages/core/LICENSE +21 -0
- package/packages/core/components/asyncLoader/index.less +92 -0
- package/packages/core/components/asyncLoader/index.vue +7 -0
- package/packages/core/components/builder/hooks/useBuilder.ts +200 -0
- package/packages/core/components/builder/index.ts +3 -0
- package/packages/core/components/builder/src/builder.vue +203 -0
- package/packages/core/components/builder/src/types.ts +4 -0
- package/packages/core/components/designer/index.ts +3 -0
- package/packages/core/components/designer/src/designer.vue +336 -0
- package/packages/core/components/designer/src/index.less +81 -0
- package/packages/core/components/designer/src/modules/actionBar/index.less +80 -0
- package/packages/core/components/designer/src/modules/actionBar/index.vue +50 -0
- package/packages/core/components/designer/src/modules/attributeView/attributeView.vue +121 -0
- package/packages/core/components/designer/src/modules/attributeView/eventView.vue +77 -0
- package/packages/core/components/designer/src/modules/attributeView/index.less +36 -0
- package/packages/core/components/designer/src/modules/attributeView/styleView.vue +117 -0
- package/packages/core/components/designer/src/modules/componentView/index.less +61 -0
- package/packages/core/components/designer/src/modules/componentView/index.vue +127 -0
- package/packages/core/components/designer/src/modules/editContainer/editNodeItem.vue +87 -0
- package/packages/core/components/designer/src/modules/editContainer/editScreenContainer.vue +227 -0
- package/packages/core/components/designer/src/modules/editContainer/index.less +159 -0
- package/packages/core/components/designer/src/modules/editContainer/index.vue +36 -0
- package/packages/core/components/designer/src/modules/editContainer/nodeItem.vue +93 -0
- package/packages/core/components/designer/src/modules/editContainer/previewJson.vue +73 -0
- package/packages/core/components/designer/src/modules/editContainer/previewWidgets.vue +529 -0
- package/packages/core/components/designer/src/modules/editContainer/toolbar.vue +250 -0
- package/packages/core/components/designer/src/modules/header/index.less +16 -0
- package/packages/core/components/designer/src/modules/header/index.vue +63 -0
- package/packages/core/components/designer/src/modules/outline/index.less +7 -0
- package/packages/core/components/designer/src/modules/outline/outline.vue +56 -0
- package/packages/core/components/designer/src/modules/preview/index.less +0 -0
- package/packages/core/components/designer/src/modules/preview/index.vue +103 -0
- package/packages/core/components/designer/src/modules/rightSidebar/breadcrumb.vue +30 -0
- package/packages/core/components/designer/src/modules/rightSidebar/index.less +74 -0
- package/packages/core/components/designer/src/modules/rightSidebar/index.vue +67 -0
- package/packages/core/components/designer/src/modules/sourceCode/index.less +7 -0
- package/packages/core/components/designer/src/modules/sourceCode/index.vue +37 -0
- package/packages/core/components/designer/src/types.ts +52 -0
- package/packages/core/components/icon/index.ts +2 -0
- package/packages/core/components/icon/src/icon.vue +28 -0
- package/packages/core/components/node/index.ts +2 -0
- package/packages/core/components/node/src/dynamicFormItem.vue +38 -0
- package/packages/core/components/node/src/node.vue +503 -0
- package/packages/core/components/tree/index.ts +2 -0
- package/packages/core/components/tree/src/index.less +117 -0
- package/packages/core/components/tree/src/tree.vue +113 -0
- package/packages/core/components/tree/src/treeNodeItem.vue +120 -0
- package/packages/core/components/tree/src/treeNodes.vue +70 -0
- package/packages/core/extensions/EActionEditor/index.less +177 -0
- package/packages/core/extensions/EActionEditor/index.vue +160 -0
- package/packages/core/extensions/EActionEditor/src/EActionEditorItem.vue +133 -0
- package/packages/core/extensions/EActionEditor/src/EActionModal.vue +258 -0
- package/packages/core/extensions/EActionEditor/src/EArgsEditor.vue +61 -0
- package/packages/core/extensions/EActionEditor/src/EScriptEdit.vue +26 -0
- package/packages/core/extensions/EColEditor/index.less +24 -0
- package/packages/core/extensions/EColEditor/index.vue +100 -0
- package/packages/core/extensions/EDataSource/index.less +184 -0
- package/packages/core/extensions/EDataSource/index.vue +468 -0
- package/packages/core/extensions/EInputSize/index.vue +59 -0
- package/packages/core/extensions/EOptionsEditor/index.vue +243 -0
- package/packages/core/extensions/EOptionsEditor/optionItem.vue +72 -0
- package/packages/core/extensions/ERuleEditor/ERuleItem.vue +136 -0
- package/packages/core/extensions/ERuleEditor/data.ts +24 -0
- package/packages/core/extensions/ERuleEditor/index.less +17 -0
- package/packages/core/extensions/ERuleEditor/index.vue +157 -0
- package/packages/core/extensions/ERuleEditor/types.ts +17 -0
- package/packages/core/extensions/MonacoEditor/index.ts +31 -0
- package/packages/core/extensions/MonacoEditor/index.vue +150 -0
- package/packages/core/extensions/Page/index.ts +23 -0
- package/packages/core/extensions/Page/index.vue +27 -0
- package/packages/core/extensions/index.ts +58 -0
- package/packages/core/index.less +24 -0
- package/packages/core/index.ts +35 -0
- package/packages/core/package.json +59 -0
- package/packages/core/static/icons/iconify.css +271 -0
- package/packages/core/static/logo.png +0 -0
- package/packages/core/tsconfig.json +19 -0
- package/packages/core/types/epic-designer.ts +75 -0
- package/packages/epic-designer/LICENSE +21 -0
- package/packages/epic-designer/README.md +239 -0
- package/packages/epic-designer/package.json +75 -0
- package/packages/hooks/LICENSE +21 -0
- package/packages/hooks/common/element.ts +170 -0
- package/packages/hooks/common/index.ts +2 -0
- package/packages/hooks/common/theme.ts +84 -0
- package/packages/hooks/index.ts +2 -0
- package/packages/hooks/package.json +7 -0
- package/packages/hooks/store/index.ts +30 -0
- package/packages/hooks/tsconfig.json +19 -0
- package/packages/script/package.json +17 -0
- package/packages/script/src/check-compiled.ts +22 -0
- package/packages/script/tsconfig.json +10 -0
- package/packages/ui/LICENSE +21 -0
- package/packages/ui/antd/button/button.vue +16 -0
- package/packages/ui/antd/button/index.ts +203 -0
- package/packages/ui/antd/card/card.ts +31 -0
- package/packages/ui/antd/card/index.ts +64 -0
- package/packages/ui/antd/cascader/cascader.vue +23 -0
- package/packages/ui/antd/cascader/index.ts +200 -0
- package/packages/ui/antd/checkbox/index.ts +100 -0
- package/packages/ui/antd/col/col.ts +31 -0
- package/packages/ui/antd/col/index.ts +22 -0
- package/packages/ui/antd/color-picker/index.ts +108 -0
- package/packages/ui/antd/date-picker/datePicker.ts +47 -0
- package/packages/ui/antd/date-picker/index.ts +304 -0
- package/packages/ui/antd/form/form.vue +115 -0
- package/packages/ui/antd/form/index.ts +196 -0
- package/packages/ui/antd/form-item/formItem.vue +15 -0
- package/packages/ui/antd/form-item/index.ts +11 -0
- package/packages/ui/antd/index.less +33 -0
- package/packages/ui/antd/index.ts +306 -0
- package/packages/ui/antd/input/index.ts +170 -0
- package/packages/ui/antd/input-number/index.ts +182 -0
- package/packages/ui/antd/input-password/index.ts +153 -0
- package/packages/ui/antd/modal/index.ts +19 -0
- package/packages/ui/antd/modal/modal.vue +82 -0
- package/packages/ui/antd/radio/index.ts +106 -0
- package/packages/ui/antd/row/index.ts +115 -0
- package/packages/ui/antd/row/row.ts +31 -0
- package/packages/ui/antd/select/index.ts +230 -0
- package/packages/ui/antd/slider/index.ts +148 -0
- package/packages/ui/antd/switch/index.ts +142 -0
- package/packages/ui/antd/textarea/index.ts +163 -0
- package/packages/ui/antd/time-picker/index.ts +191 -0
- package/packages/ui/antd/upload-file/index.ts +89 -0
- package/packages/ui/antd/upload-file/uploadFile.ts +119 -0
- package/packages/ui/antd/upload-image/index.ts +70 -0
- package/packages/ui/antd/upload-image/uploadImage.vue +148 -0
- package/packages/ui/elementPlus/button/button.ts +24 -0
- package/packages/ui/elementPlus/button/index.ts +129 -0
- package/packages/ui/elementPlus/card/card.ts +36 -0
- package/packages/ui/elementPlus/card/index.ts +50 -0
- package/packages/ui/elementPlus/cascader/index.ts +222 -0
- package/packages/ui/elementPlus/checkbox/checkbox.ts +36 -0
- package/packages/ui/elementPlus/checkbox/index.ts +148 -0
- package/packages/ui/elementPlus/col/col.ts +29 -0
- package/packages/ui/elementPlus/col/index.ts +21 -0
- package/packages/ui/elementPlus/collapse/collapse.ts +32 -0
- package/packages/ui/elementPlus/collapse/index.ts +41 -0
- package/packages/ui/elementPlus/collapse-item/collapseItem.ts +31 -0
- package/packages/ui/elementPlus/collapse-item/index.ts +12 -0
- package/packages/ui/elementPlus/color-picker/index.ts +111 -0
- package/packages/ui/elementPlus/date-picker/index.ts +211 -0
- package/packages/ui/elementPlus/form/form.vue +110 -0
- package/packages/ui/elementPlus/form/index.ts +150 -0
- package/packages/ui/elementPlus/formItem/formItem.vue +15 -0
- package/packages/ui/elementPlus/formItem/index.ts +11 -0
- package/packages/ui/elementPlus/index.less +84 -0
- package/packages/ui/elementPlus/index.ts +101 -0
- package/packages/ui/elementPlus/input/index.ts +180 -0
- package/packages/ui/elementPlus/input-number/index.ts +146 -0
- package/packages/ui/elementPlus/modal/index.ts +18 -0
- package/packages/ui/elementPlus/modal/modal.ts +68 -0
- package/packages/ui/elementPlus/radio/index.ts +129 -0
- package/packages/ui/elementPlus/radio/radio.ts +35 -0
- package/packages/ui/elementPlus/row/index.ts +106 -0
- package/packages/ui/elementPlus/row/row.ts +32 -0
- package/packages/ui/elementPlus/select/index.ts +291 -0
- package/packages/ui/elementPlus/select/select.ts +54 -0
- package/packages/ui/elementPlus/sign/index.ts +107 -0
- package/packages/ui/elementPlus/sign/sign.vue +348 -0
- package/packages/ui/elementPlus/slider/index.ts +234 -0
- package/packages/ui/elementPlus/switch/index.ts +160 -0
- package/packages/ui/elementPlus/table/index.ts +103 -0
- package/packages/ui/elementPlus/table/table.ts +41 -0
- package/packages/ui/elementPlus/table-col/col.ts +39 -0
- package/packages/ui/elementPlus/table-col/index.ts +21 -0
- package/packages/ui/elementPlus/table-row/index.ts +105 -0
- package/packages/ui/elementPlus/table-row/row.ts +41 -0
- package/packages/ui/elementPlus/text/index.ts +95 -0
- package/packages/ui/elementPlus/text/text.ts +34 -0
- package/packages/ui/elementPlus/textarea/index.ts +155 -0
- package/packages/ui/elementPlus/upload-file/index.ts +87 -0
- package/packages/ui/elementPlus/upload-file/uploadFile.ts +131 -0
- package/packages/ui/elementPlus/upload-image/index.ts +87 -0
- package/packages/ui/elementPlus/upload-image/uploadImage.ts +163 -0
- package/packages/ui/index.ts +22 -0
- package/packages/ui/naiveUi/button/button.ts +25 -0
- package/packages/ui/naiveUi/button/index.ts +148 -0
- package/packages/ui/naiveUi/card/card.ts +32 -0
- package/packages/ui/naiveUi/card/index.ts +26 -0
- package/packages/ui/naiveUi/cascader/index.ts +222 -0
- package/packages/ui/naiveUi/checkbox/checkbox.ts +27 -0
- package/packages/ui/naiveUi/checkbox/index.ts +117 -0
- package/packages/ui/naiveUi/col/col.ts +30 -0
- package/packages/ui/naiveUi/col/index.ts +21 -0
- package/packages/ui/naiveUi/collapse/collapse.ts +31 -0
- package/packages/ui/naiveUi/collapse/index.ts +40 -0
- package/packages/ui/naiveUi/collapse-item/collapseItem.ts +31 -0
- package/packages/ui/naiveUi/collapse-item/index.ts +12 -0
- package/packages/ui/naiveUi/color-picker/index.ts +182 -0
- package/packages/ui/naiveUi/date-picker/index.ts +213 -0
- package/packages/ui/naiveUi/form/form.vue +98 -0
- package/packages/ui/naiveUi/form/index.ts +147 -0
- package/packages/ui/naiveUi/form-item/formItem.vue +15 -0
- package/packages/ui/naiveUi/form-item/index.ts +10 -0
- package/packages/ui/naiveUi/index.less +33 -0
- package/packages/ui/naiveUi/index.ts +68 -0
- package/packages/ui/naiveUi/input/index.ts +221 -0
- package/packages/ui/naiveUi/input-number/index.ts +145 -0
- package/packages/ui/naiveUi/modal/index.ts +18 -0
- package/packages/ui/naiveUi/modal/modal.ts +83 -0
- package/packages/ui/naiveUi/radio/index.ts +97 -0
- package/packages/ui/naiveUi/radio/radio.ts +27 -0
- package/packages/ui/naiveUi/row/index.ts +106 -0
- package/packages/ui/naiveUi/row/row.ts +31 -0
- package/packages/ui/naiveUi/select/index.ts +197 -0
- package/packages/ui/naiveUi/slider/index.ts +182 -0
- package/packages/ui/naiveUi/switch/index.ts +136 -0
- package/packages/ui/naiveUi/upload-file/index.ts +83 -0
- package/packages/ui/naiveUi/upload-file/uploadFile.ts +78 -0
- package/packages/ui/naiveUi/upload-image/index.ts +83 -0
- package/packages/ui/naiveUi/upload-image/uploadImage.ts +151 -0
- package/packages/ui/package.json +17 -0
- package/packages/ui/tsconfig.json +19 -0
- package/packages/utils/LICENSE +21 -0
- package/packages/utils/__test__/common/debounce.test.ts +44 -0
- package/packages/utils/__test__/common/deepClone.test.ts +42 -0
- package/packages/utils/__test__/common/deepCompareAndModify.test.ts +84 -0
- package/packages/utils/__test__/common/deepEqual.test.ts +105 -0
- package/packages/utils/__test__/common/findSchemaById.test.ts +80 -0
- package/packages/utils/__test__/common/findSchemas.test.ts +98 -0
- package/packages/utils/__test__/common/getFormSchemas.test.ts +124 -0
- package/packages/utils/__test__/common/getMatchedById.test.ts +79 -0
- package/packages/utils/__test__/common/getUUID.test.ts +30 -0
- package/packages/utils/__test__/common/getValueByPath.test.ts +54 -0
- package/packages/utils/__test__/common/mapSchemas.test.ts +98 -0
- package/packages/utils/__test__/common/setValueByPath.test.ts +69 -0
- package/packages/utils/__test__/manager/pageManager.test.ts +75 -0
- package/packages/utils/__test__/manager/revoke.test.ts +103 -0
- package/packages/utils/common/common.ts +18 -0
- package/packages/utils/common/component.ts +22 -0
- package/packages/utils/common/data.ts +662 -0
- package/packages/utils/common/eventBus.ts +4 -0
- package/packages/utils/common/index.ts +5 -0
- package/packages/utils/common/string.ts +24 -0
- package/packages/utils/index.ts +2 -0
- package/packages/utils/manager/index.ts +3 -0
- package/packages/utils/manager/pageManager.ts +238 -0
- package/packages/utils/manager/pluginManager.ts +627 -0
- package/packages/utils/manager/revoke.ts +124 -0
- package/packages/utils/package.json +7 -0
- package/packages/utils/tsconfig.json +19 -0
- package/pnpm-lock.yaml +14558 -0
- package/pnpm-workspace.yaml +5 -0
- package/turbo.json +20 -0
- package/vitest.config.ts +7 -0
- package/dist/_commonjsHelpers-BVfed4GL.js +0 -28
- package/dist/_commonjsHelpers-DwTZ_eVU.cjs +0 -1
- package/dist/_dayjs_commonjs-external-D9ZbEWhj.js +0 -6
- package/dist/_dayjs_commonjs-external-DWlrxCld.cjs +0 -1
- package/dist/_plugin-vue_export-helper-BHFhmbuH.cjs +0 -1
- package/dist/_plugin-vue_export-helper-CHgC5LLL.js +0 -9
- package/dist/_vue_commonjs-external-BbihI59z.cjs +0 -1
- package/dist/_vue_commonjs-external-NwvjgbHK.js +0 -6
- package/dist/attributeView-CMbZBZIS.cjs +0 -1
- package/dist/attributeView-DvYRuXDB.js +0 -105
- package/dist/az-C4lqmLYp.js +0 -22
- package/dist/az-CJXcaytS.cjs +0 -1
- package/dist/be--_CkdeMD.cjs +0 -1
- package/dist/be-DJzFjqtL.js +0 -22
- package/dist/bg-BOlG8Um1.js +0 -25
- package/dist/bg-DCT06eJE.cjs +0 -1
- package/dist/bn-bd-B1E6-oJQ.js +0 -33
- package/dist/bn-bd-DaKs5QkR.cjs +0 -1
- package/dist/button-BKT6NVeB.cjs +0 -1
- package/dist/button-BbHi0DmU.js +0 -31
- package/dist/button-Bj-ntCA2.js +0 -27
- package/dist/button-BvmCwtR3.js +0 -27
- package/dist/button-C48gWpMn.cjs +0 -1
- package/dist/button-Cc4KYk3v.cjs +0 -1
- package/dist/ca-BTQUSb29.cjs +0 -1
- package/dist/ca-DCcDFeSK.js +0 -22
- package/dist/card-BOMT_SwB.cjs +0 -1
- package/dist/card-BQ_K3Q8i.js +0 -33
- package/dist/card-BowzD9vN.cjs +0 -1
- package/dist/card-CNGNDzPp.js +0 -31
- package/dist/card-Cdove1KC.js +0 -32
- package/dist/card-hriyYYMn.cjs +0 -1
- package/dist/checkbox-BMXONqwy.js +0 -35
- package/dist/checkbox-Bjqm2Ob1.cjs +0 -1
- package/dist/checkbox-D8eqzQDX.cjs +0 -1
- package/dist/checkbox-Dp36upb2.js +0 -30
- package/dist/col-0rmM8on4.js +0 -33
- package/dist/col-B1GUMkMK.cjs +0 -1
- package/dist/col-B4lx76O5.cjs +0 -1
- package/dist/col-C_cbW1SI.js +0 -33
- package/dist/col-DXjfnmpf.cjs +0 -1
- package/dist/col-LQvh8U5y.js +0 -30
- package/dist/collapse-B2AXU6Jz.cjs +0 -1
- package/dist/collapse-BSFa_xwh.cjs +0 -1
- package/dist/collapse-CxLG5oyO.js +0 -32
- package/dist/collapse-I4H1VTFf.js +0 -35
- package/dist/collapseItem-CAGqWjGg.cjs +0 -1
- package/dist/collapseItem-CW_HTWvE.js +0 -33
- package/dist/collapseItem-DmnJXvsZ.js +0 -30
- package/dist/collapseItem-FF5A59WT.cjs +0 -1
- package/dist/core/components/asyncLoader/index.vue.d.ts +0 -2
- package/dist/core/components/builder/hooks/useBuilder.d.ts +0 -29
- package/dist/core/components/builder/index.d.ts +0 -2
- package/dist/core/components/builder/src/builder.vue.d.ts +0 -47
- package/dist/core/components/builder/src/types.d.ts +0 -4
- package/dist/core/components/designer/index.d.ts +0 -2
- package/dist/core/components/designer/src/designer.vue.d.ts +0 -98
- package/dist/core/components/designer/src/modules/actionBar/index.vue.d.ts +0 -2
- package/dist/core/components/designer/src/modules/attributeView/attributeView.vue.d.ts +0 -2
- package/dist/core/components/designer/src/modules/attributeView/styleView.vue.d.ts +0 -2
- package/dist/core/components/designer/src/modules/componentView/index.vue.d.ts +0 -2
- package/dist/core/components/designer/src/modules/editContainer/editNodeItem.vue.d.ts +0 -11
- package/dist/core/components/designer/src/modules/editContainer/editScreenContainer.vue.d.ts +0 -20
- package/dist/core/components/designer/src/modules/editContainer/index.vue.d.ts +0 -2
- package/dist/core/components/designer/src/modules/editContainer/nodeItem.vue.d.ts +0 -9
- package/dist/core/components/designer/src/modules/editContainer/previewJson.vue.d.ts +0 -5
- package/dist/core/components/designer/src/modules/editContainer/previewWidgets.vue.d.ts +0 -5
- package/dist/core/components/designer/src/modules/editContainer/toolbar.vue.d.ts +0 -2
- package/dist/core/components/designer/src/modules/header/index.vue.d.ts +0 -28
- package/dist/core/components/designer/src/modules/outline/outline.vue.d.ts +0 -2
- package/dist/core/components/designer/src/modules/preview/index.vue.d.ts +0 -5
- package/dist/core/components/designer/src/modules/rightSidebar/breadcrumb.vue.d.ts +0 -2
- package/dist/core/components/designer/src/modules/rightSidebar/index.vue.d.ts +0 -2
- package/dist/core/components/designer/src/types.d.ts +0 -47
- package/dist/core/components/icon/index.d.ts +0 -2
- package/dist/core/components/icon/src/icon.vue.d.ts +0 -10
- package/dist/core/components/node/index.d.ts +0 -2
- package/dist/core/components/node/src/dynamicFormItem.vue.d.ts +0 -30
- package/dist/core/components/node/src/node.vue.d.ts +0 -52
- package/dist/core/components/tree/index.d.ts +0 -2
- package/dist/core/components/tree/src/tree.vue.d.ts +0 -49
- package/dist/core/components/tree/src/treeNodeItem.vue.d.ts +0 -7
- package/dist/core/components/tree/src/treeNodes.vue.d.ts +0 -13
- package/dist/core/extensions/EActionEditor/index.vue.d.ts +0 -25
- package/dist/core/extensions/EActionEditor/src/EActionEditorItem.vue.d.ts +0 -50
- package/dist/core/extensions/EActionEditor/src/EActionModal.vue.d.ts +0 -13
- package/dist/core/extensions/EActionEditor/src/EArgsEditor.vue.d.ts +0 -13
- package/dist/core/extensions/EActionEditor/src/EScriptEdit.vue.d.ts +0 -2
- package/dist/core/extensions/EColEditor/index.vue.d.ts +0 -20
- package/dist/core/extensions/EDataSource/index.vue.d.ts +0 -8
- package/dist/core/extensions/EInputSize/index.vue.d.ts +0 -10
- package/dist/core/extensions/EOptionsEditor/index.vue.d.ts +0 -23
- package/dist/core/extensions/EOptionsEditor/optionItem.vue.d.ts +0 -15
- package/dist/core/extensions/ERuleEditor/ERuleItem.vue.d.ts +0 -15
- package/dist/core/extensions/ERuleEditor/data.d.ts +0 -9
- package/dist/core/extensions/ERuleEditor/index.vue.d.ts +0 -29
- package/dist/core/extensions/ERuleEditor/types.d.ts +0 -17
- package/dist/core/extensions/MonacoEditor/index.d.ts +0 -3
- package/dist/core/extensions/MonacoEditor/index.vue.d.ts +0 -45
- package/dist/core/extensions/Page/index.d.ts +0 -3
- package/dist/core/extensions/Page/index.vue.d.ts +0 -24
- package/dist/core/extensions/index.d.ts +0 -2
- package/dist/core/index.d.ts +0 -6
- package/dist/core/types/epic-designer.d.ts +0 -55
- package/dist/cs-CisRL5gQ.js +0 -53
- package/dist/cs-D_hyDJBU.cjs +0 -1
- package/dist/da-DHmiHyZA.cjs +0 -1
- package/dist/da-DhyERRsC.js +0 -22
- package/dist/datePicker-2Df6yfYg.js +0 -40
- package/dist/datePicker-DCH40VJR.cjs +0 -1
- package/dist/de-2hHpT7Ze.cjs +0 -1
- package/dist/de-CjumkRE8.js +0 -27
- package/dist/el-BCec0wpC.cjs +0 -1
- package/dist/el-DyUHskgW.js +0 -22
- package/dist/en-C1ESb179.cjs +0 -1
- package/dist/en-C2YS2Qnb.js +0 -18
- package/dist/en-gb-C8f1Enek.js +0 -23
- package/dist/en-gb-py_kegyw.cjs +0 -1
- package/dist/epic-designer/index.d.ts +0 -3
- package/dist/epic-designer/uno.config.d.ts +0 -2
- package/dist/es-BFLRglxD.cjs +0 -1
- package/dist/es-DP04S73E.js +0 -22
- package/dist/et-DKRhU9OP.cjs +0 -1
- package/dist/et-ipLqjCDG.js +0 -27
- package/dist/fa-DUcAIQzU.cjs +0 -1
- package/dist/fa-DXE6u9is.js +0 -22
- package/dist/fade-in-scale-up.cssr-BXjoIAAA.js +0 -39
- package/dist/fade-in-scale-up.cssr-C_UMnGtI.cjs +0 -1
- package/dist/fi-Cpkq8dP2.js +0 -27
- package/dist/fi-CyT899pV.cjs +0 -1
- package/dist/form-6cUK-Ari.js +0 -72
- package/dist/form-BPH0cDFl.js +0 -75
- package/dist/form-ChuxpD-f.cjs +0 -1
- package/dist/form-Cr7tBgLQ.js +0 -66
- package/dist/form-CthzLIgs.cjs +0 -1
- package/dist/form-D2qj0Dvr.cjs +0 -1
- package/dist/formItem-0oXWwtrG.cjs +0 -1
- package/dist/formItem-BVnNs1Q9.cjs +0 -1
- package/dist/formItem-D10Om12T.js +0 -22
- package/dist/formItem-DPnbV4m-.js +0 -22
- package/dist/formItem-Do31LPIz.cjs +0 -1
- package/dist/formItem-cj8JQT2r.js +0 -22
- package/dist/fr-D1kezmpm.cjs +0 -1
- package/dist/fr-DoLP2lvG.js +0 -22
- package/dist/fr-ca-D872_l2Z.cjs +0 -1
- package/dist/fr-ca-EPfCD7sc.js +0 -22
- package/dist/ga-B7Rd2JIZ.cjs +0 -1
- package/dist/ga-BcnAx7jm.js +0 -22
- package/dist/gl-CBMDu4db.js +0 -22
- package/dist/gl-DI-aVaAh.cjs +0 -1
- package/dist/he-O14-JKYm.cjs +0 -1
- package/dist/he-VbXQT3dj.js +0 -26
- package/dist/hi-BSHDLwY4.cjs +0 -1
- package/dist/hi-nXeMgLvO.js +0 -22
- package/dist/hooks/common/element.d.ts +0 -42
- package/dist/hooks/common/index.d.ts +0 -2
- package/dist/hooks/common/theme.d.ts +0 -12
- package/dist/hooks/index.d.ts +0 -2
- package/dist/hooks/store/index.d.ts +0 -12
- package/dist/hr-BuVBNZ4z.cjs +0 -1
- package/dist/hr-C3DFfYc9.js +0 -26
- package/dist/hu-Bs3B-9e3.js +0 -44
- package/dist/hu-CXrkHTYq.cjs +0 -1
- package/dist/hy-am-BLnv1pCz.cjs +0 -1
- package/dist/hy-am-CvHDFapi.js +0 -22
- package/dist/icon.vue_vue_type_script_setup_true_lang-D3QdcReY.js +0 -25
- package/dist/icon.vue_vue_type_script_setup_true_lang-DJbUD5AQ.cjs +0 -1
- package/dist/id-CO78nlWo.js +0 -22
- package/dist/id-DG0GoH6p.cjs +0 -1
- package/dist/index-0GtpyUBx.js +0 -64
- package/dist/index-2_PG24En.cjs +0 -1
- package/dist/index-3fW_aWMH.js +0 -1357
- package/dist/index-3oFTJubt.cjs +0 -1
- package/dist/index-4PPmJYKt.cjs +0 -51
- package/dist/index-B72l3XQl.js +0 -453
- package/dist/index-BB9rZNCd.cjs +0 -181
- package/dist/index-BCk0LJsg.cjs +0 -347
- package/dist/index-BIfS14i1.cjs +0 -1
- package/dist/index-BKDRMrcc.js +0 -84
- package/dist/index-BSLudrcT.cjs +0 -1
- package/dist/index-BVUz9lFN.cjs +0 -325
- package/dist/index-BizWKLWZ.js +0 -270
- package/dist/index-Bjj1uygU.js +0 -675
- package/dist/index-BsXm6fLD.js +0 -1493
- package/dist/index-BsyFZeFI.cjs +0 -1
- package/dist/index-C8eSqkwT.cjs +0 -1
- package/dist/index-CNOUPCih.js +0 -698
- package/dist/index-COyKmK8p.js +0 -1160
- package/dist/index-CR_tJiJv.js +0 -653
- package/dist/index-Cap7FkuS.cjs +0 -1
- package/dist/index-Ch9jeYmj.cjs +0 -1
- package/dist/index-CjcjqKkB.js +0 -571
- package/dist/index-Cphndmia.cjs +0 -214
- package/dist/index-CqirvAEP.js +0 -4
- package/dist/index-CtK_8YxJ.cjs +0 -10
- package/dist/index-CucdgcqX.cjs +0 -1
- package/dist/index-D0xByXxW.js +0 -88
- package/dist/index-D1ZL6feZ.js +0 -50484
- package/dist/index-D5WpEOUO.cjs +0 -351
- package/dist/index-DEPx91yu.cjs +0 -1
- package/dist/index-DMszow96.cjs +0 -110
- package/dist/index-DNeYX6HK.js +0 -87
- package/dist/index-DQ9Vb0QH.js +0 -759
- package/dist/index-DTzB2pWI.cjs +0 -159
- package/dist/index-DWCSzZfR.cjs +0 -80
- package/dist/index-DaRhLTx9.js +0 -1876
- package/dist/index-DgcFxYFp.js +0 -14
- package/dist/index-DiDIFoTk.js +0 -18
- package/dist/index-DiYy4kUz.js +0 -228
- package/dist/index-Dy65ngnp.js +0 -1633
- package/dist/index-DyWFUxn5.js +0 -11674
- package/dist/index-FUj4O0Wm.cjs +0 -1
- package/dist/index-HNPgHrkl.cjs +0 -1
- package/dist/index-Hdc_C4Xg.js +0 -389
- package/dist/index-JhxJizMR.js +0 -601
- package/dist/index-RdEhd65J.cjs +0 -65
- package/dist/index-SmoMBzHL.js +0 -104
- package/dist/index-WBW2xl-M.js +0 -432
- package/dist/index-XU85x6vz.cjs +0 -9
- package/dist/index-XUQ1VGQg.js +0 -44
- package/dist/index-YV7i1gyI.cjs +0 -1
- package/dist/index-g5ZjtbqH.cjs +0 -102
- package/dist/index-gA02bxwJ.js +0 -5947
- package/dist/index-ijn3b5rF.js +0 -56
- package/dist/index-jx5A2kt8.cjs +0 -850
- package/dist/index-sKJ91s0r.cjs +0 -1
- package/dist/index-tSmvj7CR.js +0 -1742
- package/dist/index-zYoSB4fa.cjs +0 -9
- package/dist/index-zyeRTxj7.cjs +0 -1
- package/dist/index.cjs +0 -1
- package/dist/index.js +0 -40
- package/dist/is-Bip0ggci.js +0 -30
- package/dist/is-C40R_fdL.cjs +0 -1
- package/dist/it-BFF7WzRR.js +0 -22
- package/dist/it-D7K-0U_k.cjs +0 -1
- package/dist/ja-4CWMghxy.js +0 -24
- package/dist/ja-CAXCMb11.cjs +0 -1
- package/dist/js.cookie-BH1G_HRi.cjs +0 -6
- package/dist/js.cookie-oHpRFPCO.js +0 -2157
- package/dist/ka-DrA_EMLP.js +0 -22
- package/dist/ka-JF7_8awE.cjs +0 -1
- package/dist/kk-Bv8yYeRk.cjs +0 -1
- package/dist/kk-QVPqpI2b.js +0 -22
- package/dist/km-BmycjYfj.cjs +0 -1
- package/dist/km-CBMnSWv_.js +0 -22
- package/dist/kn-CFiXt5hu.cjs +0 -1
- package/dist/kn-TECqDIit.js +0 -22
- package/dist/ko-DlQtUQ6r.cjs +0 -1
- package/dist/ko-MjoD8l4E.js +0 -24
- package/dist/ku-5MauiT2q.cjs +0 -1
- package/dist/ku-BfqBpklm.js +0 -32
- package/dist/lt-CkWoaAYB.cjs +0 -1
- package/dist/lt-D0cq_0yM.js +0 -26
- package/dist/lv-CVdYvxq8.js +0 -22
- package/dist/lv-CoTNe47-.cjs +0 -1
- package/dist/mk-DDuk7A3P.js +0 -22
- package/dist/mk-DVN6iYK_.cjs +0 -1
- package/dist/ml-CPI3tJe8.js +0 -22
- package/dist/ml-DnXJOqZ0.cjs +0 -1
- package/dist/mn-CNbMEx0y.js +0 -22
- package/dist/mn-DMIrWGkN.cjs +0 -1
- package/dist/modal-3Iw7tqyx.js +0 -85
- package/dist/modal-BPJM1Muh.js +0 -59
- package/dist/modal-BYw2WLwG.cjs +0 -1
- package/dist/modal-D4cRUUVN.js +0 -74
- package/dist/modal-DZRJyZfk.cjs +0 -1
- package/dist/modal-_fid8E1T.cjs +0 -1
- package/dist/ms-my-BcgYEtml.js +0 -22
- package/dist/ms-my-BoMZ8Hzl.cjs +0 -1
- package/dist/nb-BL5QmNEa.js +0 -22
- package/dist/nb-BdFW_T0n.cjs +0 -1
- package/dist/ne-9klrwaIE.js +0 -24
- package/dist/ne-VNPqdWFn.cjs +0 -1
- package/dist/nl-DBFNL8wC.cjs +0 -1
- package/dist/nl-DxyA21TA.js +0 -22
- package/dist/nl-be-Bo6vnbHY.cjs +0 -1
- package/dist/nl-be-Di_N4z2D.js +0 -22
- package/dist/outline-6Qt3qlWm.cjs +0 -1
- package/dist/outline-CNayBNNC.js +0 -54
- package/dist/pl-BbDu9Cfd.js +0 -47
- package/dist/pl-De2Dm_kD.cjs +0 -1
- package/dist/pt-BaTZB0XW.cjs +0 -1
- package/dist/pt-CKDbEzZ-.js +0 -22
- package/dist/pt-br-B_N58uu_.cjs +0 -1
- package/dist/pt-br-C1mqj5qX.js +0 -22
- package/dist/radio-DAOm4xuJ.js +0 -30
- package/dist/radio-Ducbqo4d.js +0 -37
- package/dist/radio-J90E17Sb.cjs +0 -1
- package/dist/radio-_GXvcBNP.cjs +0 -1
- package/dist/ro-Cnuhxb40.cjs +0 -1
- package/dist/ro-V1i-UrkP.js +0 -22
- package/dist/row-B28N4Nao.cjs +0 -1
- package/dist/row-BC69rVQW.js +0 -32
- package/dist/row-BX4lrSir.js +0 -33
- package/dist/row-BpXp0tC3.cjs +0 -1
- package/dist/row-CkyJ9pQh.js +0 -35
- package/dist/row-NNlPGZRG.cjs +0 -1
- package/dist/ru-CCbLARi0.js +0 -37
- package/dist/ru-_du5Xwu3.cjs +0 -1
- package/dist/script/src/check-compiled.d.ts +0 -1
- package/dist/select-BCX_FOhw.js +0 -36
- package/dist/select-Cnp3LxNc.cjs +0 -1
- package/dist/sign-BJBURbHk.js +0 -218
- package/dist/sign-Cn6LXVcp.cjs +0 -1
- package/dist/sk-DD18bemk.js +0 -53
- package/dist/sk-DRjgEzVO.cjs +0 -1
- package/dist/sl-CL8MnX8D.js +0 -56
- package/dist/sl-nqW7xzZa.cjs +0 -1
- package/dist/sr-BiP5qrT7.js +0 -29
- package/dist/sr-BnjILg54.cjs +0 -1
- package/dist/style.css +0 -1
- package/dist/styleView-BbQxI-Nr.js +0 -105
- package/dist/styleView-CF34Ddn9.cjs +0 -1
- package/dist/sv-6b7oq_fA.cjs +0 -1
- package/dist/sv-DxlAeqP5.js +0 -23
- package/dist/ta-CsfYqZQU.js +0 -22
- package/dist/ta-HTr6IFsZ.cjs +0 -1
- package/dist/th-C-CGWPlT.cjs +0 -1
- package/dist/th-CC5sx7mS.js +0 -22
- package/dist/tr-CCMwF27-.js +0 -22
- package/dist/tr-z7Blusoy.cjs +0 -1
- package/dist/tree.vue_vue_type_script_setup_true_lang-BjjL_VlR.cjs +0 -1
- package/dist/tree.vue_vue_type_script_setup_true_lang-BntCm43E.js +0 -242
- package/dist/ui/antd/button/button.vue.d.ts +0 -30
- package/dist/ui/antd/button/index.d.ts +0 -3
- package/dist/ui/antd/card/card.d.ts +0 -20
- package/dist/ui/antd/card/index.d.ts +0 -3
- package/dist/ui/antd/cascader/index.d.ts +0 -3
- package/dist/ui/antd/checkbox/index.d.ts +0 -3
- package/dist/ui/antd/col/col.d.ts +0 -20
- package/dist/ui/antd/col/index.d.ts +0 -3
- package/dist/ui/antd/color-picker/index.d.ts +0 -3
- package/dist/ui/antd/date-picker/datePicker.d.ts +0 -29
- package/dist/ui/antd/date-picker/index.d.ts +0 -3
- package/dist/ui/antd/form/form.vue.d.ts +0 -64
- package/dist/ui/antd/form/index.d.ts +0 -3
- package/dist/ui/antd/form-item/formItem.vue.d.ts +0 -18
- package/dist/ui/antd/form-item/index.d.ts +0 -3
- package/dist/ui/antd/index.cjs +0 -10
- package/dist/ui/antd/index.d.ts +0 -7
- package/dist/ui/antd/index.js +0 -3117
- package/dist/ui/antd/input/index.d.ts +0 -3
- package/dist/ui/antd/input-number/index.d.ts +0 -3
- package/dist/ui/antd/input-password/index.d.ts +0 -3
- package/dist/ui/antd/modal/index.d.ts +0 -3
- package/dist/ui/antd/modal/modal.vue.d.ts +0 -42
- package/dist/ui/antd/radio/index.d.ts +0 -3
- package/dist/ui/antd/row/index.d.ts +0 -3
- package/dist/ui/antd/row/row.d.ts +0 -20
- package/dist/ui/antd/select/index.d.ts +0 -3
- package/dist/ui/antd/slider/index.d.ts +0 -3
- package/dist/ui/antd/switch/index.d.ts +0 -3
- package/dist/ui/antd/textarea/index.d.ts +0 -3
- package/dist/ui/antd/time-picker/index.d.ts +0 -3
- package/dist/ui/antd/upload-file/index.d.ts +0 -3
- package/dist/ui/antd/upload-file/uploadFile.d.ts +0 -21
- package/dist/ui/antd/upload-image/index.d.ts +0 -3
- package/dist/ui/antd/upload-image/uploadImage.vue.d.ts +0 -28
- package/dist/ui/elementPlus/button/button.d.ts +0 -18
- package/dist/ui/elementPlus/button/index.d.ts +0 -3
- package/dist/ui/elementPlus/card/card.d.ts +0 -20
- package/dist/ui/elementPlus/card/index.d.ts +0 -3
- package/dist/ui/elementPlus/cascader/index.d.ts +0 -3
- package/dist/ui/elementPlus/checkbox/checkbox.d.ts +0 -7
- package/dist/ui/elementPlus/checkbox/index.d.ts +0 -3
- package/dist/ui/elementPlus/col/col.d.ts +0 -20
- package/dist/ui/elementPlus/col/index.d.ts +0 -3
- package/dist/ui/elementPlus/collapse/collapse.d.ts +0 -20
- package/dist/ui/elementPlus/collapse/index.d.ts +0 -3
- package/dist/ui/elementPlus/collapse-item/collapseItem.d.ts +0 -20
- package/dist/ui/elementPlus/collapse-item/index.d.ts +0 -3
- package/dist/ui/elementPlus/color-picker/index.d.ts +0 -3
- package/dist/ui/elementPlus/date-picker/index.d.ts +0 -3
- package/dist/ui/elementPlus/form/form.vue.d.ts +0 -62
- package/dist/ui/elementPlus/form/index.d.ts +0 -3
- package/dist/ui/elementPlus/formItem/formItem.vue.d.ts +0 -18
- package/dist/ui/elementPlus/formItem/index.d.ts +0 -3
- package/dist/ui/elementPlus/index.cjs +0 -1
- package/dist/ui/elementPlus/index.d.ts +0 -6
- package/dist/ui/elementPlus/index.js +0 -2719
- package/dist/ui/elementPlus/input/index.d.ts +0 -3
- package/dist/ui/elementPlus/input-number/index.d.ts +0 -3
- package/dist/ui/elementPlus/modal/index.d.ts +0 -3
- package/dist/ui/elementPlus/modal/modal.d.ts +0 -22
- package/dist/ui/elementPlus/radio/index.d.ts +0 -3
- package/dist/ui/elementPlus/radio/radio.d.ts +0 -7
- package/dist/ui/elementPlus/row/index.d.ts +0 -3
- package/dist/ui/elementPlus/row/row.d.ts +0 -20
- package/dist/ui/elementPlus/select/index.d.ts +0 -3
- package/dist/ui/elementPlus/select/select.d.ts +0 -7
- package/dist/ui/elementPlus/sign/index.d.ts +0 -3
- package/dist/ui/elementPlus/slider/index.d.ts +0 -3
- package/dist/ui/elementPlus/switch/index.d.ts +0 -3
- package/dist/ui/elementPlus/textarea/index.d.ts +0 -3
- package/dist/ui/elementPlus/upload-file/index.d.ts +0 -3
- package/dist/ui/elementPlus/upload-file/uploadFile.d.ts +0 -20
- package/dist/ui/elementPlus/upload-image/index.d.ts +0 -3
- package/dist/ui/elementPlus/upload-image/uploadImage.d.ts +0 -20
- package/dist/ui/index.d.ts +0 -3
- package/dist/ui/naiveUi/button/button.d.ts +0 -18
- package/dist/ui/naiveUi/button/index.d.ts +0 -3
- package/dist/ui/naiveUi/card/card.d.ts +0 -20
- package/dist/ui/naiveUi/card/index.d.ts +0 -3
- package/dist/ui/naiveUi/cascader/index.d.ts +0 -3
- package/dist/ui/naiveUi/checkbox/checkbox.d.ts +0 -6
- package/dist/ui/naiveUi/checkbox/index.d.ts +0 -3
- package/dist/ui/naiveUi/col/col.d.ts +0 -20
- package/dist/ui/naiveUi/col/index.d.ts +0 -3
- package/dist/ui/naiveUi/collapse/collapse.d.ts +0 -20
- package/dist/ui/naiveUi/collapse/index.d.ts +0 -3
- package/dist/ui/naiveUi/collapse-item/collapseItem.d.ts +0 -20
- package/dist/ui/naiveUi/collapse-item/index.d.ts +0 -3
- package/dist/ui/naiveUi/color-picker/index.d.ts +0 -3
- package/dist/ui/naiveUi/date-picker/index.d.ts +0 -3
- package/dist/ui/naiveUi/form/index.d.ts +0 -3
- package/dist/ui/naiveUi/form-item/formItem.vue.d.ts +0 -18
- package/dist/ui/naiveUi/form-item/index.d.ts +0 -3
- package/dist/ui/naiveUi/index.cjs +0 -1
- package/dist/ui/naiveUi/index.d.ts +0 -2
- package/dist/ui/naiveUi/index.js +0 -2349
- package/dist/ui/naiveUi/input/index.d.ts +0 -3
- package/dist/ui/naiveUi/input-number/index.d.ts +0 -3
- package/dist/ui/naiveUi/modal/index.d.ts +0 -3
- package/dist/ui/naiveUi/modal/modal.d.ts +0 -22
- package/dist/ui/naiveUi/radio/index.d.ts +0 -3
- package/dist/ui/naiveUi/radio/radio.d.ts +0 -6
- package/dist/ui/naiveUi/row/index.d.ts +0 -3
- package/dist/ui/naiveUi/row/row.d.ts +0 -20
- package/dist/ui/naiveUi/select/index.d.ts +0 -3
- package/dist/ui/naiveUi/slider/index.d.ts +0 -3
- package/dist/ui/naiveUi/switch/index.d.ts +0 -3
- package/dist/ui/naiveUi/upload-file/index.d.ts +0 -3
- package/dist/ui/naiveUi/upload-file/uploadFile.d.ts +0 -20
- package/dist/ui/naiveUi/upload-image/index.d.ts +0 -3
- package/dist/ui/naiveUi/upload-image/uploadImage.d.ts +0 -20
- package/dist/uk-Ba9IHfoi.js +0 -31
- package/dist/uk-Cc6k-QUE.cjs +0 -1
- package/dist/uploadFile-C3HY1r-N.js +0 -78
- package/dist/uploadFile-COrVkbrU.js +0 -70
- package/dist/uploadFile-CYDDVa_x.js +0 -76
- package/dist/uploadFile-Dv3Rsw56.cjs +0 -1
- package/dist/uploadFile-LCUznBf2.cjs +0 -1
- package/dist/uploadFile-eWBMdZ9d.cjs +0 -1
- package/dist/uploadImage-742IA7ei.js +0 -95
- package/dist/uploadImage-BQhv5ymq.cjs +0 -1
- package/dist/uploadImage-BXcN2FA_.cjs +0 -1
- package/dist/uploadImage-CnNnAISs.js +0 -84
- package/dist/uploadImage-Db_66X3C.js +0 -93
- package/dist/uploadImage-nwjqcVFU.cjs +0 -1
- package/dist/ur-C0tmW1hr.js +0 -22
- package/dist/ur-CPEUOWqh.cjs +0 -1
- package/dist/utils/__test__/common/debounce.test.d.ts +0 -1
- package/dist/utils/__test__/common/deepClone.test.d.ts +0 -1
- package/dist/utils/__test__/common/deepCompareAndModify.test.d.ts +0 -1
- package/dist/utils/__test__/common/deepEqual.test.d.ts +0 -1
- package/dist/utils/__test__/common/findSchemaById.test.d.ts +0 -1
- package/dist/utils/__test__/common/findSchemas.test.d.ts +0 -1
- package/dist/utils/__test__/common/getFormSchemas.test.d.ts +0 -1
- package/dist/utils/__test__/common/getMatchedById.test.d.ts +0 -1
- package/dist/utils/__test__/common/getUUID.test.d.ts +0 -1
- package/dist/utils/__test__/common/getValueByPath.test.d.ts +0 -1
- package/dist/utils/__test__/common/mapSchemas.test.d.ts +0 -1
- package/dist/utils/__test__/common/setValueByPath.test.d.ts +0 -1
- package/dist/utils/__test__/manager/pageManager.test.d.ts +0 -1
- package/dist/utils/__test__/manager/revoke.test.d.ts +0 -1
- package/dist/utils/common/common.d.ts +0 -7
- package/dist/utils/common/component.d.ts +0 -7
- package/dist/utils/common/data.d.ts +0 -119
- package/dist/utils/common/eventBus.d.ts +0 -2
- package/dist/utils/common/index.d.ts +0 -5
- package/dist/utils/common/string.d.ts +0 -11
- package/dist/utils/index.d.ts +0 -2
- package/dist/utils/manager/index.d.ts +0 -3
- package/dist/utils/manager/pageManager.d.ts +0 -26
- package/dist/utils/manager/pluginManager.d.ts +0 -379
- package/dist/utils/manager/revoke.d.ts +0 -40
- package/dist/utils-BM69FtWE.js +0 -66
- package/dist/utils-zEcOzoWV.cjs +0 -1
- package/dist/vi-Dyfq5Qgz.cjs +0 -1
- package/dist/vi-j1PGHz1o.js +0 -22
- package/dist/vuedraggable.umd-BqhSJIAi.cjs +0 -10
- package/dist/vuedraggable.umd-D2S7Eo7p.js +0 -4425
- package/dist/zh-cn-BKQHxHe9.cjs +0 -1
- package/dist/zh-cn-BYui8_WB.js +0 -25
- package/dist/zh-hk-QZ4a6JLR.js +0 -25
- package/dist/zh-hk-hNFRxlrX.cjs +0 -1
- package/dist/zh-tw-BT16WIrT.js +0 -25
- package/dist/zh-tw-SGOlw9Wo.cjs +0 -1
- /package/{dist → packages/core}/theme/var.less +0 -0
- /package/{shims-vue.d.ts → packages/epic-designer/shims-vue.d.ts} +0 -0
- /package/{tsconfig.json → packages/epic-designer/tsconfig.json} +0 -0
package/dist/ui/antd/index.js
DELETED
|
@@ -1,3117 +0,0 @@
|
|
|
1
|
-
import { pluginManager as i } from "epic-designer-gold";
|
|
2
|
-
import c from "dayjs";
|
|
3
|
-
import { version as s } from "ant-design-vue";
|
|
4
|
-
const d = {
|
|
5
|
-
component: async () => (await import("ant-design-vue")).Input,
|
|
6
|
-
groupName: "表单",
|
|
7
|
-
icon: "icon--epic--border-color-outline-rounded",
|
|
8
|
-
sort: 700,
|
|
9
|
-
defaultSchema: {
|
|
10
|
-
label: "输入框",
|
|
11
|
-
type: "input",
|
|
12
|
-
field: "input",
|
|
13
|
-
input: !0,
|
|
14
|
-
componentProps: {
|
|
15
|
-
placeholder: "请输入"
|
|
16
|
-
}
|
|
17
|
-
},
|
|
18
|
-
config: {
|
|
19
|
-
attribute: [
|
|
20
|
-
{
|
|
21
|
-
label: "字段名",
|
|
22
|
-
type: "input",
|
|
23
|
-
field: "field"
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
label: "标题",
|
|
27
|
-
type: "input",
|
|
28
|
-
field: "label"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
label: "占位内容",
|
|
32
|
-
type: "input",
|
|
33
|
-
field: "componentProps.placeholder"
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
label: "默认值",
|
|
37
|
-
type: "input",
|
|
38
|
-
field: "componentProps.defaultValue",
|
|
39
|
-
componentProps: {
|
|
40
|
-
placeholder: "请输入"
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
label: "输入类型",
|
|
45
|
-
type: "select",
|
|
46
|
-
componentProps: {
|
|
47
|
-
placeholder: "请选择",
|
|
48
|
-
allowClear: !0,
|
|
49
|
-
options: [
|
|
50
|
-
{
|
|
51
|
-
label: "text",
|
|
52
|
-
value: "text"
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
label: "number",
|
|
56
|
-
value: "number"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
label: "password",
|
|
60
|
-
value: "password"
|
|
61
|
-
}
|
|
62
|
-
]
|
|
63
|
-
},
|
|
64
|
-
field: "componentProps.type"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
label: "尺寸",
|
|
68
|
-
type: "select",
|
|
69
|
-
componentProps: {
|
|
70
|
-
placeholder: "请选择",
|
|
71
|
-
allowClear: !0,
|
|
72
|
-
options: [
|
|
73
|
-
{
|
|
74
|
-
label: "大号",
|
|
75
|
-
value: "large"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
label: "中等",
|
|
79
|
-
value: "middle"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
label: "小型",
|
|
83
|
-
value: "small"
|
|
84
|
-
}
|
|
85
|
-
]
|
|
86
|
-
},
|
|
87
|
-
field: "componentProps.size"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
label: "无边框",
|
|
91
|
-
type: "switch",
|
|
92
|
-
componentProps: {
|
|
93
|
-
checkedValue: !1,
|
|
94
|
-
unCheckedValue: !0
|
|
95
|
-
},
|
|
96
|
-
field: "componentProps.bordered"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
label: "最大输入长度",
|
|
100
|
-
type: "number",
|
|
101
|
-
field: "componentProps.maxlength",
|
|
102
|
-
componentProps: {
|
|
103
|
-
placeholder: "请输入"
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
label: "展示字数",
|
|
108
|
-
type: "switch",
|
|
109
|
-
field: "componentProps.showCount"
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
label: "可清空",
|
|
113
|
-
type: "switch",
|
|
114
|
-
field: "componentProps.allowClear"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
label: "禁用",
|
|
118
|
-
type: "switch",
|
|
119
|
-
field: "componentProps.disabled"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
label: "隐藏",
|
|
123
|
-
type: "switch",
|
|
124
|
-
field: "componentProps.hidden"
|
|
125
|
-
},
|
|
126
|
-
{
|
|
127
|
-
label: "表单校验",
|
|
128
|
-
type: "ERuleEditor",
|
|
129
|
-
layout: "vertical",
|
|
130
|
-
field: "rules",
|
|
131
|
-
describe: "校验规则需要配合表单使用"
|
|
132
|
-
}
|
|
133
|
-
],
|
|
134
|
-
event: [
|
|
135
|
-
{
|
|
136
|
-
type: "input",
|
|
137
|
-
describe: "输入值时"
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
type: "change",
|
|
141
|
-
describe: "值修改时"
|
|
142
|
-
},
|
|
143
|
-
{
|
|
144
|
-
type: "pressEnter",
|
|
145
|
-
describe: "按下回车时"
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
type: "focus",
|
|
149
|
-
describe: "获取焦点时"
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
type: "blur",
|
|
153
|
-
describe: "失去焦点时"
|
|
154
|
-
}
|
|
155
|
-
],
|
|
156
|
-
action: [
|
|
157
|
-
{
|
|
158
|
-
type: "focus",
|
|
159
|
-
describe: "使输入框获取焦点"
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
type: "blur",
|
|
163
|
-
describe: "使输入框失去焦点"
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
type: "select",
|
|
167
|
-
describe: "选中输入框中的文字"
|
|
168
|
-
}
|
|
169
|
-
]
|
|
170
|
-
},
|
|
171
|
-
bindModel: "value"
|
|
172
|
-
}, m = {
|
|
173
|
-
component: async () => (await import("ant-design-vue")).Textarea,
|
|
174
|
-
groupName: "表单",
|
|
175
|
-
icon: "icon--epic--edit-square-outline-rounded",
|
|
176
|
-
sort: 705,
|
|
177
|
-
defaultSchema: {
|
|
178
|
-
label: "文本域",
|
|
179
|
-
type: "textarea",
|
|
180
|
-
field: "textarea",
|
|
181
|
-
input: !0,
|
|
182
|
-
componentProps: {
|
|
183
|
-
placeholder: "请输入"
|
|
184
|
-
}
|
|
185
|
-
},
|
|
186
|
-
config: {
|
|
187
|
-
attribute: [
|
|
188
|
-
{
|
|
189
|
-
label: "字段名",
|
|
190
|
-
type: "input",
|
|
191
|
-
field: "field"
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
label: "标题",
|
|
195
|
-
type: "input",
|
|
196
|
-
field: "label"
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
label: "默认值",
|
|
200
|
-
type: "textarea",
|
|
201
|
-
field: "componentProps.defaultValue",
|
|
202
|
-
componentProps: {
|
|
203
|
-
placeholder: "请输入"
|
|
204
|
-
}
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
label: "占位内容",
|
|
208
|
-
type: "input",
|
|
209
|
-
field: "componentProps.placeholder"
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
label: "最小行数",
|
|
213
|
-
type: "number",
|
|
214
|
-
field: "componentProps.autoSize.minRows",
|
|
215
|
-
componentProps: {
|
|
216
|
-
placeholder: "请输入"
|
|
217
|
-
}
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
label: "最大行数",
|
|
221
|
-
type: "number",
|
|
222
|
-
field: "componentProps.autoSize.maxRows",
|
|
223
|
-
componentProps: {
|
|
224
|
-
placeholder: "请输入"
|
|
225
|
-
}
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
label: "尺寸",
|
|
229
|
-
type: "select",
|
|
230
|
-
componentProps: {
|
|
231
|
-
placeholder: "请选择",
|
|
232
|
-
allowClear: !0,
|
|
233
|
-
options: [
|
|
234
|
-
{
|
|
235
|
-
label: "大号",
|
|
236
|
-
value: "large"
|
|
237
|
-
},
|
|
238
|
-
{
|
|
239
|
-
label: "中等",
|
|
240
|
-
value: "middle"
|
|
241
|
-
},
|
|
242
|
-
{
|
|
243
|
-
label: "小型",
|
|
244
|
-
value: "small"
|
|
245
|
-
}
|
|
246
|
-
]
|
|
247
|
-
},
|
|
248
|
-
field: "componentProps.size"
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
label: "最大输入长度",
|
|
252
|
-
type: "number",
|
|
253
|
-
field: "componentProps.maxLength",
|
|
254
|
-
componentProps: {
|
|
255
|
-
placeholder: "请输入"
|
|
256
|
-
}
|
|
257
|
-
},
|
|
258
|
-
{
|
|
259
|
-
label: "无边框",
|
|
260
|
-
type: "switch",
|
|
261
|
-
componentProps: {
|
|
262
|
-
checkedValue: !1,
|
|
263
|
-
unCheckedValue: !0
|
|
264
|
-
},
|
|
265
|
-
field: "componentProps.bordered"
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
label: "统计字数",
|
|
269
|
-
type: "switch",
|
|
270
|
-
field: "componentProps.showCount"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
label: "可清除",
|
|
274
|
-
type: "switch",
|
|
275
|
-
field: "componentProps.allowClear"
|
|
276
|
-
},
|
|
277
|
-
{
|
|
278
|
-
label: "禁用",
|
|
279
|
-
type: "switch",
|
|
280
|
-
field: "componentProps.disabled"
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
label: "隐藏",
|
|
284
|
-
type: "switch",
|
|
285
|
-
field: "componentProps.hidden"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
label: "表单校验",
|
|
289
|
-
type: "ERuleEditor",
|
|
290
|
-
layout: "vertical",
|
|
291
|
-
field: "rules",
|
|
292
|
-
describe: "校验规则需要配合表单使用"
|
|
293
|
-
}
|
|
294
|
-
],
|
|
295
|
-
event: [
|
|
296
|
-
{
|
|
297
|
-
type: "input",
|
|
298
|
-
describe: "输入值"
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
type: "change",
|
|
302
|
-
describe: "值修改"
|
|
303
|
-
},
|
|
304
|
-
{
|
|
305
|
-
type: "pressEnter",
|
|
306
|
-
describe: "按下回车的回调"
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
type: "focus",
|
|
310
|
-
describe: "获取焦点"
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
type: "blur",
|
|
314
|
-
describe: "失去焦点"
|
|
315
|
-
}
|
|
316
|
-
],
|
|
317
|
-
action: [
|
|
318
|
-
{
|
|
319
|
-
type: "focus",
|
|
320
|
-
describe: "使 input 获取焦点"
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
type: "blur",
|
|
324
|
-
describe: "使 input 失去焦点"
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
type: "select",
|
|
328
|
-
describe: "选中 input 中的文字"
|
|
329
|
-
}
|
|
330
|
-
]
|
|
331
|
-
},
|
|
332
|
-
bindModel: "value"
|
|
333
|
-
}, b = {
|
|
334
|
-
component: async () => (await import("ant-design-vue")).InputNumber,
|
|
335
|
-
groupName: "表单",
|
|
336
|
-
icon: "icon--epic--123-rounded",
|
|
337
|
-
sort: 710,
|
|
338
|
-
defaultSchema: {
|
|
339
|
-
label: "数字输入框",
|
|
340
|
-
type: "number",
|
|
341
|
-
field: "number",
|
|
342
|
-
input: !0,
|
|
343
|
-
componentProps: {
|
|
344
|
-
style: { width: "100%" },
|
|
345
|
-
placeholder: "请输入"
|
|
346
|
-
}
|
|
347
|
-
},
|
|
348
|
-
config: {
|
|
349
|
-
attribute: [
|
|
350
|
-
{
|
|
351
|
-
label: "字段名",
|
|
352
|
-
type: "input",
|
|
353
|
-
field: "field"
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
label: "标题",
|
|
357
|
-
type: "input",
|
|
358
|
-
field: "label"
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
label: "默认值",
|
|
362
|
-
type: "number",
|
|
363
|
-
field: "componentProps.defaultValue",
|
|
364
|
-
componentProps: {
|
|
365
|
-
placeholder: "请输入",
|
|
366
|
-
size: "middle"
|
|
367
|
-
}
|
|
368
|
-
},
|
|
369
|
-
{
|
|
370
|
-
label: "占位内容",
|
|
371
|
-
type: "input",
|
|
372
|
-
field: "componentProps.placeholder"
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
label: "尺寸",
|
|
376
|
-
type: "select",
|
|
377
|
-
componentProps: {
|
|
378
|
-
placeholder: "请选择",
|
|
379
|
-
allowClear: !0,
|
|
380
|
-
options: [
|
|
381
|
-
{
|
|
382
|
-
label: "大号",
|
|
383
|
-
value: "large"
|
|
384
|
-
},
|
|
385
|
-
{
|
|
386
|
-
label: "中等",
|
|
387
|
-
value: "middle"
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
label: "小型",
|
|
391
|
-
value: "small"
|
|
392
|
-
}
|
|
393
|
-
]
|
|
394
|
-
},
|
|
395
|
-
field: "componentProps.size"
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
label: "键盘快捷行为",
|
|
399
|
-
type: "switch",
|
|
400
|
-
field: "componentProps.keyboard"
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
label: "最大值",
|
|
404
|
-
type: "number",
|
|
405
|
-
field: "componentProps.max",
|
|
406
|
-
componentProps: {
|
|
407
|
-
placeholder: "请输入"
|
|
408
|
-
}
|
|
409
|
-
},
|
|
410
|
-
{
|
|
411
|
-
label: "最小值",
|
|
412
|
-
type: "number",
|
|
413
|
-
field: "componentProps.min",
|
|
414
|
-
componentProps: {
|
|
415
|
-
placeholder: "请输入"
|
|
416
|
-
}
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
label: "精度",
|
|
420
|
-
type: "number",
|
|
421
|
-
field: "componentProps.precision",
|
|
422
|
-
componentProps: {
|
|
423
|
-
placeholder: "请输入"
|
|
424
|
-
}
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
label: "步长",
|
|
428
|
-
type: "number",
|
|
429
|
-
field: "componentProps.step",
|
|
430
|
-
componentProps: {
|
|
431
|
-
placeholder: "请输入"
|
|
432
|
-
}
|
|
433
|
-
},
|
|
434
|
-
{
|
|
435
|
-
label: "字符模式",
|
|
436
|
-
type: "switch",
|
|
437
|
-
field: "componentProps.stringMode"
|
|
438
|
-
},
|
|
439
|
-
{
|
|
440
|
-
label: "无边框",
|
|
441
|
-
type: "switch",
|
|
442
|
-
componentProps: {
|
|
443
|
-
checkedValue: !1,
|
|
444
|
-
unCheckedValue: !0
|
|
445
|
-
},
|
|
446
|
-
field: "componentProps.bordered"
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
label: "可清空",
|
|
450
|
-
type: "switch",
|
|
451
|
-
field: "componentProps.allowClear"
|
|
452
|
-
},
|
|
453
|
-
{
|
|
454
|
-
label: "禁用",
|
|
455
|
-
type: "switch",
|
|
456
|
-
field: "componentProps.disabled"
|
|
457
|
-
},
|
|
458
|
-
{
|
|
459
|
-
label: "隐藏",
|
|
460
|
-
type: "switch",
|
|
461
|
-
field: "componentProps.hidden"
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
label: "表单校验",
|
|
465
|
-
type: "ERuleEditor",
|
|
466
|
-
layout: "vertical",
|
|
467
|
-
field: "rules",
|
|
468
|
-
describe: "校验规则需要配合表单使用",
|
|
469
|
-
componentProps: {
|
|
470
|
-
ruleType: "number"
|
|
471
|
-
}
|
|
472
|
-
}
|
|
473
|
-
],
|
|
474
|
-
event: [
|
|
475
|
-
{
|
|
476
|
-
type: "input",
|
|
477
|
-
describe: "输入值"
|
|
478
|
-
},
|
|
479
|
-
{
|
|
480
|
-
type: "change",
|
|
481
|
-
describe: "值修改"
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
type: "pressEnter",
|
|
485
|
-
describe: "按下回车的回调"
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
type: "focus",
|
|
489
|
-
describe: "获取焦点"
|
|
490
|
-
},
|
|
491
|
-
{
|
|
492
|
-
type: "blur",
|
|
493
|
-
describe: "失去焦点"
|
|
494
|
-
}
|
|
495
|
-
],
|
|
496
|
-
action: [
|
|
497
|
-
{
|
|
498
|
-
type: "focus",
|
|
499
|
-
describe: "使 input 获取焦点"
|
|
500
|
-
},
|
|
501
|
-
{
|
|
502
|
-
type: "blur",
|
|
503
|
-
describe: "使 input 失去焦点"
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
type: "select",
|
|
507
|
-
describe: "选中 input 中的文字"
|
|
508
|
-
}
|
|
509
|
-
]
|
|
510
|
-
},
|
|
511
|
-
bindModel: "value"
|
|
512
|
-
}, u = {
|
|
513
|
-
component: async () => (await import("ant-design-vue")).InputPassword,
|
|
514
|
-
groupName: "表单",
|
|
515
|
-
icon: "icon--epic--lock-outline",
|
|
516
|
-
sort: 720,
|
|
517
|
-
defaultSchema: {
|
|
518
|
-
label: "密码输入框",
|
|
519
|
-
type: "password",
|
|
520
|
-
field: "password",
|
|
521
|
-
input: !0,
|
|
522
|
-
componentProps: {
|
|
523
|
-
placeholder: "请输入"
|
|
524
|
-
}
|
|
525
|
-
},
|
|
526
|
-
config: {
|
|
527
|
-
attribute: [
|
|
528
|
-
{
|
|
529
|
-
label: "字段名",
|
|
530
|
-
type: "input",
|
|
531
|
-
field: "field"
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
label: "标题",
|
|
535
|
-
type: "input",
|
|
536
|
-
field: "label"
|
|
537
|
-
},
|
|
538
|
-
{
|
|
539
|
-
label: "占位内容",
|
|
540
|
-
type: "input",
|
|
541
|
-
field: "componentProps.placeholder"
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
label: "尺寸",
|
|
545
|
-
type: "select",
|
|
546
|
-
componentProps: {
|
|
547
|
-
placeholder: "请选择",
|
|
548
|
-
allowClear: !0,
|
|
549
|
-
options: [
|
|
550
|
-
{
|
|
551
|
-
label: "大号",
|
|
552
|
-
value: "large"
|
|
553
|
-
},
|
|
554
|
-
{
|
|
555
|
-
label: "中等",
|
|
556
|
-
value: "middle"
|
|
557
|
-
},
|
|
558
|
-
{
|
|
559
|
-
label: "小型",
|
|
560
|
-
value: "small"
|
|
561
|
-
}
|
|
562
|
-
]
|
|
563
|
-
},
|
|
564
|
-
field: "componentProps.size"
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
label: "无边框",
|
|
568
|
-
type: "switch",
|
|
569
|
-
componentProps: {
|
|
570
|
-
checkedValue: !1,
|
|
571
|
-
unCheckedValue: !0
|
|
572
|
-
},
|
|
573
|
-
field: "componentProps.bordered"
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
label: "最大输入长度",
|
|
577
|
-
type: "number",
|
|
578
|
-
field: "componentProps.maxLength",
|
|
579
|
-
componentProps: {
|
|
580
|
-
placeholder: "请输入"
|
|
581
|
-
}
|
|
582
|
-
},
|
|
583
|
-
{
|
|
584
|
-
label: "统计字数",
|
|
585
|
-
type: "switch",
|
|
586
|
-
field: "componentProps.showCount"
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
label: "密码可见",
|
|
590
|
-
type: "switch",
|
|
591
|
-
field: "componentProps.visible"
|
|
592
|
-
},
|
|
593
|
-
{
|
|
594
|
-
label: "隐藏切换按钮",
|
|
595
|
-
type: "switch",
|
|
596
|
-
componentProps: {
|
|
597
|
-
checkedValue: !1,
|
|
598
|
-
unCheckedValue: !0
|
|
599
|
-
},
|
|
600
|
-
field: "componentProps.visibilityToggle"
|
|
601
|
-
},
|
|
602
|
-
{
|
|
603
|
-
label: "可清空",
|
|
604
|
-
type: "switch",
|
|
605
|
-
field: "componentProps.allowClear"
|
|
606
|
-
},
|
|
607
|
-
{
|
|
608
|
-
label: "禁用",
|
|
609
|
-
type: "switch",
|
|
610
|
-
field: "componentProps.disabled"
|
|
611
|
-
},
|
|
612
|
-
{
|
|
613
|
-
label: "隐藏",
|
|
614
|
-
type: "switch",
|
|
615
|
-
field: "componentProps.hidden"
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
label: "表单校验",
|
|
619
|
-
type: "ERuleEditor",
|
|
620
|
-
layout: "vertical",
|
|
621
|
-
field: "rules",
|
|
622
|
-
describe: "校验规则需要配合表单使用"
|
|
623
|
-
}
|
|
624
|
-
],
|
|
625
|
-
event: [
|
|
626
|
-
{
|
|
627
|
-
type: "input",
|
|
628
|
-
describe: "输入值"
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
type: "change",
|
|
632
|
-
describe: "值修改"
|
|
633
|
-
},
|
|
634
|
-
{
|
|
635
|
-
type: "pressEnter",
|
|
636
|
-
describe: "按下回车的回调"
|
|
637
|
-
},
|
|
638
|
-
{
|
|
639
|
-
type: "focus",
|
|
640
|
-
describe: "获取焦点"
|
|
641
|
-
},
|
|
642
|
-
{
|
|
643
|
-
type: "blur",
|
|
644
|
-
describe: "失去焦点"
|
|
645
|
-
}
|
|
646
|
-
],
|
|
647
|
-
action: [
|
|
648
|
-
{
|
|
649
|
-
type: "focus",
|
|
650
|
-
describe: "使 input 获取焦点"
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
type: "blur",
|
|
654
|
-
describe: "使 input 失去焦点"
|
|
655
|
-
},
|
|
656
|
-
{
|
|
657
|
-
type: "select",
|
|
658
|
-
describe: "选中 input 中的文字"
|
|
659
|
-
}
|
|
660
|
-
]
|
|
661
|
-
},
|
|
662
|
-
bindModel: "value"
|
|
663
|
-
}, h = {
|
|
664
|
-
component: async () => (await import("ant-design-vue")).RadioGroup,
|
|
665
|
-
groupName: "表单",
|
|
666
|
-
icon: "icon--epic--radio-button-checked-outline",
|
|
667
|
-
sort: 850,
|
|
668
|
-
defaultSchema: {
|
|
669
|
-
label: "单选框",
|
|
670
|
-
type: "radio",
|
|
671
|
-
field: "radio",
|
|
672
|
-
input: !0,
|
|
673
|
-
componentProps: {
|
|
674
|
-
options: [
|
|
675
|
-
{
|
|
676
|
-
label: "选项1",
|
|
677
|
-
value: "选项1"
|
|
678
|
-
},
|
|
679
|
-
{
|
|
680
|
-
label: "选项2",
|
|
681
|
-
value: "选项2"
|
|
682
|
-
}
|
|
683
|
-
]
|
|
684
|
-
}
|
|
685
|
-
},
|
|
686
|
-
config: {
|
|
687
|
-
attribute: [
|
|
688
|
-
{
|
|
689
|
-
label: "字段名",
|
|
690
|
-
type: "input",
|
|
691
|
-
field: "field"
|
|
692
|
-
},
|
|
693
|
-
{
|
|
694
|
-
label: "标题",
|
|
695
|
-
type: "input",
|
|
696
|
-
field: "label"
|
|
697
|
-
},
|
|
698
|
-
{
|
|
699
|
-
label: "默认值",
|
|
700
|
-
type: "radio",
|
|
701
|
-
field: "componentProps.defaultValue"
|
|
702
|
-
},
|
|
703
|
-
{
|
|
704
|
-
label: "尺寸",
|
|
705
|
-
type: "select",
|
|
706
|
-
componentProps: {
|
|
707
|
-
placeholder: "请选择",
|
|
708
|
-
allowClear: !0,
|
|
709
|
-
options: [
|
|
710
|
-
{
|
|
711
|
-
label: "大号",
|
|
712
|
-
value: "large"
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
label: "中等",
|
|
716
|
-
value: "middle"
|
|
717
|
-
},
|
|
718
|
-
{
|
|
719
|
-
label: "小型",
|
|
720
|
-
value: "small"
|
|
721
|
-
}
|
|
722
|
-
]
|
|
723
|
-
},
|
|
724
|
-
field: "componentProps.size"
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
label: "按钮样式",
|
|
728
|
-
type: "switch",
|
|
729
|
-
componentProps: {
|
|
730
|
-
checkedValue: "button",
|
|
731
|
-
unCheckedValue: "default"
|
|
732
|
-
},
|
|
733
|
-
field: "componentProps.optionType"
|
|
734
|
-
},
|
|
735
|
-
{
|
|
736
|
-
label: "禁用",
|
|
737
|
-
type: "switch",
|
|
738
|
-
field: "componentProps.disabled"
|
|
739
|
-
},
|
|
740
|
-
{
|
|
741
|
-
label: "隐藏",
|
|
742
|
-
type: "switch",
|
|
743
|
-
field: "componentProps.hidden"
|
|
744
|
-
},
|
|
745
|
-
{
|
|
746
|
-
label: "选项管理",
|
|
747
|
-
type: "EOptionsEditor",
|
|
748
|
-
layout: "vertical",
|
|
749
|
-
field: "componentProps.options"
|
|
750
|
-
},
|
|
751
|
-
{
|
|
752
|
-
label: "表单校验",
|
|
753
|
-
type: "ERuleEditor",
|
|
754
|
-
layout: "vertical",
|
|
755
|
-
field: "rules",
|
|
756
|
-
describe: "校验规则需要配合表单使用"
|
|
757
|
-
}
|
|
758
|
-
],
|
|
759
|
-
event: [
|
|
760
|
-
{
|
|
761
|
-
type: "change",
|
|
762
|
-
describe: "值变化时"
|
|
763
|
-
}
|
|
764
|
-
]
|
|
765
|
-
},
|
|
766
|
-
bindModel: "value"
|
|
767
|
-
}, f = {
|
|
768
|
-
component: async () => (await import("ant-design-vue")).CheckboxGroup,
|
|
769
|
-
groupName: "表单",
|
|
770
|
-
icon: "icon--epic--dialogs-outline-rounded",
|
|
771
|
-
sort: 860,
|
|
772
|
-
defaultSchema: {
|
|
773
|
-
label: "多选框",
|
|
774
|
-
type: "checkbox",
|
|
775
|
-
field: "checkbox",
|
|
776
|
-
input: !0,
|
|
777
|
-
componentProps: {
|
|
778
|
-
options: [
|
|
779
|
-
{
|
|
780
|
-
label: "选项1",
|
|
781
|
-
value: "选项1"
|
|
782
|
-
},
|
|
783
|
-
{
|
|
784
|
-
label: "选项2",
|
|
785
|
-
value: "选项2"
|
|
786
|
-
}
|
|
787
|
-
]
|
|
788
|
-
}
|
|
789
|
-
},
|
|
790
|
-
config: {
|
|
791
|
-
attribute: [
|
|
792
|
-
{
|
|
793
|
-
label: "字段名",
|
|
794
|
-
type: "input",
|
|
795
|
-
field: "field"
|
|
796
|
-
},
|
|
797
|
-
{
|
|
798
|
-
label: "标题",
|
|
799
|
-
type: "input",
|
|
800
|
-
field: "label"
|
|
801
|
-
},
|
|
802
|
-
{
|
|
803
|
-
label: "默认值",
|
|
804
|
-
type: "checkbox",
|
|
805
|
-
field: "componentProps.defaultValue"
|
|
806
|
-
},
|
|
807
|
-
{
|
|
808
|
-
label: "尺寸",
|
|
809
|
-
type: "select",
|
|
810
|
-
componentProps: {
|
|
811
|
-
placeholder: "请选择",
|
|
812
|
-
allowClear: !0,
|
|
813
|
-
options: [
|
|
814
|
-
{
|
|
815
|
-
label: "大号",
|
|
816
|
-
value: "large"
|
|
817
|
-
},
|
|
818
|
-
{
|
|
819
|
-
label: "中等",
|
|
820
|
-
value: "middle"
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
label: "小型",
|
|
824
|
-
value: "small"
|
|
825
|
-
}
|
|
826
|
-
]
|
|
827
|
-
},
|
|
828
|
-
field: "componentProps.size"
|
|
829
|
-
},
|
|
830
|
-
{
|
|
831
|
-
label: "禁用",
|
|
832
|
-
type: "switch",
|
|
833
|
-
field: "componentProps.disabled"
|
|
834
|
-
},
|
|
835
|
-
{
|
|
836
|
-
label: "隐藏",
|
|
837
|
-
type: "switch",
|
|
838
|
-
field: "componentProps.hidden"
|
|
839
|
-
},
|
|
840
|
-
{
|
|
841
|
-
label: "选项管理",
|
|
842
|
-
type: "EOptionsEditor",
|
|
843
|
-
layout: "vertical",
|
|
844
|
-
field: "componentProps.options"
|
|
845
|
-
},
|
|
846
|
-
{
|
|
847
|
-
label: "表单校验",
|
|
848
|
-
type: "ERuleEditor",
|
|
849
|
-
layout: "vertical",
|
|
850
|
-
field: "rules",
|
|
851
|
-
describe: "校验规则需要配合表单使用",
|
|
852
|
-
componentProps: {
|
|
853
|
-
ruleType: "array"
|
|
854
|
-
}
|
|
855
|
-
}
|
|
856
|
-
],
|
|
857
|
-
event: [
|
|
858
|
-
{
|
|
859
|
-
type: "change",
|
|
860
|
-
describe: "值变化时"
|
|
861
|
-
}
|
|
862
|
-
]
|
|
863
|
-
},
|
|
864
|
-
bindModel: "value"
|
|
865
|
-
}, y = {
|
|
866
|
-
component: async () => (await import("ant-design-vue")).Select,
|
|
867
|
-
groupName: "表单",
|
|
868
|
-
icon: "icon--epic--select",
|
|
869
|
-
sort: 900,
|
|
870
|
-
defaultSchema: {
|
|
871
|
-
label: "选择框",
|
|
872
|
-
type: "select",
|
|
873
|
-
field: "select",
|
|
874
|
-
input: !0,
|
|
875
|
-
componentProps: {
|
|
876
|
-
options: [
|
|
877
|
-
{
|
|
878
|
-
label: "选项1",
|
|
879
|
-
value: "选项1"
|
|
880
|
-
},
|
|
881
|
-
{
|
|
882
|
-
label: "选项2",
|
|
883
|
-
value: "选项2"
|
|
884
|
-
}
|
|
885
|
-
],
|
|
886
|
-
placeholder: "请选择"
|
|
887
|
-
}
|
|
888
|
-
},
|
|
889
|
-
config: {
|
|
890
|
-
attribute: [
|
|
891
|
-
{
|
|
892
|
-
label: "字段名",
|
|
893
|
-
type: "input",
|
|
894
|
-
field: "field"
|
|
895
|
-
},
|
|
896
|
-
{
|
|
897
|
-
label: "标题",
|
|
898
|
-
type: "input",
|
|
899
|
-
field: "label"
|
|
900
|
-
},
|
|
901
|
-
{
|
|
902
|
-
label: "占位内容",
|
|
903
|
-
type: "input",
|
|
904
|
-
field: "componentProps.placeholder",
|
|
905
|
-
componentProps: {
|
|
906
|
-
placeholder: "请输入"
|
|
907
|
-
}
|
|
908
|
-
},
|
|
909
|
-
{
|
|
910
|
-
label: "默认值",
|
|
911
|
-
type: "select",
|
|
912
|
-
field: "componentProps.defaultValue"
|
|
913
|
-
},
|
|
914
|
-
{
|
|
915
|
-
label: "尺寸",
|
|
916
|
-
type: "select",
|
|
917
|
-
componentProps: {
|
|
918
|
-
placeholder: "请选择",
|
|
919
|
-
allowClear: !0,
|
|
920
|
-
options: [
|
|
921
|
-
{
|
|
922
|
-
label: "大号",
|
|
923
|
-
value: "large"
|
|
924
|
-
},
|
|
925
|
-
{
|
|
926
|
-
label: "中等",
|
|
927
|
-
value: "middle"
|
|
928
|
-
},
|
|
929
|
-
{
|
|
930
|
-
label: "小型",
|
|
931
|
-
value: "small"
|
|
932
|
-
}
|
|
933
|
-
]
|
|
934
|
-
},
|
|
935
|
-
field: "componentProps.size"
|
|
936
|
-
},
|
|
937
|
-
{
|
|
938
|
-
label: "弹窗高度",
|
|
939
|
-
type: "number",
|
|
940
|
-
componentProps: {
|
|
941
|
-
placeholder: "请输入"
|
|
942
|
-
},
|
|
943
|
-
field: "componentProps.listHeight"
|
|
944
|
-
},
|
|
945
|
-
{
|
|
946
|
-
label: "模式",
|
|
947
|
-
type: "select",
|
|
948
|
-
componentProps: {
|
|
949
|
-
options: [
|
|
950
|
-
{
|
|
951
|
-
label: "multiple",
|
|
952
|
-
value: "multiple"
|
|
953
|
-
},
|
|
954
|
-
{
|
|
955
|
-
label: "tags",
|
|
956
|
-
value: "tags"
|
|
957
|
-
},
|
|
958
|
-
{
|
|
959
|
-
label: "combobox",
|
|
960
|
-
value: "combobox"
|
|
961
|
-
}
|
|
962
|
-
],
|
|
963
|
-
placeholder: "请选择",
|
|
964
|
-
allowClear: !0
|
|
965
|
-
},
|
|
966
|
-
field: "componentProps.mode"
|
|
967
|
-
},
|
|
968
|
-
{
|
|
969
|
-
label: "可搜索",
|
|
970
|
-
type: "switch",
|
|
971
|
-
field: "componentProps.showSearch"
|
|
972
|
-
},
|
|
973
|
-
{
|
|
974
|
-
label: "选中选项后清空搜索框",
|
|
975
|
-
type: "switch",
|
|
976
|
-
field: "componentProps.autoClearSearchValue",
|
|
977
|
-
show: ({ values: l }) => l.componentProps.mode && l.componentProps.showSearch
|
|
978
|
-
},
|
|
979
|
-
{
|
|
980
|
-
label: "最大tag文本长度",
|
|
981
|
-
type: "number",
|
|
982
|
-
field: "componentProps.maxTagTextLength",
|
|
983
|
-
show: ({ values: l }) => l.componentProps.mode
|
|
984
|
-
},
|
|
985
|
-
{
|
|
986
|
-
label: "最大tag显示数",
|
|
987
|
-
type: "number",
|
|
988
|
-
field: "componentProps.maxTagCount",
|
|
989
|
-
show: ({ values: l }) => l.componentProps.mode
|
|
990
|
-
},
|
|
991
|
-
{
|
|
992
|
-
label: "弹出框位置",
|
|
993
|
-
type: "select",
|
|
994
|
-
componentProps: {
|
|
995
|
-
placeholder: "请选择",
|
|
996
|
-
allowClear: !0,
|
|
997
|
-
options: [
|
|
998
|
-
{
|
|
999
|
-
label: "bottomLeft",
|
|
1000
|
-
value: "bottomLeft"
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
label: "bottomRight",
|
|
1004
|
-
value: "bottomRight"
|
|
1005
|
-
},
|
|
1006
|
-
{
|
|
1007
|
-
label: "topLeft",
|
|
1008
|
-
value: "topLeft"
|
|
1009
|
-
},
|
|
1010
|
-
{
|
|
1011
|
-
label: "topRight",
|
|
1012
|
-
value: "topRight"
|
|
1013
|
-
}
|
|
1014
|
-
]
|
|
1015
|
-
},
|
|
1016
|
-
field: "componentProps.placement"
|
|
1017
|
-
},
|
|
1018
|
-
{
|
|
1019
|
-
label: "无边框",
|
|
1020
|
-
type: "switch",
|
|
1021
|
-
componentProps: {
|
|
1022
|
-
checkedValue: !1,
|
|
1023
|
-
unCheckedValue: !0
|
|
1024
|
-
},
|
|
1025
|
-
field: "componentProps.bordered"
|
|
1026
|
-
},
|
|
1027
|
-
{
|
|
1028
|
-
label: "可清空",
|
|
1029
|
-
type: "switch",
|
|
1030
|
-
field: "componentProps.allowClear"
|
|
1031
|
-
},
|
|
1032
|
-
{
|
|
1033
|
-
label: "labelInValue",
|
|
1034
|
-
type: "switch",
|
|
1035
|
-
field: "componentProps.labelInValue"
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
label: "禁用",
|
|
1039
|
-
type: "switch",
|
|
1040
|
-
field: "componentProps.disabled"
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
label: "隐藏",
|
|
1044
|
-
type: "switch",
|
|
1045
|
-
field: "componentProps.hidden"
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
label: "选项管理",
|
|
1049
|
-
type: "EOptionsEditor",
|
|
1050
|
-
layout: "vertical",
|
|
1051
|
-
field: "componentProps.options"
|
|
1052
|
-
},
|
|
1053
|
-
{
|
|
1054
|
-
label: "表单校验",
|
|
1055
|
-
type: "ERuleEditor",
|
|
1056
|
-
layout: "vertical",
|
|
1057
|
-
field: "rules",
|
|
1058
|
-
describe: "校验规则需要配合表单使用"
|
|
1059
|
-
}
|
|
1060
|
-
],
|
|
1061
|
-
event: [
|
|
1062
|
-
{
|
|
1063
|
-
type: "change",
|
|
1064
|
-
describe: "值修改"
|
|
1065
|
-
},
|
|
1066
|
-
{
|
|
1067
|
-
type: "focus",
|
|
1068
|
-
describe: "获取焦点"
|
|
1069
|
-
},
|
|
1070
|
-
{
|
|
1071
|
-
type: "blur",
|
|
1072
|
-
describe: "失去焦点"
|
|
1073
|
-
}
|
|
1074
|
-
],
|
|
1075
|
-
action: [
|
|
1076
|
-
{
|
|
1077
|
-
type: "focus",
|
|
1078
|
-
describe: "使 input 获取焦点"
|
|
1079
|
-
},
|
|
1080
|
-
{
|
|
1081
|
-
type: "blur",
|
|
1082
|
-
describe: "使 input 失去焦点"
|
|
1083
|
-
},
|
|
1084
|
-
{
|
|
1085
|
-
type: "select",
|
|
1086
|
-
describe: "选中 input 中的文字"
|
|
1087
|
-
}
|
|
1088
|
-
]
|
|
1089
|
-
},
|
|
1090
|
-
bindModel: "value"
|
|
1091
|
-
}, P = {
|
|
1092
|
-
component: async () => (await import("ant-design-vue")).Slider,
|
|
1093
|
-
groupName: "表单",
|
|
1094
|
-
icon: "icon--epic--switches",
|
|
1095
|
-
sort: 930,
|
|
1096
|
-
defaultSchema: {
|
|
1097
|
-
label: "滑块",
|
|
1098
|
-
type: "slider",
|
|
1099
|
-
field: "slider",
|
|
1100
|
-
input: !0
|
|
1101
|
-
},
|
|
1102
|
-
config: {
|
|
1103
|
-
attribute: [
|
|
1104
|
-
{
|
|
1105
|
-
label: "字段名",
|
|
1106
|
-
type: "input",
|
|
1107
|
-
field: "field"
|
|
1108
|
-
},
|
|
1109
|
-
{
|
|
1110
|
-
label: "标题",
|
|
1111
|
-
type: "input",
|
|
1112
|
-
field: "label"
|
|
1113
|
-
},
|
|
1114
|
-
{
|
|
1115
|
-
label: "默认值",
|
|
1116
|
-
type: "slider",
|
|
1117
|
-
componentProps: {
|
|
1118
|
-
style: {
|
|
1119
|
-
width: "100%"
|
|
1120
|
-
}
|
|
1121
|
-
},
|
|
1122
|
-
field: "componentProps.defaultValue"
|
|
1123
|
-
},
|
|
1124
|
-
{
|
|
1125
|
-
label: "尺寸",
|
|
1126
|
-
type: "select",
|
|
1127
|
-
componentProps: {
|
|
1128
|
-
placeholder: "请选择",
|
|
1129
|
-
allowClear: !0,
|
|
1130
|
-
options: [
|
|
1131
|
-
{
|
|
1132
|
-
label: "大号",
|
|
1133
|
-
value: "large"
|
|
1134
|
-
},
|
|
1135
|
-
{
|
|
1136
|
-
label: "中等",
|
|
1137
|
-
value: "middle"
|
|
1138
|
-
},
|
|
1139
|
-
{
|
|
1140
|
-
label: "小型",
|
|
1141
|
-
value: "small"
|
|
1142
|
-
}
|
|
1143
|
-
]
|
|
1144
|
-
},
|
|
1145
|
-
field: "componentProps.size"
|
|
1146
|
-
},
|
|
1147
|
-
{
|
|
1148
|
-
label: "范围选择",
|
|
1149
|
-
type: "switch",
|
|
1150
|
-
field: "componentProps.range",
|
|
1151
|
-
changeSync: !0,
|
|
1152
|
-
onChange: ({ value: l, values: e }) => {
|
|
1153
|
-
l ? e.componentProps.defaultValue = [0, 100] : e.componentProps.defaultValue = 0;
|
|
1154
|
-
}
|
|
1155
|
-
},
|
|
1156
|
-
{
|
|
1157
|
-
label: "倒转轨道",
|
|
1158
|
-
type: "switch",
|
|
1159
|
-
field: "componentProps.reverse"
|
|
1160
|
-
},
|
|
1161
|
-
{
|
|
1162
|
-
label: "步长",
|
|
1163
|
-
type: "number",
|
|
1164
|
-
field: "componentProps.step",
|
|
1165
|
-
componentProps: {
|
|
1166
|
-
placeholder: "请输入"
|
|
1167
|
-
}
|
|
1168
|
-
},
|
|
1169
|
-
{
|
|
1170
|
-
label: "最小值",
|
|
1171
|
-
type: "number",
|
|
1172
|
-
field: "componentProps.min",
|
|
1173
|
-
componentProps: {
|
|
1174
|
-
placeholder: "请输入"
|
|
1175
|
-
}
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
label: "最大值",
|
|
1179
|
-
type: "number",
|
|
1180
|
-
field: "componentProps.max",
|
|
1181
|
-
componentProps: {
|
|
1182
|
-
placeholder: "请输入"
|
|
1183
|
-
}
|
|
1184
|
-
},
|
|
1185
|
-
{
|
|
1186
|
-
label: "垂直模式",
|
|
1187
|
-
type: "switch",
|
|
1188
|
-
field: "componentProps.vertical"
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
label: "显示刻度",
|
|
1192
|
-
type: "switch",
|
|
1193
|
-
field: "componentProps.dots"
|
|
1194
|
-
},
|
|
1195
|
-
// {
|
|
1196
|
-
// label: "持续显示提示",
|
|
1197
|
-
// type: "switch",
|
|
1198
|
-
// field: "componentProps.tooltipOpen",
|
|
1199
|
-
// },
|
|
1200
|
-
{
|
|
1201
|
-
label: "禁用",
|
|
1202
|
-
type: "switch",
|
|
1203
|
-
field: "componentProps.disabled"
|
|
1204
|
-
},
|
|
1205
|
-
{
|
|
1206
|
-
label: "隐藏",
|
|
1207
|
-
type: "switch",
|
|
1208
|
-
field: "componentProps.hidden"
|
|
1209
|
-
},
|
|
1210
|
-
{
|
|
1211
|
-
label: "表单校验",
|
|
1212
|
-
type: "ERuleEditor",
|
|
1213
|
-
layout: "vertical",
|
|
1214
|
-
field: "rules",
|
|
1215
|
-
describe: "校验规则需要配合表单使用",
|
|
1216
|
-
componentProps: {
|
|
1217
|
-
ruleType: "number"
|
|
1218
|
-
}
|
|
1219
|
-
}
|
|
1220
|
-
],
|
|
1221
|
-
event: [
|
|
1222
|
-
{
|
|
1223
|
-
type: "afterChange",
|
|
1224
|
-
describe: "与mouseup触发时机一致"
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
type: "change",
|
|
1228
|
-
describe: "拖拽结束改变值时"
|
|
1229
|
-
}
|
|
1230
|
-
]
|
|
1231
|
-
},
|
|
1232
|
-
bindModel: "value"
|
|
1233
|
-
}, w = {
|
|
1234
|
-
component: async () => (await import("ant-design-vue")).TimePicker,
|
|
1235
|
-
groupName: "表单",
|
|
1236
|
-
icon: "icon--epic--time-line",
|
|
1237
|
-
sort: 920,
|
|
1238
|
-
defaultSchema: {
|
|
1239
|
-
label: "时间选择器",
|
|
1240
|
-
type: "time",
|
|
1241
|
-
field: "time",
|
|
1242
|
-
input: !0,
|
|
1243
|
-
componentProps: {
|
|
1244
|
-
valueFormat: "HH:mm:ss",
|
|
1245
|
-
format: "HH:mm:ss",
|
|
1246
|
-
placeholder: "请输入"
|
|
1247
|
-
}
|
|
1248
|
-
},
|
|
1249
|
-
config: {
|
|
1250
|
-
attribute: [
|
|
1251
|
-
{
|
|
1252
|
-
label: "字段名",
|
|
1253
|
-
type: "input",
|
|
1254
|
-
field: "field"
|
|
1255
|
-
},
|
|
1256
|
-
{
|
|
1257
|
-
label: "标题",
|
|
1258
|
-
type: "input",
|
|
1259
|
-
field: "label"
|
|
1260
|
-
},
|
|
1261
|
-
{
|
|
1262
|
-
label: "默认值",
|
|
1263
|
-
type: "time",
|
|
1264
|
-
field: "componentProps.defaultValue"
|
|
1265
|
-
},
|
|
1266
|
-
{
|
|
1267
|
-
label: "占位内容",
|
|
1268
|
-
type: "input",
|
|
1269
|
-
field: "componentProps.placeholder"
|
|
1270
|
-
},
|
|
1271
|
-
{
|
|
1272
|
-
label: "显示格式",
|
|
1273
|
-
type: "input",
|
|
1274
|
-
componentProps: {
|
|
1275
|
-
placeholder: "请输入"
|
|
1276
|
-
},
|
|
1277
|
-
field: "componentProps.format"
|
|
1278
|
-
},
|
|
1279
|
-
{
|
|
1280
|
-
label: "数据格式",
|
|
1281
|
-
type: "input",
|
|
1282
|
-
componentProps: {
|
|
1283
|
-
placeholder: "请输入"
|
|
1284
|
-
},
|
|
1285
|
-
field: "componentProps.valueFormat"
|
|
1286
|
-
},
|
|
1287
|
-
{
|
|
1288
|
-
label: "尺寸",
|
|
1289
|
-
type: "select",
|
|
1290
|
-
componentProps: {
|
|
1291
|
-
placeholder: "请选择",
|
|
1292
|
-
allowClear: !0,
|
|
1293
|
-
options: [
|
|
1294
|
-
{
|
|
1295
|
-
label: "大号",
|
|
1296
|
-
value: "large"
|
|
1297
|
-
},
|
|
1298
|
-
{
|
|
1299
|
-
label: "中等",
|
|
1300
|
-
value: "middle"
|
|
1301
|
-
},
|
|
1302
|
-
{
|
|
1303
|
-
label: "小型",
|
|
1304
|
-
value: "small"
|
|
1305
|
-
}
|
|
1306
|
-
]
|
|
1307
|
-
},
|
|
1308
|
-
field: "componentProps.size"
|
|
1309
|
-
},
|
|
1310
|
-
{
|
|
1311
|
-
label: "小时选项间隔",
|
|
1312
|
-
type: "number",
|
|
1313
|
-
field: "componentProps.hourStep",
|
|
1314
|
-
componentProps: {
|
|
1315
|
-
placeholder: "请输入"
|
|
1316
|
-
}
|
|
1317
|
-
},
|
|
1318
|
-
{
|
|
1319
|
-
label: "分钟选项间隔",
|
|
1320
|
-
type: "number",
|
|
1321
|
-
field: "componentProps.minuteStep",
|
|
1322
|
-
componentProps: {
|
|
1323
|
-
placeholder: "请输入"
|
|
1324
|
-
}
|
|
1325
|
-
},
|
|
1326
|
-
{
|
|
1327
|
-
label: "秒选项间隔",
|
|
1328
|
-
type: "number",
|
|
1329
|
-
field: "componentProps.secondStep",
|
|
1330
|
-
componentProps: {
|
|
1331
|
-
placeholder: "请输入"
|
|
1332
|
-
}
|
|
1333
|
-
},
|
|
1334
|
-
{
|
|
1335
|
-
label: "弹出框位置",
|
|
1336
|
-
type: "select",
|
|
1337
|
-
componentProps: {
|
|
1338
|
-
placeholder: "请选择",
|
|
1339
|
-
allowClear: !0,
|
|
1340
|
-
options: [
|
|
1341
|
-
{
|
|
1342
|
-
label: "bottomLeft",
|
|
1343
|
-
value: "bottomLeft"
|
|
1344
|
-
},
|
|
1345
|
-
{
|
|
1346
|
-
label: "bottomRight",
|
|
1347
|
-
value: "bottomRight"
|
|
1348
|
-
},
|
|
1349
|
-
{
|
|
1350
|
-
label: "topLeft",
|
|
1351
|
-
value: "topLeft"
|
|
1352
|
-
},
|
|
1353
|
-
{
|
|
1354
|
-
label: "topRight",
|
|
1355
|
-
value: "topRight"
|
|
1356
|
-
}
|
|
1357
|
-
]
|
|
1358
|
-
},
|
|
1359
|
-
field: "componentProps.placement"
|
|
1360
|
-
},
|
|
1361
|
-
{
|
|
1362
|
-
label: "12小时制",
|
|
1363
|
-
type: "switch",
|
|
1364
|
-
field: "componentProps.use12Hours",
|
|
1365
|
-
changeSync: !0,
|
|
1366
|
-
onChange({ values: l, value: e }) {
|
|
1367
|
-
l.componentProps.defaultValue = null, e ? (l.componentProps.format = "h:mm:ss a", l.componentProps.valueFormat = "h:mm:ss a") : (l.componentProps.format = "HH:mm:ss", l.componentProps.valueFormat = "HH:mm:ss");
|
|
1368
|
-
}
|
|
1369
|
-
},
|
|
1370
|
-
{
|
|
1371
|
-
label: "无边框",
|
|
1372
|
-
type: "switch",
|
|
1373
|
-
componentProps: {
|
|
1374
|
-
checkedValue: !1,
|
|
1375
|
-
unCheckedValue: !0
|
|
1376
|
-
},
|
|
1377
|
-
field: "componentProps.bordered"
|
|
1378
|
-
},
|
|
1379
|
-
{
|
|
1380
|
-
label: "禁止键盘输入",
|
|
1381
|
-
type: "switch",
|
|
1382
|
-
field: "componentProps.inputReadOnly"
|
|
1383
|
-
},
|
|
1384
|
-
{
|
|
1385
|
-
label: "可清空",
|
|
1386
|
-
type: "switch",
|
|
1387
|
-
field: "componentProps.allowClear"
|
|
1388
|
-
},
|
|
1389
|
-
{
|
|
1390
|
-
label: "禁用",
|
|
1391
|
-
type: "switch",
|
|
1392
|
-
field: "componentProps.disabled"
|
|
1393
|
-
},
|
|
1394
|
-
{
|
|
1395
|
-
label: "隐藏",
|
|
1396
|
-
type: "switch",
|
|
1397
|
-
field: "componentProps.hidden"
|
|
1398
|
-
},
|
|
1399
|
-
{
|
|
1400
|
-
label: "表单校验",
|
|
1401
|
-
type: "ERuleEditor",
|
|
1402
|
-
layout: "vertical",
|
|
1403
|
-
field: "rules",
|
|
1404
|
-
describe: "校验规则需要配合表单使用"
|
|
1405
|
-
}
|
|
1406
|
-
],
|
|
1407
|
-
event: [
|
|
1408
|
-
{
|
|
1409
|
-
type: "change",
|
|
1410
|
-
describe: "值变化时"
|
|
1411
|
-
}
|
|
1412
|
-
]
|
|
1413
|
-
},
|
|
1414
|
-
bindModel: "value"
|
|
1415
|
-
}, v = {
|
|
1416
|
-
component: () => import("../../datePicker-2Df6yfYg.js"),
|
|
1417
|
-
groupName: "表单",
|
|
1418
|
-
icon: "icon--epic--calendar-month-outline-rounded",
|
|
1419
|
-
sort: 910,
|
|
1420
|
-
defaultSchema: {
|
|
1421
|
-
label: "日期选择器",
|
|
1422
|
-
type: "date",
|
|
1423
|
-
field: "date",
|
|
1424
|
-
input: !0,
|
|
1425
|
-
componentProps: {
|
|
1426
|
-
valueFormat: "YYYY-MM-DD",
|
|
1427
|
-
format: "YYYY-MM-DD",
|
|
1428
|
-
type: "date",
|
|
1429
|
-
placeholder: "请选择"
|
|
1430
|
-
}
|
|
1431
|
-
},
|
|
1432
|
-
config: {
|
|
1433
|
-
attribute: [
|
|
1434
|
-
{
|
|
1435
|
-
label: "字段名",
|
|
1436
|
-
type: "input",
|
|
1437
|
-
field: "field"
|
|
1438
|
-
},
|
|
1439
|
-
{
|
|
1440
|
-
label: "标题",
|
|
1441
|
-
type: "input",
|
|
1442
|
-
componentProps: {
|
|
1443
|
-
placeholder: "请输入"
|
|
1444
|
-
},
|
|
1445
|
-
field: "label"
|
|
1446
|
-
},
|
|
1447
|
-
{
|
|
1448
|
-
label: "默认值",
|
|
1449
|
-
type: "date",
|
|
1450
|
-
field: "componentProps.defaultValue"
|
|
1451
|
-
},
|
|
1452
|
-
{
|
|
1453
|
-
label: "日期类型",
|
|
1454
|
-
type: "select",
|
|
1455
|
-
field: "componentProps.type",
|
|
1456
|
-
componentProps: {
|
|
1457
|
-
options: [
|
|
1458
|
-
{
|
|
1459
|
-
label: "日期",
|
|
1460
|
-
value: "date"
|
|
1461
|
-
},
|
|
1462
|
-
{
|
|
1463
|
-
label: "周",
|
|
1464
|
-
value: "week"
|
|
1465
|
-
},
|
|
1466
|
-
{
|
|
1467
|
-
label: "月份",
|
|
1468
|
-
value: "month"
|
|
1469
|
-
},
|
|
1470
|
-
{
|
|
1471
|
-
label: "季度",
|
|
1472
|
-
value: "quarter"
|
|
1473
|
-
},
|
|
1474
|
-
{
|
|
1475
|
-
label: "年份",
|
|
1476
|
-
value: "year"
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
label: "日期范围",
|
|
1480
|
-
value: "daterange"
|
|
1481
|
-
},
|
|
1482
|
-
{
|
|
1483
|
-
label: "周范围",
|
|
1484
|
-
value: "weekrange"
|
|
1485
|
-
},
|
|
1486
|
-
{
|
|
1487
|
-
label: "月份范围",
|
|
1488
|
-
value: "monthrange"
|
|
1489
|
-
},
|
|
1490
|
-
{
|
|
1491
|
-
label: "季度范围",
|
|
1492
|
-
value: "quarterrange"
|
|
1493
|
-
},
|
|
1494
|
-
{
|
|
1495
|
-
label: "年份范围",
|
|
1496
|
-
value: "yearrange"
|
|
1497
|
-
}
|
|
1498
|
-
]
|
|
1499
|
-
},
|
|
1500
|
-
changeSync: !0,
|
|
1501
|
-
onChange({ values: l, value: e }) {
|
|
1502
|
-
l.componentProps.defaultValue = null, [
|
|
1503
|
-
"daterange",
|
|
1504
|
-
"weekrange",
|
|
1505
|
-
"monthrange",
|
|
1506
|
-
"yearrange",
|
|
1507
|
-
"quarterrange"
|
|
1508
|
-
].includes(e) ? l.componentProps.placeholder = ["请输入", "请输入"] : l.componentProps.placeholder = "请输入", ["date", "daterange"].includes(e) ? (l.componentProps.format = "YYYY-MM-DD", l.componentProps.valueFormat = "YYYY-MM-DD") : ["week", "weekrange"].includes(e) ? (l.componentProps.format = "ww [周]", l.componentProps.valueFormat = "YYYY-MM-DD") : ["month", "monthrange"].includes(e) ? (l.componentProps.format = "YYYY-MM", l.componentProps.valueFormat = "YYYY-MM") : ["quarter", "quarterrange"].includes(e) ? (l.componentProps.format = "YYYY-Q季度", l.componentProps.valueFormat = "YYYY-Q季度") : ["year", '"yearrange"'].includes(e) && (l.componentProps.format = "YYYY", l.componentProps.valueFormat = "YYYY");
|
|
1509
|
-
}
|
|
1510
|
-
},
|
|
1511
|
-
{
|
|
1512
|
-
label: "增加时间选择",
|
|
1513
|
-
type: "switch",
|
|
1514
|
-
field: "componentProps.showTime",
|
|
1515
|
-
onChange: ({ value: l, values: e }) => {
|
|
1516
|
-
l ? (e.componentProps.valueFormat = "YYYY-MM-DD HH:mm:ss", e.componentProps.format = "YYYY-MM-DD HH:mm:ss") : (e.componentProps.valueFormat = "YYYY-MM-DD", e.componentProps.format = "YYYY-MM-DD");
|
|
1517
|
-
},
|
|
1518
|
-
show({ values: l }) {
|
|
1519
|
-
return ["date", "daterange"].includes(l.componentProps.type);
|
|
1520
|
-
}
|
|
1521
|
-
},
|
|
1522
|
-
{
|
|
1523
|
-
label: "占位内容",
|
|
1524
|
-
type: "input",
|
|
1525
|
-
field: "componentProps.placeholder",
|
|
1526
|
-
componentProps: {
|
|
1527
|
-
placeholder: "请输入"
|
|
1528
|
-
},
|
|
1529
|
-
show: ({ values: l }) => ![
|
|
1530
|
-
"daterange",
|
|
1531
|
-
"weekrange",
|
|
1532
|
-
"monthrange",
|
|
1533
|
-
"yearrange",
|
|
1534
|
-
"quarterrange"
|
|
1535
|
-
].includes(l.componentProps.type)
|
|
1536
|
-
},
|
|
1537
|
-
{
|
|
1538
|
-
label: "开始占位符",
|
|
1539
|
-
type: "input",
|
|
1540
|
-
componentProps: {
|
|
1541
|
-
placeholder: "请输入"
|
|
1542
|
-
},
|
|
1543
|
-
field: "componentProps.placeholder.0",
|
|
1544
|
-
show: ({ values: l }) => [
|
|
1545
|
-
"daterange",
|
|
1546
|
-
"weekrange",
|
|
1547
|
-
"monthrange",
|
|
1548
|
-
"yearrange",
|
|
1549
|
-
"quarterrange"
|
|
1550
|
-
].includes(l.componentProps.type)
|
|
1551
|
-
},
|
|
1552
|
-
{
|
|
1553
|
-
label: "结束占位符",
|
|
1554
|
-
type: "input",
|
|
1555
|
-
componentProps: {
|
|
1556
|
-
placeholder: "请输入"
|
|
1557
|
-
},
|
|
1558
|
-
field: "componentProps.placeholder.1",
|
|
1559
|
-
show: ({ values: l }) => [
|
|
1560
|
-
"daterange",
|
|
1561
|
-
"weekrange",
|
|
1562
|
-
"monthrange",
|
|
1563
|
-
"yearrange",
|
|
1564
|
-
"quarterrange"
|
|
1565
|
-
].includes(l.componentProps.type)
|
|
1566
|
-
},
|
|
1567
|
-
{
|
|
1568
|
-
label: "显示格式",
|
|
1569
|
-
type: "input",
|
|
1570
|
-
componentProps: {
|
|
1571
|
-
placeholder: "请输入"
|
|
1572
|
-
},
|
|
1573
|
-
field: "componentProps.format"
|
|
1574
|
-
},
|
|
1575
|
-
{
|
|
1576
|
-
label: "数据格式",
|
|
1577
|
-
type: "input",
|
|
1578
|
-
componentProps: {
|
|
1579
|
-
placeholder: "请输入"
|
|
1580
|
-
},
|
|
1581
|
-
field: "componentProps.valueFormat"
|
|
1582
|
-
},
|
|
1583
|
-
{
|
|
1584
|
-
label: "尺寸",
|
|
1585
|
-
type: "select",
|
|
1586
|
-
componentProps: {
|
|
1587
|
-
placeholder: "请选择",
|
|
1588
|
-
allowClear: !0,
|
|
1589
|
-
options: [
|
|
1590
|
-
{
|
|
1591
|
-
label: "大号",
|
|
1592
|
-
value: "large"
|
|
1593
|
-
},
|
|
1594
|
-
{
|
|
1595
|
-
label: "中等",
|
|
1596
|
-
value: "middle"
|
|
1597
|
-
},
|
|
1598
|
-
{
|
|
1599
|
-
label: "小型",
|
|
1600
|
-
value: "small"
|
|
1601
|
-
}
|
|
1602
|
-
]
|
|
1603
|
-
},
|
|
1604
|
-
field: "componentProps.size"
|
|
1605
|
-
},
|
|
1606
|
-
{
|
|
1607
|
-
label: "弹出框位置",
|
|
1608
|
-
type: "select",
|
|
1609
|
-
componentProps: {
|
|
1610
|
-
placeholder: "请选择",
|
|
1611
|
-
allowClear: !0,
|
|
1612
|
-
options: [
|
|
1613
|
-
{
|
|
1614
|
-
label: "bottomLeft",
|
|
1615
|
-
value: "bottomLeft"
|
|
1616
|
-
},
|
|
1617
|
-
{
|
|
1618
|
-
label: "bottomRight",
|
|
1619
|
-
value: "bottomRight"
|
|
1620
|
-
},
|
|
1621
|
-
{
|
|
1622
|
-
label: "topLeft",
|
|
1623
|
-
value: "topLeft"
|
|
1624
|
-
},
|
|
1625
|
-
{
|
|
1626
|
-
label: "topRight",
|
|
1627
|
-
value: "topRight"
|
|
1628
|
-
}
|
|
1629
|
-
]
|
|
1630
|
-
},
|
|
1631
|
-
field: "componentProps.placement"
|
|
1632
|
-
},
|
|
1633
|
-
{
|
|
1634
|
-
label: "无边框",
|
|
1635
|
-
type: "switch",
|
|
1636
|
-
componentProps: {
|
|
1637
|
-
checkedValue: !1,
|
|
1638
|
-
unCheckedValue: !0
|
|
1639
|
-
},
|
|
1640
|
-
field: "componentProps.bordered"
|
|
1641
|
-
},
|
|
1642
|
-
{
|
|
1643
|
-
label: "禁止键盘输入",
|
|
1644
|
-
type: "switch",
|
|
1645
|
-
field: "componentProps.inputReadOnly"
|
|
1646
|
-
},
|
|
1647
|
-
{
|
|
1648
|
-
label: "可清空",
|
|
1649
|
-
type: "switch",
|
|
1650
|
-
field: "componentProps.allowClear"
|
|
1651
|
-
},
|
|
1652
|
-
{
|
|
1653
|
-
label: "禁用",
|
|
1654
|
-
type: "switch",
|
|
1655
|
-
field: "componentProps.disabled"
|
|
1656
|
-
},
|
|
1657
|
-
{
|
|
1658
|
-
label: "隐藏",
|
|
1659
|
-
type: "switch",
|
|
1660
|
-
field: "componentProps.hidden"
|
|
1661
|
-
},
|
|
1662
|
-
{
|
|
1663
|
-
label: "表单校验",
|
|
1664
|
-
type: "ERuleEditor",
|
|
1665
|
-
layout: "vertical",
|
|
1666
|
-
field: "rules",
|
|
1667
|
-
describe: "校验规则需要配合表单使用"
|
|
1668
|
-
}
|
|
1669
|
-
],
|
|
1670
|
-
event: [
|
|
1671
|
-
{
|
|
1672
|
-
type: "change",
|
|
1673
|
-
describe: "值变化时"
|
|
1674
|
-
},
|
|
1675
|
-
{
|
|
1676
|
-
type: "ok",
|
|
1677
|
-
describe: "点击确定按钮时"
|
|
1678
|
-
}
|
|
1679
|
-
]
|
|
1680
|
-
},
|
|
1681
|
-
bindModel: "modelValue"
|
|
1682
|
-
}, g = {
|
|
1683
|
-
component: async () => (await import("ant-design-vue")).Cascader,
|
|
1684
|
-
groupName: "表单",
|
|
1685
|
-
icon: "icon--epic--full-coverage-outline",
|
|
1686
|
-
sort: 900,
|
|
1687
|
-
defaultSchema: {
|
|
1688
|
-
label: "级联选择器",
|
|
1689
|
-
type: "cascader",
|
|
1690
|
-
field: "cascader",
|
|
1691
|
-
input: !0,
|
|
1692
|
-
componentProps: {
|
|
1693
|
-
options: [
|
|
1694
|
-
{
|
|
1695
|
-
label: "选项1",
|
|
1696
|
-
value: "选项1"
|
|
1697
|
-
},
|
|
1698
|
-
{
|
|
1699
|
-
label: "选项2",
|
|
1700
|
-
value: "选项2"
|
|
1701
|
-
}
|
|
1702
|
-
],
|
|
1703
|
-
placeholder: "请选择"
|
|
1704
|
-
}
|
|
1705
|
-
},
|
|
1706
|
-
config: {
|
|
1707
|
-
attribute: [
|
|
1708
|
-
{
|
|
1709
|
-
label: "字段名",
|
|
1710
|
-
type: "input",
|
|
1711
|
-
field: "field"
|
|
1712
|
-
},
|
|
1713
|
-
{
|
|
1714
|
-
label: "标题",
|
|
1715
|
-
type: "input",
|
|
1716
|
-
field: "label"
|
|
1717
|
-
},
|
|
1718
|
-
{
|
|
1719
|
-
label: "默认值",
|
|
1720
|
-
type: "cascader",
|
|
1721
|
-
field: "componentProps.defaultValue"
|
|
1722
|
-
},
|
|
1723
|
-
{
|
|
1724
|
-
label: "占位内容",
|
|
1725
|
-
type: "input",
|
|
1726
|
-
field: "componentProps.placeholder"
|
|
1727
|
-
},
|
|
1728
|
-
{
|
|
1729
|
-
label: "尺寸",
|
|
1730
|
-
type: "select",
|
|
1731
|
-
componentProps: {
|
|
1732
|
-
placeholder: "请选择",
|
|
1733
|
-
allowClear: !0,
|
|
1734
|
-
options: [
|
|
1735
|
-
{
|
|
1736
|
-
label: "大号",
|
|
1737
|
-
value: "large"
|
|
1738
|
-
},
|
|
1739
|
-
{
|
|
1740
|
-
label: "中等",
|
|
1741
|
-
value: "middle"
|
|
1742
|
-
},
|
|
1743
|
-
{
|
|
1744
|
-
label: "小型",
|
|
1745
|
-
value: "small"
|
|
1746
|
-
}
|
|
1747
|
-
]
|
|
1748
|
-
},
|
|
1749
|
-
field: "componentProps.size"
|
|
1750
|
-
},
|
|
1751
|
-
{
|
|
1752
|
-
label: "弹出框位置",
|
|
1753
|
-
type: "select",
|
|
1754
|
-
componentProps: {
|
|
1755
|
-
placeholder: "请选择",
|
|
1756
|
-
allowClear: !0,
|
|
1757
|
-
options: [
|
|
1758
|
-
{
|
|
1759
|
-
label: "bottomLeft",
|
|
1760
|
-
value: "bottomLeft"
|
|
1761
|
-
},
|
|
1762
|
-
{
|
|
1763
|
-
label: "bottomRight",
|
|
1764
|
-
value: "bottomRight"
|
|
1765
|
-
},
|
|
1766
|
-
{
|
|
1767
|
-
label: "topLeft",
|
|
1768
|
-
value: "topLeft"
|
|
1769
|
-
},
|
|
1770
|
-
{
|
|
1771
|
-
label: "topRight",
|
|
1772
|
-
value: "topRight"
|
|
1773
|
-
}
|
|
1774
|
-
]
|
|
1775
|
-
},
|
|
1776
|
-
field: "componentProps.placement"
|
|
1777
|
-
},
|
|
1778
|
-
{
|
|
1779
|
-
label: "可搜索",
|
|
1780
|
-
type: "switch",
|
|
1781
|
-
field: "componentProps.showSearch"
|
|
1782
|
-
},
|
|
1783
|
-
{
|
|
1784
|
-
label: "无边框",
|
|
1785
|
-
type: "switch",
|
|
1786
|
-
componentProps: {
|
|
1787
|
-
checkedValue: !1,
|
|
1788
|
-
unCheckedValue: !0
|
|
1789
|
-
},
|
|
1790
|
-
field: "componentProps.bordered"
|
|
1791
|
-
},
|
|
1792
|
-
{
|
|
1793
|
-
label: "多选",
|
|
1794
|
-
type: "switch",
|
|
1795
|
-
field: "componentProps.multiple"
|
|
1796
|
-
},
|
|
1797
|
-
{
|
|
1798
|
-
label: "标签最大长度",
|
|
1799
|
-
type: "number",
|
|
1800
|
-
field: "componentProps.maxTagTextLength",
|
|
1801
|
-
componentProps: {
|
|
1802
|
-
placeholder: "请输入"
|
|
1803
|
-
},
|
|
1804
|
-
show: ({ values: l }) => l.componentProps.multiple
|
|
1805
|
-
},
|
|
1806
|
-
{
|
|
1807
|
-
label: "标签显示数量",
|
|
1808
|
-
type: "number",
|
|
1809
|
-
field: "componentProps.maxTagCount",
|
|
1810
|
-
componentProps: {
|
|
1811
|
-
placeholder: "请输入"
|
|
1812
|
-
},
|
|
1813
|
-
show: ({ values: l }) => l.componentProps.multiple
|
|
1814
|
-
},
|
|
1815
|
-
{
|
|
1816
|
-
label: "回填方式",
|
|
1817
|
-
type: "select",
|
|
1818
|
-
componentProps: {
|
|
1819
|
-
placeholder: "请选择",
|
|
1820
|
-
clearable: !0,
|
|
1821
|
-
options: [
|
|
1822
|
-
{
|
|
1823
|
-
label: "SHOW_PARENT",
|
|
1824
|
-
value: "SHOW_PARENT"
|
|
1825
|
-
},
|
|
1826
|
-
{
|
|
1827
|
-
label: "SHOW_CHILD",
|
|
1828
|
-
value: "SHOW_CHILD"
|
|
1829
|
-
}
|
|
1830
|
-
]
|
|
1831
|
-
},
|
|
1832
|
-
field: "componentProps.showCheckedStrategy",
|
|
1833
|
-
show: ({ values: l }) => l.componentProps.multiple
|
|
1834
|
-
},
|
|
1835
|
-
{
|
|
1836
|
-
label: "可清空",
|
|
1837
|
-
type: "switch",
|
|
1838
|
-
field: "componentProps.allowClear"
|
|
1839
|
-
},
|
|
1840
|
-
{
|
|
1841
|
-
label: "禁用",
|
|
1842
|
-
type: "switch",
|
|
1843
|
-
field: "componentProps.disabled"
|
|
1844
|
-
},
|
|
1845
|
-
{
|
|
1846
|
-
label: "隐藏",
|
|
1847
|
-
type: "switch",
|
|
1848
|
-
field: "componentProps.hidden"
|
|
1849
|
-
},
|
|
1850
|
-
{
|
|
1851
|
-
label: "选项管理",
|
|
1852
|
-
type: "EOptionsEditor",
|
|
1853
|
-
layout: "vertical",
|
|
1854
|
-
field: "componentProps.options",
|
|
1855
|
-
componentProps: {
|
|
1856
|
-
tree: !0
|
|
1857
|
-
}
|
|
1858
|
-
},
|
|
1859
|
-
{
|
|
1860
|
-
label: "表单校验",
|
|
1861
|
-
type: "ERuleEditor",
|
|
1862
|
-
layout: "vertical",
|
|
1863
|
-
field: "rules",
|
|
1864
|
-
describe: "校验规则需要配合表单使用",
|
|
1865
|
-
componentProps: {
|
|
1866
|
-
ruleType: "array"
|
|
1867
|
-
}
|
|
1868
|
-
}
|
|
1869
|
-
],
|
|
1870
|
-
event: [
|
|
1871
|
-
{
|
|
1872
|
-
type: "change",
|
|
1873
|
-
describe: "值变化时"
|
|
1874
|
-
}
|
|
1875
|
-
]
|
|
1876
|
-
},
|
|
1877
|
-
bindModel: "value"
|
|
1878
|
-
}, k = {
|
|
1879
|
-
component: async () => (await import("ant-design-vue")).Switch,
|
|
1880
|
-
groupName: "表单",
|
|
1881
|
-
icon: "icon--epic--toggle-off-outline",
|
|
1882
|
-
sort: 930,
|
|
1883
|
-
defaultSchema: {
|
|
1884
|
-
label: "开关",
|
|
1885
|
-
type: "switch",
|
|
1886
|
-
field: "switch",
|
|
1887
|
-
input: !0,
|
|
1888
|
-
componentProps: {
|
|
1889
|
-
defaultValue: !1
|
|
1890
|
-
}
|
|
1891
|
-
},
|
|
1892
|
-
config: {
|
|
1893
|
-
attribute: [
|
|
1894
|
-
{
|
|
1895
|
-
label: "字段名",
|
|
1896
|
-
type: "input",
|
|
1897
|
-
field: "field"
|
|
1898
|
-
},
|
|
1899
|
-
{
|
|
1900
|
-
label: "标题",
|
|
1901
|
-
type: "input",
|
|
1902
|
-
field: "label"
|
|
1903
|
-
},
|
|
1904
|
-
{
|
|
1905
|
-
label: "默认值",
|
|
1906
|
-
type: "switch",
|
|
1907
|
-
field: "componentProps.defaultValue"
|
|
1908
|
-
},
|
|
1909
|
-
{
|
|
1910
|
-
label: "ON状态值",
|
|
1911
|
-
type: "input",
|
|
1912
|
-
field: "componentProps.checkedValue",
|
|
1913
|
-
componentProps: {
|
|
1914
|
-
placeholder: "请输入"
|
|
1915
|
-
},
|
|
1916
|
-
onChange(l) {
|
|
1917
|
-
setTimeout(() => r(l));
|
|
1918
|
-
}
|
|
1919
|
-
},
|
|
1920
|
-
{
|
|
1921
|
-
label: "OFF状态值",
|
|
1922
|
-
type: "input",
|
|
1923
|
-
field: "componentProps.unCheckedValue",
|
|
1924
|
-
componentProps: {
|
|
1925
|
-
placeholder: "请输入"
|
|
1926
|
-
},
|
|
1927
|
-
onChange(l) {
|
|
1928
|
-
setTimeout(() => r(l));
|
|
1929
|
-
}
|
|
1930
|
-
},
|
|
1931
|
-
{
|
|
1932
|
-
label: "ON状态描述",
|
|
1933
|
-
type: "input",
|
|
1934
|
-
field: "componentProps.checkedChildren",
|
|
1935
|
-
componentProps: {
|
|
1936
|
-
placeholder: "请输入"
|
|
1937
|
-
}
|
|
1938
|
-
},
|
|
1939
|
-
{
|
|
1940
|
-
label: "OFF状态描述",
|
|
1941
|
-
type: "input",
|
|
1942
|
-
field: "componentProps.unCheckedChildren",
|
|
1943
|
-
componentProps: {
|
|
1944
|
-
placeholder: "请输入"
|
|
1945
|
-
}
|
|
1946
|
-
},
|
|
1947
|
-
{
|
|
1948
|
-
label: "尺寸",
|
|
1949
|
-
type: "select",
|
|
1950
|
-
componentProps: {
|
|
1951
|
-
placeholder: "请选择",
|
|
1952
|
-
allowClear: !0,
|
|
1953
|
-
options: [
|
|
1954
|
-
{
|
|
1955
|
-
label: "default",
|
|
1956
|
-
value: "default"
|
|
1957
|
-
},
|
|
1958
|
-
{
|
|
1959
|
-
label: "small",
|
|
1960
|
-
value: "small"
|
|
1961
|
-
}
|
|
1962
|
-
]
|
|
1963
|
-
},
|
|
1964
|
-
field: "componentProps.size"
|
|
1965
|
-
},
|
|
1966
|
-
{
|
|
1967
|
-
label: "禁用",
|
|
1968
|
-
type: "switch",
|
|
1969
|
-
field: "componentProps.disabled"
|
|
1970
|
-
},
|
|
1971
|
-
{
|
|
1972
|
-
label: "隐藏",
|
|
1973
|
-
type: "switch",
|
|
1974
|
-
field: "componentProps.hidden"
|
|
1975
|
-
},
|
|
1976
|
-
{
|
|
1977
|
-
label: "表单校验",
|
|
1978
|
-
type: "ERuleEditor",
|
|
1979
|
-
layout: "vertical",
|
|
1980
|
-
field: "rules",
|
|
1981
|
-
describe: "校验规则需要配合表单使用",
|
|
1982
|
-
componentProps: {
|
|
1983
|
-
ruleType: "boolean"
|
|
1984
|
-
}
|
|
1985
|
-
}
|
|
1986
|
-
],
|
|
1987
|
-
event: [
|
|
1988
|
-
{
|
|
1989
|
-
type: "change",
|
|
1990
|
-
describe: "值变化时"
|
|
1991
|
-
}
|
|
1992
|
-
]
|
|
1993
|
-
},
|
|
1994
|
-
bindModel: "checked"
|
|
1995
|
-
};
|
|
1996
|
-
function r(l) {
|
|
1997
|
-
var t;
|
|
1998
|
-
let e = ((t = l.values.componentProps) == null ? void 0 : t.unCheckedValue) || !1;
|
|
1999
|
-
l.values.componentProps.unCheckedValue === "" && delete l.values.componentProps.unCheckedValue, l.values.componentProps.checkedValue === "" && delete l.values.componentProps.checkedValue, l.values.componentProps ? l.values.componentProps.defaultValue = e : l.values.componentProps = {
|
|
2000
|
-
defaultValue: e
|
|
2001
|
-
};
|
|
2002
|
-
}
|
|
2003
|
-
const C = {
|
|
2004
|
-
component: () => import("../../uploadImage-Db_66X3C.js"),
|
|
2005
|
-
groupName: "表单",
|
|
2006
|
-
icon: "icon--epic--imagesmode-outline-rounded",
|
|
2007
|
-
sort: 920,
|
|
2008
|
-
defaultSchema: {
|
|
2009
|
-
label: "上传图片",
|
|
2010
|
-
type: "upload-image",
|
|
2011
|
-
field: "uploadImage",
|
|
2012
|
-
input: !0,
|
|
2013
|
-
componentProps: {
|
|
2014
|
-
action: "https://ess-ds.com/prod-api/center-file/file/upload"
|
|
2015
|
-
}
|
|
2016
|
-
},
|
|
2017
|
-
config: {
|
|
2018
|
-
attribute: [
|
|
2019
|
-
{
|
|
2020
|
-
label: "字段名",
|
|
2021
|
-
type: "input",
|
|
2022
|
-
field: "field"
|
|
2023
|
-
},
|
|
2024
|
-
{
|
|
2025
|
-
label: "标题",
|
|
2026
|
-
type: "input",
|
|
2027
|
-
field: "label"
|
|
2028
|
-
},
|
|
2029
|
-
{
|
|
2030
|
-
label: "请求地址",
|
|
2031
|
-
type: "input",
|
|
2032
|
-
field: "componentProps.action"
|
|
2033
|
-
},
|
|
2034
|
-
{
|
|
2035
|
-
label: "多选",
|
|
2036
|
-
type: "switch",
|
|
2037
|
-
field: "componentProps.multiple"
|
|
2038
|
-
},
|
|
2039
|
-
{
|
|
2040
|
-
label: "允许上传最大数量",
|
|
2041
|
-
type: "number",
|
|
2042
|
-
field: "componentProps.maxCount",
|
|
2043
|
-
componentProps: {
|
|
2044
|
-
min: 0,
|
|
2045
|
-
placeholder: "请输入"
|
|
2046
|
-
}
|
|
2047
|
-
},
|
|
2048
|
-
{
|
|
2049
|
-
label: "禁用",
|
|
2050
|
-
type: "switch",
|
|
2051
|
-
field: "componentProps.disabled"
|
|
2052
|
-
},
|
|
2053
|
-
{
|
|
2054
|
-
label: "隐藏",
|
|
2055
|
-
type: "switch",
|
|
2056
|
-
field: "componentProps.hidden"
|
|
2057
|
-
},
|
|
2058
|
-
{
|
|
2059
|
-
label: "表单校验",
|
|
2060
|
-
type: "ERuleEditor",
|
|
2061
|
-
layout: "vertical",
|
|
2062
|
-
field: "rules",
|
|
2063
|
-
describe: "校验规则需要配合表单使用",
|
|
2064
|
-
componentProps: {
|
|
2065
|
-
ruleType: "array"
|
|
2066
|
-
}
|
|
2067
|
-
}
|
|
2068
|
-
]
|
|
2069
|
-
},
|
|
2070
|
-
bindModel: "modelValue"
|
|
2071
|
-
}, V = {
|
|
2072
|
-
component: () => import("../../uploadFile-C3HY1r-N.js"),
|
|
2073
|
-
groupName: "表单",
|
|
2074
|
-
icon: "icon--epic--upload-rounded",
|
|
2075
|
-
sort: 920,
|
|
2076
|
-
defaultSchema: {
|
|
2077
|
-
label: "上传文件",
|
|
2078
|
-
type: "upload-file",
|
|
2079
|
-
field: "uploadFile",
|
|
2080
|
-
input: !0,
|
|
2081
|
-
componentProps: {
|
|
2082
|
-
action: "https://ess-ds.com/prod-api/center-file/file/upload"
|
|
2083
|
-
}
|
|
2084
|
-
},
|
|
2085
|
-
config: {
|
|
2086
|
-
attribute: [
|
|
2087
|
-
{
|
|
2088
|
-
label: "字段名",
|
|
2089
|
-
type: "input",
|
|
2090
|
-
field: "field"
|
|
2091
|
-
},
|
|
2092
|
-
{
|
|
2093
|
-
label: "标题",
|
|
2094
|
-
type: "input",
|
|
2095
|
-
field: "label"
|
|
2096
|
-
},
|
|
2097
|
-
{
|
|
2098
|
-
label: "请求地址",
|
|
2099
|
-
type: "input",
|
|
2100
|
-
field: "componentProps.action"
|
|
2101
|
-
},
|
|
2102
|
-
{
|
|
2103
|
-
label: "列表样式",
|
|
2104
|
-
type: "select",
|
|
2105
|
-
field: "componentProps.listType",
|
|
2106
|
-
componentProps: {
|
|
2107
|
-
placeholder: "请选择",
|
|
2108
|
-
allowClear: !0,
|
|
2109
|
-
options: [
|
|
2110
|
-
{
|
|
2111
|
-
label: "text",
|
|
2112
|
-
value: "text"
|
|
2113
|
-
},
|
|
2114
|
-
{
|
|
2115
|
-
label: "picture",
|
|
2116
|
-
value: "picture"
|
|
2117
|
-
}
|
|
2118
|
-
]
|
|
2119
|
-
}
|
|
2120
|
-
},
|
|
2121
|
-
{
|
|
2122
|
-
label: "多选",
|
|
2123
|
-
type: "switch",
|
|
2124
|
-
field: "componentProps.multiple"
|
|
2125
|
-
},
|
|
2126
|
-
{
|
|
2127
|
-
label: "允许上传最大数量",
|
|
2128
|
-
type: "number",
|
|
2129
|
-
field: "componentProps.maxCount",
|
|
2130
|
-
componentProps: {
|
|
2131
|
-
min: 0,
|
|
2132
|
-
placeholder: "请输入"
|
|
2133
|
-
}
|
|
2134
|
-
},
|
|
2135
|
-
{
|
|
2136
|
-
label: "禁用",
|
|
2137
|
-
type: "switch",
|
|
2138
|
-
field: "componentProps.disabled"
|
|
2139
|
-
},
|
|
2140
|
-
{
|
|
2141
|
-
label: "隐藏",
|
|
2142
|
-
type: "switch",
|
|
2143
|
-
field: "componentProps.hidden"
|
|
2144
|
-
},
|
|
2145
|
-
{
|
|
2146
|
-
label: "表单校验",
|
|
2147
|
-
type: "ERuleEditor",
|
|
2148
|
-
layout: "vertical",
|
|
2149
|
-
field: "rules",
|
|
2150
|
-
describe: "校验规则需要配合表单使用",
|
|
2151
|
-
componentProps: {
|
|
2152
|
-
ruleType: "array"
|
|
2153
|
-
}
|
|
2154
|
-
}
|
|
2155
|
-
]
|
|
2156
|
-
},
|
|
2157
|
-
bindModel: "modelValue"
|
|
2158
|
-
}, Y = {
|
|
2159
|
-
component: () => import("../../card-BQ_K3Q8i.js"),
|
|
2160
|
-
groupName: "布局",
|
|
2161
|
-
icon: "icon--epic--wysiwyg-rounded",
|
|
2162
|
-
sort: 700,
|
|
2163
|
-
defaultSchema: {
|
|
2164
|
-
label: "卡片布局",
|
|
2165
|
-
type: "card",
|
|
2166
|
-
children: []
|
|
2167
|
-
},
|
|
2168
|
-
config: {
|
|
2169
|
-
attribute: [
|
|
2170
|
-
{
|
|
2171
|
-
label: "标题",
|
|
2172
|
-
type: "input",
|
|
2173
|
-
field: "label"
|
|
2174
|
-
},
|
|
2175
|
-
{
|
|
2176
|
-
label: "尺寸",
|
|
2177
|
-
type: "select",
|
|
2178
|
-
componentProps: {
|
|
2179
|
-
placeholder: "请选择",
|
|
2180
|
-
allowClear: !0,
|
|
2181
|
-
options: [
|
|
2182
|
-
{
|
|
2183
|
-
label: "default",
|
|
2184
|
-
value: "default"
|
|
2185
|
-
},
|
|
2186
|
-
{
|
|
2187
|
-
label: "small",
|
|
2188
|
-
value: "small"
|
|
2189
|
-
}
|
|
2190
|
-
]
|
|
2191
|
-
},
|
|
2192
|
-
field: "componentProps.size"
|
|
2193
|
-
},
|
|
2194
|
-
{
|
|
2195
|
-
label: "无边框",
|
|
2196
|
-
type: "switch",
|
|
2197
|
-
componentProps: {
|
|
2198
|
-
checkedValue: !1,
|
|
2199
|
-
unCheckedValue: !0
|
|
2200
|
-
},
|
|
2201
|
-
field: "componentProps.bordered"
|
|
2202
|
-
},
|
|
2203
|
-
{
|
|
2204
|
-
label: "鼠标悬停阴影",
|
|
2205
|
-
type: "switch",
|
|
2206
|
-
field: "componentProps.hoverable"
|
|
2207
|
-
},
|
|
2208
|
-
{
|
|
2209
|
-
label: "加载状态",
|
|
2210
|
-
type: "switch",
|
|
2211
|
-
field: "componentProps.loading"
|
|
2212
|
-
},
|
|
2213
|
-
{
|
|
2214
|
-
label: "隐藏",
|
|
2215
|
-
type: "switch",
|
|
2216
|
-
field: "componentProps.hidden"
|
|
2217
|
-
}
|
|
2218
|
-
]
|
|
2219
|
-
}
|
|
2220
|
-
}, x = {
|
|
2221
|
-
component: () => import("../../row-BX4lrSir.js"),
|
|
2222
|
-
groupName: "布局",
|
|
2223
|
-
icon: "icon--epic--width-normal-outline",
|
|
2224
|
-
sort: 800,
|
|
2225
|
-
defaultSchema: {
|
|
2226
|
-
label: "栅格布局",
|
|
2227
|
-
type: "row",
|
|
2228
|
-
children: [
|
|
2229
|
-
{
|
|
2230
|
-
type: "col",
|
|
2231
|
-
children: [],
|
|
2232
|
-
componentProps: {
|
|
2233
|
-
span: 12
|
|
2234
|
-
}
|
|
2235
|
-
},
|
|
2236
|
-
{
|
|
2237
|
-
type: "col",
|
|
2238
|
-
children: [],
|
|
2239
|
-
componentProps: {
|
|
2240
|
-
span: 12
|
|
2241
|
-
}
|
|
2242
|
-
}
|
|
2243
|
-
]
|
|
2244
|
-
},
|
|
2245
|
-
editConstraints: {
|
|
2246
|
-
childImmovable: !0
|
|
2247
|
-
},
|
|
2248
|
-
config: {
|
|
2249
|
-
attribute: [
|
|
2250
|
-
{
|
|
2251
|
-
label: "垂直对齐方式",
|
|
2252
|
-
type: "select",
|
|
2253
|
-
componentProps: {
|
|
2254
|
-
style: { width: "100%" },
|
|
2255
|
-
options: [
|
|
2256
|
-
{
|
|
2257
|
-
label: "top",
|
|
2258
|
-
value: "top"
|
|
2259
|
-
},
|
|
2260
|
-
{
|
|
2261
|
-
label: "middle",
|
|
2262
|
-
value: "middle"
|
|
2263
|
-
},
|
|
2264
|
-
{
|
|
2265
|
-
label: "bottom",
|
|
2266
|
-
value: "bottom"
|
|
2267
|
-
}
|
|
2268
|
-
],
|
|
2269
|
-
placeholder: "请选择"
|
|
2270
|
-
},
|
|
2271
|
-
field: "componentProps.align"
|
|
2272
|
-
},
|
|
2273
|
-
{
|
|
2274
|
-
label: "水平排列方式",
|
|
2275
|
-
type: "select",
|
|
2276
|
-
componentProps: {
|
|
2277
|
-
style: { width: "100%" },
|
|
2278
|
-
options: [
|
|
2279
|
-
{
|
|
2280
|
-
label: "start",
|
|
2281
|
-
value: "start"
|
|
2282
|
-
},
|
|
2283
|
-
{
|
|
2284
|
-
label: "end",
|
|
2285
|
-
value: "end"
|
|
2286
|
-
},
|
|
2287
|
-
{
|
|
2288
|
-
label: "center",
|
|
2289
|
-
value: "center"
|
|
2290
|
-
},
|
|
2291
|
-
{
|
|
2292
|
-
label: "space-around",
|
|
2293
|
-
value: "space-around"
|
|
2294
|
-
},
|
|
2295
|
-
{
|
|
2296
|
-
label: "space-between",
|
|
2297
|
-
value: "space-between"
|
|
2298
|
-
}
|
|
2299
|
-
],
|
|
2300
|
-
placeholder: "请选择"
|
|
2301
|
-
},
|
|
2302
|
-
field: "componentProps.justify"
|
|
2303
|
-
},
|
|
2304
|
-
{
|
|
2305
|
-
label: "栅格间距",
|
|
2306
|
-
type: "input",
|
|
2307
|
-
field: "componentProps.gutter",
|
|
2308
|
-
componentProps: {
|
|
2309
|
-
placeholder: "请输入"
|
|
2310
|
-
}
|
|
2311
|
-
},
|
|
2312
|
-
{
|
|
2313
|
-
label: "列编辑",
|
|
2314
|
-
type: "EColEditor",
|
|
2315
|
-
field: "children"
|
|
2316
|
-
},
|
|
2317
|
-
{
|
|
2318
|
-
label: "不自动换行",
|
|
2319
|
-
type: "switch",
|
|
2320
|
-
componentProps: {
|
|
2321
|
-
checkedValue: !1,
|
|
2322
|
-
unCheckedValue: !0
|
|
2323
|
-
},
|
|
2324
|
-
field: "componentProps.wrap"
|
|
2325
|
-
},
|
|
2326
|
-
{
|
|
2327
|
-
label: "隐藏",
|
|
2328
|
-
type: "switch",
|
|
2329
|
-
field: "componentProps.hidden"
|
|
2330
|
-
}
|
|
2331
|
-
]
|
|
2332
|
-
}
|
|
2333
|
-
}, E = {
|
|
2334
|
-
component: () => import("../../col-C_cbW1SI.js"),
|
|
2335
|
-
defaultSchema: {
|
|
2336
|
-
label: "栅格布局-列",
|
|
2337
|
-
type: "col",
|
|
2338
|
-
children: [],
|
|
2339
|
-
componentProps: {
|
|
2340
|
-
span: 6
|
|
2341
|
-
}
|
|
2342
|
-
},
|
|
2343
|
-
config: {
|
|
2344
|
-
attribute: [
|
|
2345
|
-
{
|
|
2346
|
-
label: "占位格数",
|
|
2347
|
-
type: "number",
|
|
2348
|
-
field: "componentProps.span"
|
|
2349
|
-
}
|
|
2350
|
-
]
|
|
2351
|
-
}
|
|
2352
|
-
}, p = {
|
|
2353
|
-
component: () => import("../../form-BPH0cDFl.js"),
|
|
2354
|
-
groupName: "表单",
|
|
2355
|
-
icon: "icon--epic--list-alt-outline-rounded",
|
|
2356
|
-
sort: 600,
|
|
2357
|
-
defaultSchema: {
|
|
2358
|
-
label: "表单",
|
|
2359
|
-
type: "form",
|
|
2360
|
-
componentProps: {
|
|
2361
|
-
name: "default",
|
|
2362
|
-
labelWidth: "100px",
|
|
2363
|
-
labelLayout: "fixed",
|
|
2364
|
-
labelCol: {
|
|
2365
|
-
span: 5
|
|
2366
|
-
},
|
|
2367
|
-
wrapperCol: {
|
|
2368
|
-
span: 19
|
|
2369
|
-
}
|
|
2370
|
-
},
|
|
2371
|
-
children: []
|
|
2372
|
-
},
|
|
2373
|
-
config: {
|
|
2374
|
-
attribute: [
|
|
2375
|
-
{
|
|
2376
|
-
label: "Name",
|
|
2377
|
-
type: "input",
|
|
2378
|
-
field: "componentProps.name"
|
|
2379
|
-
},
|
|
2380
|
-
{
|
|
2381
|
-
label: "表单布局",
|
|
2382
|
-
type: "radio",
|
|
2383
|
-
componentProps: {
|
|
2384
|
-
placeholder: "请选择",
|
|
2385
|
-
allowClear: !0,
|
|
2386
|
-
options: [
|
|
2387
|
-
{
|
|
2388
|
-
label: "水平",
|
|
2389
|
-
value: "horizontal"
|
|
2390
|
-
},
|
|
2391
|
-
{
|
|
2392
|
-
label: "垂直",
|
|
2393
|
-
value: "vertical"
|
|
2394
|
-
},
|
|
2395
|
-
{
|
|
2396
|
-
label: "内联",
|
|
2397
|
-
value: "inline"
|
|
2398
|
-
}
|
|
2399
|
-
],
|
|
2400
|
-
"option-type": "button"
|
|
2401
|
-
},
|
|
2402
|
-
field: "componentProps.layout"
|
|
2403
|
-
},
|
|
2404
|
-
{
|
|
2405
|
-
label: "标签布局",
|
|
2406
|
-
type: "radio",
|
|
2407
|
-
field: "componentProps.labelLayout",
|
|
2408
|
-
componentProps: {
|
|
2409
|
-
options: [
|
|
2410
|
-
{
|
|
2411
|
-
label: "固定宽度",
|
|
2412
|
-
value: "fixed"
|
|
2413
|
-
},
|
|
2414
|
-
{
|
|
2415
|
-
label: "自适应宽度",
|
|
2416
|
-
value: "flex"
|
|
2417
|
-
}
|
|
2418
|
-
],
|
|
2419
|
-
"option-type": "button"
|
|
2420
|
-
}
|
|
2421
|
-
},
|
|
2422
|
-
{
|
|
2423
|
-
label: "标签宽度",
|
|
2424
|
-
type: "EInputSize",
|
|
2425
|
-
field: "componentProps.labelWidth",
|
|
2426
|
-
show: ({ values: l }) => {
|
|
2427
|
-
var e;
|
|
2428
|
-
return ((e = l.componentProps) == null ? void 0 : e.labelLayout) === "fixed";
|
|
2429
|
-
}
|
|
2430
|
-
},
|
|
2431
|
-
{
|
|
2432
|
-
label: "标签占比",
|
|
2433
|
-
type: "input",
|
|
2434
|
-
field: "componentProps.labelCol.span",
|
|
2435
|
-
show: ({ values: l }) => {
|
|
2436
|
-
var e;
|
|
2437
|
-
return ((e = l.componentProps) == null ? void 0 : e.labelLayout) === "flex";
|
|
2438
|
-
},
|
|
2439
|
-
componentProps: {
|
|
2440
|
-
placeholder: "请输入"
|
|
2441
|
-
}
|
|
2442
|
-
},
|
|
2443
|
-
{
|
|
2444
|
-
label: "控件占比",
|
|
2445
|
-
type: "input",
|
|
2446
|
-
field: "componentProps.wrapperCol.span",
|
|
2447
|
-
show: ({ values: l }) => {
|
|
2448
|
-
var e;
|
|
2449
|
-
return ((e = l.componentProps) == null ? void 0 : e.labelLayout) === "flex";
|
|
2450
|
-
},
|
|
2451
|
-
componentProps: {
|
|
2452
|
-
placeholder: "请输入"
|
|
2453
|
-
}
|
|
2454
|
-
},
|
|
2455
|
-
{
|
|
2456
|
-
label: "标签对齐",
|
|
2457
|
-
type: "radio",
|
|
2458
|
-
componentProps: {
|
|
2459
|
-
options: [
|
|
2460
|
-
{
|
|
2461
|
-
label: "左",
|
|
2462
|
-
value: "left"
|
|
2463
|
-
},
|
|
2464
|
-
{
|
|
2465
|
-
label: "右",
|
|
2466
|
-
value: "right"
|
|
2467
|
-
}
|
|
2468
|
-
],
|
|
2469
|
-
"option-type": "button"
|
|
2470
|
-
},
|
|
2471
|
-
field: "componentProps.labelAlign"
|
|
2472
|
-
},
|
|
2473
|
-
{
|
|
2474
|
-
label: "尺寸",
|
|
2475
|
-
type: "select",
|
|
2476
|
-
defaultValue: "default",
|
|
2477
|
-
componentProps: {
|
|
2478
|
-
placeholder: "请选择",
|
|
2479
|
-
allowClear: !0,
|
|
2480
|
-
options: [
|
|
2481
|
-
{
|
|
2482
|
-
label: "大号",
|
|
2483
|
-
value: "large"
|
|
2484
|
-
},
|
|
2485
|
-
{
|
|
2486
|
-
label: "中等",
|
|
2487
|
-
value: "middle"
|
|
2488
|
-
},
|
|
2489
|
-
{
|
|
2490
|
-
label: "小型",
|
|
2491
|
-
value: "small"
|
|
2492
|
-
}
|
|
2493
|
-
]
|
|
2494
|
-
},
|
|
2495
|
-
field: "componentProps.size"
|
|
2496
|
-
},
|
|
2497
|
-
{
|
|
2498
|
-
label: "隐藏冒号",
|
|
2499
|
-
type: "switch",
|
|
2500
|
-
componentProps: {
|
|
2501
|
-
checkedValue: !1,
|
|
2502
|
-
unCheckedValue: !0
|
|
2503
|
-
},
|
|
2504
|
-
field: "componentProps.colon"
|
|
2505
|
-
},
|
|
2506
|
-
{
|
|
2507
|
-
label: "隐藏必须标志",
|
|
2508
|
-
type: "switch",
|
|
2509
|
-
field: "componentProps.hideRequiredMark"
|
|
2510
|
-
},
|
|
2511
|
-
{
|
|
2512
|
-
label: "标签文本换行",
|
|
2513
|
-
type: "switch",
|
|
2514
|
-
field: "componentProps.labelWrap"
|
|
2515
|
-
},
|
|
2516
|
-
{
|
|
2517
|
-
label: "滚动校验错误处",
|
|
2518
|
-
type: "switch",
|
|
2519
|
-
field: "componentProps.scrollToFirstError"
|
|
2520
|
-
},
|
|
2521
|
-
{
|
|
2522
|
-
label: "禁用",
|
|
2523
|
-
type: "switch",
|
|
2524
|
-
field: "componentProps.disabled"
|
|
2525
|
-
},
|
|
2526
|
-
{
|
|
2527
|
-
label: "隐藏",
|
|
2528
|
-
type: "switch",
|
|
2529
|
-
field: "componentProps.hidden"
|
|
2530
|
-
}
|
|
2531
|
-
],
|
|
2532
|
-
action: [
|
|
2533
|
-
{
|
|
2534
|
-
type: "getData",
|
|
2535
|
-
describe: "获取表单数据"
|
|
2536
|
-
},
|
|
2537
|
-
{
|
|
2538
|
-
type: "setData",
|
|
2539
|
-
describe: "设置表单数据"
|
|
2540
|
-
},
|
|
2541
|
-
{
|
|
2542
|
-
type: "validate",
|
|
2543
|
-
describe: "校验表单"
|
|
2544
|
-
}
|
|
2545
|
-
]
|
|
2546
|
-
}
|
|
2547
|
-
}, S = {
|
|
2548
|
-
component: () => import("../../formItem-cj8JQT2r.js"),
|
|
2549
|
-
defaultSchema: {
|
|
2550
|
-
label: "表单项",
|
|
2551
|
-
type: "form-item"
|
|
2552
|
-
},
|
|
2553
|
-
config: {}
|
|
2554
|
-
}, R = {
|
|
2555
|
-
component: () => import("../../button-BbHi0DmU.js"),
|
|
2556
|
-
groupName: "表单",
|
|
2557
|
-
icon: "icon--epic--fit-screen-rounded",
|
|
2558
|
-
sort: 1200,
|
|
2559
|
-
defaultSchema: {
|
|
2560
|
-
label: "按钮",
|
|
2561
|
-
type: "button",
|
|
2562
|
-
field: "input",
|
|
2563
|
-
input: !1
|
|
2564
|
-
},
|
|
2565
|
-
config: {
|
|
2566
|
-
attribute: [
|
|
2567
|
-
{
|
|
2568
|
-
label: "标题",
|
|
2569
|
-
type: "input",
|
|
2570
|
-
field: "label"
|
|
2571
|
-
},
|
|
2572
|
-
{
|
|
2573
|
-
label: "类型",
|
|
2574
|
-
type: "select",
|
|
2575
|
-
componentProps: {
|
|
2576
|
-
placeholder: "请选择",
|
|
2577
|
-
clearable: !0,
|
|
2578
|
-
options: [
|
|
2579
|
-
{
|
|
2580
|
-
label: "primary",
|
|
2581
|
-
value: "primary"
|
|
2582
|
-
},
|
|
2583
|
-
{
|
|
2584
|
-
label: "ghost",
|
|
2585
|
-
value: "ghost"
|
|
2586
|
-
},
|
|
2587
|
-
{
|
|
2588
|
-
label: "dashed",
|
|
2589
|
-
value: "dashed"
|
|
2590
|
-
},
|
|
2591
|
-
{
|
|
2592
|
-
label: "link",
|
|
2593
|
-
value: "link"
|
|
2594
|
-
},
|
|
2595
|
-
{
|
|
2596
|
-
label: "text",
|
|
2597
|
-
value: "text"
|
|
2598
|
-
},
|
|
2599
|
-
{
|
|
2600
|
-
label: "default",
|
|
2601
|
-
value: "default"
|
|
2602
|
-
}
|
|
2603
|
-
]
|
|
2604
|
-
},
|
|
2605
|
-
field: "componentProps.type"
|
|
2606
|
-
},
|
|
2607
|
-
{
|
|
2608
|
-
label: "操作类型",
|
|
2609
|
-
type: "select",
|
|
2610
|
-
componentProps: {
|
|
2611
|
-
placeholder: "请选择",
|
|
2612
|
-
clearable: !0,
|
|
2613
|
-
options: [
|
|
2614
|
-
{
|
|
2615
|
-
label: "button",
|
|
2616
|
-
value: "button"
|
|
2617
|
-
},
|
|
2618
|
-
{
|
|
2619
|
-
label: "submit",
|
|
2620
|
-
value: "submit"
|
|
2621
|
-
},
|
|
2622
|
-
{
|
|
2623
|
-
label: "reset",
|
|
2624
|
-
value: "reset"
|
|
2625
|
-
}
|
|
2626
|
-
]
|
|
2627
|
-
},
|
|
2628
|
-
field: "componentProps.htmlType"
|
|
2629
|
-
},
|
|
2630
|
-
{
|
|
2631
|
-
label: "链接",
|
|
2632
|
-
type: "input",
|
|
2633
|
-
field: "componentProps.href",
|
|
2634
|
-
componentProps: {
|
|
2635
|
-
allowClear: !0,
|
|
2636
|
-
placeholder: "请输入"
|
|
2637
|
-
}
|
|
2638
|
-
},
|
|
2639
|
-
{
|
|
2640
|
-
label: "链接打开方式",
|
|
2641
|
-
type: "select",
|
|
2642
|
-
field: "componentProps.target",
|
|
2643
|
-
show: ({ values: l }) => {
|
|
2644
|
-
var e;
|
|
2645
|
-
return (e = l.componentProps) == null ? void 0 : e.href;
|
|
2646
|
-
},
|
|
2647
|
-
componentProps: {
|
|
2648
|
-
placeholder: "请选择",
|
|
2649
|
-
clearable: !0,
|
|
2650
|
-
options: [
|
|
2651
|
-
{
|
|
2652
|
-
label: "blank",
|
|
2653
|
-
value: "_blank"
|
|
2654
|
-
},
|
|
2655
|
-
{
|
|
2656
|
-
label: "parent",
|
|
2657
|
-
value: "_parent"
|
|
2658
|
-
},
|
|
2659
|
-
{
|
|
2660
|
-
label: "self",
|
|
2661
|
-
value: "_self"
|
|
2662
|
-
},
|
|
2663
|
-
{
|
|
2664
|
-
label: "top",
|
|
2665
|
-
value: "_top"
|
|
2666
|
-
}
|
|
2667
|
-
]
|
|
2668
|
-
}
|
|
2669
|
-
},
|
|
2670
|
-
{
|
|
2671
|
-
label: "尺寸",
|
|
2672
|
-
type: "select",
|
|
2673
|
-
componentProps: {
|
|
2674
|
-
placeholder: "请选择",
|
|
2675
|
-
allowClear: !0,
|
|
2676
|
-
options: [
|
|
2677
|
-
{
|
|
2678
|
-
label: "default",
|
|
2679
|
-
value: "default"
|
|
2680
|
-
},
|
|
2681
|
-
{
|
|
2682
|
-
label: "small",
|
|
2683
|
-
value: "small"
|
|
2684
|
-
},
|
|
2685
|
-
{
|
|
2686
|
-
label: "large",
|
|
2687
|
-
value: "large"
|
|
2688
|
-
}
|
|
2689
|
-
]
|
|
2690
|
-
},
|
|
2691
|
-
field: "componentProps.size"
|
|
2692
|
-
},
|
|
2693
|
-
{
|
|
2694
|
-
label: "形状",
|
|
2695
|
-
type: "select",
|
|
2696
|
-
componentProps: {
|
|
2697
|
-
placeholder: "请选择",
|
|
2698
|
-
clearable: !0,
|
|
2699
|
-
options: [
|
|
2700
|
-
{
|
|
2701
|
-
label: "default",
|
|
2702
|
-
value: "default"
|
|
2703
|
-
},
|
|
2704
|
-
{
|
|
2705
|
-
label: "circle",
|
|
2706
|
-
value: "circle"
|
|
2707
|
-
},
|
|
2708
|
-
{
|
|
2709
|
-
label: "round",
|
|
2710
|
-
value: "round"
|
|
2711
|
-
}
|
|
2712
|
-
]
|
|
2713
|
-
},
|
|
2714
|
-
field: "componentProps.shape"
|
|
2715
|
-
},
|
|
2716
|
-
{
|
|
2717
|
-
label: "幽灵按钮",
|
|
2718
|
-
type: "switch",
|
|
2719
|
-
field: "componentProps.ghost"
|
|
2720
|
-
},
|
|
2721
|
-
{
|
|
2722
|
-
label: "加载状态",
|
|
2723
|
-
type: "switch",
|
|
2724
|
-
field: "componentProps.loading"
|
|
2725
|
-
},
|
|
2726
|
-
{
|
|
2727
|
-
label: "宽度自适应",
|
|
2728
|
-
type: "switch",
|
|
2729
|
-
field: "componentProps.block"
|
|
2730
|
-
},
|
|
2731
|
-
{
|
|
2732
|
-
label: "危险按钮",
|
|
2733
|
-
type: "switch",
|
|
2734
|
-
field: "componentProps.danger"
|
|
2735
|
-
},
|
|
2736
|
-
{
|
|
2737
|
-
label: "禁用",
|
|
2738
|
-
type: "switch",
|
|
2739
|
-
field: "componentProps.disabled"
|
|
2740
|
-
},
|
|
2741
|
-
{
|
|
2742
|
-
label: "隐藏",
|
|
2743
|
-
type: "switch",
|
|
2744
|
-
field: "componentProps.hidden"
|
|
2745
|
-
}
|
|
2746
|
-
],
|
|
2747
|
-
event: [
|
|
2748
|
-
{
|
|
2749
|
-
type: "click",
|
|
2750
|
-
describe: "点击按钮时"
|
|
2751
|
-
},
|
|
2752
|
-
{
|
|
2753
|
-
type: "dblclick",
|
|
2754
|
-
describe: "双击按钮时"
|
|
2755
|
-
}
|
|
2756
|
-
]
|
|
2757
|
-
}
|
|
2758
|
-
}, M = {
|
|
2759
|
-
component: () => import("../../modal-3Iw7tqyx.js"),
|
|
2760
|
-
icon: "epic-icon-xiala",
|
|
2761
|
-
defaultSchema: {
|
|
2762
|
-
label: "模态框",
|
|
2763
|
-
type: "modal",
|
|
2764
|
-
children: []
|
|
2765
|
-
},
|
|
2766
|
-
config: {
|
|
2767
|
-
attribute: [
|
|
2768
|
-
{
|
|
2769
|
-
label: "标题",
|
|
2770
|
-
type: "input",
|
|
2771
|
-
field: "title"
|
|
2772
|
-
}
|
|
2773
|
-
]
|
|
2774
|
-
}
|
|
2775
|
-
}, z = {
|
|
2776
|
-
component: async () => (await import("ant-design-vue")).Input,
|
|
2777
|
-
groupName: "表单",
|
|
2778
|
-
icon: "icon--epic--palette-outline",
|
|
2779
|
-
sort: 950,
|
|
2780
|
-
defaultSchema: {
|
|
2781
|
-
label: "颜色选择器",
|
|
2782
|
-
type: "color-picker",
|
|
2783
|
-
field: "color-picker",
|
|
2784
|
-
input: !0,
|
|
2785
|
-
componentProps: {
|
|
2786
|
-
type: "color",
|
|
2787
|
-
style: {
|
|
2788
|
-
width: "80px"
|
|
2789
|
-
}
|
|
2790
|
-
}
|
|
2791
|
-
},
|
|
2792
|
-
config: {
|
|
2793
|
-
attribute: [
|
|
2794
|
-
{
|
|
2795
|
-
label: "字段名",
|
|
2796
|
-
type: "input",
|
|
2797
|
-
field: "field"
|
|
2798
|
-
},
|
|
2799
|
-
{
|
|
2800
|
-
label: "标题",
|
|
2801
|
-
type: "input",
|
|
2802
|
-
field: "label"
|
|
2803
|
-
},
|
|
2804
|
-
{
|
|
2805
|
-
label: "默认值",
|
|
2806
|
-
type: "input",
|
|
2807
|
-
field: "componentProps.defaultValue"
|
|
2808
|
-
},
|
|
2809
|
-
{
|
|
2810
|
-
label: "尺寸",
|
|
2811
|
-
type: "select",
|
|
2812
|
-
componentProps: {
|
|
2813
|
-
placeholder: "请选择",
|
|
2814
|
-
allowClear: !0,
|
|
2815
|
-
options: [
|
|
2816
|
-
{
|
|
2817
|
-
label: "大号",
|
|
2818
|
-
value: "large"
|
|
2819
|
-
},
|
|
2820
|
-
{
|
|
2821
|
-
label: "中等",
|
|
2822
|
-
value: "middle"
|
|
2823
|
-
},
|
|
2824
|
-
{
|
|
2825
|
-
label: "小型",
|
|
2826
|
-
value: "small"
|
|
2827
|
-
}
|
|
2828
|
-
]
|
|
2829
|
-
},
|
|
2830
|
-
field: "componentProps.size"
|
|
2831
|
-
},
|
|
2832
|
-
{
|
|
2833
|
-
label: "无边框",
|
|
2834
|
-
type: "switch",
|
|
2835
|
-
componentProps: {
|
|
2836
|
-
checkedValue: !1,
|
|
2837
|
-
unCheckedValue: !0
|
|
2838
|
-
},
|
|
2839
|
-
field: "componentProps.bordered"
|
|
2840
|
-
},
|
|
2841
|
-
{
|
|
2842
|
-
label: "可清空",
|
|
2843
|
-
type: "switch",
|
|
2844
|
-
field: "componentProps.allowClear"
|
|
2845
|
-
},
|
|
2846
|
-
{
|
|
2847
|
-
label: "禁用",
|
|
2848
|
-
type: "switch",
|
|
2849
|
-
field: "componentProps.disabled"
|
|
2850
|
-
},
|
|
2851
|
-
{
|
|
2852
|
-
label: "隐藏",
|
|
2853
|
-
type: "switch",
|
|
2854
|
-
field: "componentProps.hidden"
|
|
2855
|
-
},
|
|
2856
|
-
{
|
|
2857
|
-
label: "表单校验",
|
|
2858
|
-
type: "ERuleEditor",
|
|
2859
|
-
layout: "vertical",
|
|
2860
|
-
field: "rules",
|
|
2861
|
-
describe: "校验规则需要配合表单使用"
|
|
2862
|
-
}
|
|
2863
|
-
],
|
|
2864
|
-
event: [
|
|
2865
|
-
{
|
|
2866
|
-
type: "change",
|
|
2867
|
-
describe: "值修改时"
|
|
2868
|
-
},
|
|
2869
|
-
{
|
|
2870
|
-
type: "focus",
|
|
2871
|
-
describe: "获取焦点时"
|
|
2872
|
-
},
|
|
2873
|
-
{
|
|
2874
|
-
type: "blur",
|
|
2875
|
-
describe: "失去焦点时"
|
|
2876
|
-
}
|
|
2877
|
-
],
|
|
2878
|
-
action: []
|
|
2879
|
-
},
|
|
2880
|
-
bindModel: "value"
|
|
2881
|
-
};
|
|
2882
|
-
function F(l = i) {
|
|
2883
|
-
var n;
|
|
2884
|
-
const e = s.split("."), t = parseInt(e[0]), a = document.createElement("style");
|
|
2885
|
-
t > 3 ? (a.appendChild(document.createTextNode(`
|
|
2886
|
-
.epic-modal-ant .epic-modal-main {
|
|
2887
|
-
padding: 4px 12px 12px;
|
|
2888
|
-
}
|
|
2889
|
-
.epic-modal-ant .ant-modal-title {
|
|
2890
|
-
padding: 16px 16px 0px;
|
|
2891
|
-
}
|
|
2892
|
-
.epic-modal-ant .ant-modal-content {
|
|
2893
|
-
padding: 0px;
|
|
2894
|
-
}`)), document.head.appendChild(a)) : p.config.attribute = (n = p.config.attribute) == null ? void 0 : n.filter((o) => o.label !== "禁用"), l.component("Collapse", async () => (await import("ant-design-vue")).Collapse), l.component("CollapseItem", async () => (await import("ant-design-vue")).CollapsePanel), l.component("Tabs", async () => (await import("ant-design-vue")).Tabs), l.component("TabPane", async () => (await import("ant-design-vue")).TabPane), [
|
|
2895
|
-
p,
|
|
2896
|
-
S,
|
|
2897
|
-
d,
|
|
2898
|
-
m,
|
|
2899
|
-
b,
|
|
2900
|
-
u,
|
|
2901
|
-
h,
|
|
2902
|
-
f,
|
|
2903
|
-
y,
|
|
2904
|
-
P,
|
|
2905
|
-
w,
|
|
2906
|
-
v,
|
|
2907
|
-
g,
|
|
2908
|
-
k,
|
|
2909
|
-
C,
|
|
2910
|
-
V,
|
|
2911
|
-
z,
|
|
2912
|
-
R,
|
|
2913
|
-
Y,
|
|
2914
|
-
x,
|
|
2915
|
-
E,
|
|
2916
|
-
M
|
|
2917
|
-
].forEach((o) => {
|
|
2918
|
-
l.registerComponent(o), l.addBaseComponentTypes(o.defaultSchema.type);
|
|
2919
|
-
}), l.setInitialized(!0);
|
|
2920
|
-
}
|
|
2921
|
-
function H(l = "zh-cn") {
|
|
2922
|
-
switch (c.locale(l), l.toLowerCase()) {
|
|
2923
|
-
case "az-az":
|
|
2924
|
-
import("../../az-C4lqmLYp.js").then((e) => e.a);
|
|
2925
|
-
break;
|
|
2926
|
-
case "bg-bg":
|
|
2927
|
-
import("../../bg-BOlG8Um1.js").then((e) => e.b);
|
|
2928
|
-
break;
|
|
2929
|
-
case "bn-bd":
|
|
2930
|
-
import("../../bn-bd-B1E6-oJQ.js").then((e) => e.b);
|
|
2931
|
-
break;
|
|
2932
|
-
case "by-by":
|
|
2933
|
-
import("../../be-DJzFjqtL.js").then((e) => e.b);
|
|
2934
|
-
break;
|
|
2935
|
-
case "ca-es":
|
|
2936
|
-
import("../../ca-DCcDFeSK.js").then((e) => e.c);
|
|
2937
|
-
break;
|
|
2938
|
-
case "cs-cz":
|
|
2939
|
-
import("../../cs-CisRL5gQ.js").then((e) => e.c);
|
|
2940
|
-
break;
|
|
2941
|
-
case "da-dk":
|
|
2942
|
-
import("../../da-DhyERRsC.js").then((e) => e.d);
|
|
2943
|
-
break;
|
|
2944
|
-
case "de-de":
|
|
2945
|
-
import("../../de-CjumkRE8.js").then((e) => e.d);
|
|
2946
|
-
break;
|
|
2947
|
-
case "el-gr":
|
|
2948
|
-
import("../../el-DyUHskgW.js").then((e) => e.e);
|
|
2949
|
-
break;
|
|
2950
|
-
case "en-gb":
|
|
2951
|
-
import("../../en-gb-C8f1Enek.js").then((e) => e.e);
|
|
2952
|
-
break;
|
|
2953
|
-
case "en-us":
|
|
2954
|
-
import("../../en-C2YS2Qnb.js").then((e) => e.e);
|
|
2955
|
-
break;
|
|
2956
|
-
case "es-es":
|
|
2957
|
-
import("../../es-DP04S73E.js").then((e) => e.e);
|
|
2958
|
-
break;
|
|
2959
|
-
case "et-ee":
|
|
2960
|
-
import("../../et-ipLqjCDG.js").then((e) => e.e);
|
|
2961
|
-
break;
|
|
2962
|
-
case "fa-ir":
|
|
2963
|
-
import("../../fa-DXE6u9is.js").then((e) => e.f);
|
|
2964
|
-
break;
|
|
2965
|
-
case "fi-fi":
|
|
2966
|
-
import("../../fi-Cpkq8dP2.js").then((e) => e.f);
|
|
2967
|
-
break;
|
|
2968
|
-
case "fr-ca":
|
|
2969
|
-
import("../../fr-ca-EPfCD7sc.js").then((e) => e.f);
|
|
2970
|
-
break;
|
|
2971
|
-
case "fr-fr":
|
|
2972
|
-
import("../../fr-DoLP2lvG.js").then((e) => e.f);
|
|
2973
|
-
break;
|
|
2974
|
-
case "ga-ie":
|
|
2975
|
-
import("../../ga-BcnAx7jm.js").then((e) => e.g);
|
|
2976
|
-
break;
|
|
2977
|
-
case "gl-es":
|
|
2978
|
-
import("../../gl-CBMDu4db.js").then((e) => e.g);
|
|
2979
|
-
break;
|
|
2980
|
-
case "he-il":
|
|
2981
|
-
import("../../he-VbXQT3dj.js").then((e) => e.h);
|
|
2982
|
-
break;
|
|
2983
|
-
case "hi-in":
|
|
2984
|
-
import("../../hi-nXeMgLvO.js").then((e) => e.h);
|
|
2985
|
-
break;
|
|
2986
|
-
case "hr-hr":
|
|
2987
|
-
import("../../hr-C3DFfYc9.js").then((e) => e.h);
|
|
2988
|
-
break;
|
|
2989
|
-
case "hu-hu":
|
|
2990
|
-
import("../../hu-Bs3B-9e3.js").then((e) => e.h);
|
|
2991
|
-
break;
|
|
2992
|
-
case "hy-am":
|
|
2993
|
-
import("../../hy-am-CvHDFapi.js").then((e) => e.h);
|
|
2994
|
-
break;
|
|
2995
|
-
case "id-id":
|
|
2996
|
-
import("../../id-CO78nlWo.js").then((e) => e.i);
|
|
2997
|
-
break;
|
|
2998
|
-
case "is-is":
|
|
2999
|
-
import("../../is-Bip0ggci.js").then((e) => e.i);
|
|
3000
|
-
break;
|
|
3001
|
-
case "it-it":
|
|
3002
|
-
import("../../it-BFF7WzRR.js").then((e) => e.i);
|
|
3003
|
-
break;
|
|
3004
|
-
case "ja-jp":
|
|
3005
|
-
import("../../ja-4CWMghxy.js").then((e) => e.j);
|
|
3006
|
-
break;
|
|
3007
|
-
case "ka-ge":
|
|
3008
|
-
import("../../ka-DrA_EMLP.js").then((e) => e.k);
|
|
3009
|
-
break;
|
|
3010
|
-
case "kk-kz":
|
|
3011
|
-
import("../../kk-QVPqpI2b.js").then((e) => e.k);
|
|
3012
|
-
break;
|
|
3013
|
-
case "km-kh":
|
|
3014
|
-
import("../../km-CBMnSWv_.js").then((e) => e.k);
|
|
3015
|
-
break;
|
|
3016
|
-
case "kmr-iq":
|
|
3017
|
-
import("../../ku-BfqBpklm.js").then((e) => e.k);
|
|
3018
|
-
break;
|
|
3019
|
-
case "kn-in":
|
|
3020
|
-
import("../../kn-TECqDIit.js").then((e) => e.k);
|
|
3021
|
-
break;
|
|
3022
|
-
case "ko-kr":
|
|
3023
|
-
import("../../ko-MjoD8l4E.js").then((e) => e.k);
|
|
3024
|
-
break;
|
|
3025
|
-
case "ku-iq":
|
|
3026
|
-
import("../../ku-BfqBpklm.js").then((e) => e.k);
|
|
3027
|
-
break;
|
|
3028
|
-
case "lt-lt":
|
|
3029
|
-
import("../../lt-D0cq_0yM.js").then((e) => e.l);
|
|
3030
|
-
break;
|
|
3031
|
-
case "lv-lv":
|
|
3032
|
-
import("../../lv-CVdYvxq8.js").then((e) => e.l);
|
|
3033
|
-
break;
|
|
3034
|
-
case "mk-mk":
|
|
3035
|
-
import("../../mk-DDuk7A3P.js").then((e) => e.m);
|
|
3036
|
-
break;
|
|
3037
|
-
case "ml-in":
|
|
3038
|
-
import("../../ml-CPI3tJe8.js").then((e) => e.m);
|
|
3039
|
-
break;
|
|
3040
|
-
case "mn-mn":
|
|
3041
|
-
import("../../mn-CNbMEx0y.js").then((e) => e.m);
|
|
3042
|
-
break;
|
|
3043
|
-
case "ms-my":
|
|
3044
|
-
import("../../ms-my-BcgYEtml.js").then((e) => e.m);
|
|
3045
|
-
break;
|
|
3046
|
-
case "nb-no":
|
|
3047
|
-
import("../../nb-BL5QmNEa.js").then((e) => e.n);
|
|
3048
|
-
break;
|
|
3049
|
-
case "ne-np":
|
|
3050
|
-
import("../../ne-9klrwaIE.js").then((e) => e.n);
|
|
3051
|
-
break;
|
|
3052
|
-
case "nl-be":
|
|
3053
|
-
import("../../nl-be-Di_N4z2D.js").then((e) => e.n);
|
|
3054
|
-
break;
|
|
3055
|
-
case "nl-nl":
|
|
3056
|
-
import("../../nl-DxyA21TA.js").then((e) => e.n);
|
|
3057
|
-
break;
|
|
3058
|
-
case "pl-pl":
|
|
3059
|
-
import("../../pl-BbDu9Cfd.js").then((e) => e.p);
|
|
3060
|
-
break;
|
|
3061
|
-
case "pt-br":
|
|
3062
|
-
import("../../pt-br-C1mqj5qX.js").then((e) => e.p);
|
|
3063
|
-
break;
|
|
3064
|
-
case "pt-pt":
|
|
3065
|
-
import("../../pt-CKDbEzZ-.js").then((e) => e.p);
|
|
3066
|
-
break;
|
|
3067
|
-
case "ro-ro":
|
|
3068
|
-
import("../../ro-V1i-UrkP.js").then((e) => e.r);
|
|
3069
|
-
break;
|
|
3070
|
-
case "ru-ru":
|
|
3071
|
-
import("../../ru-CCbLARi0.js").then((e) => e.r);
|
|
3072
|
-
break;
|
|
3073
|
-
case "sk-sk":
|
|
3074
|
-
import("../../sk-DD18bemk.js").then((e) => e.s);
|
|
3075
|
-
break;
|
|
3076
|
-
case "sl-si":
|
|
3077
|
-
import("../../sl-CL8MnX8D.js").then((e) => e.s);
|
|
3078
|
-
break;
|
|
3079
|
-
case "sr-rs":
|
|
3080
|
-
import("../../sr-BiP5qrT7.js").then((e) => e.s);
|
|
3081
|
-
break;
|
|
3082
|
-
case "sv-se":
|
|
3083
|
-
import("../../sv-DxlAeqP5.js").then((e) => e.s);
|
|
3084
|
-
break;
|
|
3085
|
-
case "ta-in":
|
|
3086
|
-
import("../../ta-CsfYqZQU.js").then((e) => e.t);
|
|
3087
|
-
break;
|
|
3088
|
-
case "th-th":
|
|
3089
|
-
import("../../th-CC5sx7mS.js").then((e) => e.t);
|
|
3090
|
-
break;
|
|
3091
|
-
case "tr-tr":
|
|
3092
|
-
import("../../tr-CCMwF27-.js").then((e) => e.t);
|
|
3093
|
-
break;
|
|
3094
|
-
case "uk-ua":
|
|
3095
|
-
import("../../uk-Ba9IHfoi.js").then((e) => e.u);
|
|
3096
|
-
break;
|
|
3097
|
-
case "ur-pk":
|
|
3098
|
-
import("../../ur-C0tmW1hr.js").then((e) => e.u);
|
|
3099
|
-
break;
|
|
3100
|
-
case "vi-vn":
|
|
3101
|
-
import("../../vi-j1PGHz1o.js").then((e) => e.v);
|
|
3102
|
-
break;
|
|
3103
|
-
case "zh-cn":
|
|
3104
|
-
import("../../zh-cn-BYui8_WB.js").then((e) => e.z);
|
|
3105
|
-
break;
|
|
3106
|
-
case "zh-hk":
|
|
3107
|
-
import("../../zh-hk-QZ4a6JLR.js").then((e) => e.z);
|
|
3108
|
-
break;
|
|
3109
|
-
case "zh-tw":
|
|
3110
|
-
import("../../zh-tw-BT16WIrT.js").then((e) => e.z);
|
|
3111
|
-
break;
|
|
3112
|
-
}
|
|
3113
|
-
}
|
|
3114
|
-
export {
|
|
3115
|
-
H as setDateLocale,
|
|
3116
|
-
F as setupAntd
|
|
3117
|
-
};
|