@xuda.io/runtime-bundle 1.0.901 → 1.0.902
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
|
@@ -12517,7 +12517,16 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12517
12517
|
} catch (error) {
|
|
12518
12518
|
console.warn(e);
|
|
12519
12519
|
}
|
|
12520
|
-
|
|
12520
|
+
return;
|
|
12521
|
+
return { abort: true };
|
|
12522
|
+
},
|
|
12523
|
+
'xu-html': async function ($elm, val) {
|
|
12524
|
+
try {
|
|
12525
|
+
$elm.html(val.value);
|
|
12526
|
+
} catch (error) {
|
|
12527
|
+
console.warn(e);
|
|
12528
|
+
}
|
|
12529
|
+
return;
|
|
12521
12530
|
return { abort: true };
|
|
12522
12531
|
},
|
|
12523
12532
|
'xu-for': async function ($elm, data) {
|
|
@@ -10244,7 +10244,16 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10244
10244
|
} catch (error) {
|
|
10245
10245
|
console.warn(e);
|
|
10246
10246
|
}
|
|
10247
|
-
|
|
10247
|
+
return;
|
|
10248
|
+
return { abort: true };
|
|
10249
|
+
},
|
|
10250
|
+
'xu-html': async function ($elm, val) {
|
|
10251
|
+
try {
|
|
10252
|
+
$elm.html(val.value);
|
|
10253
|
+
} catch (error) {
|
|
10254
|
+
console.warn(e);
|
|
10255
|
+
}
|
|
10256
|
+
return;
|
|
10248
10257
|
return { abort: true };
|
|
10249
10258
|
},
|
|
10250
10259
|
'xu-for': async function ($elm, data) {
|