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