@xuda.io/runtime-bundle 1.0.324 → 1.0.325
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.
|
@@ -32735,6 +32735,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32735
32735
|
const trigger = val.key.split('xu-on:')[1].toLowerCase();
|
|
32736
32736
|
$elm.on(trigger, async function (evt) {
|
|
32737
32737
|
for await (const [key, val] of Object.entries($elm.data().xuAttributes['xu-on:' + evt.type])) {
|
|
32738
|
+
if (val.event_modifiers && evt[val.event_modifiers]) {
|
|
32739
|
+
evt[val.event_modifiers]();
|
|
32740
|
+
}
|
|
32741
|
+
|
|
32738
32742
|
if (val.handler === 'custom') {
|
|
32739
32743
|
// do BL
|
|
32740
32744
|
for await (const [key2, val2] of Object.entries(val.event)) {
|
|
@@ -32745,10 +32749,6 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32745
32749
|
}
|
|
32746
32750
|
if (!cond) continue;
|
|
32747
32751
|
|
|
32748
|
-
if (val.event_modifiers && evt[val.event_modifiers]) {
|
|
32749
|
-
evt[val.event_modifiers]();
|
|
32750
|
-
}
|
|
32751
|
-
|
|
32752
32752
|
func.events.add_to_queue(SESSION_ID, 'element event', val2.id, evt.type, val2.data.action, val2.data.name, null, $elm.attr('xu-ui-id'), null, evt, null, null, null, paramsP.dsSessionP, null, null, null, evt.type, val2.data.name, null, null, val2, null, null, null, null, null, null);
|
|
32753
32753
|
}
|
|
32754
32754
|
}
|