@dereekb/dbx-core 13.7.0 → 13.8.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/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-core",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.8.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "21.2.
|
|
6
|
-
"@angular/core": "21.2.
|
|
7
|
-
"@angular/router": "21.2.
|
|
8
|
-
"@dereekb/date": "13.
|
|
9
|
-
"@dereekb/rxjs": "13.
|
|
10
|
-
"@dereekb/util": "13.
|
|
11
|
-
"@dereekb/vitest": "13.
|
|
5
|
+
"@angular/common": "21.2.4",
|
|
6
|
+
"@angular/core": "21.2.4",
|
|
7
|
+
"@angular/router": "21.2.4",
|
|
8
|
+
"@dereekb/date": "13.8.0",
|
|
9
|
+
"@dereekb/rxjs": "13.8.0",
|
|
10
|
+
"@dereekb/util": "13.8.0",
|
|
11
|
+
"@dereekb/vitest": "13.8.0",
|
|
12
12
|
"@ngrx/component-store": "^21.0.0",
|
|
13
13
|
"@ngrx/effects": "^21.0.0",
|
|
14
14
|
"@ngrx/store": "^21.0.0",
|
|
@@ -7066,6 +7066,9 @@ interface DbxInjectionComponentInjectorParams<T = unknown> {
|
|
|
7066
7066
|
*
|
|
7067
7067
|
* Returns the config's injector (or parent) unchanged if no providers or data are specified.
|
|
7068
7068
|
*
|
|
7069
|
+
* @param params - The config and parent injector to build from.
|
|
7070
|
+
* @returns A child {@link Injector} with the config's providers and data, or the parent injector if none are specified.
|
|
7071
|
+
*
|
|
7069
7072
|
* @example
|
|
7070
7073
|
* ```typescript
|
|
7071
7074
|
* const injector = createInjectorForInjectionComponentConfig({
|
|
@@ -7079,6 +7082,9 @@ declare function createInjectorForInjectionComponentConfig<T>(params: DbxInjecti
|
|
|
7079
7082
|
* Runs the init callback from a {@link DbxInjectionComponentConfig} on the given component ref,
|
|
7080
7083
|
* executing within the component's injection context so that `inject()` is available inside the callback.
|
|
7081
7084
|
*
|
|
7085
|
+
* @param componentRef - The component reference whose instance will be passed to the init callback.
|
|
7086
|
+
* @param config - The injection component config containing the optional init callback.
|
|
7087
|
+
*
|
|
7082
7088
|
* @example
|
|
7083
7089
|
* ```typescript
|
|
7084
7090
|
* const ref = viewContainerRef.createComponent(config.componentClass, { injector });
|