libs/design/quantity-field/examples/src/basic-quantity-field/basic-quantity-field.component.ts
import {
ChangeDetectionStrategy,
Component,
} from '@angular/core';
import {
UntypedFormControl,
ReactiveFormsModule,
} from '@angular/forms';
import {
DaffFormFieldModule,
DaffQuantityFieldModule,
} from '@daffodil/design';
@Component({
// eslint-disable-next-line @angular-eslint/component-selector
selector: 'basic-quantity-field',
templateUrl: './basic-quantity-field.component.html',
styleUrls: ['./basic-quantity-field.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
imports: [
DaffFormFieldModule,
DaffQuantityFieldModule,
ReactiveFormsModule,
],
})
export class BasicQuantityFieldComponent {
control = new UntypedFormControl(1);
}