@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.
- package/bundles/colijnit-corecomponents_v12.umd.js +117 -6
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/popup/service/popup-shower.service.js +5 -2
- package/esm2015/lib/components/popup/service/prompt.service.js +5 -2
- package/esm2015/lib/directives/template-wrapper/template-wrapper.directive.js +68 -0
- package/esm2015/lib/directives/template-wrapper/template-wrapper.module.js +15 -0
- package/esm2015/public-api.js +3 -1
- package/fesm2015/colijnit-corecomponents_v12.js +86 -3
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/directives/template-wrapper/template-wrapper.directive.d.ts +13 -0
- package/lib/directives/template-wrapper/template-wrapper.module.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -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
|
+
}
|
package/package.json
CHANGED
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';
|