@ibiz-template/vue3-components 0.6.1-alpha.1 → 0.6.1-alpha.3
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-_HUj1AMZ.js +4 -0
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +1 -1
- package/dist/{xlsx-util-YvKvEyi6.js → xlsx-util-E-30JfqY.js} +1 -1
- package/es/control/dashboard/custom-dashboard-container/custom-dashboard-container.d.ts +81 -0
- package/es/control/data-view/data-view.mjs +5 -1
- package/es/control/form/form-detail/form-button/form-button.mjs +3 -3
- package/es/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-grid/repeater-grid.d.ts +684 -0
- package/es/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-grid/repeater-grid.mjs +6 -0
- package/es/control/gantt/gantt.d.ts +1 -1
- package/es/control/gantt/index.d.ts +1 -1
- package/es/control/grid/grid/grid-control.util.mjs +6 -0
- package/es/control/toolbar/export-excel/export-excel.css +1 -1
- package/es/control/toolbar/toolbar.css +1 -1
- package/es/control/toolbar/toolbar.mjs +9 -4
- package/es/editor/cascader/ibiz-cascader/ibiz-cascader.d.ts +1 -1
- package/es/editor/span/span/span.d.ts +1 -0
- package/es/editor/span/span/span.mjs +1 -1
- package/es/panel-component/panel-button/index.d.ts +1 -0
- package/es/panel-component/panel-button/panel-button.d.ts +1 -0
- package/es/panel-component/panel-button/panel-button.mjs +3 -2
- package/es/panel-component/user-message/index.d.ts +1 -0
- package/es/panel-component/user-message/internal-message/internal-message-html/internal-message-html.provider.d.ts +3 -3
- package/es/panel-component/user-message/internal-message/internal-message-json/internal-message-json.provider.d.ts +3 -3
- package/es/panel-component/user-message/internal-message/internal-message-tab/internal-message-tab.d.ts +1 -1
- package/es/panel-component/user-message/user-message.css +1 -1
- package/es/panel-component/user-message/user-message.d.ts +1 -0
- package/es/panel-component/user-message/user-message.mjs +16 -3
- package/es/view-engine/gantt-view.engine.d.ts +2 -0
- package/es/view-engine/gantt-view.engine.mjs +29 -1
- package/es/view-engine/opt-view.engine.mjs +8 -2
- package/es/view-engine/pickup-tree-view.engine.d.ts +7 -0
- package/es/view-engine/pickup-tree-view.engine.mjs +17 -1
- package/es/web-app/components/router-shell/router-shell.d.ts +162 -0
- package/lib/control/data-view/data-view.cjs +5 -1
- package/lib/control/form/form-detail/form-button/form-button.cjs +3 -3
- package/lib/control/form/form-detail/form-mdctrl/form-mdctrl-repeater/repeater-grid/repeater-grid.cjs +6 -0
- package/lib/control/grid/grid/grid-control.util.cjs +6 -0
- package/lib/control/toolbar/export-excel/export-excel.css +1 -1
- package/lib/control/toolbar/toolbar.cjs +8 -3
- package/lib/control/toolbar/toolbar.css +1 -1
- package/lib/editor/span/span/span.cjs +2 -2
- package/lib/panel-component/panel-button/panel-button.cjs +3 -2
- package/lib/panel-component/user-message/user-message.cjs +16 -3
- package/lib/panel-component/user-message/user-message.css +1 -1
- package/lib/view-engine/gantt-view.engine.cjs +28 -0
- package/lib/view-engine/opt-view.engine.cjs +8 -2
- package/lib/view-engine/pickup-tree-view.engine.cjs +17 -1
- package/package.json +20 -9
- package/dist/index-RFTaeN4m.js +0 -4
- package/es/_virtual/customParseFormat.mjs +0 -3
- package/es/node_modules/.pnpm/dayjs@1.11.10/node_modules/dayjs/plugin/customParseFormat.mjs +0 -13
- package/lib/_virtual/customParseFormat.cjs +0 -5
- package/lib/node_modules/.pnpm/dayjs@1.11.10/node_modules/dayjs/plugin/customParseFormat.cjs +0 -17
|
@@ -436,6 +436,33 @@ export declare const CustomDashboardContainer: import("vue").DefineComponent<{
|
|
|
436
436
|
counterId?: string | undefined;
|
|
437
437
|
sysPFPluginId?: string | undefined;
|
|
438
438
|
timer?: number | undefined;
|
|
439
|
+
uniqueTag?: string | undefined;
|
|
440
|
+
navigateContexts?: {
|
|
441
|
+
desc?: string | undefined;
|
|
442
|
+
key?: string | undefined;
|
|
443
|
+
value?: string | undefined;
|
|
444
|
+
rawValue?: boolean | undefined;
|
|
445
|
+
appId: string;
|
|
446
|
+
id?: string | undefined;
|
|
447
|
+
name?: string | undefined;
|
|
448
|
+
codeName?: string | undefined;
|
|
449
|
+
userParam?: Record<string, string> | undefined;
|
|
450
|
+
modelId?: string | undefined;
|
|
451
|
+
modelType?: string | undefined;
|
|
452
|
+
}[] | undefined;
|
|
453
|
+
navigateParams?: {
|
|
454
|
+
desc?: string | undefined;
|
|
455
|
+
key?: string | undefined;
|
|
456
|
+
value?: string | undefined;
|
|
457
|
+
rawValue?: boolean | undefined;
|
|
458
|
+
appId: string;
|
|
459
|
+
id?: string | undefined;
|
|
460
|
+
name?: string | undefined;
|
|
461
|
+
codeName?: string | undefined;
|
|
462
|
+
userParam?: Record<string, string> | undefined;
|
|
463
|
+
modelId?: string | undefined;
|
|
464
|
+
modelType?: string | undefined;
|
|
465
|
+
}[] | undefined;
|
|
439
466
|
appId: string;
|
|
440
467
|
id?: string | undefined;
|
|
441
468
|
name?: string | undefined;
|
|
@@ -936,6 +963,33 @@ export declare const CustomDashboardContainer: import("vue").DefineComponent<{
|
|
|
936
963
|
counterId?: string | undefined;
|
|
937
964
|
sysPFPluginId?: string | undefined;
|
|
938
965
|
timer?: number | undefined;
|
|
966
|
+
uniqueTag?: string | undefined;
|
|
967
|
+
navigateContexts?: {
|
|
968
|
+
desc?: string | undefined;
|
|
969
|
+
key?: string | undefined;
|
|
970
|
+
value?: string | undefined;
|
|
971
|
+
rawValue?: boolean | undefined;
|
|
972
|
+
appId: string;
|
|
973
|
+
id?: string | undefined;
|
|
974
|
+
name?: string | undefined;
|
|
975
|
+
codeName?: string | undefined;
|
|
976
|
+
userParam?: Record<string, string> | undefined;
|
|
977
|
+
modelId?: string | undefined;
|
|
978
|
+
modelType?: string | undefined;
|
|
979
|
+
}[] | undefined;
|
|
980
|
+
navigateParams?: {
|
|
981
|
+
desc?: string | undefined;
|
|
982
|
+
key?: string | undefined;
|
|
983
|
+
value?: string | undefined;
|
|
984
|
+
rawValue?: boolean | undefined;
|
|
985
|
+
appId: string;
|
|
986
|
+
id?: string | undefined;
|
|
987
|
+
name?: string | undefined;
|
|
988
|
+
codeName?: string | undefined;
|
|
989
|
+
userParam?: Record<string, string> | undefined;
|
|
990
|
+
modelId?: string | undefined;
|
|
991
|
+
modelType?: string | undefined;
|
|
992
|
+
}[] | undefined;
|
|
939
993
|
appId: string;
|
|
940
994
|
id?: string | undefined;
|
|
941
995
|
name?: string | undefined;
|
|
@@ -1587,6 +1641,33 @@ export declare const CustomDashboardContainer: import("vue").DefineComponent<{
|
|
|
1587
1641
|
counterId?: string | undefined;
|
|
1588
1642
|
sysPFPluginId?: string | undefined;
|
|
1589
1643
|
timer?: number | undefined;
|
|
1644
|
+
uniqueTag?: string | undefined;
|
|
1645
|
+
navigateContexts?: {
|
|
1646
|
+
desc?: string | undefined;
|
|
1647
|
+
key?: string | undefined;
|
|
1648
|
+
value?: string | undefined;
|
|
1649
|
+
rawValue?: boolean | undefined;
|
|
1650
|
+
appId: string;
|
|
1651
|
+
id?: string | undefined;
|
|
1652
|
+
name?: string | undefined;
|
|
1653
|
+
codeName?: string | undefined;
|
|
1654
|
+
userParam?: Record<string, string> | undefined;
|
|
1655
|
+
modelId?: string | undefined;
|
|
1656
|
+
modelType?: string | undefined;
|
|
1657
|
+
}[] | undefined;
|
|
1658
|
+
navigateParams?: {
|
|
1659
|
+
desc?: string | undefined;
|
|
1660
|
+
key?: string | undefined;
|
|
1661
|
+
value?: string | undefined;
|
|
1662
|
+
rawValue?: boolean | undefined;
|
|
1663
|
+
appId: string;
|
|
1664
|
+
id?: string | undefined;
|
|
1665
|
+
name?: string | undefined;
|
|
1666
|
+
codeName?: string | undefined;
|
|
1667
|
+
userParam?: Record<string, string> | undefined;
|
|
1668
|
+
modelId?: string | undefined;
|
|
1669
|
+
modelType?: string | undefined;
|
|
1670
|
+
}[] | undefined;
|
|
1590
1671
|
appId: string;
|
|
1591
1672
|
id?: string | undefined;
|
|
1592
1673
|
name?: string | undefined;
|
|
@@ -113,7 +113,11 @@ const DataViewControl = /* @__PURE__ */ defineComponent({
|
|
|
113
113
|
const findIndex = c.state.selectedData.findIndex((data) => {
|
|
114
114
|
return data.srfkey === item.srfkey;
|
|
115
115
|
});
|
|
116
|
-
|
|
116
|
+
let showActive = findIndex !== -1;
|
|
117
|
+
if (c.view.model.viewType === "DEDATAVIEW" && c.state.mdctrlActiveMode === 1 && c.state.singleSelect === true) {
|
|
118
|
+
showActive = false;
|
|
119
|
+
}
|
|
120
|
+
const cardClass = [ns.b("item"), ns.is("active", showActive)];
|
|
117
121
|
const cardStyle = {};
|
|
118
122
|
if (c.model.cardWidth) {
|
|
119
123
|
Object.assign(cardStyle, {
|
|
@@ -38,7 +38,7 @@ const FormButton = /* @__PURE__ */ defineComponent({
|
|
|
38
38
|
return null;
|
|
39
39
|
}
|
|
40
40
|
return createVNode("div", {
|
|
41
|
-
"class": [this.ns.b(), this.ns.m(this.modelData.codeName), this.ns.is("loading", this.controller.state.loading), ...this.controller.containerClass]
|
|
41
|
+
"class": [this.ns.b(), this.ns.m(this.modelData.codeName), this.ns.is("loading", this.controller.state.loading), this.modelData.detailStyle && this.ns.m(this.modelData.detailStyle.toLowerCase()), ...this.controller.containerClass]
|
|
42
42
|
}, [createVNode(resolveComponent("el-button"), {
|
|
43
43
|
"sime": "small",
|
|
44
44
|
"onClick": this.controller.onClick.bind(this.controller),
|
|
@@ -51,9 +51,9 @@ const FormButton = /* @__PURE__ */ defineComponent({
|
|
|
51
51
|
}, [createVNode(resolveComponent("iBizIcon"), {
|
|
52
52
|
"class": this.ns.bm("content", "icon"),
|
|
53
53
|
"icon": this.modelData.sysImage
|
|
54
|
-
}, null), createVNode("span", {
|
|
54
|
+
}, null), this.modelData.showCaption ? createVNode("span", {
|
|
55
55
|
"class": this.ns.bm("content", "caption")
|
|
56
|
-
}, [this.
|
|
56
|
+
}, [this.captionText]) : null])]
|
|
57
57
|
})]);
|
|
58
58
|
}
|
|
59
59
|
});
|