@evotor-dev/ui-kit 7.0.2 → 7.0.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/esm2020/lib/directives/evo-let/evo-let.directive.mjs +10 -1
- package/fesm2015/evotor-dev-ui-kit.mjs +9 -0
- package/fesm2015/evotor-dev-ui-kit.mjs.map +1 -1
- package/fesm2020/evotor-dev-ui-kit.mjs +9 -0
- package/fesm2020/evotor-dev-ui-kit.mjs.map +1 -1
- package/lib/directives/evo-let/evo-let.directive.d.ts +16 -0
- package/package.json +1 -1
|
@@ -376,6 +376,15 @@ class EvoLetDirective {
|
|
|
376
376
|
constructor(viewContainer, templateRef) {
|
|
377
377
|
viewContainer.createEmbeddedView(templateRef, new EvoLetContext(this));
|
|
378
378
|
}
|
|
379
|
+
/**
|
|
380
|
+
* Asserts the correct type of the context for the template that `EvoLetDirective` will render.
|
|
381
|
+
*
|
|
382
|
+
* The presence of this method is a signal to the Ivy template type-check compiler that the
|
|
383
|
+
* `EvoLetDirective` structural directive renders its template with a specific context type.
|
|
384
|
+
*/
|
|
385
|
+
static ngTemplateContextGuard(dir, ctx) {
|
|
386
|
+
return true;
|
|
387
|
+
}
|
|
379
388
|
}
|
|
380
389
|
EvoLetDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: EvoLetDirective, deps: [{ token: ViewContainerRef }, { token: TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
381
390
|
EvoLetDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: EvoLetDirective, selector: "[evoLet]", inputs: { evoLet: "evoLet" }, ngImport: i0 });
|