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