@xuda.io/runtime-bundle 1.0.534 → 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.
|
@@ -32885,16 +32885,15 @@ 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
|
-
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) {
|
|
32898
32897
|
$elm.addClass(cla);
|
|
32899
32898
|
} else {
|
|
32900
32899
|
$elm.removeClass(cla);
|
|
@@ -33980,6 +33979,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
33980
33979
|
};
|
|
33981
33980
|
const hover_out = function () {
|
|
33982
33981
|
if (is_skeleton) return;
|
|
33982
|
+
|
|
33983
33983
|
CLIENT_ACTIVITY_TS = Date.now();
|
|
33984
33984
|
if (_$($container)?.data()?.xuData?.debug_info) {
|
|
33985
33985
|
_$($container).data().xuData.debug_info.hover_item = null;
|