@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.
@@ -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 });