@plaidev/karte-action-sdk 1.1.157-28012611.72952040 → 1.1.157-28012652.34e3619d
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/templates.cjs.js +2 -1
- package/dist/templates.js +2 -1
- package/package.json +1 -1
package/dist/templates.cjs.js
CHANGED
@@ -19,6 +19,7 @@ import { writable } from 'svelte/store';
|
|
19
19
|
import {
|
20
20
|
state,
|
21
21
|
variables as actionVariables,
|
22
|
+
eventHandlers as actionEventHandlers,
|
22
23
|
getCssVariables,
|
23
24
|
State,
|
24
25
|
StateItem,
|
@@ -70,7 +71,7 @@ $: {
|
|
70
71
|
|
71
72
|
$: {
|
72
73
|
data.update(current => {
|
73
|
-
return { ...current, ...$actionVariables };
|
74
|
+
return { ...current, ...$actionVariables, ...$actionEventHandlers };
|
74
75
|
});
|
75
76
|
}
|
76
77
|
|
package/dist/templates.js
CHANGED
@@ -17,6 +17,7 @@ import { writable } from 'svelte/store';
|
|
17
17
|
import {
|
18
18
|
state,
|
19
19
|
variables as actionVariables,
|
20
|
+
eventHandlers as actionEventHandlers,
|
20
21
|
getCssVariables,
|
21
22
|
State,
|
22
23
|
StateItem,
|
@@ -68,7 +69,7 @@ $: {
|
|
68
69
|
|
69
70
|
$: {
|
70
71
|
data.update(current => {
|
71
|
-
return { ...current, ...$actionVariables };
|
72
|
+
return { ...current, ...$actionVariables, ...$actionEventHandlers };
|
72
73
|
});
|
73
74
|
}
|
74
75
|
|