@xuda.io/runtime-bundle 1.0.887 → 1.0.889

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.
@@ -11430,7 +11430,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
11430
11430
  .filter(function () {
11431
11431
  // // look if the changed field include in the calling in parameters
11432
11432
  const elm_data = $(this).data();
11433
- const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : '';
11433
+ const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : undefined;
11434
11434
  let attr = [];
11435
11435
 
11436
11436
  $.each(elm_data?.xuAttributes, function (key, val) {
@@ -16597,7 +16597,7 @@ func.index.new_webworker = async function (SESSION_ID, prog_obj, obj) {
16597
16597
  const content = `importScripts( "${url}" );`;
16598
16598
  return URL.createObjectURL(new Blob([content], { type: 'text/javascript' }));
16599
16599
  }
16600
- const _session = SESSION[SESSION_ID];
16600
+ const _session = SESSION_OBJ[SESSION_ID];
16601
16601
  let blob = getWorkerURL(func.common.get_url(SESSION_ID, 'dist', func.utils.get_resource_filename(['live_preview', 'cms'].includes(_session.engine_mode) ? '' : _session?.opt?.app_build_id, 'runtime/js/xuda_worker.js')));
16602
16602
  WEB_WORKER[SESSION_ID][worker_id] = {
16603
16603
  worker: new Worker(blob, {
@@ -9157,7 +9157,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
9157
9157
  .filter(function () {
9158
9158
  // // look if the changed field include in the calling in parameters
9159
9159
  const elm_data = $(this).data();
9160
- const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : '';
9160
+ const parameter_in_filed_id = elm_data?.paramsP?.parameters_raw_obj?.[val.substr(1)] ? val.substr(1) : undefined;
9161
9161
  let attr = [];
9162
9162
 
9163
9163
  $.each(elm_data?.xuAttributes, function (key, val) {
@@ -16598,7 +16598,7 @@ func.index.new_webworker = async function (SESSION_ID, prog_obj, obj) {
16598
16598
  const content = `importScripts( "${url}" );`;
16599
16599
  return URL.createObjectURL(new Blob([content], { type: 'text/javascript' }));
16600
16600
  }
16601
- const _session = SESSION[SESSION_ID];
16601
+ const _session = SESSION_OBJ[SESSION_ID];
16602
16602
  let blob = getWorkerURL(func.common.get_url(SESSION_ID, 'dist', func.utils.get_resource_filename(['live_preview', 'cms'].includes(_session.engine_mode) ? '' : _session?.opt?.app_build_id, 'runtime/js/xuda_worker.js')));
16603
16603
  WEB_WORKER[SESSION_ID][worker_id] = {
16604
16604
  worker: new Worker(blob, {