@almadar/core 5.6.1 → 5.7.0
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 +9 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1142,6 +1142,15 @@ interface BusEventSource {
|
|
|
1142
1142
|
trait?: string;
|
|
1143
1143
|
transition?: string;
|
|
1144
1144
|
tick?: string;
|
|
1145
|
+
/**
|
|
1146
|
+
* True when the orbital bridge is re-broadcasting a transition event
|
|
1147
|
+
* on the bus so cross-trait `listens { X EVENT → Y }` wiring fires on
|
|
1148
|
+
* user-click flows. The originating trait's own `useUIEvents` plain-
|
|
1149
|
+
* event listener checks this flag and skips — otherwise the trait
|
|
1150
|
+
* that just dispatched E would hear its own bridge echo and dispatch
|
|
1151
|
+
* E again, infinitely.
|
|
1152
|
+
*/
|
|
1153
|
+
fromBridge?: boolean;
|
|
1145
1154
|
}
|
|
1146
1155
|
/**
|
|
1147
1156
|
* An event flowing on the bus.
|