starfish-editor-custom 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/auto-imports.d.ts +10 -0
- package/babel.config.js +8 -0
- package/components.d.ts +46 -0
- package/dist/ConditionModule.js +892 -0
- package/dist/ConditionSelect.js +483 -0
- package/dist/CustomDialog.js +105 -0
- package/dist/formStyle.js +245 -0
- package/dist/globalFormList.js +59 -0
- package/dist/jsonCode.js +74 -0
- package/dist/jsonEditor.js +71 -0
- package/dist/main.js +3319 -0
- package/dist/starfish-editor.es.js +30 -0
- package/dist/style.css +1 -0
- package/dist/types/editor/src/common/ConditionSelect/ConditionGroup.vue.d.ts +61 -0
- package/dist/types/editor/src/common/ConditionSelect/ConditionModule.vue.d.ts +43 -0
- package/dist/types/editor/src/common/ConditionSelect/ConditionTanc.vue.d.ts +48 -0
- package/dist/types/editor/src/common/ConditionSelect.vue.d.ts +72 -0
- package/dist/types/editor/src/common/CustomDialog.vue.d.ts +25 -0
- package/dist/types/editor/src/common/Loading.vue.d.ts +3 -0
- package/dist/types/editor/src/common/formJson.d.ts +80 -0
- package/dist/types/editor/src/common/jsonCode.vue.d.ts +110 -0
- package/dist/types/editor/src/components/ComponentList.vue.d.ts +32 -0
- package/dist/types/editor/src/components/FormPreview.vue.d.ts +25 -0
- package/dist/types/editor/src/components/Nav.vue.d.ts +9 -0
- package/dist/types/editor/src/components/PropsPanel.vue.d.ts +53 -0
- package/dist/types/editor/src/components/Shape.vue.d.ts +40 -0
- package/dist/types/editor/src/components/Workspace.vue.d.ts +22 -0
- package/dist/types/editor/src/components/globalFormList.vue.d.ts +6 -0
- package/dist/types/editor/src/components/jsonEditor.vue.d.ts +6 -0
- package/dist/types/editor/src/controller/action.d.ts +18 -0
- package/dist/types/editor/src/controller/form.d.ts +24 -0
- package/dist/types/editor/src/controller/history.d.ts +12 -0
- package/dist/types/editor/src/controller/shortcut.d.ts +20 -0
- package/dist/types/editor/src/controller/ui.d.ts +10 -0
- package/dist/types/editor/src/layouts/ControlEditSize.vue.d.ts +17 -0
- package/dist/types/editor/src/layouts/Framework.vue.d.ts +33 -0
- package/dist/types/editor/src/layouts/Resizer.vue.d.ts +13 -0
- package/dist/types/editor/src/layouts/ShortcutKey.vue.d.ts +8 -0
- package/dist/types/editor/src/main.d.ts +5 -0
- package/dist/types/editor/src/shims-vue.d.ts +23 -0
- package/dist/types/editor/src/starfish-editor.vue.d.ts +109 -0
- package/dist/types/editor/src/type.d.ts +224 -0
- package/dist/types/editor/src/utils/_.d.ts +33 -0
- package/dist/types/editor/src/utils/formKeycon.d.ts +18 -0
- package/dist/types/editor/src/utils/shortcutKey.d.ts +3 -0
- package/dist/types/editor/src/utils/vm.d.ts +3 -0
- package/dist/types/starfish-editor.d.ts +3 -0
- package/package.json +55 -0
- package/src/common/ConditionSelect/ConditionGroup.vue +167 -0
- package/src/common/ConditionSelect/ConditionModule.vue +118 -0
- package/src/common/ConditionSelect/ConditionTanc.vue +319 -0
- package/src/common/ConditionSelect.vue +268 -0
- package/src/common/CustomDialog.vue +77 -0
- package/src/common/Loading.vue +10 -0
- package/src/common/formJson.ts +143 -0
- package/src/common/formStyle.vue +170 -0
- package/src/common/jsonCode.vue +45 -0
- package/src/components/ComponentList.vue +156 -0
- package/src/components/FormPreview.vue +197 -0
- package/src/components/Nav.vue +128 -0
- package/src/components/NavList.vue +560 -0
- package/src/components/PropsPanel.vue +376 -0
- package/src/components/Shape.vue +178 -0
- package/src/components/Workspace.vue +258 -0
- package/src/components/globalFormList.vue +30 -0
- package/src/components/jsonEditor.vue +41 -0
- package/src/controller/action.ts +37 -0
- package/src/controller/form.ts +207 -0
- package/src/controller/history.ts +57 -0
- package/src/controller/shortcut.ts +81 -0
- package/src/controller/ui.ts +91 -0
- package/src/layouts/ControlEditSize.vue +52 -0
- package/src/layouts/Framework.vue +76 -0
- package/src/layouts/Resizer.vue +54 -0
- package/src/layouts/ShortcutKey.vue +61 -0
- package/src/main.ts +56 -0
- package/src/shims-vue.d.ts +23 -0
- package/src/starfish-editor.vue +176 -0
- package/src/styles/common/normalize.css +455 -0
- package/src/styles/component-list.scss +64 -0
- package/src/styles/condition-select.scss +176 -0
- package/src/styles/control_edit_size.scss +36 -0
- package/src/styles/custom-dialog.scss +110 -0
- package/src/styles/form-preview.scss +47 -0
- package/src/styles/framework.scss +150 -0
- package/src/styles/iconfont/iconfont.css +247 -0
- package/src/styles/iconfont/iconfont.js +1 -0
- package/src/styles/iconfont/iconfont.json +415 -0
- package/src/styles/iconfont/iconfont.ttf +0 -0
- package/src/styles/iconfont/iconfont.woff +0 -0
- package/src/styles/iconfont/iconfont.woff2 +0 -0
- package/src/styles/index.scss +18 -0
- package/src/styles/nav-list.scss +59 -0
- package/src/styles/nav.scss +46 -0
- package/src/styles/props-panel.scss +115 -0
- package/src/styles/resizer.scss +15 -0
- package/src/styles/shape.scss +101 -0
- package/src/styles/shortcutkey.scss +44 -0
- package/src/styles/variables.scss +36 -0
- package/src/styles/work-space.scss +126 -0
- package/src/type.ts +240 -0
- package/src/utils/_.ts +349 -0
- package/src/utils/formKeycon.ts +42 -0
- package/src/utils/shortcutKey.ts +46 -0
- package/src/utils/vm.ts +3 -0
- package/stats.html +4949 -0
- package/tsconfig.json +19 -0
- package/vite.config.ts +111 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* prettier-ignore */
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
// noinspection JSUnusedGlobalSymbols
|
|
5
|
+
// Generated by unplugin-auto-import
|
|
6
|
+
export {}
|
|
7
|
+
declare global {
|
|
8
|
+
const ElMessage: typeof import('element-plus/es')['ElMessage']
|
|
9
|
+
const ElNotification: typeof import('element-plus/es')['ElNotification']
|
|
10
|
+
}
|
package/babel.config.js
ADDED
package/components.d.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* prettier-ignore */
|
|
3
|
+
// @ts-nocheck
|
|
4
|
+
// Generated by unplugin-vue-components
|
|
5
|
+
// Read more: https://github.com/vuejs/core/pull/3399
|
|
6
|
+
export {}
|
|
7
|
+
|
|
8
|
+
declare module 'vue' {
|
|
9
|
+
export interface GlobalComponents {
|
|
10
|
+
ComponentList: typeof import('./src/components/ComponentList.vue')['default']
|
|
11
|
+
ElButton: typeof import('element-plus/es')['ElButton']
|
|
12
|
+
ElContainer: typeof import('element-plus/es')['ElContainer']
|
|
13
|
+
ElDialog: typeof import('element-plus/es')['ElDialog']
|
|
14
|
+
ElDrawer: typeof import('element-plus/es')['ElDrawer']
|
|
15
|
+
ElEmpty: typeof import('element-plus/es')['ElEmpty']
|
|
16
|
+
ElFooter: typeof import('element-plus/es')['ElFooter']
|
|
17
|
+
ElForm: typeof import('element-plus/es')['ElForm']
|
|
18
|
+
ElFormItem: typeof import('element-plus/es')['ElFormItem']
|
|
19
|
+
ElInput: typeof import('element-plus/es')['ElInput']
|
|
20
|
+
ElMain: typeof import('element-plus/es')['ElMain']
|
|
21
|
+
ElOption: typeof import('element-plus/es')['ElOption']
|
|
22
|
+
ElScrollbar: typeof import('element-plus/es')['ElScrollbar']
|
|
23
|
+
ElSelect: typeof import('element-plus/es')['ElSelect']
|
|
24
|
+
ElSwitch: typeof import('element-plus/es')['ElSwitch']
|
|
25
|
+
ElTable: typeof import('element-plus/es')['ElTable']
|
|
26
|
+
ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
|
|
27
|
+
ElTabPane: typeof import('element-plus/es')['ElTabPane']
|
|
28
|
+
ElTabs: typeof import('element-plus/es')['ElTabs']
|
|
29
|
+
ElTooltip: typeof import('element-plus/es')['ElTooltip']
|
|
30
|
+
ElTree: typeof import('element-plus/es')['ElTree']
|
|
31
|
+
ElUpload: typeof import('element-plus/es')['ElUpload']
|
|
32
|
+
FormPreview: typeof import('./src/components/FormPreview.vue')['default']
|
|
33
|
+
GlobalFormList: typeof import('./src/components/globalFormList.vue')['default']
|
|
34
|
+
JsonEditor: typeof import('./src/components/jsonEditor.vue')['default']
|
|
35
|
+
Nav: typeof import('./src/components/Nav.vue')['default']
|
|
36
|
+
NavList: typeof import('./src/components/NavList.vue')['default']
|
|
37
|
+
PropsPanel: typeof import('./src/components/PropsPanel.vue')['default']
|
|
38
|
+
RouterLink: typeof import('vue-router')['RouterLink']
|
|
39
|
+
RouterView: typeof import('vue-router')['RouterView']
|
|
40
|
+
Shape: typeof import('./src/components/Shape.vue')['default']
|
|
41
|
+
Workspace: typeof import('./src/components/Workspace.vue')['default']
|
|
42
|
+
}
|
|
43
|
+
export interface ComponentCustomProperties {
|
|
44
|
+
vLoading: typeof import('element-plus/es')['ElLoadingDirective']
|
|
45
|
+
}
|
|
46
|
+
}
|