sun-form-v3 1.0.89 → 1.0.91

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sun-form-v3",
3
3
  "private": false,
4
- "version": "1.0.89",
4
+ "version": "1.0.91",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -11,11 +11,13 @@
11
11
  "scripts": {
12
12
  "dev": "vite",
13
13
  "build": "vite build",
14
- "preview": "vite preview"
14
+ "preview": "vite preview",
15
+ "prod": "vite build --config vite.preview.config.js && vite preview --config vite.preview.config.js"
15
16
  },
16
17
  "dependencies": {
17
18
  "@element-plus/icons-vue": "^2.3.1",
18
19
  "@rollup/plugin-commonjs": "^26.0.1",
20
+ "@tinymce/tinymce-vue": "^5",
19
21
  "autoprefixer": "^10.4.19",
20
22
  "axios": "^1.7.0",
21
23
  "postcss": "^8.4.38",
@@ -28,10 +30,11 @@
28
30
  },
29
31
  "devDependencies": {
30
32
  "@vitejs/plugin-vue": "^5.0.4",
33
+ "echarts": "^5.5.1",
31
34
  "element-plus": "^2.7.3",
32
35
  "terser": "^5.31.0",
33
36
  "vite": "^5.2.8",
34
37
  "vite-plugin-static-copy": "^1.0.6",
35
38
  "vxe-table": "^4.6.17"
36
39
  }
37
- }
40
+ }
@@ -1,33 +0,0 @@
1
- import { resolveComponent as o, openBlock as c, createBlock as i, withCtx as m, createVNode as d, unref as n } from "vue";
2
- const _ = /* @__PURE__ */ Object.assign({ name: "config-homepage" }, {
3
- __name: "index",
4
- props: {
5
- designer: {
6
- type: Object,
7
- default: {}
8
- },
9
- widget: {
10
- type: Object,
11
- default: {}
12
- }
13
- },
14
- setup(l) {
15
- let e = l;
16
- return (s, t) => {
17
- const p = o("el-input"), a = o("common-label-container");
18
- return c(), i(a, { label: "页面高度" }, {
19
- default: m(() => [
20
- d(p, {
21
- modelValue: n(e).widget.props.height,
22
- "onUpdate:modelValue": t[0] || (t[0] = (r) => n(e).widget.props.height = r),
23
- placeholder: "填写页面高度"
24
- }, null, 8, ["modelValue"])
25
- ]),
26
- _: 1
27
- });
28
- };
29
- }
30
- });
31
- export {
32
- _ as default
33
- };