@xuda.io/runtime-bundle 1.0.1361 → 1.0.1363

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.
@@ -34928,6 +34928,8 @@ func.UI.screen.create_container = async function (SESSION_ID, $root_container, n
34928
34928
  let ret = '';
34929
34929
  if (node.children) {
34930
34930
  for (let val of node.children) {
34931
+ if (val.type === 'comment') continue;
34932
+
34931
34933
  let prop = val.attributes;
34932
34934
  ret += get_tag_str(val.tagName, prop, val);
34933
34935
  }
@@ -41440,7 +41442,7 @@ function xuda(...args) {
41440
41442
  }
41441
41443
 
41442
41444
  if ($('template').length) {
41443
- const module = await func.common.get_module(SESSION_ID, 'xuda-cli-plugin-html-parser-module.esm.js');
41445
+ const module = await func.common.get_module(SESSION_ID, 'xuda-cli-plugin-html-parser-module.esm.mjs');
41444
41446
 
41445
41447
  $.each($('template'), function (idx, el) {
41446
41448
  const _id = $(el).attr('id') || 'template_' + idx.toString();
@@ -42763,7 +42765,7 @@ func.index.set_ds_0_proxy = function (SESSION_ID) {
42763
42765
  let watch_path = 'data_system.' + path;
42764
42766
 
42765
42767
  const runHandler = () => {
42766
- const { handler, once } = _session?.watchers?.[watch_path];
42768
+ const { handler, once } = _session?.watchers?.[watch_path] || {};
42767
42769
  handler(change);
42768
42770
  if (once) {
42769
42771
  delete _session.watchers[watch_path];