@ibiz-template/runtime 0.1.20 → 0.1.21
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 +35 -2
- package/dist/index.system.min.js +1 -1
- package/dist/index.system.min.js.map +1 -1
- package/out/constant/index.d.ts +1 -0
- package/out/constant/index.d.ts.map +1 -1
- package/out/constant/index.js +1 -0
- package/out/constant/view-call-tag.d.ts +14 -0
- package/out/constant/view-call-tag.d.ts.map +1 -0
- package/out/constant/view-call-tag.js +15 -0
- package/out/engine/md-view.engine.js +2 -2
- package/out/global/global-util/global-util.d.ts +14 -0
- package/out/global/global-util/global-util.d.ts.map +1 -1
- package/out/global/global-util/global-util.js +26 -0
- package/out/service/dto/method.dto.js +1 -1
- package/package.json +2 -2
- package/src/constant/index.ts +1 -0
- package/src/constant/view-call-tag.ts +14 -0
- package/src/engine/md-view.engine.ts +2 -2
- package/src/global/global-util/global-util.ts +28 -0
- package/src/service/dto/method.dto.ts +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -8371,6 +8371,12 @@ var SysUIActionTag = /* @__PURE__ */ ((SysUIActionTag2) => {
|
|
|
8371
8371
|
return SysUIActionTag2;
|
|
8372
8372
|
})(SysUIActionTag || {});
|
|
8373
8373
|
|
|
8374
|
+
// src/constant/view-call-tag.ts
|
|
8375
|
+
var ViewCallTag = /* @__PURE__ */ ((ViewCallTag2) => {
|
|
8376
|
+
ViewCallTag2["LOAD"] = "Load";
|
|
8377
|
+
return ViewCallTag2;
|
|
8378
|
+
})(ViewCallTag || {});
|
|
8379
|
+
|
|
8374
8380
|
// src/constant/studio-event.ts
|
|
8375
8381
|
var StudioViewEvents = class {
|
|
8376
8382
|
};
|
|
@@ -11407,7 +11413,7 @@ var MethodDto = class _MethodDto {
|
|
|
11407
11413
|
entity.appDEMethodDTOs || [],
|
|
11408
11414
|
field.refAppDEMethodDTOId
|
|
11409
11415
|
);
|
|
11410
|
-
const dto = new _MethodDto(entity,
|
|
11416
|
+
const dto = new _MethodDto(entity, true, methodDto);
|
|
11411
11417
|
this.dtoMap.set(field.codeName, dto);
|
|
11412
11418
|
return dto;
|
|
11413
11419
|
}
|
|
@@ -27721,7 +27727,7 @@ var MDViewEngine = class extends ViewEngineBase {
|
|
|
27721
27727
|
this.copy(args);
|
|
27722
27728
|
return null;
|
|
27723
27729
|
}
|
|
27724
|
-
if (key === "
|
|
27730
|
+
if (key === "Load" /* LOAD */) {
|
|
27725
27731
|
this.load(args);
|
|
27726
27732
|
return null;
|
|
27727
27733
|
}
|
|
@@ -27952,6 +27958,32 @@ var GlobalUtil = class {
|
|
|
27952
27958
|
*/
|
|
27953
27959
|
this.hbs = new HandlebarsUtil();
|
|
27954
27960
|
}
|
|
27961
|
+
/**
|
|
27962
|
+
* 显示应用级别的加载提示
|
|
27963
|
+
*
|
|
27964
|
+
* @author chitanda
|
|
27965
|
+
* @date 2023-09-08 10:09:43
|
|
27966
|
+
*/
|
|
27967
|
+
showAppLoading() {
|
|
27968
|
+
const el = document.getElementById("app-loading-x");
|
|
27969
|
+
if (el) {
|
|
27970
|
+
el.style.display = "none";
|
|
27971
|
+
}
|
|
27972
|
+
}
|
|
27973
|
+
/**
|
|
27974
|
+
* 隐藏应用级别的加载提示
|
|
27975
|
+
*
|
|
27976
|
+
* @author chitanda
|
|
27977
|
+
* @date 2023-09-08 10:09:15
|
|
27978
|
+
*/
|
|
27979
|
+
hiddenAppLoading() {
|
|
27980
|
+
setTimeout(() => {
|
|
27981
|
+
const el = document.getElementById("app-loading-x");
|
|
27982
|
+
if (el) {
|
|
27983
|
+
el.style.display = "none";
|
|
27984
|
+
}
|
|
27985
|
+
}, 300);
|
|
27986
|
+
}
|
|
27955
27987
|
};
|
|
27956
27988
|
|
|
27957
27989
|
// src/logic-scheduler/executor/logic-executor.ts
|
|
@@ -29107,6 +29139,7 @@ export {
|
|
|
29107
29139
|
V7AuthService,
|
|
29108
29140
|
VIEW_PROVIDER_PREFIX,
|
|
29109
29141
|
ValueExUtil,
|
|
29142
|
+
ViewCallTag,
|
|
29110
29143
|
ViewController,
|
|
29111
29144
|
ViewEngineBase,
|
|
29112
29145
|
ViewLayoutPanelController,
|