epic-designer-gold 1.0.0 → 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-BhPj8bSe.js +0 -105
- package/dist/attributeView-C9gY9X-c.cjs +0 -1
- 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-3fW_aWMH.js +0 -1357
- package/dist/index-3ndHV3fl.js +0 -432
- package/dist/index-4PPmJYKt.cjs +0 -51
- package/dist/index-B45xlt7e.js +0 -4
- package/dist/index-B72l3XQl.js +0 -453
- package/dist/index-BA5cmAC5.cjs +0 -1
- package/dist/index-BB9rZNCd.cjs +0 -181
- package/dist/index-BCk0LJsg.cjs +0 -347
- package/dist/index-BKDRMrcc.js +0 -84
- package/dist/index-BSLudrcT.cjs +0 -1
- package/dist/index-BVUz9lFN.cjs +0 -325
- package/dist/index-BmqAqj29.cjs +0 -1
- package/dist/index-BsXm6fLD.js +0 -1493
- package/dist/index-C2HMY2I2.cjs +0 -10
- package/dist/index-CE9DjYAW.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-CshPxldv.js +0 -675
- package/dist/index-CucdgcqX.cjs +0 -1
- package/dist/index-CvF1WVts.cjs +0 -1
- package/dist/index-Cw3VVR9A.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-DMDLjlCJ.js +0 -104
- package/dist/index-DMszow96.cjs +0 -110
- package/dist/index-DNeYX6HK.js +0 -87
- package/dist/index-DNuLy9hB.js +0 -1633
- 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-DpitV6qp.cjs +0 -1
- package/dist/index-DtWX93JN.js +0 -56
- package/dist/index-DyWFUxn5.js +0 -11674
- package/dist/index-F6atymcD.cjs +0 -1
- package/dist/index-G-yqaciQ.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-N_JBxsiO.js +0 -270
- package/dist/index-RdEhd65J.cjs +0 -65
- package/dist/index-XU85x6vz.cjs +0 -9
- package/dist/index-XUQ1VGQg.js +0 -44
- package/dist/index-efmvTLGJ.js +0 -194
- package/dist/index-g5ZjtbqH.cjs +0 -102
- package/dist/index-gA02bxwJ.js +0 -5947
- package/dist/index-iQ5ZEvrv.cjs +0 -1
- 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.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-Dew56dxa.cjs +0 -1
- package/dist/styleView-SPW99MRS.js +0 -105
- 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/ms-my-BcgYEtml.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { c as m } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as n } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var i = { exports: {} };
|
|
4
|
-
(function(s, o) {
|
|
5
|
-
(function(t, a) {
|
|
6
|
-
s.exports = a(n);
|
|
7
|
-
})(m, function(t) {
|
|
8
|
-
function a(e) {
|
|
9
|
-
return e && typeof e == "object" && "default" in e ? e : { default: e };
|
|
10
|
-
}
|
|
11
|
-
var r = a(t), _ = { name: "ms-my", weekdays: "Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"), months: "Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"), weekStart: 1, weekdaysShort: "Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"), monthsShort: "Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"), weekdaysMin: "Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"), ordinal: function(e) {
|
|
12
|
-
return e;
|
|
13
|
-
}, formats: { LT: "HH.mm", LTS: "HH.mm.ss", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY [pukul] HH.mm", LLLL: "dddd, D MMMM YYYY [pukul] HH.mm" }, relativeTime: { future: "dalam %s", past: "%s yang lepas", s: "beberapa saat", m: "seminit", mm: "%d minit", h: "sejam", hh: "%d jam", d: "sehari", dd: "%d hari", M: "sebulan", MM: "%d bulan", y: "setahun", yy: "%d tahun" } };
|
|
14
|
-
return r.default.locale(_, null, !0), _;
|
|
15
|
-
});
|
|
16
|
-
})(i);
|
|
17
|
-
const M = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18
|
-
__proto__: null
|
|
19
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
20
|
-
export {
|
|
21
|
-
M as m
|
|
22
|
-
};
|
package/dist/ms-my-BoMZ8Hzl.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const r=require("./_commonjsHelpers-DwTZ_eVU.cjs"),m=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var u={exports:{}};(function(s,o){(function(t,a){s.exports=a(m.require$$0)})(r.commonjsGlobal,function(t){function a(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var n=a(t),_={name:"ms-my",weekdays:"Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu".split("_"),months:"Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember".split("_"),weekStart:1,weekdaysShort:"Ahd_Isn_Sel_Rab_Kha_Jum_Sab".split("_"),monthsShort:"Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis".split("_"),weekdaysMin:"Ah_Is_Sl_Rb_Km_Jm_Sb".split("_"),ordinal:function(e){return e},formats:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},relativeTime:{future:"dalam %s",past:"%s yang lepas",s:"beberapa saat",m:"seminit",mm:"%d minit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"}};return n.default.locale(_,null,!0),_})})(u);const i=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.msMy=i;
|
package/dist/nb-BL5QmNEa.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { c as o } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as m } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var s = { exports: {} };
|
|
4
|
-
(function(_, d) {
|
|
5
|
-
(function(r, t) {
|
|
6
|
-
_.exports = t(m);
|
|
7
|
-
})(o, function(r) {
|
|
8
|
-
function t(e) {
|
|
9
|
-
return e && typeof e == "object" && "default" in e ? e : { default: e };
|
|
10
|
-
}
|
|
11
|
-
var a = t(r), n = { name: "nb", weekdays: "søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"), weekdaysShort: "sø._ma._ti._on._to._fr._lø.".split("_"), weekdaysMin: "sø_ma_ti_on_to_fr_lø".split("_"), months: "januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"), monthsShort: "jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"), ordinal: function(e) {
|
|
12
|
-
return e + ".";
|
|
13
|
-
}, weekStart: 1, yearStart: 4, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD.MM.YYYY", LL: "D. MMMM YYYY", LLL: "D. MMMM YYYY [kl.] HH:mm", LLLL: "dddd D. MMMM YYYY [kl.] HH:mm" }, relativeTime: { future: "om %s", past: "%s siden", s: "noen sekunder", m: "ett minutt", mm: "%d minutter", h: "en time", hh: "%d timer", d: "en dag", dd: "%d dager", M: "en måned", MM: "%d måneder", y: "ett år", yy: "%d år" } };
|
|
14
|
-
return a.default.locale(n, null, !0), n;
|
|
15
|
-
});
|
|
16
|
-
})(s);
|
|
17
|
-
const u = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18
|
-
__proto__: null
|
|
19
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
20
|
-
export {
|
|
21
|
-
u as n
|
|
22
|
-
};
|
package/dist/nb-BdFW_T0n.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const o=require("./_commonjsHelpers-DwTZ_eVU.cjs"),s=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var m={exports:{}};(function(_,i){(function(r,t){_.exports=t(s.require$$0)})(o.commonjsGlobal,function(r){function t(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var a=t(r),n={name:"nb",weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"sø._ma._ti._on._to._fr._lø.".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.".split("_"),ordinal:function(e){return e+"."},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] HH:mm",LLLL:"dddd D. MMMM YYYY [kl.] HH:mm"},relativeTime:{future:"om %s",past:"%s siden",s:"noen sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"}};return a.default.locale(n,null,!0),n})})(m);const d=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.nb=d;
|
package/dist/ne-9klrwaIE.js
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { c as d } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as m } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var l = { exports: {} };
|
|
4
|
-
(function(r, a) {
|
|
5
|
-
(function(e, t) {
|
|
6
|
-
r.exports = t(m);
|
|
7
|
-
})(d, function(e) {
|
|
8
|
-
function t(_) {
|
|
9
|
-
return _ && typeof _ == "object" && "default" in _ ? _ : { default: _ };
|
|
10
|
-
}
|
|
11
|
-
var n = t(e), o = { name: "ne", weekdays: "आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार".split("_"), weekdaysShort: "आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.".split("_"), weekdaysMin: "आ._सो._मं._बु._बि._शु._श.".split("_"), months: "जनवरी_फेब्रुवरी_मार्च_अप्रिल_मे_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर".split("_"), monthsShort: "जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.".split("_"), relativeTime: { future: "%s पछि", past: "%s अघि", s: "सेकेन्ड", m: "एक मिनेट", mm: "%d मिनेट", h: "घन्टा", hh: "%d घन्टा", d: "एक दिन", dd: "%d दिन", M: "एक महिना", MM: "%d महिना", y: "एक वर्ष", yy: "%d वर्ष" }, ordinal: function(_) {
|
|
12
|
-
return ("" + _).replace(/\d/g, function(s) {
|
|
13
|
-
return "०१२३४५६७८९"[s];
|
|
14
|
-
});
|
|
15
|
-
}, formats: { LT: "Aको h:mm बजे", LTS: "Aको h:mm:ss बजे", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY, Aको h:mm बजे", LLLL: "dddd, D MMMM YYYY, Aको h:mm बजे" } };
|
|
16
|
-
return n.default.locale(o, null, !0), o;
|
|
17
|
-
});
|
|
18
|
-
})(l);
|
|
19
|
-
const M = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
20
|
-
__proto__: null
|
|
21
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
22
|
-
export {
|
|
23
|
-
M as n
|
|
24
|
-
};
|
package/dist/ne-VNPqdWFn.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const d=require("./_commonjsHelpers-DwTZ_eVU.cjs"),l=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var m={exports:{}};(function(o,i){(function(t,e){o.exports=e(l.require$$0)})(d.commonjsGlobal,function(t){function e(_){return _&&typeof _=="object"&&"default"in _?_:{default:_}}var r=e(t),n={name:"ne",weekdays:"आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार".split("_"),weekdaysShort:"आइत._सोम._मङ्गल._बुध._बिहि._शुक्र._शनि.".split("_"),weekdaysMin:"आ._सो._मं._बु._बि._शु._श.".split("_"),months:"जनवरी_फेब्रुवरी_मार्च_अप्रिल_मे_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर".split("_"),monthsShort:"जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.".split("_"),relativeTime:{future:"%s पछि",past:"%s अघि",s:"सेकेन्ड",m:"एक मिनेट",mm:"%d मिनेट",h:"घन्टा",hh:"%d घन्टा",d:"एक दिन",dd:"%d दिन",M:"एक महिना",MM:"%d महिना",y:"एक वर्ष",yy:"%d वर्ष"},ordinal:function(_){return(""+_).replace(/\d/g,function(s){return"०१२३४५६७८९"[s]})},formats:{LT:"Aको h:mm बजे",LTS:"Aको h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, Aको h:mm बजे",LLLL:"dddd, D MMMM YYYY, Aको h:mm बजे"}};return r.default.locale(n,null,!0),n})})(m);const u=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.ne=u;
|
package/dist/nl-DBFNL8wC.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const o=require("./_commonjsHelpers-DwTZ_eVU.cjs"),d=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var s={exports:{}};(function(t,m){(function(a,n){t.exports=n(d.require$$0)})(o.commonjsGlobal,function(a){function n(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var _=n(a),r={name:"nl",weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"),ordinal:function(e){return"["+e+(e===1||e===8||e>=20?"ste":"de")+"]"},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"een minuut",mm:"%d minuten",h:"een uur",hh:"%d uur",d:"een dag",dd:"%d dagen",M:"een maand",MM:"%d maanden",y:"een jaar",yy:"%d jaar"}};return _.default.locale(r,null,!0),r})})(s);const u=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.nl=u;
|
package/dist/nl-DxyA21TA.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { c as o } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as d } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var m = { exports: {} };
|
|
4
|
-
(function(t, u) {
|
|
5
|
-
(function(n, a) {
|
|
6
|
-
t.exports = a(d);
|
|
7
|
-
})(o, function(n) {
|
|
8
|
-
function a(e) {
|
|
9
|
-
return e && typeof e == "object" && "default" in e ? e : { default: e };
|
|
10
|
-
}
|
|
11
|
-
var _ = a(n), r = { name: "nl", weekdays: "zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"), weekdaysShort: "zo._ma._di._wo._do._vr._za.".split("_"), weekdaysMin: "zo_ma_di_wo_do_vr_za".split("_"), months: "januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"), monthsShort: "jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_"), ordinal: function(e) {
|
|
12
|
-
return "[" + e + (e === 1 || e === 8 || e >= 20 ? "ste" : "de") + "]";
|
|
13
|
-
}, weekStart: 1, yearStart: 4, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD-MM-YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY HH:mm", LLLL: "dddd D MMMM YYYY HH:mm" }, relativeTime: { future: "over %s", past: "%s geleden", s: "een paar seconden", m: "een minuut", mm: "%d minuten", h: "een uur", hh: "%d uur", d: "een dag", dd: "%d dagen", M: "een maand", MM: "%d maanden", y: "een jaar", yy: "%d jaar" } };
|
|
14
|
-
return _.default.locale(r, null, !0), r;
|
|
15
|
-
});
|
|
16
|
-
})(m);
|
|
17
|
-
const l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18
|
-
__proto__: null
|
|
19
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
20
|
-
export {
|
|
21
|
-
l as n
|
|
22
|
-
};
|
package/dist/nl-be-Bo6vnbHY.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const o=require("./_commonjsHelpers-DwTZ_eVU.cjs"),d=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var u={exports:{}};(function(t,s){(function(a,n){t.exports=n(d.require$$0)})(o.commonjsGlobal,function(a){function n(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var _=n(a),r={name:"nl-be",weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),weekStart:1,weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"zo_ma_di_wo_do_vr_za".split("_"),ordinal:function(e){return e},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"}};return _.default.locale(r,null,!0),r})})(u);const m=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.nlBe=m;
|
package/dist/nl-be-Di_N4z2D.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { c as o } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as d } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var m = { exports: {} };
|
|
4
|
-
(function(t, u) {
|
|
5
|
-
(function(n, a) {
|
|
6
|
-
t.exports = a(d);
|
|
7
|
-
})(o, function(n) {
|
|
8
|
-
function a(e) {
|
|
9
|
-
return e && typeof e == "object" && "default" in e ? e : { default: e };
|
|
10
|
-
}
|
|
11
|
-
var _ = a(n), r = { name: "nl-be", weekdays: "zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"), months: "januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"), monthsShort: "jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"), weekStart: 1, weekdaysShort: "zo._ma._di._wo._do._vr._za.".split("_"), weekdaysMin: "zo_ma_di_wo_do_vr_za".split("_"), ordinal: function(e) {
|
|
12
|
-
return e;
|
|
13
|
-
}, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY HH:mm", LLLL: "dddd D MMMM YYYY HH:mm" }, relativeTime: { future: "over %s", past: "%s geleden", s: "een paar seconden", m: "één minuut", mm: "%d minuten", h: "één uur", hh: "%d uur", d: "één dag", dd: "%d dagen", M: "één maand", MM: "%d maanden", y: "één jaar", yy: "%d jaar" } };
|
|
14
|
-
return _.default.locale(r, null, !0), r;
|
|
15
|
-
});
|
|
16
|
-
})(m);
|
|
17
|
-
const l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18
|
-
__proto__: null
|
|
19
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
20
|
-
export {
|
|
21
|
-
l as n
|
|
22
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),_=require("./tree.vue_vue_type_script_setup_true_lang-BjjL_VlR.cjs"),f=require("./js.cookie-BH1G_HRi.cjs"),m=require("./icon.vue_vue_type_script_setup_true_lang-DJbUD5AQ.cjs"),v={class:"epic-outline"},y=["onMouseenter"],g={class:"max-w-full truncate"},h={class:"epic-node-type-text flex-1 w-0 truncate"},k=e.defineComponent({__name:"outline",setup(N){const n=e.inject("designer"),l=e.inject("pageSchema"),a=e.computed(()=>{var s;const o=(s=n.state.checkedNode)==null?void 0:s.id;return o?[o]:[]});function u(o){n.setCheckedNode(o.componentSchema)}return(o,s)=>{var i;return e.openBlock(),e.createElementBlock("div",v,[e.createVNode(e.unref(_._sfc_main),{options:e.unref(l).schemas,draggable:"","selected-keys":a.value,"hover-key":(i=e.unref(n).state.hoverNode)==null?void 0:i.id,onNodeClick:u},{"tree-node":e.withCtx(({schema:t})=>{var r,c,d;return[e.createElementVNode("div",{class:e.normalizeClass(["epic-text-padding flex",{hidden:(r=t.componentProps)==null?void 0:r.hidden}]),onMouseenter:e.withModifiers(p=>e.unref(n).setHoverNode(t),["stop"]),onMouseleave:s[0]||(s[0]=e.withModifiers(p=>e.unref(n).setHoverNode(null),["stop"]))},[e.createElementVNode("span",g,[(c=t.componentProps)!=null&&c.hidden?(e.openBlock(),e.createBlock(e.unref(m._sfc_main),{key:0,name:"icon--epic--visibility-off-outline-rounded",class:"translate-y-2px"})):e.createCommentVNode("",!0),e.createTextVNode(" "+e.toDisplayString(t.label??((d=e.unref(f.pluginManager).getComponentConfingByType(t.type))==null?void 0:d.defaultSchema.label)),1)]),e.createElementVNode("span",h,e.toDisplayString(t.id),1)],42,y)]}),_:1},8,["options","selected-keys","hover-key"])])}}});exports.default=k;
|
package/dist/outline-CNayBNNC.js
DELETED
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { defineComponent as g, inject as l, computed as k, openBlock as p, createElementBlock as v, createVNode as N, unref as e, withCtx as x, createElementVNode as i, normalizeClass as C, withModifiers as m, createBlock as M, createCommentVNode as S, createTextVNode as b, toDisplayString as u } from "vue";
|
|
2
|
-
import { _ as w } from "./tree.vue_vue_type_script_setup_true_lang-BntCm43E.js";
|
|
3
|
-
import { p as B } from "./js.cookie-oHpRFPCO.js";
|
|
4
|
-
import { _ as V } from "./icon.vue_vue_type_script_setup_true_lang-D3QdcReY.js";
|
|
5
|
-
const $ = { class: "epic-outline" }, E = ["onMouseenter"], H = { class: "max-w-full truncate" }, P = { class: "epic-node-type-text flex-1 w-0 truncate" }, q = /* @__PURE__ */ g({
|
|
6
|
-
__name: "outline",
|
|
7
|
-
setup(T) {
|
|
8
|
-
const o = l("designer"), _ = l("pageSchema"), f = k(() => {
|
|
9
|
-
var s;
|
|
10
|
-
const n = (s = o.state.checkedNode) == null ? void 0 : s.id;
|
|
11
|
-
return n ? [n] : [];
|
|
12
|
-
});
|
|
13
|
-
function h(n) {
|
|
14
|
-
o.setCheckedNode(n.componentSchema);
|
|
15
|
-
}
|
|
16
|
-
return (n, s) => {
|
|
17
|
-
var d;
|
|
18
|
-
return p(), v("div", $, [
|
|
19
|
-
N(e(w), {
|
|
20
|
-
options: e(_).schemas,
|
|
21
|
-
draggable: "",
|
|
22
|
-
"selected-keys": f.value,
|
|
23
|
-
"hover-key": (d = e(o).state.hoverNode) == null ? void 0 : d.id,
|
|
24
|
-
onNodeClick: h
|
|
25
|
-
}, {
|
|
26
|
-
"tree-node": x(({ schema: t }) => {
|
|
27
|
-
var c, a, r;
|
|
28
|
-
return [
|
|
29
|
-
i("div", {
|
|
30
|
-
class: C(["epic-text-padding flex", { hidden: (c = t.componentProps) == null ? void 0 : c.hidden }]),
|
|
31
|
-
onMouseenter: m((y) => e(o).setHoverNode(t), ["stop"]),
|
|
32
|
-
onMouseleave: s[0] || (s[0] = m((y) => e(o).setHoverNode(null), ["stop"]))
|
|
33
|
-
}, [
|
|
34
|
-
i("span", H, [
|
|
35
|
-
(a = t.componentProps) != null && a.hidden ? (p(), M(e(V), {
|
|
36
|
-
key: 0,
|
|
37
|
-
name: "icon--epic--visibility-off-outline-rounded",
|
|
38
|
-
class: "translate-y-2px"
|
|
39
|
-
})) : S("", !0),
|
|
40
|
-
b(" " + u(t.label ?? ((r = e(B).getComponentConfingByType(t.type)) == null ? void 0 : r.defaultSchema.label)), 1)
|
|
41
|
-
]),
|
|
42
|
-
i("span", P, u(t.id), 1)
|
|
43
|
-
], 42, E)
|
|
44
|
-
];
|
|
45
|
-
}),
|
|
46
|
-
_: 1
|
|
47
|
-
}, 8, ["options", "selected-keys", "hover-key"])
|
|
48
|
-
]);
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
});
|
|
52
|
-
export {
|
|
53
|
-
q as default
|
|
54
|
-
};
|
package/dist/pl-BbDu9Cfd.js
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import { c as z } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as M } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var f = { exports: {} };
|
|
4
|
-
(function(c, y) {
|
|
5
|
-
(function(o, n) {
|
|
6
|
-
c.exports = n(M);
|
|
7
|
-
})(z, function(o) {
|
|
8
|
-
function n(t) {
|
|
9
|
-
return t && typeof t == "object" && "default" in t ? t : { default: t };
|
|
10
|
-
}
|
|
11
|
-
var l = n(o);
|
|
12
|
-
function i(t) {
|
|
13
|
-
return t % 10 < 5 && t % 10 > 1 && ~~(t / 10) % 10 != 1;
|
|
14
|
-
}
|
|
15
|
-
function e(t, r, p) {
|
|
16
|
-
var a = t + " ";
|
|
17
|
-
switch (p) {
|
|
18
|
-
case "m":
|
|
19
|
-
return r ? "minuta" : "minutę";
|
|
20
|
-
case "mm":
|
|
21
|
-
return a + (i(t) ? "minuty" : "minut");
|
|
22
|
-
case "h":
|
|
23
|
-
return r ? "godzina" : "godzinę";
|
|
24
|
-
case "hh":
|
|
25
|
-
return a + (i(t) ? "godziny" : "godzin");
|
|
26
|
-
case "MM":
|
|
27
|
-
return a + (i(t) ? "miesiące" : "miesięcy");
|
|
28
|
-
case "yy":
|
|
29
|
-
return a + (i(t) ? "lata" : "lat");
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
var s = "stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_"), m = "styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"), d = /D MMMM/, _ = function(t, r) {
|
|
33
|
-
return d.test(r) ? s[t.month()] : m[t.month()];
|
|
34
|
-
};
|
|
35
|
-
_.s = m, _.f = s;
|
|
36
|
-
var u = { name: "pl", weekdays: "niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"), weekdaysShort: "ndz_pon_wt_śr_czw_pt_sob".split("_"), weekdaysMin: "Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"), months: _, monthsShort: "sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"), ordinal: function(t) {
|
|
37
|
-
return t + ".";
|
|
38
|
-
}, weekStart: 1, yearStart: 4, relativeTime: { future: "za %s", past: "%s temu", s: "kilka sekund", m: e, mm: e, h: e, hh: e, d: "1 dzień", dd: "%d dni", M: "miesiąc", MM: e, y: "rok", yy: e }, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD.MM.YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY HH:mm", LLLL: "dddd, D MMMM YYYY HH:mm" } };
|
|
39
|
-
return l.default.locale(u, null, !0), u;
|
|
40
|
-
});
|
|
41
|
-
})(f);
|
|
42
|
-
const Y = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
43
|
-
__proto__: null
|
|
44
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
45
|
-
export {
|
|
46
|
-
Y as p
|
|
47
|
-
};
|
package/dist/pl-De2Dm_kD.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const z=require("./_commonjsHelpers-DwTZ_eVU.cjs"),M=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var y={exports:{}};(function(m,k){(function(s,a){m.exports=a(M.require$$0)})(z.commonjsGlobal,function(s){function a(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var l=a(s);function i(e){return e%10<5&&e%10>1&&~~(e/10)%10!=1}function t(e,r,p){var n=e+" ";switch(p){case"m":return r?"minuta":"minutę";case"mm":return n+(i(e)?"minuty":"minut");case"h":return r?"godzina":"godzinę";case"hh":return n+(i(e)?"godziny":"godzin");case"MM":return n+(i(e)?"miesiące":"miesięcy");case"yy":return n+(i(e)?"lata":"lat")}}var o="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_"),u="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),d=/D MMMM/,_=function(e,r){return d.test(r)?o[e.month()]:u[e.month()]};_.s=u,_.f=o;var c={name:"pl",weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"ndz_pon_wt_śr_czw_pt_sob".split("_"),weekdaysMin:"Nd_Pn_Wt_Śr_Cz_Pt_So".split("_"),months:_,monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),ordinal:function(e){return e+"."},weekStart:1,yearStart:4,relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:t,mm:t,h:t,hh:t,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:t,y:"rok",yy:t},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"}};return l.default.locale(c,null,!0),c})})(y);const f=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.pl=f;
|
package/dist/pt-BaTZB0XW.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const s=require("./_commonjsHelpers-DwTZ_eVU.cjs"),n=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var m={exports:{}};(function(r,i){(function(t,o){r.exports=o(n.require$$0)})(s.commonjsGlobal,function(t){function o(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var _=o(t),a={name:"pt",weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sab".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sa".split("_"),months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),ordinal:function(e){return e+"º"},weekStart:1,yearStart:4,formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},relativeTime:{future:"em %s",past:"há %s",s:"alguns segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"}};return _.default.locale(a,null,!0),a})})(m);const u=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.pt=u;
|
package/dist/pt-CKDbEzZ-.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { c as s } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as m } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var n = { exports: {} };
|
|
4
|
-
(function(r, u) {
|
|
5
|
-
(function(t, o) {
|
|
6
|
-
r.exports = o(m);
|
|
7
|
-
})(s, function(t) {
|
|
8
|
-
function o(e) {
|
|
9
|
-
return e && typeof e == "object" && "default" in e ? e : { default: e };
|
|
10
|
-
}
|
|
11
|
-
var _ = o(t), a = { name: "pt", weekdays: "domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"), weekdaysShort: "dom_seg_ter_qua_qui_sex_sab".split("_"), weekdaysMin: "Do_2ª_3ª_4ª_5ª_6ª_Sa".split("_"), months: "janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"), monthsShort: "jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"), ordinal: function(e) {
|
|
12
|
-
return e + "º";
|
|
13
|
-
}, weekStart: 1, yearStart: 4, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D [de] MMMM [de] YYYY", LLL: "D [de] MMMM [de] YYYY [às] HH:mm", LLLL: "dddd, D [de] MMMM [de] YYYY [às] HH:mm" }, relativeTime: { future: "em %s", past: "há %s", s: "alguns segundos", m: "um minuto", mm: "%d minutos", h: "uma hora", hh: "%d horas", d: "um dia", dd: "%d dias", M: "um mês", MM: "%d meses", y: "um ano", yy: "%d anos" } };
|
|
14
|
-
return _.default.locale(a, null, !0), a;
|
|
15
|
-
});
|
|
16
|
-
})(n);
|
|
17
|
-
const l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18
|
-
__proto__: null
|
|
19
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
20
|
-
export {
|
|
21
|
-
l as p
|
|
22
|
-
};
|
package/dist/pt-br-B_N58uu_.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const a=require("./_commonjsHelpers-DwTZ_eVU.cjs"),n=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var m={exports:{}};(function(s,i){(function(t,o){s.exports=o(n.require$$0)})(a.commonjsGlobal,function(t){function o(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var _=o(t),r={name:"pt-br",weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sáb".split("_"),weekdaysMin:"Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"),months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),ordinal:function(e){return e+"º"},formats:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [às] HH:mm"},relativeTime:{future:"em %s",past:"há %s",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"}};return _.default.locale(r,null,!0),r})})(m);const u=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.ptBr=u;
|
package/dist/pt-br-C1mqj5qX.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { c as s } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as m } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var n = { exports: {} };
|
|
4
|
-
(function(a, u) {
|
|
5
|
-
(function(r, o) {
|
|
6
|
-
a.exports = o(m);
|
|
7
|
-
})(s, function(r) {
|
|
8
|
-
function o(e) {
|
|
9
|
-
return e && typeof e == "object" && "default" in e ? e : { default: e };
|
|
10
|
-
}
|
|
11
|
-
var _ = o(r), t = { name: "pt-br", weekdays: "domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"), weekdaysShort: "dom_seg_ter_qua_qui_sex_sáb".split("_"), weekdaysMin: "Do_2ª_3ª_4ª_5ª_6ª_Sá".split("_"), months: "janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"), monthsShort: "jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"), ordinal: function(e) {
|
|
12
|
-
return e + "º";
|
|
13
|
-
}, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D [de] MMMM [de] YYYY", LLL: "D [de] MMMM [de] YYYY [às] HH:mm", LLLL: "dddd, D [de] MMMM [de] YYYY [às] HH:mm" }, relativeTime: { future: "em %s", past: "há %s", s: "poucos segundos", m: "um minuto", mm: "%d minutos", h: "uma hora", hh: "%d horas", d: "um dia", dd: "%d dias", M: "um mês", MM: "%d meses", y: "um ano", yy: "%d anos" } };
|
|
14
|
-
return _.default.locale(t, null, !0), t;
|
|
15
|
-
});
|
|
16
|
-
})(n);
|
|
17
|
-
const l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18
|
-
__proto__: null
|
|
19
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
20
|
-
export {
|
|
21
|
-
l as p
|
|
22
|
-
};
|
package/dist/radio-DAOm4xuJ.js
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { defineComponent as p, h as o } from "vue";
|
|
2
|
-
import { NRadioGroup as n, NRadio as r } from "naive-ui";
|
|
3
|
-
const s = p({
|
|
4
|
-
emits: ["update:modelValue"],
|
|
5
|
-
setup(m, { emit: d, attrs: l }) {
|
|
6
|
-
function t(e = null) {
|
|
7
|
-
d("update:modelValue", e);
|
|
8
|
-
}
|
|
9
|
-
return () => {
|
|
10
|
-
const e = {
|
|
11
|
-
...l,
|
|
12
|
-
value: l.modelValue,
|
|
13
|
-
"onUpdate:value": t
|
|
14
|
-
};
|
|
15
|
-
return o(n, e, {
|
|
16
|
-
default: () => {
|
|
17
|
-
var u;
|
|
18
|
-
return [
|
|
19
|
-
(u = e.options) == null ? void 0 : u.map(
|
|
20
|
-
(a) => o(r, { value: a.value, key: a.value }, { default: () => a.label })
|
|
21
|
-
)
|
|
22
|
-
];
|
|
23
|
-
}
|
|
24
|
-
});
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
});
|
|
28
|
-
export {
|
|
29
|
-
s as default
|
|
30
|
-
};
|
package/dist/radio-Ducbqo4d.js
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { defineComponent as m, h as u } from "vue";
|
|
2
|
-
/* empty css */
|
|
3
|
-
import { ElRadioGroup as r, ElRadioButton as f, ElRadio as p } from "element-plus";
|
|
4
|
-
const V = m({
|
|
5
|
-
emits: ["update:modelValue", "update:modelValueLabel"],
|
|
6
|
-
setup(b, { emit: o, attrs: d }) {
|
|
7
|
-
return () => {
|
|
8
|
-
const e = {
|
|
9
|
-
...d,
|
|
10
|
-
"onUpdate:modelValue": n
|
|
11
|
-
};
|
|
12
|
-
function n(l = null) {
|
|
13
|
-
if (Object.prototype.toString.call(l) === "[object Array]") {
|
|
14
|
-
const t = l.map((a) => e == null ? void 0 : e.options.find((i) => i.value === a));
|
|
15
|
-
o("update:modelValueLabel", t);
|
|
16
|
-
} else {
|
|
17
|
-
const t = e == null ? void 0 : e.options.find((a) => a.value === l);
|
|
18
|
-
o("update:modelValueLabel", t);
|
|
19
|
-
}
|
|
20
|
-
o("update:modelValue", l);
|
|
21
|
-
}
|
|
22
|
-
return u(r, e, {
|
|
23
|
-
default: () => {
|
|
24
|
-
var l, t;
|
|
25
|
-
return [
|
|
26
|
-
e != null && e.radioButton ? (l = e.options) == null ? void 0 : l.map(
|
|
27
|
-
(a) => u(f, { value: a.value }, { default: () => a.label })
|
|
28
|
-
) : (t = e.options) == null ? void 0 : t.map((a) => u(p, { value: a.value }, { default: () => a.label }))
|
|
29
|
-
];
|
|
30
|
-
}
|
|
31
|
-
});
|
|
32
|
-
};
|
|
33
|
-
}
|
|
34
|
-
});
|
|
35
|
-
export {
|
|
36
|
-
V as default
|
|
37
|
-
};
|
package/dist/radio-J90E17Sb.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("vue"),o=require("naive-ui"),r=a.defineComponent({emits:["update:modelValue"],setup(i,{emit:d,attrs:l}){function n(e=null){d("update:modelValue",e)}return()=>{const e={...l,value:l.modelValue,"onUpdate:value":n};return a.h(o.NRadioGroup,e,{default:()=>{var t;return[(t=e.options)==null?void 0:t.map(u=>a.h(o.NRadio,{value:u.value,key:u.value},{default:()=>u.label}))]}})}}});exports.default=r;
|
package/dist/radio-_GXvcBNP.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("vue");;/* empty css */const d=require("element-plus"),c=u.defineComponent({emits:["update:modelValue","update:modelValueLabel"],setup(m,{emit:o,attrs:n}){return()=>{const e={...n,"onUpdate:modelValue":i};function i(a=null){if(Object.prototype.toString.call(a)==="[object Array]"){const t=a.map(l=>e==null?void 0:e.options.find(r=>r.value===l));o("update:modelValueLabel",t)}else{const t=e==null?void 0:e.options.find(l=>l.value===a);o("update:modelValueLabel",t)}o("update:modelValue",a)}return u.h(d.ElRadioGroup,e,{default:()=>{var a,t;return[e!=null&&e.radioButton?(a=e.options)==null?void 0:a.map(l=>u.h(d.ElRadioButton,{value:l.value},{default:()=>l.label})):(t=e.options)==null?void 0:t.map(l=>u.h(d.ElRadio,{value:l.value},{default:()=>l.label}))]}})}}});exports.default=c;
|
package/dist/ro-Cnuhxb40.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const o=require("./_commonjsHelpers-DwTZ_eVU.cjs"),u=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var a={exports:{}};(function(_,s){(function(t,i){_.exports=i(u.require$$0)})(o.commonjsGlobal,function(t){function i(e){return e&&typeof e=="object"&&"default"in e?e:{default:e}}var n=i(t),r={name:"ro",weekdays:"Duminică_Luni_Marți_Miercuri_Joi_Vineri_Sâmbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),months:"Ianuarie_Februarie_Martie_Aprilie_Mai_Iunie_Iulie_August_Septembrie_Octombrie_Noiembrie_Decembrie".split("_"),monthsShort:"Ian._Febr._Mart._Apr._Mai_Iun._Iul._Aug._Sept._Oct._Nov._Dec.".split("_"),weekStart:1,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},relativeTime:{future:"peste %s",past:"acum %s",s:"câteva secunde",m:"un minut",mm:"%d minute",h:"o oră",hh:"%d ore",d:"o zi",dd:"%d zile",M:"o lună",MM:"%d luni",y:"un an",yy:"%d ani"},ordinal:function(e){return e}};return n.default.locale(r,null,!0),r})})(a);const m=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.ro=m;
|
package/dist/ro-V1i-UrkP.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { c as n } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as u } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var a = { exports: {} };
|
|
4
|
-
(function(_, m) {
|
|
5
|
-
(function(r, i) {
|
|
6
|
-
_.exports = i(u);
|
|
7
|
-
})(n, function(r) {
|
|
8
|
-
function i(e) {
|
|
9
|
-
return e && typeof e == "object" && "default" in e ? e : { default: e };
|
|
10
|
-
}
|
|
11
|
-
var o = i(r), t = { name: "ro", weekdays: "Duminică_Luni_Marți_Miercuri_Joi_Vineri_Sâmbătă".split("_"), weekdaysShort: "Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"), weekdaysMin: "Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"), months: "Ianuarie_Februarie_Martie_Aprilie_Mai_Iunie_Iulie_August_Septembrie_Octombrie_Noiembrie_Decembrie".split("_"), monthsShort: "Ian._Febr._Mart._Apr._Mai_Iun._Iul._Aug._Sept._Oct._Nov._Dec.".split("_"), weekStart: 1, formats: { LT: "H:mm", LTS: "H:mm:ss", L: "DD.MM.YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY H:mm", LLLL: "dddd, D MMMM YYYY H:mm" }, relativeTime: { future: "peste %s", past: "acum %s", s: "câteva secunde", m: "un minut", mm: "%d minute", h: "o oră", hh: "%d ore", d: "o zi", dd: "%d zile", M: "o lună", MM: "%d luni", y: "un an", yy: "%d ani" }, ordinal: function(e) {
|
|
12
|
-
return e;
|
|
13
|
-
} };
|
|
14
|
-
return o.default.locale(t, null, !0), t;
|
|
15
|
-
});
|
|
16
|
-
})(a);
|
|
17
|
-
const l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
18
|
-
__proto__: null
|
|
19
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
20
|
-
export {
|
|
21
|
-
l as r
|
|
22
|
-
};
|
package/dist/row-B28N4Nao.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),d=require("naive-ui"),i=e.defineComponent({props:{componentSchema:{type:Object,require:!0,default:()=>({})}},setup(n,{slots:o}){return()=>{const t={...n.componentSchema,title:n.componentSchema.label},r=t.children;return delete t.children,e.h(d.NRow,t,{default:()=>[e.renderSlot(o,"edit-node",{},()=>r.map(c=>e.renderSlot(o,"node",{componentSchema:c})))]})}}});exports.default=i;
|
package/dist/row-BC69rVQW.js
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { defineComponent as m, h as d, renderSlot as o } from "vue";
|
|
2
|
-
import { NRow as p } from "naive-ui";
|
|
3
|
-
const h = m({
|
|
4
|
-
props: {
|
|
5
|
-
componentSchema: {
|
|
6
|
-
type: Object,
|
|
7
|
-
require: !0,
|
|
8
|
-
default: () => ({})
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
setup(t, { slots: n }) {
|
|
12
|
-
return () => {
|
|
13
|
-
const e = {
|
|
14
|
-
...t.componentSchema,
|
|
15
|
-
title: t.componentSchema.label
|
|
16
|
-
}, r = e.children;
|
|
17
|
-
return delete e.children, d(p, e, {
|
|
18
|
-
default: () => [
|
|
19
|
-
o(
|
|
20
|
-
n,
|
|
21
|
-
"edit-node",
|
|
22
|
-
{},
|
|
23
|
-
() => r.map((c) => o(n, "node", { componentSchema: c }))
|
|
24
|
-
)
|
|
25
|
-
]
|
|
26
|
-
});
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
export {
|
|
31
|
-
h as default
|
|
32
|
-
};
|
package/dist/row-BX4lrSir.js
DELETED
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { defineComponent as a, h as d, renderSlot as r } from "vue";
|
|
2
|
-
import { Row as p } from "ant-design-vue";
|
|
3
|
-
const u = a({
|
|
4
|
-
props: {
|
|
5
|
-
componentSchema: {
|
|
6
|
-
type: Object,
|
|
7
|
-
require: !0,
|
|
8
|
-
default: () => ({})
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
setup(t, { attrs: l, slots: n }) {
|
|
12
|
-
return () => {
|
|
13
|
-
var o;
|
|
14
|
-
const e = {
|
|
15
|
-
...t.componentSchema,
|
|
16
|
-
title: ((o = t.componentSchema) == null ? void 0 : o.label) ?? ""
|
|
17
|
-
}, c = e.children;
|
|
18
|
-
return delete e.children, d(p, e, {
|
|
19
|
-
default: () => r(
|
|
20
|
-
n,
|
|
21
|
-
"edit-node",
|
|
22
|
-
{},
|
|
23
|
-
() => c.map(
|
|
24
|
-
(m) => r(n, "node", { componentSchema: m })
|
|
25
|
-
)
|
|
26
|
-
)
|
|
27
|
-
});
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
});
|
|
31
|
-
export {
|
|
32
|
-
u as default
|
|
33
|
-
};
|
package/dist/row-BpXp0tC3.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),u=require("ant-design-vue"),a=e.defineComponent({props:{componentSchema:{type:Object,require:!0,default:()=>({})}},setup(n,{attrs:l,slots:o}){return()=>{var r;const t={...n.componentSchema,title:((r=n.componentSchema)==null?void 0:r.label)??""},c=t.children;return delete t.children,e.h(u.Row,t,{default:()=>e.renderSlot(o,"edit-node",{},()=>c.map(d=>e.renderSlot(o,"node",{componentSchema:d})))})}}});exports.default=a;
|
package/dist/row-CkyJ9pQh.js
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { defineComponent as d, h as p, renderSlot as r } from "vue";
|
|
2
|
-
import { ElRow as a } from "element-plus";
|
|
3
|
-
const i = d({
|
|
4
|
-
props: {
|
|
5
|
-
componentSchema: {
|
|
6
|
-
type: Object,
|
|
7
|
-
require: !0,
|
|
8
|
-
default: () => ({})
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
setup(t, { slots: n }) {
|
|
12
|
-
return () => {
|
|
13
|
-
var o;
|
|
14
|
-
const e = {
|
|
15
|
-
...t.componentSchema,
|
|
16
|
-
title: ((o = t.componentSchema) == null ? void 0 : o.label) ?? ""
|
|
17
|
-
}, c = e.children;
|
|
18
|
-
return delete e.children, p(a, e, {
|
|
19
|
-
default: () => [
|
|
20
|
-
r(
|
|
21
|
-
n,
|
|
22
|
-
"edit-node",
|
|
23
|
-
{},
|
|
24
|
-
() => c.map(
|
|
25
|
-
(m) => r(n, "node", { componentSchema: m })
|
|
26
|
-
)
|
|
27
|
-
)
|
|
28
|
-
]
|
|
29
|
-
});
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
});
|
|
33
|
-
export {
|
|
34
|
-
i as default
|
|
35
|
-
};
|
package/dist/row-NNlPGZRG.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),d=require("element-plus"),u=e.defineComponent({props:{componentSchema:{type:Object,require:!0,default:()=>({})}},setup(n,{slots:o}){return()=>{var r;const t={...n.componentSchema,title:((r=n.componentSchema)==null?void 0:r.label)??""},c=t.children;return delete t.children,e.h(d.ElRow,t,{default:()=>[e.renderSlot(o,"edit-node",{},()=>c.map(l=>e.renderSlot(o,"node",{componentSchema:l})))]})}}});exports.default=u;
|
package/dist/ru-CCbLARi0.js
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { c as h } from "./_commonjsHelpers-BVfed4GL.js";
|
|
2
|
-
import { r as y } from "./_dayjs_commonjs-external-D9ZbEWhj.js";
|
|
3
|
-
var L = { exports: {} };
|
|
4
|
-
(function(c, v) {
|
|
5
|
-
(function(i, o) {
|
|
6
|
-
c.exports = o(y);
|
|
7
|
-
})(h, function(i) {
|
|
8
|
-
function o(_) {
|
|
9
|
-
return _ && typeof _ == "object" && "default" in _ ? _ : { default: _ };
|
|
10
|
-
}
|
|
11
|
-
var Y = o(i), u = "января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"), a = "январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"), M = "янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"), l = "янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_"), f = /D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;
|
|
12
|
-
function r(_, e, p) {
|
|
13
|
-
var t, n;
|
|
14
|
-
return p === "m" ? e ? "минута" : "минуту" : _ + " " + (t = +_, n = { mm: e ? "минута_минуты_минут" : "минуту_минуты_минут", hh: "час_часа_часов", dd: "день_дня_дней", MM: "месяц_месяца_месяцев", yy: "год_года_лет" }[p].split("_"), t % 10 == 1 && t % 100 != 11 ? n[0] : t % 10 >= 2 && t % 10 <= 4 && (t % 100 < 10 || t % 100 >= 20) ? n[1] : n[2]);
|
|
15
|
-
}
|
|
16
|
-
var s = function(_, e) {
|
|
17
|
-
return f.test(e) ? u[_.month()] : a[_.month()];
|
|
18
|
-
};
|
|
19
|
-
s.s = a, s.f = u;
|
|
20
|
-
var m = function(_, e) {
|
|
21
|
-
return f.test(e) ? M[_.month()] : l[_.month()];
|
|
22
|
-
};
|
|
23
|
-
m.s = l, m.f = M;
|
|
24
|
-
var d = { name: "ru", weekdays: "воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"), weekdaysShort: "вск_пнд_втр_срд_чтв_птн_сбт".split("_"), weekdaysMin: "вс_пн_вт_ср_чт_пт_сб".split("_"), months: s, monthsShort: m, weekStart: 1, yearStart: 4, formats: { LT: "H:mm", LTS: "H:mm:ss", L: "DD.MM.YYYY", LL: "D MMMM YYYY г.", LLL: "D MMMM YYYY г., H:mm", LLLL: "dddd, D MMMM YYYY г., H:mm" }, relativeTime: { future: "через %s", past: "%s назад", s: "несколько секунд", m: r, mm: r, h: "час", hh: r, d: "день", dd: r, M: "месяц", MM: r, y: "год", yy: r }, ordinal: function(_) {
|
|
25
|
-
return _;
|
|
26
|
-
}, meridiem: function(_) {
|
|
27
|
-
return _ < 4 ? "ночи" : _ < 12 ? "утра" : _ < 17 ? "дня" : "вечера";
|
|
28
|
-
} };
|
|
29
|
-
return Y.default.locale(d, null, !0), d;
|
|
30
|
-
});
|
|
31
|
-
})(L);
|
|
32
|
-
const b = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
33
|
-
__proto__: null
|
|
34
|
-
}, Symbol.toStringTag, { value: "Module" }));
|
|
35
|
-
export {
|
|
36
|
-
b as r
|
|
37
|
-
};
|
package/dist/ru-_du5Xwu3.cjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";const h=require("./_commonjsHelpers-DwTZ_eVU.cjs"),y=require("./_dayjs_commonjs-external-DWlrxCld.cjs");var L={exports:{}};(function(p,j){(function(m,o){p.exports=o(y.require$$0)})(h.commonjsGlobal,function(m){function o(_){return _&&typeof _=="object"&&"default"in _?_:{default:_}}var Y=o(m),i="января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_"),a="январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),l="янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.".split("_"),M="янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.".split("_"),d=/D[oD]?(\[[^[\]]*\]|\s)+MMMM?/;function e(_,r,f){var t,n;return f==="m"?r?"минута":"минуту":_+" "+(t=+_,n={mm:r?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"}[f].split("_"),t%10==1&&t%100!=11?n[0]:t%10>=2&&t%10<=4&&(t%100<10||t%100>=20)?n[1]:n[2])}var s=function(_,r){return d.test(r)?i[_.month()]:a[_.month()]};s.s=a,s.f=i;var u=function(_,r){return d.test(r)?l[_.month()]:M[_.month()]};u.s=M,u.f=l;var c={name:"ru",weekdays:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),weekdaysShort:"вск_пнд_втр_срд_чтв_птн_сбт".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),months:s,monthsShort:u,weekStart:1,yearStart:4,formats:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., H:mm",LLLL:"dddd, D MMMM YYYY г., H:mm"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:e,mm:e,h:"час",hh:e,d:"день",dd:e,M:"месяц",MM:e,y:"год",yy:e},ordinal:function(_){return _},meridiem:function(_){return _<4?"ночи":_<12?"утра":_<17?"дня":"вечера"}};return Y.default.locale(c,null,!0),c})})(L);const v=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"}));exports.ru=v;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|