@ibiz-template/vue3-components 0.7.28 → 0.7.29-alpha.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/dist/{index-X_i16UJh.js → index-5QrDXG59.js} +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/{xlsx-util-z-jllHFG.js → xlsx-util-jxc7ylyH.js} +1 -1
- package/es/control/dashboard/custom-dashboard-container/custom-dashboard-container.d.ts +3 -1
- package/es/control/dashboard/custom-dashboard-container/custom-dashboard-container.mjs +2 -2
- package/es/control/dashboard/dashboard-design/dashboard-design.mjs +1 -1
- package/es/editor/text-box/ibiz-input-number/ibiz-input-number.mjs +1 -1
- package/lib/control/dashboard/custom-dashboard-container/custom-dashboard-container.cjs +2 -2
- package/lib/control/dashboard/dashboard-design/dashboard-design.cjs +1 -1
- package/lib/editor/text-box/ibiz-input-number/ibiz-input-number.cjs +1 -1
- package/package.json +5 -5
|
@@ -21135,9 +21135,11 @@ export declare const CustomDashboardContainer: import("vue").DefineComponent<{
|
|
|
21135
21135
|
srfpaginationviewid?: string | undefined;
|
|
21136
21136
|
};
|
|
21137
21137
|
params: IParams;
|
|
21138
|
-
type: "data" | "public" | "personal"
|
|
21138
|
+
type: "data" | "public" | "personal";
|
|
21139
21139
|
ownerType: string;
|
|
21140
21140
|
ownerId: string;
|
|
21141
|
+
multiMode: boolean;
|
|
21142
|
+
showDesignBtn: boolean;
|
|
21141
21143
|
loadCustomModelData: () => Promise<IData>;
|
|
21142
21144
|
resetCustomModelData: () => Promise<IData>;
|
|
21143
21145
|
saveCustomModelData: (model: IData[], opts?: IData | undefined) => Promise<IData>;
|
|
@@ -129,7 +129,7 @@ const CustomDashboardContainer = /* @__PURE__ */ defineComponent({
|
|
|
129
129
|
var _a, _b;
|
|
130
130
|
return createVNode("div", {
|
|
131
131
|
"class": [this.ns.b()]
|
|
132
|
-
}, [createVNode("div", {
|
|
132
|
+
}, [this.customC.showDesignBtn ? createVNode("div", {
|
|
133
133
|
"class": this.ns.b("build-btn")
|
|
134
134
|
}, [this.showTypeDir ? createVNode("div", null, [createVNode(resolveComponent("el-button"), {
|
|
135
135
|
"class": this.ns.b("deisgn-btn"),
|
|
@@ -153,7 +153,7 @@ const CustomDashboardContainer = /* @__PURE__ */ defineComponent({
|
|
|
153
153
|
default: () => [createVNode("ion-icon", {
|
|
154
154
|
"name": "chevron-back-outline"
|
|
155
155
|
}, null)]
|
|
156
|
-
})]), createVNode(resolveComponent("el-drawer"), {
|
|
156
|
+
})]) : null, createVNode(resolveComponent("el-drawer"), {
|
|
157
157
|
"modelValue": this.isShowDesign,
|
|
158
158
|
"onUpdate:modelValue": ($event) => this.isShowDesign = $event,
|
|
159
159
|
"with-header": false,
|
|
@@ -117,7 +117,7 @@ const DashboardDesign = /* @__PURE__ */ defineComponent({
|
|
|
117
117
|
type: "app",
|
|
118
118
|
dynamodelFlag: 1,
|
|
119
119
|
portletId: portlet.psappportletid,
|
|
120
|
-
portletCodeName: portlet.
|
|
120
|
+
portletCodeName: portlet.codename,
|
|
121
121
|
portletName: portlet.psappportletname,
|
|
122
122
|
groupCodeName: portlet.groupcodename || "Ungroup",
|
|
123
123
|
groupName: portlet.groupname || "\u672A\u5206\u7C7B",
|
|
@@ -165,7 +165,7 @@ const IBizInputNumber = /* @__PURE__ */ defineComponent({
|
|
|
165
165
|
"precision": this.c.precision,
|
|
166
166
|
"disabled": this.disabled,
|
|
167
167
|
"controls": false,
|
|
168
|
-
"onChange": this.handleChange,
|
|
168
|
+
"onChange": (val) => this.handleChange(val, "blur"),
|
|
169
169
|
"onInput": (value) => this.handleChange(value, "input"),
|
|
170
170
|
"onFocus": this.onFocus,
|
|
171
171
|
"onBlur": this.onBlur,
|
|
@@ -131,7 +131,7 @@ const CustomDashboardContainer = /* @__PURE__ */ vue.defineComponent({
|
|
|
131
131
|
var _a, _b;
|
|
132
132
|
return vue.createVNode("div", {
|
|
133
133
|
"class": [this.ns.b()]
|
|
134
|
-
}, [vue.createVNode("div", {
|
|
134
|
+
}, [this.customC.showDesignBtn ? vue.createVNode("div", {
|
|
135
135
|
"class": this.ns.b("build-btn")
|
|
136
136
|
}, [this.showTypeDir ? vue.createVNode("div", null, [vue.createVNode(vue.resolveComponent("el-button"), {
|
|
137
137
|
"class": this.ns.b("deisgn-btn"),
|
|
@@ -155,7 +155,7 @@ const CustomDashboardContainer = /* @__PURE__ */ vue.defineComponent({
|
|
|
155
155
|
default: () => [vue.createVNode("ion-icon", {
|
|
156
156
|
"name": "chevron-back-outline"
|
|
157
157
|
}, null)]
|
|
158
|
-
})]), vue.createVNode(vue.resolveComponent("el-drawer"), {
|
|
158
|
+
})]) : null, vue.createVNode(vue.resolveComponent("el-drawer"), {
|
|
159
159
|
"modelValue": this.isShowDesign,
|
|
160
160
|
"onUpdate:modelValue": ($event) => this.isShowDesign = $event,
|
|
161
161
|
"with-header": false,
|
|
@@ -119,7 +119,7 @@ const DashboardDesign = /* @__PURE__ */ vue.defineComponent({
|
|
|
119
119
|
type: "app",
|
|
120
120
|
dynamodelFlag: 1,
|
|
121
121
|
portletId: portlet.psappportletid,
|
|
122
|
-
portletCodeName: portlet.
|
|
122
|
+
portletCodeName: portlet.codename,
|
|
123
123
|
portletName: portlet.psappportletname,
|
|
124
124
|
groupCodeName: portlet.groupcodename || "Ungroup",
|
|
125
125
|
groupName: portlet.groupname || "\u672A\u5206\u7C7B",
|
|
@@ -167,7 +167,7 @@ const IBizInputNumber = /* @__PURE__ */ vue.defineComponent({
|
|
|
167
167
|
"precision": this.c.precision,
|
|
168
168
|
"disabled": this.disabled,
|
|
169
169
|
"controls": false,
|
|
170
|
-
"onChange": this.handleChange,
|
|
170
|
+
"onChange": (val) => this.handleChange(val, "blur"),
|
|
171
171
|
"onInput": (value) => this.handleChange(value, "input"),
|
|
172
172
|
"onFocus": this.onFocus,
|
|
173
173
|
"onBlur": this.onBlur,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiz-template/vue3-components",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.29-alpha.0",
|
|
4
4
|
"description": "使用 rollup 编译 vue 组件或者 jsx",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"@ibiz-template-plugin/bi-report": "0.0.8",
|
|
34
34
|
"@ibiz-template/core": "0.7.28",
|
|
35
35
|
"@ibiz-template/devtool": "0.0.1-dev.6",
|
|
36
|
-
"@ibiz-template/model-helper": "0.7.
|
|
37
|
-
"@ibiz-template/runtime": "0.7.
|
|
36
|
+
"@ibiz-template/model-helper": "0.7.29-alpha.0",
|
|
37
|
+
"@ibiz-template/runtime": "0.7.29-alpha.0",
|
|
38
38
|
"@ibiz-template/theme": "^0.7.0",
|
|
39
|
-
"@ibiz-template/vue3-util": "0.7.
|
|
39
|
+
"@ibiz-template/vue3-util": "0.7.29-alpha.0",
|
|
40
40
|
"@ibiz-template/web-theme": "^1.1.18",
|
|
41
|
-
"@ibiz/model-core": "^0.1.
|
|
41
|
+
"@ibiz/model-core": "^0.1.43",
|
|
42
42
|
"@imengyu/vue3-context-menu": "^1.3.5",
|
|
43
43
|
"@monaco-editor/loader": "^1.4.0",
|
|
44
44
|
"@wangeditor/editor": "^5.1.23",
|