@xuda.io/runtime-bundle 1.0.1136 → 1.0.1137

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.
@@ -13178,7 +13178,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
13178
13178
  prop_val.value = res.result;
13179
13179
  }
13180
13180
  }
13181
-
13181
+ $elm.data().xu_ui_plugin = { properties };
13182
13182
  const plugin_runtime_src = await func.utils.get_plugin_npm_cdn(SESSION_ID, plugin_name, `${_plugin.manifest['runtime.mjs'].dist ? 'dist/' : ''}runtime.mjs`);
13183
13183
 
13184
13184
  const plugin_runtime_resources = await import(plugin_runtime_src);
@@ -13190,7 +13190,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
13190
13190
  }
13191
13191
 
13192
13192
  if (plugin_runtime_resources.fn) {
13193
- await plugin_runtime_resources.fn(plugin_name, $elm?.[0], properties);
13193
+ // await plugin_runtime_resources.fn(plugin_name, $elm?.[0], properties);
13194
+ await plugin_runtime_resources.fn(plugin_name, $elm?.[0], $elm.data().xu_ui_plugin.properties);
13194
13195
  }
13195
13196
  }
13196
13197
  }
@@ -10903,7 +10903,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10903
10903
  prop_val.value = res.result;
10904
10904
  }
10905
10905
  }
10906
-
10906
+ $elm.data().xu_ui_plugin = { properties };
10907
10907
  const plugin_runtime_src = await func.utils.get_plugin_npm_cdn(SESSION_ID, plugin_name, `${_plugin.manifest['runtime.mjs'].dist ? 'dist/' : ''}runtime.mjs`);
10908
10908
 
10909
10909
  const plugin_runtime_resources = await import(plugin_runtime_src);
@@ -10915,7 +10915,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10915
10915
  }
10916
10916
 
10917
10917
  if (plugin_runtime_resources.fn) {
10918
- await plugin_runtime_resources.fn(plugin_name, $elm?.[0], properties);
10918
+ // await plugin_runtime_resources.fn(plugin_name, $elm?.[0], properties);
10919
+ await plugin_runtime_resources.fn(plugin_name, $elm?.[0], $elm.data().xu_ui_plugin.properties);
10919
10920
  }
10920
10921
  }
10921
10922
  }