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