@xuda.io/runtime-bundle 1.0.1300 → 1.0.1302
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-bundle.js +3 -2
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-mini-bundle.js +1 -0
- package/js/xuda-runtime-mini-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +3 -2
- package/js/xuda-runtime-slim.min.es.js +3 -2
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +1 -0
- package/js/xuda-worker-bundle.js +1 -0
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -24917,6 +24917,7 @@ func.utils.debug.log = async function (SESSION_ID, node_idP, jsonP) {
|
|
|
24917
24917
|
const debug_utils = await func.common.get_module(SESSION_ID, 'xuda-debug-utils-module.mjs');
|
|
24918
24918
|
|
|
24919
24919
|
debug_utils.log(SESSION_ID, node_idP, jsonP);
|
|
24920
|
+
console.error(jsonP);
|
|
24920
24921
|
};
|
|
24921
24922
|
func.utils.debug.write = async function (SESSION_ID, logP, callbackP) {
|
|
24922
24923
|
if (!glb.DEBUG_MODE) return;
|
|
@@ -27848,7 +27849,7 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
27848
27849
|
var _ds = SESSION_OBJ[SESSION_ID].DS_GLB[queue_obj.dsSession];
|
|
27849
27850
|
_ds.currentRecordId = currentRecordId || queue_obj.paramsP.currentRecordId;
|
|
27850
27851
|
|
|
27851
|
-
console.info(queue_obj.dsSession, _ds.currentRecordId);
|
|
27852
|
+
// console.info(queue_obj.dsSession, _ds.currentRecordId);
|
|
27852
27853
|
|
|
27853
27854
|
var datasource_changes = {
|
|
27854
27855
|
[_ds.dsSession]: { [_ds.currentRecordId]: 'set' },
|
|
@@ -35616,7 +35617,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
35616
35617
|
//////////////////////////
|
|
35617
35618
|
|
|
35618
35619
|
let plugin_name = prop['xu-widget'],
|
|
35619
|
-
method = prop['xu-method'],
|
|
35620
|
+
method = prop['xu-method'] || '_default',
|
|
35620
35621
|
dsP = paramsP.dsSessionP,
|
|
35621
35622
|
propsP = prop,
|
|
35622
35623
|
sourceP = 'widgets';
|