@xuda.io/runtime-bundle 1.0.534 → 1.0.536
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.
|
@@ -32885,16 +32885,22 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32885
32885
|
|
|
32886
32886
|
const classes_obj = _.isString(classes_string) ? JSON.parse(classes_string) : _.defaults(classes_string, {});
|
|
32887
32887
|
for await (const [cla, cond] of Object.entries(classes_obj)) {
|
|
32888
|
-
let res = (
|
|
32889
|
-
|
|
32890
|
-
|
|
32891
|
-
|
|
32892
|
-
|
|
32893
|
-
|
|
32894
|
-
|
|
32895
|
-
|
|
32896
|
-
|
|
32897
|
-
|
|
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
|
+
null,
|
|
32895
|
+
null,
|
|
32896
|
+
null,
|
|
32897
|
+
null,
|
|
32898
|
+
null,
|
|
32899
|
+
null,
|
|
32900
|
+
$elm.data().xuData.iterate_info,
|
|
32901
|
+
);
|
|
32902
|
+
|
|
32903
|
+
if (res.result) {
|
|
32898
32904
|
$elm.addClass(cla);
|
|
32899
32905
|
} else {
|
|
32900
32906
|
$elm.removeClass(cla);
|
|
@@ -33980,6 +33986,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
33980
33986
|
};
|
|
33981
33987
|
const hover_out = function () {
|
|
33982
33988
|
if (is_skeleton) return;
|
|
33989
|
+
|
|
33983
33990
|
CLIENT_ACTIVITY_TS = Date.now();
|
|
33984
33991
|
if (_$($container)?.data()?.xuData?.debug_info) {
|
|
33985
33992
|
_$($container).data().xuData.debug_info.hover_item = null;
|