@colijnit/corecomponents_v12 12.2.18 → 12.2.20

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.
@@ -0,0 +1,13 @@
1
+ import { OnChanges, OnDestroy, SimpleChanges, TemplateRef, ViewContainerRef } from '@angular/core';
2
+ export declare class TemplateWrapperDirective implements OnDestroy, OnChanges {
3
+ protected viewContainer: ViewContainerRef;
4
+ templateWrapper: TemplateRef<any> | null;
5
+ templateWrapperContext: Object | null;
6
+ private _viewRef;
7
+ constructor(viewContainer: ViewContainerRef);
8
+ ngOnChanges(changes: SimpleChanges): void;
9
+ ngOnDestroy(): void;
10
+ private _shouldRecreateView;
11
+ private _hasContextShapeChanged;
12
+ private _updateExistingContext;
13
+ }
@@ -0,0 +1,2 @@
1
+ export declare class TemplateWrapperModule {
2
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "12.2.18",
3
+ "version": "12.2.20",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {
package/public-api.d.ts CHANGED
@@ -113,6 +113,8 @@ export * from './lib/directives/overlay/overlay.module';
113
113
  export * from './lib/directives/tooltip/tooltip-directive.module';
114
114
  export * from './lib/directives/screen-configuration/screen-configuration.module';
115
115
  export * from './lib/directives/screen-configuration/screen-configuration.directive';
116
+ export * from './lib/directives/template-wrapper/template-wrapper.directive';
117
+ export * from './lib/directives/template-wrapper/template-wrapper.module';
116
118
  export * from './lib/interfaces/screen-config-adapter-component-interface-name';
117
119
  export * from './lib/interfaces/screen-config-adapter.component.interface';
118
120
  export * from './lib/interfaces/dialog-response.interface';