@dereekb/dbx-core 9.20.20 → 9.22.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/esm2020/lib/auth/router/provider/uirouter/role.hook.mjs +2 -2
- package/esm2020/lib/injection/injection.mjs +1 -1
- package/fesm2015/dereekb-dbx-core.mjs +1 -1
- package/fesm2015/dereekb-dbx-core.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-core.mjs +1 -1
- package/fesm2020/dereekb-dbx-core.mjs.map +1 -1
- package/lib/injection/injection.d.ts +2 -1
- package/package.json +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { InjectionToken, Injector, NgModuleRef, StaticProvider, TemplateRef, Type, ViewRef } from '@angular/core';
|
|
2
|
-
import { Maybe } from '@dereekb/util';
|
|
2
|
+
import { FactoryWithRequiredInput, Maybe } from '@dereekb/util';
|
|
3
3
|
export declare const DBX_INJECTION_COMPONENT_DATA: InjectionToken<unknown>;
|
|
4
4
|
export interface DbxInjectionComponentConfig<T = unknown> {
|
|
5
5
|
/**
|
|
@@ -27,6 +27,7 @@ export interface DbxInjectionComponentConfig<T = unknown> {
|
|
|
27
27
|
*/
|
|
28
28
|
data?: unknown;
|
|
29
29
|
}
|
|
30
|
+
export declare type DbxInjectionComponentConfigFactory<I, T = unknown> = FactoryWithRequiredInput<DbxInjectionComponentConfig<T>, I>;
|
|
30
31
|
export interface DbxInjectionTemplateConfig<T = unknown> {
|
|
31
32
|
/**
|
|
32
33
|
* Template ref to display.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-core",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.22.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.0.0",
|
|
6
6
|
"@angular/core": "^14.0.0",
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"@ngrx/effects": "^14.0.0",
|
|
10
10
|
"@ngrx/entity": "^14.0.0",
|
|
11
11
|
"@ngrx/store": "^14.0.0",
|
|
12
|
-
"@dereekb/util": "9.
|
|
13
|
-
"@dereekb/rxjs": "9.
|
|
12
|
+
"@dereekb/util": "9.22.0",
|
|
13
|
+
"@dereekb/rxjs": "9.22.0",
|
|
14
14
|
"@angular/platform-browser": "^14.2.0",
|
|
15
15
|
"@uirouter/core": "^6.0.8",
|
|
16
16
|
"date-fns": "^2.29.0",
|
|
17
|
-
"@dereekb/date": "9.
|
|
17
|
+
"@dereekb/date": "9.22.0",
|
|
18
18
|
"@angular/router": "^14.2.0"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|