@xuda.io/runtime-bundle 1.0.533 → 1.0.535
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/js/xuda-runtime-bundle.js +10 -11
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +10 -11
- package/js/xuda-runtime-slim.min.es.js +10 -11
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda_worker.js +1 -2
- package/js/xuda_worker.min.js +1 -1
- package/package.json +1 -1
|
@@ -28175,7 +28175,6 @@ func.UI.worker.find_job_index = function (SESSION_ID, jobNoP) {
|
|
|
28175
28175
|
};
|
|
28176
28176
|
|
|
28177
28177
|
func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0], re_check) {
|
|
28178
|
-
return;
|
|
28179
28178
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
28180
28179
|
|
|
28181
28180
|
const _data_system = _session?.DS_GLB?.[0]?.data_system;
|
|
@@ -32886,16 +32885,15 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32886
32885
|
|
|
32887
32886
|
const classes_obj = _.isString(classes_string) ? JSON.parse(classes_string) : _.defaults(classes_string, {});
|
|
32888
32887
|
for await (const [cla, cond] of Object.entries(classes_obj)) {
|
|
32889
|
-
let res = (
|
|
32890
|
-
|
|
32891
|
-
|
|
32892
|
-
|
|
32893
|
-
|
|
32894
|
-
|
|
32895
|
-
|
|
32896
|
-
|
|
32897
|
-
|
|
32898
|
-
if (res) {
|
|
32888
|
+
let res = await func.expression.get(
|
|
32889
|
+
SESSION_ID,
|
|
32890
|
+
cond,
|
|
32891
|
+
paramsP.dsSessionP,
|
|
32892
|
+
'UI Attr EXP',
|
|
32893
|
+
$elm.data().xuData.currentRecordId, // SESSION_OBJ[SESSION_ID].DS_GLB[paramsP.dsSessionP].currentRecordId
|
|
32894
|
+
);
|
|
32895
|
+
|
|
32896
|
+
if (res.result) {
|
|
32899
32897
|
$elm.addClass(cla);
|
|
32900
32898
|
} else {
|
|
32901
32899
|
$elm.removeClass(cla);
|
|
@@ -33981,6 +33979,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
33981
33979
|
};
|
|
33982
33980
|
const hover_out = function () {
|
|
33983
33981
|
if (is_skeleton) return;
|
|
33982
|
+
|
|
33984
33983
|
CLIENT_ACTIVITY_TS = Date.now();
|
|
33985
33984
|
if (_$($container)?.data()?.xuData?.debug_info) {
|
|
33986
33985
|
_$($container).data().xuData.debug_info.hover_item = null;
|