@almadar/core 4.8.0 → 4.8.2
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/dist/types/index.d.ts
CHANGED
|
@@ -108,8 +108,8 @@ declare const BINDING_CONTEXT_RULES: {
|
|
|
108
108
|
readonly description: "Guards can access entity fields, event payload, current state, and time";
|
|
109
109
|
};
|
|
110
110
|
readonly effect: {
|
|
111
|
-
readonly allowed: readonly ["entity", "payload", "state", "now"];
|
|
112
|
-
readonly description: "Effects can access and modify entity fields, use payload data";
|
|
111
|
+
readonly allowed: readonly ["entity", "payload", "state", "now", "trait"];
|
|
112
|
+
readonly description: "Effects can access and modify entity fields, use payload data, and embed another trait's live frame via @trait.X inside render-ui children";
|
|
113
113
|
};
|
|
114
114
|
readonly tick: {
|
|
115
115
|
readonly allowed: readonly ["entity", "state", "now"];
|
package/dist/types/index.js
CHANGED
|
@@ -1191,8 +1191,8 @@ var BINDING_CONTEXT_RULES = {
|
|
|
1191
1191
|
description: "Guards can access entity fields, event payload, current state, and time"
|
|
1192
1192
|
},
|
|
1193
1193
|
effect: {
|
|
1194
|
-
allowed: ["entity", "payload", "state", "now"],
|
|
1195
|
-
description: "Effects can access and modify entity fields, use payload data"
|
|
1194
|
+
allowed: ["entity", "payload", "state", "now", "trait"],
|
|
1195
|
+
description: "Effects can access and modify entity fields, use payload data, and embed another trait's live frame via @trait.X inside render-ui children"
|
|
1196
1196
|
},
|
|
1197
1197
|
tick: {
|
|
1198
1198
|
allowed: ["entity", "state", "now"],
|