@xuda.io/runtime-bundle 1.0.957 → 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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -11451,11 +11451,12 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11451
11451
|
|
|
11452
11452
|
get_selectors();
|
|
11453
11453
|
// console.log('selectors>>>>', selectors);
|
|
11454
|
-
let children_items_ignore_list = [];
|
|
11454
|
+
// let children_items_ignore_list = [];
|
|
11455
11455
|
for await (let [elem_key, elem_val] of Object.entries(selectors)) {
|
|
11456
11456
|
if (elem_key === 'length') break;
|
|
11457
11457
|
// const xu_ui_id = $(elem_val.$elm).attr('xu-ui-id');
|
|
11458
11458
|
// if (!xu_ui_id) continue;
|
|
11459
|
+
if (!elem_val.$elm.data().xuData) continue;
|
|
11459
11460
|
if (elem_val.$elm.data().xuData.pending_to_delete) continue;
|
|
11460
11461
|
|
|
11461
11462
|
const add_execute_queue = async function (type) {
|
|
@@ -11540,7 +11541,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
11540
11541
|
// const xu_ui_id = $(elem_val.$elm).attr('xu-ui-id');
|
|
11541
11542
|
// if (!xu_ui_id) continue;
|
|
11542
11543
|
// if (children_items_ignore_list.includes(xu_ui_id)) continue;
|
|
11543
|
-
|
|
11544
|
+
if (!elem_val.$elm.data().xuData) continue;
|
|
11544
11545
|
if (elem_val.$elm.data().xuData.pending_to_delete) continue;
|
|
11545
11546
|
|
|
11546
11547
|
if (!elem_val.attributes.includes('xu-exp:xu-for') && !elem_val.attributes.includes('xu-for')) continue;
|
|
@@ -9178,11 +9178,12 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9178
9178
|
|
|
9179
9179
|
get_selectors();
|
|
9180
9180
|
// console.log('selectors>>>>', selectors);
|
|
9181
|
-
let children_items_ignore_list = [];
|
|
9181
|
+
// let children_items_ignore_list = [];
|
|
9182
9182
|
for await (let [elem_key, elem_val] of Object.entries(selectors)) {
|
|
9183
9183
|
if (elem_key === 'length') break;
|
|
9184
9184
|
// const xu_ui_id = $(elem_val.$elm).attr('xu-ui-id');
|
|
9185
9185
|
// if (!xu_ui_id) continue;
|
|
9186
|
+
if (!elem_val.$elm.data().xuData) continue;
|
|
9186
9187
|
if (elem_val.$elm.data().xuData.pending_to_delete) continue;
|
|
9187
9188
|
|
|
9188
9189
|
const add_execute_queue = async function (type) {
|
|
@@ -9267,7 +9268,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9267
9268
|
// const xu_ui_id = $(elem_val.$elm).attr('xu-ui-id');
|
|
9268
9269
|
// if (!xu_ui_id) continue;
|
|
9269
9270
|
// if (children_items_ignore_list.includes(xu_ui_id)) continue;
|
|
9270
|
-
|
|
9271
|
+
if (!elem_val.$elm.data().xuData) continue;
|
|
9271
9272
|
if (elem_val.$elm.data().xuData.pending_to_delete) continue;
|
|
9272
9273
|
|
|
9273
9274
|
if (!elem_val.attributes.includes('xu-exp:xu-for') && !elem_val.attributes.includes('xu-for')) continue;
|