@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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -13194,16 +13194,22 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
13194
13194
|
|
|
13195
13195
|
const classes_obj = _.isString(classes_string) ? JSON.parse(classes_string) : _.defaults(classes_string, {});
|
|
13196
13196
|
for await (const [cla, cond] of Object.entries(classes_obj)) {
|
|
13197
|
-
let res = (
|
|
13198
|
-
|
|
13199
|
-
|
|
13200
|
-
|
|
13201
|
-
|
|
13202
|
-
|
|
13203
|
-
|
|
13204
|
-
|
|
13205
|
-
|
|
13206
|
-
|
|
13197
|
+
let res = await func.expression.get(
|
|
13198
|
+
SESSION_ID,
|
|
13199
|
+
cond,
|
|
13200
|
+
paramsP.dsSessionP,
|
|
13201
|
+
'UI Attr EXP',
|
|
13202
|
+
$elm.data().xuData.currentRecordId, // SESSION_OBJ[SESSION_ID].DS_GLB[paramsP.dsSessionP].currentRecordId
|
|
13203
|
+
null,
|
|
13204
|
+
null,
|
|
13205
|
+
null,
|
|
13206
|
+
null,
|
|
13207
|
+
null,
|
|
13208
|
+
null,
|
|
13209
|
+
$elm.data().xuData.iterate_info,
|
|
13210
|
+
);
|
|
13211
|
+
|
|
13212
|
+
if (res.result) {
|
|
13207
13213
|
$elm.addClass(cla);
|
|
13208
13214
|
} else {
|
|
13209
13215
|
$elm.removeClass(cla);
|
|
@@ -14289,6 +14295,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14289
14295
|
};
|
|
14290
14296
|
const hover_out = function () {
|
|
14291
14297
|
if (is_skeleton) return;
|
|
14298
|
+
|
|
14292
14299
|
CLIENT_ACTIVITY_TS = Date.now();
|
|
14293
14300
|
if (_$($container)?.data()?.xuData?.debug_info) {
|
|
14294
14301
|
_$($container).data().xuData.debug_info.hover_item = null;
|
|
@@ -10926,16 +10926,22 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10926
10926
|
|
|
10927
10927
|
const classes_obj = _.isString(classes_string) ? JSON.parse(classes_string) : _.defaults(classes_string, {});
|
|
10928
10928
|
for await (const [cla, cond] of Object.entries(classes_obj)) {
|
|
10929
|
-
let res = (
|
|
10930
|
-
|
|
10931
|
-
|
|
10932
|
-
|
|
10933
|
-
|
|
10934
|
-
|
|
10935
|
-
|
|
10936
|
-
|
|
10937
|
-
|
|
10938
|
-
|
|
10929
|
+
let res = await func.expression.get(
|
|
10930
|
+
SESSION_ID,
|
|
10931
|
+
cond,
|
|
10932
|
+
paramsP.dsSessionP,
|
|
10933
|
+
'UI Attr EXP',
|
|
10934
|
+
$elm.data().xuData.currentRecordId, // SESSION_OBJ[SESSION_ID].DS_GLB[paramsP.dsSessionP].currentRecordId
|
|
10935
|
+
null,
|
|
10936
|
+
null,
|
|
10937
|
+
null,
|
|
10938
|
+
null,
|
|
10939
|
+
null,
|
|
10940
|
+
null,
|
|
10941
|
+
$elm.data().xuData.iterate_info,
|
|
10942
|
+
);
|
|
10943
|
+
|
|
10944
|
+
if (res.result) {
|
|
10939
10945
|
$elm.addClass(cla);
|
|
10940
10946
|
} else {
|
|
10941
10947
|
$elm.removeClass(cla);
|
|
@@ -12021,6 +12027,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12021
12027
|
};
|
|
12022
12028
|
const hover_out = function () {
|
|
12023
12029
|
if (is_skeleton) return;
|
|
12030
|
+
|
|
12024
12031
|
CLIENT_ACTIVITY_TS = Date.now();
|
|
12025
12032
|
if (_$($container)?.data()?.xuData?.debug_info) {
|
|
12026
12033
|
_$($container).data().xuData.debug_info.hover_item = null;
|