@xuda.io/runtime-bundle 1.0.584 → 1.0.586
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
|
@@ -12008,6 +12008,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
12008
12008
|
};
|
|
12009
12009
|
|
|
12010
12010
|
func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr, datasource_changed, fields_changed_datasource) {
|
|
12011
|
+
return;
|
|
12011
12012
|
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $(SESSION_OBJ[SESSION_ID].root_element), false);
|
|
12012
12013
|
|
|
12013
12014
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
@@ -12101,8 +12102,8 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
12101
12102
|
if (_session.engine_mode === 'live_preview') {
|
|
12102
12103
|
console.info('========= refresh info ==============');
|
|
12103
12104
|
console.info('reason:', refresh_reason);
|
|
12104
|
-
console.info('details
|
|
12105
|
-
console.info('
|
|
12105
|
+
console.info('details:', refresh_details);
|
|
12106
|
+
console.info('panel:', panel_val);
|
|
12106
12107
|
console.info('=====================================');
|
|
12107
12108
|
}
|
|
12108
12109
|
const $div_elm = panel_val.$panel_div;
|
|
@@ -9740,6 +9740,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
|
|
|
9740
9740
|
};
|
|
9741
9741
|
|
|
9742
9742
|
func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr, datasource_changed, fields_changed_datasource) {
|
|
9743
|
+
return;
|
|
9743
9744
|
const panels_obj = await func.UI.utils.get_panels_wrapper_from_dom(SESSION_ID, $(SESSION_OBJ[SESSION_ID].root_element), false);
|
|
9744
9745
|
|
|
9745
9746
|
for await (const [parent_element_ui_id, panel_val] of Object.entries(panels_obj)) {
|
|
@@ -9833,8 +9834,8 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
|
|
|
9833
9834
|
if (_session.engine_mode === 'live_preview') {
|
|
9834
9835
|
console.info('========= refresh info ==============');
|
|
9835
9836
|
console.info('reason:', refresh_reason);
|
|
9836
|
-
console.info('details
|
|
9837
|
-
console.info('
|
|
9837
|
+
console.info('details:', refresh_details);
|
|
9838
|
+
console.info('panel:', panel_val);
|
|
9838
9839
|
console.info('=====================================');
|
|
9839
9840
|
}
|
|
9840
9841
|
const $div_elm = panel_val.$panel_div;
|