@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.
@@ -11439,6 +11439,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
11439
11439
  if (_.isEmpty(elm_data?.xuData?.paramsP?.parameters_raw_obj)) return;
11440
11440
  let exp_val_for_parameter_in_validation = _.clone(exp);
11441
11441
  for (const [param_key, param_val] of Object.entries(elm_data?.xuData?.paramsP?.parameters_raw_obj)) {
11442
+ if (!param_val.includes('@')) continue;
11442
11443
  exp_val_for_parameter_in_validation = exp_val_for_parameter_in_validation.replaceAll('@' + param_key, param_val);
11443
11444
  }
11444
11445
  return exp_val_for_parameter_in_validation?.includes?.('@' + val_field);
@@ -12516,7 +12517,16 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
12516
12517
  } catch (error) {
12517
12518
  console.warn(e);
12518
12519
  }
12519
-
12520
+ return;
12521
+ return { abort: true };
12522
+ },
12523
+ 'xu-html': async function ($elm, val) {
12524
+ try {
12525
+ $elm.html(val.value);
12526
+ } catch (error) {
12527
+ console.warn(e);
12528
+ }
12529
+ return;
12520
12530
  return { abort: true };
12521
12531
  },
12522
12532
  'xu-for': async function ($elm, data) {
@@ -9166,6 +9166,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
9166
9166
  if (_.isEmpty(elm_data?.xuData?.paramsP?.parameters_raw_obj)) return;
9167
9167
  let exp_val_for_parameter_in_validation = _.clone(exp);
9168
9168
  for (const [param_key, param_val] of Object.entries(elm_data?.xuData?.paramsP?.parameters_raw_obj)) {
9169
+ if (!param_val.includes('@')) continue;
9169
9170
  exp_val_for_parameter_in_validation = exp_val_for_parameter_in_validation.replaceAll('@' + param_key, param_val);
9170
9171
  }
9171
9172
  return exp_val_for_parameter_in_validation?.includes?.('@' + val_field);
@@ -10243,7 +10244,16 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10243
10244
  } catch (error) {
10244
10245
  console.warn(e);
10245
10246
  }
10246
-
10247
+ return;
10248
+ return { abort: true };
10249
+ },
10250
+ 'xu-html': async function ($elm, val) {
10251
+ try {
10252
+ $elm.html(val.value);
10253
+ } catch (error) {
10254
+ console.warn(e);
10255
+ }
10256
+ return;
10247
10257
  return { abort: true };
10248
10258
  },
10249
10259
  'xu-for': async function ($elm, data) {