@ibiz-template/vue3-components 0.7.25 → 0.7.26-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-WMgMgSGZ.js +4 -0
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/{xlsx-util-xgesm7QP.js → xlsx-util-W01Wk5pi.js} +1 -1
- package/es/control/dashboard/index.mjs +4 -1
- package/es/control/dashboard/portlet/index.d.ts +1 -0
- package/es/control/dashboard/portlet/index.mjs +2 -0
- package/es/control/dashboard/portlet/report-portlet/index.d.ts +24 -0
- package/es/control/dashboard/portlet/report-portlet/index.mjs +12 -0
- package/es/control/dashboard/portlet/report-portlet/report-portlet.d.ts +24 -0
- package/es/control/dashboard/portlet/report-portlet/report-portlet.mjs +64 -0
- package/es/control/dashboard/portlet/report-portlet/report-portlet.provider.d.ts +15 -0
- package/es/control/dashboard/portlet/report-portlet/report-portlet.provider.mjs +21 -0
- package/es/control/form/form-detail/form-mdctrl/form-mdctrl-form/form-mdctrl-form.mjs +25 -0
- package/es/control/form/form-detail/form-mdctrl/index.mjs +2 -0
- package/es/control/form/form-detail/form-mdctrl/mdctrl-container2/icon/index.d.ts +21 -0
- package/es/control/form/form-detail/form-mdctrl/mdctrl-container2/icon/index.mjs +75 -0
- package/es/control/form/form-detail/form-mdctrl/mdctrl-container2/mdctrl-container2.css +1 -0
- package/es/control/form/form-detail/form-mdctrl/mdctrl-container2/mdctrl-container2.d.ts +38 -0
- package/es/control/form/form-detail/form-mdctrl/mdctrl-container2/mdctrl-container2.mjs +205 -0
- package/es/control/index.mjs +2 -0
- package/es/control/report-panel/report-detail/bi-report-panel/bi-report-panel.mjs +7 -1
- package/es/editor/data-picker/ibiz-picker-link/ibiz-picker-link.mjs +33 -1
- package/es/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.css +1 -1
- package/es/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.mjs +50 -32
- package/es/editor/text-box/ibiz-input-number/ibiz-input-number.d.ts +2 -0
- package/es/editor/text-box/ibiz-input-number/ibiz-input-number.mjs +59 -5
- package/es/index.mjs +2 -0
- package/es/view-engine/edit-view.engine.mjs +1 -1
- package/lib/control/dashboard/index.cjs +5 -0
- package/lib/control/dashboard/portlet/index.cjs +4 -0
- package/lib/control/dashboard/portlet/report-portlet/index.cjs +18 -0
- package/lib/control/dashboard/portlet/report-portlet/report-portlet.cjs +66 -0
- package/lib/control/dashboard/portlet/report-portlet/report-portlet.provider.cjs +23 -0
- package/lib/control/form/form-detail/form-mdctrl/form-mdctrl-form/form-mdctrl-form.cjs +25 -0
- package/lib/control/form/form-detail/form-mdctrl/index.cjs +2 -0
- package/lib/control/form/form-detail/form-mdctrl/mdctrl-container2/icon/index.cjs +81 -0
- package/lib/control/form/form-detail/form-mdctrl/mdctrl-container2/mdctrl-container2.cjs +207 -0
- package/lib/control/form/form-detail/form-mdctrl/mdctrl-container2/mdctrl-container2.css +1 -0
- package/lib/control/index.cjs +22 -18
- package/lib/control/report-panel/report-detail/bi-report-panel/bi-report-panel.cjs +7 -1
- package/lib/editor/data-picker/ibiz-picker-link/ibiz-picker-link.cjs +32 -0
- package/lib/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.cjs +49 -31
- package/lib/editor/dropdown-list/ibiz-dropdown/ibiz-dropdown.css +1 -1
- package/lib/editor/text-box/ibiz-input-number/ibiz-input-number.cjs +59 -5
- package/lib/index.cjs +52 -48
- package/lib/view-engine/edit-view.engine.cjs +1 -1
- package/package.json +5 -5
- package/dist/index-Kg6lkzg1.js +0 -4
|
@@ -15,6 +15,7 @@ const IBizInputNumber = /* @__PURE__ */ vue.defineComponent({
|
|
|
15
15
|
emit
|
|
16
16
|
}) {
|
|
17
17
|
const ns = vue3Util.useNamespace("input-number");
|
|
18
|
+
const enablethousands = vue.ref(false);
|
|
18
19
|
const c = props.controller;
|
|
19
20
|
const editorModel = c.model;
|
|
20
21
|
const currentVal = vue.ref(null);
|
|
@@ -27,6 +28,9 @@ const IBizInputNumber = /* @__PURE__ */ vue.defineComponent({
|
|
|
27
28
|
if (editorModel.editorParams.minvalue) {
|
|
28
29
|
min = lodashEs.toNumber(editorModel.editorParams.minvalue);
|
|
29
30
|
}
|
|
31
|
+
if (editorModel.editorParams.enablethousands) {
|
|
32
|
+
enablethousands.value = JSON.parse(editorModel.editorParams.enablethousands);
|
|
33
|
+
}
|
|
30
34
|
}
|
|
31
35
|
const isEditable = vue.ref(false);
|
|
32
36
|
const editorRef = vue.ref();
|
|
@@ -36,17 +40,37 @@ const IBizInputNumber = /* @__PURE__ */ vue.defineComponent({
|
|
|
36
40
|
}
|
|
37
41
|
return false;
|
|
38
42
|
});
|
|
43
|
+
const numberconvertToStr = (num, decimalPlaces = 0) => {
|
|
44
|
+
const options = {
|
|
45
|
+
minimumFractionDigits: decimalPlaces,
|
|
46
|
+
maximumFractionDigits: decimalPlaces
|
|
47
|
+
};
|
|
48
|
+
return num.toLocaleString("en-US", options);
|
|
49
|
+
};
|
|
50
|
+
const convertToNumber = (str) => {
|
|
51
|
+
const stringWithoutCommas = str.replace(/,/g, "");
|
|
52
|
+
const originalNumber = parseFloat(stringWithoutCommas);
|
|
53
|
+
return originalNumber;
|
|
54
|
+
};
|
|
39
55
|
vue.watch(() => props.value, (newVal, oldVal) => {
|
|
40
56
|
if (newVal !== oldVal) {
|
|
41
57
|
const number = newVal != null && !Object.is(newVal, "") ? Number(newVal) : null;
|
|
42
|
-
|
|
58
|
+
if (!enablethousands.value) {
|
|
59
|
+
currentVal.value = Number.isNaN(number) ? null : number;
|
|
60
|
+
} else {
|
|
61
|
+
currentVal.value = Number.isNaN(number) ? null : numberconvertToStr(number, c.precision ? c.precision : 0);
|
|
62
|
+
}
|
|
43
63
|
}
|
|
44
64
|
}, {
|
|
45
65
|
immediate: true
|
|
46
66
|
});
|
|
47
67
|
const currentFormatVal = vue.computed(() => {
|
|
48
|
-
if (
|
|
49
|
-
|
|
68
|
+
if (!enablethousands.value) {
|
|
69
|
+
if (currentVal.value || currentVal.value === 0) {
|
|
70
|
+
return props.controller.formatValue(currentVal.value);
|
|
71
|
+
}
|
|
72
|
+
} else if (currentVal.value || currentVal.value === 0) {
|
|
73
|
+
return numberconvertToStr(Number(currentVal.value), c.precision ? c.precision : 0);
|
|
50
74
|
}
|
|
51
75
|
return "";
|
|
52
76
|
});
|
|
@@ -81,6 +105,24 @@ const IBizInputNumber = /* @__PURE__ */ vue.defineComponent({
|
|
|
81
105
|
emit("enter", e);
|
|
82
106
|
}
|
|
83
107
|
};
|
|
108
|
+
const debounce = (func, wait) => {
|
|
109
|
+
let timeout;
|
|
110
|
+
return (...args) => {
|
|
111
|
+
clearTimeout(timeout);
|
|
112
|
+
timeout = setTimeout(() => func.apply(this, args), wait);
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
const debouncedOnInput = debounce((value) => {
|
|
116
|
+
let data = null;
|
|
117
|
+
if (typeof value === "string") {
|
|
118
|
+
data = convertToNumber(value);
|
|
119
|
+
}
|
|
120
|
+
emit("change", data);
|
|
121
|
+
}, 300);
|
|
122
|
+
const onInput = (value) => {
|
|
123
|
+
currentVal.value = value;
|
|
124
|
+
debouncedOnInput(value);
|
|
125
|
+
};
|
|
84
126
|
return {
|
|
85
127
|
ns,
|
|
86
128
|
c,
|
|
@@ -95,7 +137,9 @@ const IBizInputNumber = /* @__PURE__ */ vue.defineComponent({
|
|
|
95
137
|
showFormDefaultContent,
|
|
96
138
|
max,
|
|
97
139
|
min,
|
|
98
|
-
currentFormatVal
|
|
140
|
+
currentFormatVal,
|
|
141
|
+
enablethousands,
|
|
142
|
+
onInput
|
|
99
143
|
};
|
|
100
144
|
},
|
|
101
145
|
render() {
|
|
@@ -109,7 +153,7 @@ const IBizInputNumber = /* @__PURE__ */ vue.defineComponent({
|
|
|
109
153
|
content += unitName;
|
|
110
154
|
}
|
|
111
155
|
} else {
|
|
112
|
-
content = [vue.createVNode(vue.resolveComponent("el-input-number"), vue.mergeProps({
|
|
156
|
+
content = [!this.enablethousands ? vue.createVNode(vue.resolveComponent("el-input-number"), vue.mergeProps({
|
|
113
157
|
"ref": "editorRef",
|
|
114
158
|
"class": [this.ns.b("input")],
|
|
115
159
|
"model-value": this.currentVal,
|
|
@@ -123,6 +167,16 @@ const IBizInputNumber = /* @__PURE__ */ vue.defineComponent({
|
|
|
123
167
|
"onFocus": this.onFocus,
|
|
124
168
|
"onBlur": this.onBlur,
|
|
125
169
|
"onKeyup": this.handleKeyUp
|
|
170
|
+
}, this.$attrs), null) : vue.createVNode(vue.resolveComponent("el-input"), vue.mergeProps({
|
|
171
|
+
"ref": "editorRef",
|
|
172
|
+
"class": [this.ns.b("input")],
|
|
173
|
+
"model-value": this.currentVal,
|
|
174
|
+
"onInput": this.onInput,
|
|
175
|
+
"placeholder": this.c.placeHolder,
|
|
176
|
+
"disabled": this.disabled,
|
|
177
|
+
"onFocus": this.onFocus,
|
|
178
|
+
"onBlur": this.onBlur,
|
|
179
|
+
"onKeyup": this.handleKeyUp
|
|
126
180
|
}, this.$attrs), null), unitName && vue.createVNode("i", {
|
|
127
181
|
"class": this.ns.e("unit")
|
|
128
182
|
}, [unitName])];
|
package/lib/index.cjs
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
var index$1 = require('./common/index.cjs');
|
|
4
4
|
require('./control/index.cjs');
|
|
5
|
-
var index$
|
|
6
|
-
var index$
|
|
5
|
+
var index$W = require('./panel-component/index.cjs');
|
|
6
|
+
var index$14 = require('./editor/index.cjs');
|
|
7
7
|
require('./view/index.cjs');
|
|
8
|
-
var index$
|
|
8
|
+
var index$17 = require('./view-engine/index.cjs');
|
|
9
9
|
require('./util/index.cjs');
|
|
10
10
|
var index = require('./locale/index.cjs');
|
|
11
11
|
require('./web-app/index.cjs');
|
|
@@ -77,35 +77,37 @@ var htmlPortlet = require('./control/dashboard/portlet/html-portlet/html-portlet
|
|
|
77
77
|
var index$K = require('./control/dashboard/portlet/html-portlet/index.cjs');
|
|
78
78
|
var actionbarPortlet = require('./control/dashboard/portlet/actionbar-portlet/actionbar-portlet.cjs');
|
|
79
79
|
var index$L = require('./control/dashboard/portlet/actionbar-portlet/index.cjs');
|
|
80
|
+
var reportPortlet = require('./control/dashboard/portlet/report-portlet/report-portlet.cjs');
|
|
81
|
+
var index$M = require('./control/dashboard/portlet/report-portlet/index.cjs');
|
|
80
82
|
var index$D = require('./control/dashboard/index.cjs');
|
|
81
|
-
var index$
|
|
82
|
-
var index$
|
|
83
|
-
var index$
|
|
84
|
-
var index$
|
|
85
|
-
var index$
|
|
86
|
-
var index$
|
|
87
|
-
var index$
|
|
88
|
-
var index$
|
|
89
|
-
var index$
|
|
90
|
-
var index$
|
|
83
|
+
var index$N = require('./control/calendar/index.cjs');
|
|
84
|
+
var index$O = require('./control/kanban/index.cjs');
|
|
85
|
+
var index$P = require('./control/tree-grid-ex/index.cjs');
|
|
86
|
+
var index$Q = require('./control/tree-grid/index.cjs');
|
|
87
|
+
var index$R = require('./control/medit-view-panel/index.cjs');
|
|
88
|
+
var index$S = require('./control/map/index.cjs');
|
|
89
|
+
var index$T = require('./control/report-panel/index.cjs');
|
|
90
|
+
var index$U = require('./control/gantt/index.cjs');
|
|
91
|
+
var index$V = require('./control/context-menu/index.cjs');
|
|
92
|
+
var index$X = require('./panel-component/auth-userinfo/index.cjs');
|
|
91
93
|
var navPosIndex_state = require('./panel-component/nav-pos-index/nav-pos-index.state.cjs');
|
|
92
94
|
var navPosIndex_controller = require('./panel-component/nav-pos-index/nav-pos-index.controller.cjs');
|
|
93
|
-
var index$
|
|
95
|
+
var index$Y = require('./panel-component/nav-pos-index/index.cjs');
|
|
94
96
|
var panelButton_controller = require('./panel-component/panel-button/panel-button.controller.cjs');
|
|
95
|
-
var index$
|
|
97
|
+
var index$Z = require('./panel-component/panel-button/index.cjs');
|
|
96
98
|
var panelAppTitle_controller = require('./panel-component/panel-app-title/panel-app-title.controller.cjs');
|
|
97
|
-
var index$
|
|
98
|
-
var index
|
|
99
|
+
var index$_ = require('./panel-component/panel-app-title/index.cjs');
|
|
100
|
+
var index$$ = require('./panel-component/panel-tab-panel/index.cjs');
|
|
99
101
|
var splitContainer_controller = require('./panel-component/split-container/split-container.controller.cjs');
|
|
100
|
-
var index
|
|
101
|
-
var index$
|
|
102
|
-
var index$
|
|
103
|
-
var index$
|
|
102
|
+
var index$10 = require('./panel-component/split-container/index.cjs');
|
|
103
|
+
var index$11 = require('./panel-component/panel-index-view-search/index.cjs');
|
|
104
|
+
var index$12 = require('./panel-component/index-actions/index.cjs');
|
|
105
|
+
var index$13 = require('./panel-component/user-action/index.cjs');
|
|
104
106
|
var _404View = require('./view/404-view/404-view.cjs');
|
|
105
107
|
var _403View = require('./view/403-view/403-view.cjs');
|
|
106
108
|
var loginView = require('./view/login-view/login-view.cjs');
|
|
107
|
-
var index$
|
|
108
|
-
var index$
|
|
109
|
+
var index$15 = require('./view/wf-step-trace-view/index.cjs');
|
|
110
|
+
var index$16 = require('./view/sub-app-ref-view/index.cjs');
|
|
109
111
|
var errorView = require('./view/error-view/error-view.cjs');
|
|
110
112
|
var gridView_engine = require('./view-engine/grid-view.engine.cjs');
|
|
111
113
|
var indexView_engine = require('./view-engine/index-view.engine.cjs');
|
|
@@ -126,14 +128,14 @@ var renderUtil = require('./util/render-util/render-util.cjs');
|
|
|
126
128
|
var appUtil = require('./util/app-util/app-util.cjs');
|
|
127
129
|
var authGuard = require('./web-app/guard/auth-guard/auth-guard.cjs');
|
|
128
130
|
var main = require('./web-app/main.cjs');
|
|
129
|
-
var index$
|
|
131
|
+
var index$18 = require('./web-app/router/index.cjs');
|
|
130
132
|
|
|
131
133
|
"use strict";
|
|
132
134
|
|
|
133
135
|
exports.IBizCommonComponents = index$1.IBizCommonComponents;
|
|
134
|
-
exports.IBizPanelComponents = index$
|
|
135
|
-
exports.IBizEditor = index$
|
|
136
|
-
exports.IBizViewEngine = index$
|
|
136
|
+
exports.IBizPanelComponents = index$W.IBizPanelComponents;
|
|
137
|
+
exports.IBizEditor = index$14.IBizEditor;
|
|
138
|
+
exports.IBizViewEngine = index$17.IBizViewEngine;
|
|
137
139
|
exports.i18n = index.i18n;
|
|
138
140
|
exports.DoingNotice = doingNotice.DoingNotice;
|
|
139
141
|
exports.IBizCol = col.IBizCol;
|
|
@@ -207,35 +209,37 @@ exports.HtmlPortlet = htmlPortlet.HtmlPortlet;
|
|
|
207
209
|
exports.IBizHtmlPortlet = index$K.IBizHtmlPortlet;
|
|
208
210
|
exports.ActionBarPortlet = actionbarPortlet.ActionBarPortlet;
|
|
209
211
|
exports.IBizActionBarPortlet = index$L.IBizActionBarPortlet;
|
|
212
|
+
exports.ReportPortlet = reportPortlet.ReportPortlet;
|
|
213
|
+
exports.IBizReportPortlet = index$M.IBizReportPortlet;
|
|
210
214
|
exports.IBizDashboardControl = index$D.IBizDashboardControl;
|
|
211
|
-
exports.IBizCalendarControl = index$
|
|
212
|
-
exports.IBizKanbanControl = index$
|
|
213
|
-
exports.IBizTreeGridExControl = index$
|
|
214
|
-
exports.IBizTreeGridControl = index$
|
|
215
|
-
exports.IBizMEditViewPanelControl = index$
|
|
216
|
-
exports.IBizMapControl = index$
|
|
217
|
-
exports.IBizReportPanelControl = index$
|
|
218
|
-
exports.IBizGanttControl = index$
|
|
219
|
-
exports.IBizContextMenuControl = index$
|
|
220
|
-
exports.IBizAuthUserinfo = index$
|
|
215
|
+
exports.IBizCalendarControl = index$N.IBizCalendarControl;
|
|
216
|
+
exports.IBizKanbanControl = index$O.IBizKanbanControl;
|
|
217
|
+
exports.IBizTreeGridExControl = index$P.IBizTreeGridExControl;
|
|
218
|
+
exports.IBizTreeGridControl = index$Q.IBizTreeGridControl;
|
|
219
|
+
exports.IBizMEditViewPanelControl = index$R.IBizMEditViewPanelControl;
|
|
220
|
+
exports.IBizMapControl = index$S.IBizMapControl;
|
|
221
|
+
exports.IBizReportPanelControl = index$T.IBizReportPanelControl;
|
|
222
|
+
exports.IBizGanttControl = index$U.IBizGanttControl;
|
|
223
|
+
exports.IBizContextMenuControl = index$V.IBizContextMenuControl;
|
|
224
|
+
exports.IBizAuthUserinfo = index$X.IBizAuthUserinfo;
|
|
221
225
|
exports.NavPosIndexState = navPosIndex_state.NavPosIndexState;
|
|
222
226
|
exports.NavPosIndexController = navPosIndex_controller.NavPosIndexController;
|
|
223
|
-
exports.IBizNavPosIndex = index$
|
|
227
|
+
exports.IBizNavPosIndex = index$Y.IBizNavPosIndex;
|
|
224
228
|
exports.PanelButtonController = panelButton_controller.PanelButtonController;
|
|
225
|
-
exports.IBizPanelButton = index$
|
|
229
|
+
exports.IBizPanelButton = index$Z.IBizPanelButton;
|
|
226
230
|
exports.PanelAppTitleController = panelAppTitle_controller.PanelAppTitleController;
|
|
227
|
-
exports.IBizPanelAppTitle = index$
|
|
228
|
-
exports.IBizPanelTabPanel = index
|
|
231
|
+
exports.IBizPanelAppTitle = index$_.IBizPanelAppTitle;
|
|
232
|
+
exports.IBizPanelTabPanel = index$$.IBizPanelTabPanel;
|
|
229
233
|
exports.SplitContainerController = splitContainer_controller.SplitContainerController;
|
|
230
|
-
exports.IBizSplitContainer = index
|
|
231
|
-
exports.IBizPanelIndexViewSearch = index$
|
|
232
|
-
exports.IBizIndexActions = index$
|
|
233
|
-
exports.IBizUserAction = index$
|
|
234
|
+
exports.IBizSplitContainer = index$10.IBizSplitContainer;
|
|
235
|
+
exports.IBizPanelIndexViewSearch = index$11.IBizPanelIndexViewSearch;
|
|
236
|
+
exports.IBizIndexActions = index$12.IBizIndexActions;
|
|
237
|
+
exports.IBizUserAction = index$13.IBizUserAction;
|
|
234
238
|
exports.View404 = _404View.View404;
|
|
235
239
|
exports.View403 = _403View.View403;
|
|
236
240
|
exports.LoginView = loginView.LoginView;
|
|
237
|
-
exports.IBizWFStepTraceView = index$
|
|
238
|
-
exports.IBizSubAppRefView = index$
|
|
241
|
+
exports.IBizWFStepTraceView = index$15.IBizWFStepTraceView;
|
|
242
|
+
exports.IBizSubAppRefView = index$16.IBizSubAppRefView;
|
|
239
243
|
exports.ErrorView = errorView.ErrorView;
|
|
240
244
|
exports.GridViewEngine = gridView_engine.GridViewEngine;
|
|
241
245
|
exports.IndexViewEngine = indexView_engine.IndexViewEngine;
|
|
@@ -256,4 +260,4 @@ exports.RenderUtil = renderUtil.RenderUtil;
|
|
|
256
260
|
exports.AppUtil = appUtil.AppUtil;
|
|
257
261
|
exports.AuthGuard = authGuard.AuthGuard;
|
|
258
262
|
exports.runApp = main.runApp;
|
|
259
|
-
exports.AppRouter = index$
|
|
263
|
+
exports.AppRouter = index$18.AppRouter;
|
|
@@ -65,7 +65,7 @@ class EditViewEngine extends runtime.ViewEngineBase {
|
|
|
65
65
|
modal.hooks.shouldDismiss.tapPromise(async (context) => {
|
|
66
66
|
const uiDomain = ibiz.uiDomainManager.get(this.view.context.srfsessionid);
|
|
67
67
|
const isChange = (this.form.state.modified || uiDomain.dataModification) && this.view.model.enableDirtyChecking === true;
|
|
68
|
-
if (isChange && this.form.model.enableAutoSave) {
|
|
68
|
+
if (isChange && this.form.model.enableAutoSave && !uiDomain.dataModification) {
|
|
69
69
|
await this.form.immediateAutoSave();
|
|
70
70
|
} else if (isChange && context.allowClose == null) {
|
|
71
71
|
const isAllow = await ibiz.confirm.error({
|
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.26-alpha.0",
|
|
4
4
|
"description": "使用 rollup 编译 vue 组件或者 jsx",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"@floating-ui/dom": "^1.5.3",
|
|
31
31
|
"@ibiz-template-plugin/ai-chat": "^0.0.5",
|
|
32
32
|
"@ibiz-template-plugin/gantt": "0.1.8-alpha.6",
|
|
33
|
-
"@ibiz-template-plugin/bi-report": "0.0.
|
|
33
|
+
"@ibiz-template-plugin/bi-report": "0.0.2",
|
|
34
34
|
"@ibiz-template/core": "0.7.25",
|
|
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.26-alpha.0",
|
|
37
|
+
"@ibiz-template/runtime": "0.7.26-alpha.0",
|
|
38
38
|
"@ibiz-template/theme": "^0.7.0",
|
|
39
|
-
"@ibiz-template/vue3-util": "0.7.
|
|
39
|
+
"@ibiz-template/vue3-util": "0.7.26-alpha.0",
|
|
40
40
|
"@ibiz-template/web-theme": "^1.1.18",
|
|
41
41
|
"@ibiz/model-core": "^0.1.35",
|
|
42
42
|
"@imengyu/vue3-context-menu": "^1.3.5",
|