AdaptiveService
Class
The service responsible for handling changes in adaptive settings. Add it to the providers array when using adaptive breakpoints in a standalone component.
Definition
Package:@progress/kendo-angular-utils
Syntax:
ts
import { AdaptiveService } from '@progress/kendo-angular-utils';
@Component({
selector: 'my-component',
standalone: true,
providers: [AdaptiveService, { provide: ADAPTIVE_SETTINGS, useValue: { small: 300 } }],
template: '...'
})
export class AppComponent {}