@adaas/a-concept 0.1.33 → 0.1.34
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/helpers/A_TypeGuards.helper.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaas/a-concept",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.34",
|
|
4
4
|
"description": "A-Concept is a framework to build new Applications within or outside the ADAAS ecosystem. This framework is designed to be modular structure regardless environment and program goal.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -291,7 +291,8 @@ export class A_TypeGuards {
|
|
|
291
291
|
static isTargetAvailableForInjection(target: any): target is A_TYPES__InjectableTargets {
|
|
292
292
|
return A_TypeGuards.isComponentConstructor(target)
|
|
293
293
|
|| A_TypeGuards.isComponentInstance(target)
|
|
294
|
-
|| A_TypeGuards.isContainerInstance(target)
|
|
294
|
+
|| A_TypeGuards.isContainerInstance(target)
|
|
295
|
+
|| A_TypeGuards.isEntityInstance(target)
|
|
295
296
|
}
|
|
296
297
|
|
|
297
298
|
static isAllowedForFeatureCall(param: any): param is A_TYPES__FeatureAvailableComponents {
|