@xuda.io/runtime-bundle 1.0.635 → 1.0.637
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 +11 -1
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +11 -1
- package/js/xuda-runtime-slim.min.es.js +11 -1
- package/js/xuda-runtime-slim.min.js +2 -2
- package/js/xuda-server-bundle.min.mjs +2 -2
- package/js/xuda-server-bundle.mjs +10 -0
- package/js/xuda-worker-bundle.js +10 -0
- package/js/xuda-worker-bundle.min.js +2 -2
- package/js/xuda_common-bundle.js +1 -0
- package/js/xuda_common-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -23600,6 +23600,7 @@ var PROJECT_OBJ = {};
|
|
|
23600
23600
|
|
|
23601
23601
|
var APP_OBJ = {};
|
|
23602
23602
|
var SESSION_ID = null;
|
|
23603
|
+
var EXP_BUSY = false;
|
|
23603
23604
|
|
|
23604
23605
|
glb.PROTECTED_VARS = ['_NULL', '_THIS', '_FOR_KEY', '_FOR_VAL', '_ROWNO', '_ROWID', '_ROWDOC', '_KEY', '_VAL'];
|
|
23605
23606
|
|
|
@@ -33654,7 +33655,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
33654
33655
|
};
|
|
33655
33656
|
|
|
33656
33657
|
const hover_in = function ($div) {
|
|
33657
|
-
if (is_skeleton) return;
|
|
33658
|
+
if (is_skeleton || EXP_BUSY) return;
|
|
33658
33659
|
CLIENT_ACTIVITY_TS = Date.now();
|
|
33659
33660
|
if (_$($container)?.data()?.xuData?.debug_info) _$($container).data().xuData.debug_info.hover_item = $div.attr('xu-ui-id');
|
|
33660
33661
|
if (!_ds) return;
|
|
@@ -34944,6 +34945,10 @@ func.UI.component.init_xu_nav = function ($container, $nav) {
|
|
|
34944
34945
|
func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, rowIdP, sourceActionP, secondPassP, calling_fieldIdP, fieldsP, debug_infoP, iterate_info, js_script_callback, jobNo, api_output_type) {
|
|
34945
34946
|
class xu_class {
|
|
34946
34947
|
async get() {
|
|
34948
|
+
if (typeof EXP_BUSY !== 'undefined') {
|
|
34949
|
+
EXP_BUSY = true;
|
|
34950
|
+
}
|
|
34951
|
+
|
|
34947
34952
|
var ret;
|
|
34948
34953
|
var fields = {};
|
|
34949
34954
|
var error;
|
|
@@ -35008,6 +35013,11 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
35008
35013
|
};
|
|
35009
35014
|
if (error) log_error();
|
|
35010
35015
|
// if (error || warning) log_error();
|
|
35016
|
+
|
|
35017
|
+
if (typeof EXP_BUSY !== 'undefined') {
|
|
35018
|
+
EXP_BUSY = false;
|
|
35019
|
+
}
|
|
35020
|
+
|
|
35011
35021
|
return {
|
|
35012
35022
|
result: ret,
|
|
35013
35023
|
fields: fields,
|