@dereekb/dbx-core 12.3.1 → 12.3.3
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/esm2022/lib/injection/injection.component.mjs +1 -1
- package/esm2022/lib/injection/injection.directive.mjs +1 -1
- package/esm2022/lib/router/router/transition/transition.watcher.directive.mjs +3 -1
- package/fesm2022/dereekb-dbx-core.mjs +2 -0
- package/fesm2022/dereekb-dbx-core.mjs.map +1 -1
- package/lib/injection/injection.component.d.ts +2 -2
- package/lib/injection/injection.directive.d.ts +1 -1
- package/package.json +1 -1
|
@@ -9,8 +9,8 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
*/
|
|
10
10
|
export declare class DbxInjectionComponent<T> extends AbstractDbxInjectionDirective<T> {
|
|
11
11
|
readonly content: import("@angular/core").Signal<ViewContainerRef | undefined>;
|
|
12
|
-
readonly config: import("@angular/core").InputSignal<Maybe<ObservableOrValueGetter<DbxInjectionComponentConfig<T
|
|
13
|
-
readonly template: import("@angular/core").InputSignal<Maybe<ObservableOrValueGetter<DbxInjectionTemplateConfig<T
|
|
12
|
+
readonly config: import("@angular/core").InputSignal<Maybe<ObservableOrValueGetter<Maybe<DbxInjectionComponentConfig<T>>>>>;
|
|
13
|
+
readonly template: import("@angular/core").InputSignal<Maybe<ObservableOrValueGetter<Maybe<DbxInjectionTemplateConfig<T>>>>>;
|
|
14
14
|
protected readonly _contentEffect: import("@angular/core").EffectRef;
|
|
15
15
|
protected readonly _configEffect: import("@angular/core").EffectRef;
|
|
16
16
|
protected readonly _templateEffect: import("@angular/core").EffectRef;
|
|
@@ -11,7 +11,7 @@ export declare abstract class AbstractDbxInjectionDirective<T> implements OnInit
|
|
|
11
11
|
ngOnInit(): void;
|
|
12
12
|
ngOnDestroy(): void;
|
|
13
13
|
setConfig(config: Maybe<ObservableOrValueGetter<Maybe<DbxInjectionComponentConfig<T>>>>): void;
|
|
14
|
-
setTemplate(template: Maybe<ObservableOrValueGetter<DbxInjectionTemplateConfig<T
|
|
14
|
+
setTemplate(template: Maybe<ObservableOrValueGetter<Maybe<DbxInjectionTemplateConfig<T>>>>): void;
|
|
15
15
|
setContent(content: Maybe<ViewContainerRef>): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDbxInjectionDirective<any>, never>;
|
|
17
17
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxInjectionDirective<any>, never, never, {}, {}, never, never, false, never>;
|