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