Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1x 2x 2x | import { Component } from '@angular/core'; import { ReactiveFormsModule } from '@angular/forms'; import { MatButtonToggleModule } from '@angular/material/button-toggle'; import { DynamicFormInputBase, DynamicFormToggle, DynamicFormValidationService } from '@dynamic-forms/core'; import { MatDynamicFormInputWrapperComponent } from '../dynamic-form-input-wrapper/dynamic-form-input-wrapper.component'; @Component({ selector: 'mat-dynamic-form-toggle', templateUrl: './dynamic-form-toggle.component.html', imports: [ReactiveFormsModule, MatDynamicFormInputWrapperComponent, MatButtonToggleModule], }) export class MatDynamicFormToggleComponent extends DynamicFormInputBase<DynamicFormToggle> { constructor(protected override validationService: DynamicFormValidationService) { super(validationService); } } |