@ibiz-template/runtime 0.7.41-alpha.83 → 0.7.41-alpha.85
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.esm.js +6 -3
- package/dist/index.system.min.js +1 -1
- package/out/config/global-config.js +1 -1
- package/out/controller/control/grid/grid/grid-column.controller.d.ts.map +1 -1
- package/out/controller/control/grid/grid/grid-column.controller.js +4 -1
- package/out/interface/api/common/global-config/i-api-global-common-config.d.ts +3 -3
- package/out/interface/api/common/global-config/i-api-global-common-config.d.ts.map +1 -1
- package/out/ui-action/provider/sys-ui-action-provider.d.ts.map +1 -1
- package/out/ui-action/provider/sys-ui-action-provider.js +3 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -19444,7 +19444,7 @@ var GlobalConfig = class {
|
|
|
19444
19444
|
reRankDefaultValue: 2,
|
|
19445
19445
|
maxChunksDefaultValue: 10,
|
|
19446
19446
|
chunkThresholdDefaultValue: 0.1,
|
|
19447
|
-
chunkPageIndexDefaultValue: 0,
|
|
19447
|
+
chunkPageIndexDefaultValue: void 0,
|
|
19448
19448
|
enableAsyncActionNotice: false,
|
|
19449
19449
|
aiChunkView: "",
|
|
19450
19450
|
aiChunkEntity: ""
|
|
@@ -34499,7 +34499,7 @@ var SysUIActionProvider = class extends UIActionProviderBase {
|
|
|
34499
34499
|
return { closeView: true };
|
|
34500
34500
|
}
|
|
34501
34501
|
const result = await view.callUIAction(uIActionTag, args);
|
|
34502
|
-
return result
|
|
34502
|
+
return result ? { data: Array.isArray(result) ? [...result] : [result] } : {};
|
|
34503
34503
|
}
|
|
34504
34504
|
};
|
|
34505
34505
|
|
|
@@ -50210,7 +50210,10 @@ var GridColumnController = class {
|
|
|
50210
50210
|
let result = "";
|
|
50211
50211
|
const { controlRenders = [], id } = this.model;
|
|
50212
50212
|
const item = controlRenders.find(
|
|
50213
|
-
(renderItem) => renderItem.renderType === "LAYOUTPANEL_MODEL" &&
|
|
50213
|
+
(renderItem) => renderItem.renderType === "LAYOUTPANEL_MODEL" && ![
|
|
50214
|
+
"".concat(id == null ? void 0 : id.toLowerCase(), "_tooltip"),
|
|
50215
|
+
"".concat(id == null ? void 0 : id.toLowerCase(), "_edit_tooltip")
|
|
50216
|
+
].includes(renderItem.id)
|
|
50214
50217
|
);
|
|
50215
50218
|
if (item) {
|
|
50216
50219
|
result = item.layoutPanelModel || "";
|