@xuda.io/runtime-bundle 1.0.956 → 1.0.958
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.
|
@@ -31137,11 +31137,12 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31137
31137
|
|
|
31138
31138
|
get_selectors();
|
|
31139
31139
|
// console.log('selectors>>>>', selectors);
|
|
31140
|
-
let children_items_ignore_list = [];
|
|
31140
|
+
// let children_items_ignore_list = [];
|
|
31141
31141
|
for await (let [elem_key, elem_val] of Object.entries(selectors)) {
|
|
31142
31142
|
if (elem_key === 'length') break;
|
|
31143
31143
|
// const xu_ui_id = $(elem_val.$elm).attr('xu-ui-id');
|
|
31144
31144
|
// if (!xu_ui_id) continue;
|
|
31145
|
+
if (!elem_val.$elm.data().xuData) continue;
|
|
31145
31146
|
if (elem_val.$elm.data().xuData.pending_to_delete) continue;
|
|
31146
31147
|
|
|
31147
31148
|
const add_execute_queue = async function (type) {
|
|
@@ -31226,7 +31227,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
31226
31227
|
// const xu_ui_id = $(elem_val.$elm).attr('xu-ui-id');
|
|
31227
31228
|
// if (!xu_ui_id) continue;
|
|
31228
31229
|
// if (children_items_ignore_list.includes(xu_ui_id)) continue;
|
|
31229
|
-
|
|
31230
|
+
if (!elem_val.$elm.data().xuData) continue;
|
|
31230
31231
|
if (elem_val.$elm.data().xuData.pending_to_delete) continue;
|
|
31231
31232
|
|
|
31232
31233
|
if (!elem_val.attributes.includes('xu-exp:xu-for') && !elem_val.attributes.includes('xu-for')) continue;
|
|
@@ -31478,6 +31479,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
31478
31479
|
|
|
31479
31480
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
31480
31481
|
// const progDataSource_str = JSON.stringify(panel_val.prog_doc.progDataSource);
|
|
31482
|
+
if (!panel_val.$panel_div?.data()?.xuData) continue;
|
|
31481
31483
|
|
|
31482
31484
|
if (panel_val.$panel_div.data().xuData.pending_to_delete) continue;
|
|
31483
31485
|
|