@adaas/a-utils 0.1.31 → 0.1.32
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/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -2
- package/dist/index.d.ts +1 -2
- package/dist/index.mjs +5 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/A-Signal/components/A-SignalBus.component.ts +2 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaas/a-utils",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"description": "A-Utils is a set of utilities that are used across the ADAAS ecosystem. This package is designed to be a collection of utilities that are used across the ADAAS ecosystem.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -38,6 +38,7 @@ export class A_SignalBus extends A_Component {
|
|
|
38
38
|
})
|
|
39
39
|
async [A_SignalFeatures.Emit](
|
|
40
40
|
@A_Inject(A_Caller) signal: A_Signal,
|
|
41
|
+
@A_Inject(A_Scope) scope: A_Scope,
|
|
41
42
|
|
|
42
43
|
@A_Inject(A_Config) globalConfig?: A_Config<['A_SIGNAL_VECTOR_STRUCTURE']>,
|
|
43
44
|
@A_Inject(A_Logger) logger?: A_Logger,
|
|
@@ -89,14 +90,11 @@ export class A_SignalBus extends A_Component {
|
|
|
89
90
|
|
|
90
91
|
const vector = state.toVector();
|
|
91
92
|
|
|
92
|
-
|
|
93
|
-
|
|
94
93
|
const nextScope = new A_Scope({
|
|
95
94
|
name: `A_SignalBus_Next_Scope_of_${this.constructor.name}`,
|
|
96
95
|
entities: [vector]
|
|
97
96
|
})
|
|
98
|
-
.inherit(
|
|
99
|
-
|
|
97
|
+
.inherit(scope);
|
|
100
98
|
|
|
101
99
|
try {
|
|
102
100
|
|
|
@@ -111,16 +109,4 @@ export class A_SignalBus extends A_Component {
|
|
|
111
109
|
throw error;
|
|
112
110
|
}
|
|
113
111
|
}
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
getState(){
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
112
|
}
|