@xuda.io/runtime-bundle 1.0.1113 → 1.0.1115
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
|
@@ -13655,10 +13655,6 @@ func.UI.screen.create_container = async function (SESSION_ID, $root_container, n
|
|
|
13655
13655
|
|
|
13656
13656
|
var $div;
|
|
13657
13657
|
|
|
13658
|
-
if (is_placeholder) {
|
|
13659
|
-
$div.addClass('display_none');
|
|
13660
|
-
}
|
|
13661
|
-
|
|
13662
13658
|
if (div === 'svg') {
|
|
13663
13659
|
const draw_svg = function (element) {
|
|
13664
13660
|
const get_tag_str = function (element, prop, val) {
|
|
@@ -13755,6 +13751,9 @@ func.UI.screen.create_container = async function (SESSION_ID, $root_container, n
|
|
|
13755
13751
|
},
|
|
13756
13752
|
xuAttributes: {},
|
|
13757
13753
|
});
|
|
13754
|
+
if (is_placeholder) {
|
|
13755
|
+
$div.addClass('display_none');
|
|
13756
|
+
}
|
|
13758
13757
|
|
|
13759
13758
|
if (div_typeP !== 'svg') {
|
|
13760
13759
|
$div.appendTo($appendTo);
|
|
@@ -14948,7 +14947,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14948
14947
|
if (!element || element === 'script') return await done();
|
|
14949
14948
|
let str = '';
|
|
14950
14949
|
|
|
14951
|
-
var temp_$div = await func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, element, null, str);
|
|
14950
|
+
var temp_$div = await func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, element, null, str, true);
|
|
14952
14951
|
|
|
14953
14952
|
let temp_$container = $('<tmp>').data('xuData', $container.data().xuData);
|
|
14954
14953
|
let $div = temp_$div.clone(true);
|
|
@@ -11380,10 +11380,6 @@ func.UI.screen.create_container = async function (SESSION_ID, $root_container, n
|
|
|
11380
11380
|
|
|
11381
11381
|
var $div;
|
|
11382
11382
|
|
|
11383
|
-
if (is_placeholder) {
|
|
11384
|
-
$div.addClass('display_none');
|
|
11385
|
-
}
|
|
11386
|
-
|
|
11387
11383
|
if (div === 'svg') {
|
|
11388
11384
|
const draw_svg = function (element) {
|
|
11389
11385
|
const get_tag_str = function (element, prop, val) {
|
|
@@ -11480,6 +11476,9 @@ func.UI.screen.create_container = async function (SESSION_ID, $root_container, n
|
|
|
11480
11476
|
},
|
|
11481
11477
|
xuAttributes: {},
|
|
11482
11478
|
});
|
|
11479
|
+
if (is_placeholder) {
|
|
11480
|
+
$div.addClass('display_none');
|
|
11481
|
+
}
|
|
11483
11482
|
|
|
11484
11483
|
if (div_typeP !== 'svg') {
|
|
11485
11484
|
$div.appendTo($appendTo);
|
|
@@ -12673,7 +12672,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12673
12672
|
if (!element || element === 'script') return await done();
|
|
12674
12673
|
let str = '';
|
|
12675
12674
|
|
|
12676
|
-
var temp_$div = await func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, element, null, str);
|
|
12675
|
+
var temp_$div = await func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, element, null, str, true);
|
|
12677
12676
|
|
|
12678
12677
|
let temp_$container = $('<tmp>').data('xuData', $container.data().xuData);
|
|
12679
12678
|
let $div = temp_$div.clone(true);
|