component.ts
this.companySettingsForm = this.formBuilder.group({
'delivary_charge': ['', Validators.compose([Validators.required, ])],
});
this.delivary_charge = this.companySettingsForm.controls['delivary_charge'];
}
В Component.html я добавил минимальное и максимальное значения, но оно не будет работать
component.html
<input pInputText #value type="number" [formControl]="surcharge" min="1"
max="9999999999999" class="input-width">