New to Kendo UI for Angular? Start a free 30-day trial
KENDO_FORMFIELD
Use the KENDO_FORMFIELD
utility array to add all FormField-related components and directives to a standalone Angular component.
typescript
import { KENDO_FORMFIELD } from '@progress/kendo-angular-inputs';
@Component({
standalone: true,
imports: [KENDO_FORMFIELD],
template: `<kendo-formfield></kendo-formfield>`
})
export class MyComponent {}