@fecp/designer 5.5.24 → 5.5.26
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/es/designer/index.mjs +5 -7
- package/es/designer/package.json.mjs +1 -1
- package/es/designer/src/packages/dialog/useDialogDialog.mjs +1 -1
- package/es/designer/src/packages/dialogGlobal/useDialogGlobalDialog.mjs +1 -1
- package/es/designer/src/packages/form/property/widgets.vue.mjs +2 -2
- package/lib/designer/index.js +5 -7
- package/lib/designer/package.json.js +1 -1
- package/lib/designer/src/packages/dialog/useDialogDialog.js +1 -1
- package/lib/designer/src/packages/dialogGlobal/useDialogGlobalDialog.js +1 -1
- package/lib/designer/src/packages/form/property/widgets.vue.js +2 -2
- package/package.json +1 -1
package/es/designer/index.mjs
CHANGED
|
@@ -3,14 +3,12 @@ import layout from "./src/layout/index.vue.mjs";
|
|
|
3
3
|
/* empty css */
|
|
4
4
|
import devStore from "./src/store/designer.mjs";
|
|
5
5
|
import fecVue from "../packages/vue/index.mjs";
|
|
6
|
-
import zh_cn_default from "../node_modules/element-plus/
|
|
7
|
-
|
|
8
|
-
window.ElementPlus = {
|
|
9
|
-
...window.ElementPlus || {},
|
|
10
|
-
locale: zh_cn_default
|
|
11
|
-
};
|
|
12
|
-
}
|
|
6
|
+
import zh_cn_default from "../node_modules/element-plus/es/locale/lang/zh-cn.mjs";
|
|
7
|
+
import ElementPlus from "element-plus";
|
|
13
8
|
const install = (app) => {
|
|
9
|
+
app.use(ElementPlus, {
|
|
10
|
+
locale: zh_cn_default
|
|
11
|
+
});
|
|
14
12
|
app.use(fecVue);
|
|
15
13
|
app.component("fecDevDesigner", layout);
|
|
16
14
|
};
|
|
@@ -61,8 +61,8 @@ import _export_sfc from "../../../../../_virtual/_plugin-vue_export-helper.mjs";
|
|
|
61
61
|
import "../../../components/TemplateSelector.vue.mjs";
|
|
62
62
|
import "../../table/default.mjs";
|
|
63
63
|
/* empty css */
|
|
64
|
-
/* empty css
|
|
65
|
-
/* empty css
|
|
64
|
+
/* empty css */
|
|
65
|
+
/* empty css */
|
|
66
66
|
import "../../../store/index.mjs";
|
|
67
67
|
/* empty css */
|
|
68
68
|
const _hoisted_1 = {
|
package/lib/designer/index.js
CHANGED
|
@@ -5,14 +5,12 @@ const index$2 = ;/* empty css */
|
|
|
5
5
|
;/* empty css */
|
|
6
6
|
const designer = require("./src/store/designer.js");
|
|
7
7
|
const index$1 = require("../packages/vue/index.js");
|
|
8
|
-
const zhCn = require("../node_modules/element-plus/
|
|
9
|
-
|
|
10
|
-
window.ElementPlus = {
|
|
11
|
-
...window.ElementPlus || {},
|
|
12
|
-
locale: zhCn.default
|
|
13
|
-
};
|
|
14
|
-
}
|
|
8
|
+
const zhCn = require("../node_modules/element-plus/es/locale/lang/zh-cn.js");
|
|
9
|
+
const ElementPlus = require("element-plus");
|
|
15
10
|
const install = (app) => {
|
|
11
|
+
app.use(ElementPlus, {
|
|
12
|
+
locale: zhCn.default
|
|
13
|
+
});
|
|
16
14
|
app.use(index$1.default);
|
|
17
15
|
app.component("fecDevDesigner", index$2.default);
|
|
18
16
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue2.js");
|
|
4
4
|
const vue = require("vue");
|
|
5
5
|
function useDialogDialog() {
|
|
6
6
|
const dialogDialogVisible = vue.ref(false);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const index = require("./index.
|
|
3
|
+
const index = require("./index.vue2.js");
|
|
4
4
|
const vue = require("vue");
|
|
5
5
|
function useDialogGlobalDialog() {
|
|
6
6
|
const dialogGlobalDialogVisible = vue.ref(false);
|
|
@@ -63,8 +63,8 @@ const _pluginVue_exportHelper = require("../../../../../_virtual/_plugin-vue_exp
|
|
|
63
63
|
require("../../../components/TemplateSelector.vue.js");
|
|
64
64
|
require("../../table/default.js");
|
|
65
65
|
;/* empty css */
|
|
66
|
-
;/* empty css
|
|
67
|
-
;/* empty css
|
|
66
|
+
;/* empty css */
|
|
67
|
+
;/* empty css */
|
|
68
68
|
require("../../../store/index.js");
|
|
69
69
|
;/* empty css */
|
|
70
70
|
const _hoisted_1 = {
|