@xuda.io/runtime-bundle 1.0.904 → 1.0.905

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.
@@ -14404,7 +14404,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
14404
14404
  );
14405
14405
 
14406
14406
  let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div, true);
14407
- if (ret.abort || nodeP.tagName === 'svg' || nodeP?.attributes?.['xu-text'] || nodeP?.attributes?.['xu-html']) return await done();
14407
+ if (ret.abort || nodeP.tagName === 'svg' || !_.isEmpty(nodeP?.attributes?.['xu-text']) || !_.isEmpty(nodeP?.attributes?.['xu-html']) || !_.isEmpty(nodeP?.attributes?.['xu-exp:xu-text']) || !_.isEmpty(nodeP?.attributes?.['xu-exp:xu-html'])) return await done();
14408
14408
  // check if iterator made to prevent children render
14409
14409
 
14410
14410
  if (nodeP?.attributes?.['xu-viewport'] == 'true') {
@@ -12131,7 +12131,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
12131
12131
  );
12132
12132
 
12133
12133
  let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div, true);
12134
- if (ret.abort || nodeP.tagName === 'svg' || nodeP?.attributes?.['xu-text'] || nodeP?.attributes?.['xu-html']) return await done();
12134
+ if (ret.abort || nodeP.tagName === 'svg' || !_.isEmpty(nodeP?.attributes?.['xu-text']) || !_.isEmpty(nodeP?.attributes?.['xu-html']) || !_.isEmpty(nodeP?.attributes?.['xu-exp:xu-text']) || !_.isEmpty(nodeP?.attributes?.['xu-exp:xu-html'])) return await done();
12135
12135
  // check if iterator made to prevent children render
12136
12136
 
12137
12137
  if (nodeP?.attributes?.['xu-viewport'] == 'true') {