0.0.2 • Published 1 year ago

ngx-template-window v0.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

Шаблон для модальных окон

Пример использования

<dx-button (onClick)="popup.open()" text="Открыть"></dx-button>
<app-window-template #popup width="700px" height="350px" title="Modal">
  <ng-container appWindowTemplateTitle>
    <div>| Hello from title |</div>
  </ng-container>
  <ng-container appWindowTemplateBody>
    <div>| Hello from body |</div>
  </ng-container>
  <ng-container appWindowTemplateFooter>
    <div class="popup_toolbar">
      <dx-button (onClick)="popup.close()" text="Закрыть"></dx-button>
    </div>
  </ng-container>
</app-window-template>