New to Kendo UI for Angular? Start a free 30-day trial
KENDO_ACTIONSHEET
Use this utility array to access all ActionSheet-related components and directives in a standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_ACTIONSHEET } from '@progress/kendo-angular-navigation';
@Component({
selector: 'my-app',
standalone: true,
imports: [KENDO_ACTIONSHEET],
template: `
<kendo-actionsheet [items]="items">
</kendo-actionsheet>
`
})
export class AppComponent {}