@xuda.io/runtime-bundle 1.0.900 → 1.0.902
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.
|
@@ -31125,6 +31125,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31125
31125
|
if (_.isEmpty(elm_data?.xuData?.paramsP?.parameters_raw_obj)) return;
|
|
31126
31126
|
let exp_val_for_parameter_in_validation = _.clone(exp);
|
|
31127
31127
|
for (const [param_key, param_val] of Object.entries(elm_data?.xuData?.paramsP?.parameters_raw_obj)) {
|
|
31128
|
+
if (!param_val.includes('@')) continue;
|
|
31128
31129
|
exp_val_for_parameter_in_validation = exp_val_for_parameter_in_validation.replaceAll('@' + param_key, param_val);
|
|
31129
31130
|
}
|
|
31130
31131
|
return exp_val_for_parameter_in_validation?.includes?.('@' + val_field);
|
|
@@ -32202,7 +32203,16 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32202
32203
|
} catch (error) {
|
|
32203
32204
|
console.warn(e);
|
|
32204
32205
|
}
|
|
32205
|
-
|
|
32206
|
+
return;
|
|
32207
|
+
return { abort: true };
|
|
32208
|
+
},
|
|
32209
|
+
'xu-html': async function ($elm, val) {
|
|
32210
|
+
try {
|
|
32211
|
+
$elm.html(val.value);
|
|
32212
|
+
} catch (error) {
|
|
32213
|
+
console.warn(e);
|
|
32214
|
+
}
|
|
32215
|
+
return;
|
|
32206
32216
|
return { abort: true };
|
|
32207
32217
|
},
|
|
32208
32218
|
'xu-for': async function ($elm, data) {
|