@ibiz-template/vue3-components 0.3.6-dev.0 → 0.4.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-vSGho8P9.js +14 -0
- package/dist/index-vSGho8P9.js.map +1 -0
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/{xlsx-util--ODZUMX_.js → xlsx-util-NiYR2cbs.js} +2 -2
- package/dist/{xlsx-util--ODZUMX_.js.map → xlsx-util-NiYR2cbs.js.map} +1 -1
- package/es/control/caption-bar/caption-bar.css +1 -1
- package/es/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-grid/repeater-grid.d.ts +15446 -1
- package/es/control/grid/grid-column/grid-field-column/index.mjs +4 -0
- package/es/control/report-panel/index.d.ts +50 -1
- package/es/control/report-panel/index.mjs +6 -12
- package/es/control/report-panel/report-detail/user-report-panel/index.mjs +3 -6
- package/es/control/report-panel/report-detail/user2-report-panel/index.mjs +3 -6
- package/es/control/report-panel/report-detail/user2-report-panel/user2-report-panel.mjs +4 -4
- package/es/panel-component/panel-view-content/panel-view-content.css +1 -1
- package/es/view-engine/report-view.engine.d.ts +11 -11
- package/es/view-engine/report-view.engine.mjs +5 -5
- package/lib/control/caption-bar/caption-bar.css +1 -1
- package/lib/control/grid/grid-column/grid-field-column/index.cjs +4 -0
- package/lib/control/report-panel/index.cjs +6 -12
- package/lib/control/report-panel/report-detail/user-report-panel/index.cjs +3 -6
- package/lib/control/report-panel/report-detail/user2-report-panel/index.cjs +3 -6
- package/lib/control/report-panel/report-detail/user2-report-panel/user2-report-panel.cjs +4 -4
- package/lib/panel-component/panel-view-content/panel-view-content.css +1 -1
- package/lib/view-engine/report-view.engine.cjs +5 -5
- package/package.json +6 -6
- package/dist/index-IQggCeg0.js +0 -14
- package/dist/index-IQggCeg0.js.map +0 -1
|
@@ -1,2 +1,51 @@
|
|
|
1
|
-
export declare const IBizReportPanelControl:
|
|
1
|
+
export declare const IBizReportPanelControl: import("@ibiz-template/vue3-util").TypeWithInstall<import("vue").DefineComponent<{
|
|
2
|
+
modelData: {
|
|
3
|
+
type: import("vue").PropType<import("@ibiz/model-core").IDEReportPanel>;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
context: {
|
|
7
|
+
type: import("vue").PropType<IContext>;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
params: {
|
|
11
|
+
type: import("vue").PropType<IParams>;
|
|
12
|
+
default: () => {};
|
|
13
|
+
};
|
|
14
|
+
provider: {
|
|
15
|
+
type: import("vue").PropType<import("@ibiz-template/runtime").IControlProvider>;
|
|
16
|
+
};
|
|
17
|
+
noLoadDefault: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
}, {
|
|
22
|
+
c: import("@ibiz-template/runtime").ReportPanelController;
|
|
23
|
+
ns: import("@ibiz-template/core").Namespace;
|
|
24
|
+
renderContent: () => false | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
}>;
|
|
27
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
28
|
+
modelData: {
|
|
29
|
+
type: import("vue").PropType<import("@ibiz/model-core").IDEReportPanel>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
context: {
|
|
33
|
+
type: import("vue").PropType<IContext>;
|
|
34
|
+
required: true;
|
|
35
|
+
};
|
|
36
|
+
params: {
|
|
37
|
+
type: import("vue").PropType<IParams>;
|
|
38
|
+
default: () => {};
|
|
39
|
+
};
|
|
40
|
+
provider: {
|
|
41
|
+
type: import("vue").PropType<import("@ibiz-template/runtime").IControlProvider>;
|
|
42
|
+
};
|
|
43
|
+
noLoadDefault: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
default: boolean;
|
|
46
|
+
};
|
|
47
|
+
}>>, {
|
|
48
|
+
params: IParams;
|
|
49
|
+
noLoadDefault: boolean;
|
|
50
|
+
}, {}>>;
|
|
2
51
|
export default IBizReportPanelControl;
|
|
@@ -7,17 +7,11 @@ import { IBizUserReportPanel } from './report-detail/user-report-panel/index.mjs
|
|
|
7
7
|
import { IBizUser2ReportPanel } from './report-detail/user2-report-panel/index.mjs';
|
|
8
8
|
|
|
9
9
|
"use strict";
|
|
10
|
-
const IBizReportPanelControl = withInstall(
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
registerControlProvider(
|
|
17
|
-
ControlType.REPORT_PANEL,
|
|
18
|
-
() => new ReportPanelProvider()
|
|
19
|
-
);
|
|
20
|
-
}
|
|
21
|
-
);
|
|
10
|
+
const IBizReportPanelControl = withInstall(ReportPanelControl, function(v) {
|
|
11
|
+
v.use(IBizUserReportPanel);
|
|
12
|
+
v.use(IBizUser2ReportPanel);
|
|
13
|
+
v.component(ReportPanelControl.name, ReportPanelControl);
|
|
14
|
+
registerControlProvider(ControlType.REPORT_PANEL, () => new ReportPanelProvider());
|
|
15
|
+
});
|
|
22
16
|
|
|
23
17
|
export { IBizReportPanelControl, IBizReportPanelControl as default };
|
|
@@ -2,11 +2,8 @@ import { withInstall } from '@ibiz-template/vue3-util';
|
|
|
2
2
|
import { UserReportPanel } from './user-report-panel.mjs';
|
|
3
3
|
|
|
4
4
|
"use strict";
|
|
5
|
-
const IBizUserReportPanel = withInstall(
|
|
6
|
-
UserReportPanel,
|
|
7
|
-
|
|
8
|
-
v.component(UserReportPanel.name, UserReportPanel);
|
|
9
|
-
}
|
|
10
|
-
);
|
|
5
|
+
const IBizUserReportPanel = withInstall(UserReportPanel, function(v) {
|
|
6
|
+
v.component(UserReportPanel.name, UserReportPanel);
|
|
7
|
+
});
|
|
11
8
|
|
|
12
9
|
export { IBizUserReportPanel, IBizUserReportPanel as default };
|
|
@@ -2,11 +2,8 @@ import { withInstall } from '@ibiz-template/vue3-util';
|
|
|
2
2
|
import { User2ReportPanel } from './user2-report-panel.mjs';
|
|
3
3
|
|
|
4
4
|
"use strict";
|
|
5
|
-
const IBizUser2ReportPanel = withInstall(
|
|
6
|
-
User2ReportPanel,
|
|
7
|
-
|
|
8
|
-
v.component(User2ReportPanel.name, User2ReportPanel);
|
|
9
|
-
}
|
|
10
|
-
);
|
|
5
|
+
const IBizUser2ReportPanel = withInstall(User2ReportPanel, function(v) {
|
|
6
|
+
v.component(User2ReportPanel.name, User2ReportPanel);
|
|
7
|
+
});
|
|
11
8
|
|
|
12
9
|
export { IBizUser2ReportPanel, IBizUser2ReportPanel as default };
|
|
@@ -38,7 +38,6 @@ const User2ReportPanel = /* @__PURE__ */ defineComponent({
|
|
|
38
38
|
return `onclick="handleCallClick('${value}')"`;
|
|
39
39
|
});
|
|
40
40
|
}
|
|
41
|
-
return "";
|
|
42
41
|
});
|
|
43
42
|
return {
|
|
44
43
|
c,
|
|
@@ -57,10 +56,11 @@ const User2ReportPanel = /* @__PURE__ */ defineComponent({
|
|
|
57
56
|
"class": this.ns.e("container"),
|
|
58
57
|
"innerHTML": this.computedValue
|
|
59
58
|
}, null);
|
|
59
|
+
} else {
|
|
60
|
+
return createVNode("div", {
|
|
61
|
+
"class": this.ns.e("empty")
|
|
62
|
+
}, [createTextVNode("\u6682\u65E0\u6570\u636E")]);
|
|
60
63
|
}
|
|
61
|
-
return createVNode("div", {
|
|
62
|
-
"class": this.ns.e("empty")
|
|
63
|
-
}, [createTextVNode("\u6682\u65E0\u6570\u636E")]);
|
|
64
64
|
}
|
|
65
65
|
});
|
|
66
66
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ibiz-panel-view-content{
|
|
1
|
+
.ibiz-panel-view-content{--ibiz-panel-view-content-padding:var(--ibiz-spacing-tight) var(--ibiz-spacing-base) 0 var(--ibiz-spacing-base);--ibiz-panel-view-content-margin:var(--ibiz-spacing-none);width:100%;height:100%;padding:var(--ibiz-panel-view-content-padding);overflow:auto}.ibiz-panel-view-content>.ibiz-row{height:100%}
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { IReportPanelController, IReportViewEvent, IReportViewState, ISearchBarController, ISearchFormController, ViewController, ViewEngineBase } from
|
|
1
|
+
import { IReportPanelController, IReportViewEvent, IReportViewState, ISearchBarController, ISearchFormController, ViewController, ViewEngineBase } from "@ibiz-template/runtime";
|
|
2
2
|
import { IAppDEReportView } from '@ibiz/model-core';
|
|
3
3
|
export declare class ReportViewEngine extends ViewEngineBase {
|
|
4
4
|
/**
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
5
|
+
* 视图控制器
|
|
6
|
+
*
|
|
7
|
+
* @protected
|
|
8
|
+
* @type {ViewController<
|
|
9
|
+
* IAppDEReportView,
|
|
10
|
+
* IReportViewState,
|
|
11
|
+
* IReportViewEvent
|
|
12
|
+
* >}
|
|
13
|
+
* @memberof EditViewEngine
|
|
14
|
+
*/
|
|
15
15
|
protected view: ViewController<IAppDEReportView, IReportViewState, IReportViewEvent>;
|
|
16
16
|
/**
|
|
17
17
|
* 搜索表单控制器
|
|
@@ -4,7 +4,7 @@ import { ViewEngineBase, SysUIActionTag } from '@ibiz-template/runtime';
|
|
|
4
4
|
class ReportViewEngine extends ViewEngineBase {
|
|
5
5
|
/**
|
|
6
6
|
* 搜索表单控制器
|
|
7
|
-
*
|
|
7
|
+
*
|
|
8
8
|
* @readonly
|
|
9
9
|
*/
|
|
10
10
|
get searchForm() {
|
|
@@ -12,7 +12,7 @@ class ReportViewEngine extends ViewEngineBase {
|
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
14
|
* 搜索栏控制器
|
|
15
|
-
*
|
|
15
|
+
*
|
|
16
16
|
* @readonly
|
|
17
17
|
*/
|
|
18
18
|
get searchBar() {
|
|
@@ -111,7 +111,7 @@ class ReportViewEngine extends ViewEngineBase {
|
|
|
111
111
|
}
|
|
112
112
|
/**
|
|
113
113
|
* 视图重新加载
|
|
114
|
-
*
|
|
114
|
+
*
|
|
115
115
|
* @return {*} {Promise<void>}
|
|
116
116
|
*/
|
|
117
117
|
async reLoad() {
|
|
@@ -128,7 +128,7 @@ class ReportViewEngine extends ViewEngineBase {
|
|
|
128
128
|
}
|
|
129
129
|
/**
|
|
130
130
|
* 获取搜索相关的查询参数
|
|
131
|
-
*
|
|
131
|
+
*
|
|
132
132
|
* @return {*} {IParams}
|
|
133
133
|
*/
|
|
134
134
|
getSearchParams() {
|
|
@@ -162,7 +162,7 @@ class ReportViewEngine extends ViewEngineBase {
|
|
|
162
162
|
}
|
|
163
163
|
/**
|
|
164
164
|
* 切换搜索表单的显示与否
|
|
165
|
-
*
|
|
165
|
+
*
|
|
166
166
|
* @protected
|
|
167
167
|
*/
|
|
168
168
|
toggleFilter() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ibiz-control-captionbar{--ibiz-control-captionbar-color:var(--ibiz-color-text-0);--ibiz-control-captionbar-font-size:var(--ibiz-font-size-header-5);--ibiz-control-captionbar-font-weight:var(--ibiz-font-weight-regular);position:relative;height:100%;padding:
|
|
1
|
+
.ibiz-control-captionbar{--ibiz-control-captionbar-color:var(--ibiz-color-text-0);--ibiz-control-captionbar-font-size:var(--ibiz-font-size-header-5);--ibiz-control-captionbar-font-weight:var(--ibiz-font-weight-regular);--ibiz-control-captionbar-padding:0 var(--ibiz-spacing-base);--ibiz-control-captionbar-margin:var(--ibiz-spacing-none);position:relative;height:100%;padding:var(--ibiz-control-captionbar-padding)}.ibiz-control-captionbar .ibiz-control-captionbar-caption{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;position:relative;height:100%;padding-left:var(--ibiz-spacing-base);font-size:var(--ibiz-control-captionbar-font-size);font-weight:var(--ibiz-control-captionbar-font-weight);color:var(--ibiz-control-captionbar-color);display:flex;align-items:center;justify-content:flex-start}.ibiz-control-captionbar .ibiz-control-captionbar-caption::before{position:absolute;top:50%;left:0;width:4px;height:20px;content:"";background-color:var(--ibiz-color-primary);border-radius:2px;transform:translateY(-50%)}.ibiz-control-captionbar .ibiz-control-captionbar-caption.is-show-icon{padding-left:0}.ibiz-control-captionbar .ibiz-control-captionbar-caption.is-show-icon::before{display:none}.ibiz-control-captionbar-caption__icon{margin-right:var(--ibiz-spacing-tight)}.ibiz-view:not(.ibiz-view-appindexview) .ibiz-view .ibiz-view .ibiz-control-captionbar-caption{--ibiz-control-captionbar-font-size:var(--ibiz-font-size-header-5);--ibiz-control-captionbar-font-weight:var(--ibiz-font-weight-regular);padding-left:0}.ibiz-view:not(.ibiz-view-appindexview) .ibiz-view .ibiz-view .ibiz-control-captionbar-caption::before{content:none}.ibiz-drawer .ibiz-view .ibiz-view .ibiz-control-captionbar-caption,.ibiz-modal .ibiz-view .ibiz-view .ibiz-control-captionbar-caption,.ibiz-popover .ibiz-view .ibiz-view .ibiz-control-captionbar-caption{--ibiz-control-captionbar-font-size:var(--ibiz-font-size-header-5);--ibiz-control-captionbar-font-weight:var(--ibiz-font-weight-regular);padding-left:0}.ibiz-drawer .ibiz-view .ibiz-view .ibiz-control-captionbar-caption::before,.ibiz-modal .ibiz-view .ibiz-view .ibiz-control-captionbar-caption::before,.ibiz-popover .ibiz-view .ibiz-view .ibiz-control-captionbar-caption::before{content:none}
|
|
@@ -16,6 +16,10 @@ const IBizGridFieldColumn = vue3Util.withInstall(
|
|
|
16
16
|
"DEFGRIDCOLUMN",
|
|
17
17
|
() => new gridFieldColumn_provider.GridFieldColumnProvider()
|
|
18
18
|
);
|
|
19
|
+
runtime.registerGridColumnProvider(
|
|
20
|
+
"DEFTREEGRIDCOLUMN",
|
|
21
|
+
() => new gridFieldColumn_provider.GridFieldColumnProvider()
|
|
22
|
+
);
|
|
19
23
|
}
|
|
20
24
|
);
|
|
21
25
|
|
|
@@ -11,18 +11,12 @@ var index = require('./report-detail/user-report-panel/index.cjs');
|
|
|
11
11
|
var index$1 = require('./report-detail/user2-report-panel/index.cjs');
|
|
12
12
|
|
|
13
13
|
"use strict";
|
|
14
|
-
const IBizReportPanelControl = vue3Util.withInstall(
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
runtime.registerControlProvider(
|
|
21
|
-
runtime.ControlType.REPORT_PANEL,
|
|
22
|
-
() => new reportPanel_provider.ReportPanelProvider()
|
|
23
|
-
);
|
|
24
|
-
}
|
|
25
|
-
);
|
|
14
|
+
const IBizReportPanelControl = vue3Util.withInstall(reportPanel.ReportPanelControl, function(v) {
|
|
15
|
+
v.use(index.IBizUserReportPanel);
|
|
16
|
+
v.use(index$1.IBizUser2ReportPanel);
|
|
17
|
+
v.component(reportPanel.ReportPanelControl.name, reportPanel.ReportPanelControl);
|
|
18
|
+
runtime.registerControlProvider(runtime.ControlType.REPORT_PANEL, () => new reportPanel_provider.ReportPanelProvider());
|
|
19
|
+
});
|
|
26
20
|
|
|
27
21
|
exports.IBizReportPanelControl = IBizReportPanelControl;
|
|
28
22
|
exports.default = IBizReportPanelControl;
|
|
@@ -6,12 +6,9 @@ var vue3Util = require('@ibiz-template/vue3-util');
|
|
|
6
6
|
var userReportPanel = require('./user-report-panel.cjs');
|
|
7
7
|
|
|
8
8
|
"use strict";
|
|
9
|
-
const IBizUserReportPanel = vue3Util.withInstall(
|
|
10
|
-
userReportPanel.UserReportPanel,
|
|
11
|
-
|
|
12
|
-
v.component(userReportPanel.UserReportPanel.name, userReportPanel.UserReportPanel);
|
|
13
|
-
}
|
|
14
|
-
);
|
|
9
|
+
const IBizUserReportPanel = vue3Util.withInstall(userReportPanel.UserReportPanel, function(v) {
|
|
10
|
+
v.component(userReportPanel.UserReportPanel.name, userReportPanel.UserReportPanel);
|
|
11
|
+
});
|
|
15
12
|
|
|
16
13
|
exports.IBizUserReportPanel = IBizUserReportPanel;
|
|
17
14
|
exports.default = IBizUserReportPanel;
|
|
@@ -6,12 +6,9 @@ var vue3Util = require('@ibiz-template/vue3-util');
|
|
|
6
6
|
var user2ReportPanel = require('./user2-report-panel.cjs');
|
|
7
7
|
|
|
8
8
|
"use strict";
|
|
9
|
-
const IBizUser2ReportPanel = vue3Util.withInstall(
|
|
10
|
-
user2ReportPanel.User2ReportPanel,
|
|
11
|
-
|
|
12
|
-
v.component(user2ReportPanel.User2ReportPanel.name, user2ReportPanel.User2ReportPanel);
|
|
13
|
-
}
|
|
14
|
-
);
|
|
9
|
+
const IBizUser2ReportPanel = vue3Util.withInstall(user2ReportPanel.User2ReportPanel, function(v) {
|
|
10
|
+
v.component(user2ReportPanel.User2ReportPanel.name, user2ReportPanel.User2ReportPanel);
|
|
11
|
+
});
|
|
15
12
|
|
|
16
13
|
exports.IBizUser2ReportPanel = IBizUser2ReportPanel;
|
|
17
14
|
exports.default = IBizUser2ReportPanel;
|
|
@@ -40,7 +40,6 @@ const User2ReportPanel = /* @__PURE__ */ vue.defineComponent({
|
|
|
40
40
|
return `onclick="handleCallClick('${value}')"`;
|
|
41
41
|
});
|
|
42
42
|
}
|
|
43
|
-
return "";
|
|
44
43
|
});
|
|
45
44
|
return {
|
|
46
45
|
c,
|
|
@@ -59,10 +58,11 @@ const User2ReportPanel = /* @__PURE__ */ vue.defineComponent({
|
|
|
59
58
|
"class": this.ns.e("container"),
|
|
60
59
|
"innerHTML": this.computedValue
|
|
61
60
|
}, null);
|
|
61
|
+
} else {
|
|
62
|
+
return vue.createVNode("div", {
|
|
63
|
+
"class": this.ns.e("empty")
|
|
64
|
+
}, [vue.createTextVNode("\u6682\u65E0\u6570\u636E")]);
|
|
62
65
|
}
|
|
63
|
-
return vue.createVNode("div", {
|
|
64
|
-
"class": this.ns.e("empty")
|
|
65
|
-
}, [vue.createTextVNode("\u6682\u65E0\u6570\u636E")]);
|
|
66
66
|
}
|
|
67
67
|
});
|
|
68
68
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ibiz-panel-view-content{
|
|
1
|
+
.ibiz-panel-view-content{--ibiz-panel-view-content-padding:var(--ibiz-spacing-tight) var(--ibiz-spacing-base) 0 var(--ibiz-spacing-base);--ibiz-panel-view-content-margin:var(--ibiz-spacing-none);width:100%;height:100%;padding:var(--ibiz-panel-view-content-padding);overflow:auto}.ibiz-panel-view-content>.ibiz-row{height:100%}
|
|
@@ -6,7 +6,7 @@ var runtime = require('@ibiz-template/runtime');
|
|
|
6
6
|
class ReportViewEngine extends runtime.ViewEngineBase {
|
|
7
7
|
/**
|
|
8
8
|
* 搜索表单控制器
|
|
9
|
-
*
|
|
9
|
+
*
|
|
10
10
|
* @readonly
|
|
11
11
|
*/
|
|
12
12
|
get searchForm() {
|
|
@@ -14,7 +14,7 @@ class ReportViewEngine extends runtime.ViewEngineBase {
|
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
16
|
* 搜索栏控制器
|
|
17
|
-
*
|
|
17
|
+
*
|
|
18
18
|
* @readonly
|
|
19
19
|
*/
|
|
20
20
|
get searchBar() {
|
|
@@ -113,7 +113,7 @@ class ReportViewEngine extends runtime.ViewEngineBase {
|
|
|
113
113
|
}
|
|
114
114
|
/**
|
|
115
115
|
* 视图重新加载
|
|
116
|
-
*
|
|
116
|
+
*
|
|
117
117
|
* @return {*} {Promise<void>}
|
|
118
118
|
*/
|
|
119
119
|
async reLoad() {
|
|
@@ -130,7 +130,7 @@ class ReportViewEngine extends runtime.ViewEngineBase {
|
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
132
|
* 获取搜索相关的查询参数
|
|
133
|
-
*
|
|
133
|
+
*
|
|
134
134
|
* @return {*} {IParams}
|
|
135
135
|
*/
|
|
136
136
|
getSearchParams() {
|
|
@@ -164,7 +164,7 @@ class ReportViewEngine extends runtime.ViewEngineBase {
|
|
|
164
164
|
}
|
|
165
165
|
/**
|
|
166
166
|
* 切换搜索表单的显示与否
|
|
167
|
-
*
|
|
167
|
+
*
|
|
168
168
|
* @protected
|
|
169
169
|
*/
|
|
170
170
|
toggleFilter() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiz-template/vue3-components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "使用 rollup 编译 vue 组件或者 jsx",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@floating-ui/dom": "^1.5.3",
|
|
27
27
|
"@ibiz-template-plugin/ai-chat": "^0.0.1",
|
|
28
|
-
"@ibiz-template/core": "^0.
|
|
29
|
-
"@ibiz-template/model-helper": "^0.
|
|
30
|
-
"@ibiz-template/runtime": "^0.
|
|
31
|
-
"@ibiz-template/theme": "^0.
|
|
32
|
-
"@ibiz-template/vue3-util": "^0.
|
|
28
|
+
"@ibiz-template/core": "^0.4.0",
|
|
29
|
+
"@ibiz-template/model-helper": "^0.4.0",
|
|
30
|
+
"@ibiz-template/runtime": "^0.4.0",
|
|
31
|
+
"@ibiz-template/theme": "^0.4.0",
|
|
32
|
+
"@ibiz-template/vue3-util": "^0.4.0",
|
|
33
33
|
"@ibiz/model-core": "^0.0.21",
|
|
34
34
|
"@imengyu/vue3-context-menu": "^1.3.3",
|
|
35
35
|
"@monaco-editor/loader": "^1.4.0",
|