src/lib/dynamic-form-element/dynamic-form-modal/dynamic-form-modal.component.ts
DynamicFormModalBase
selector | bs-dynamic-form-modal |
templateUrl | ./dynamic-form-modal.component.html |
constructor()
|
import { Component } from '@angular/core';
import { DynamicFormModalBase } from '@dynamic-forms/core';
@Component({
selector: 'bs-dynamic-form-modal',
templateUrl: './dynamic-form-modal.component.html',
})
export class BsDynamicFormModalComponent extends DynamicFormModalBase {
constructor() {
super();
}
}
<dynamic-form-element *ngIf="trigger" [element]="trigger"></dynamic-form-element>
<bs-dynamic-form-dialog
[isOpen$]="isOpen$"
[children]="children"
[headerActions]="headerActions"
[footerActions]="footerActions"
[width]="template.width"
[height]="template.height"
[minWidth]="template.minWidth"
[minHeight]="template.minHeight"
[maxWidth]="template.maxWidth"
[maxHeight]="template.maxHeight"
[maximized]="template.maximized"
[title]="template.title"
[titleHtml]="template.titleHtml"
[classNameForm]="element.root.template.className"
[classNameModal]="template.className"
[classNameTitle]="template.classNameTitle"
[classNameChildren]="template.classNameChildren"
[classNameHeader]="template.classNameHeader"
[classNameFooter]="template.classNameFooter"
></bs-dynamic-form-dialog>