@progress/kendo-angular-navigation 24.2.2-develop.9 → 25.0.0-develop.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/fesm2022/progress-kendo-angular-navigation.mjs +82 -82
  2. package/index.d.ts +1452 -30
  3. package/package-metadata.mjs +2 -2
  4. package/package.json +11 -11
  5. package/actionsheet/actionsheet-view.component.d.ts +0 -36
  6. package/actionsheet/actionsheet.component.d.ts +0 -229
  7. package/actionsheet/animation/animations.d.ts +0 -13
  8. package/actionsheet/item.component.d.ts +0 -19
  9. package/actionsheet/list.component.d.ts +0 -28
  10. package/actionsheet/models/actionsheet-action-layout.d.ts +0 -36
  11. package/actionsheet/models/actionsheet-action.d.ts +0 -46
  12. package/actionsheet/models/actionsheet-item.interface.d.ts +0 -57
  13. package/actionsheet/models/animation.d.ts +0 -15
  14. package/actionsheet/models/group.d.ts +0 -11
  15. package/actionsheet/models/index.d.ts +0 -15
  16. package/actionsheet/models/item-click.event.d.ts +0 -20
  17. package/actionsheet/templates/actionsheet-template.d.ts +0 -26
  18. package/actionsheet/templates/content-template.directive.d.ts +0 -26
  19. package/actionsheet/templates/footer-template.directive.d.ts +0 -26
  20. package/actionsheet/templates/header-template.directive.d.ts +0 -26
  21. package/actionsheet/templates/item-template.directive.d.ts +0 -26
  22. package/actionsheet.module.d.ts +0 -36
  23. package/appbar/appbar-section.component.d.ts +0 -24
  24. package/appbar/appbar-spacer.component.d.ts +0 -42
  25. package/appbar/appbar.component.d.ts +0 -68
  26. package/appbar/models/position-mode.d.ts +0 -13
  27. package/appbar/models/position.d.ts +0 -14
  28. package/appbar/models/theme-color.d.ts +0 -18
  29. package/appbar.module.d.ts +0 -32
  30. package/bottomnavigation/bottomnavigation-item.component.d.ts +0 -27
  31. package/bottomnavigation/bottomnavigation.component.d.ts +0 -146
  32. package/bottomnavigation/constants.d.ts +0 -16
  33. package/bottomnavigation/events/select-event.d.ts +0 -31
  34. package/bottomnavigation/templates/item-template.directive.d.ts +0 -25
  35. package/bottomnavigation/types/bottomnavigation-fill.d.ts +0 -12
  36. package/bottomnavigation/types/bottomnavigation-item-flow.d.ts +0 -12
  37. package/bottomnavigation/types/bottomnavigation-item.d.ts +0 -50
  38. package/bottomnavigation/types/bottomnavigation-position-mode.d.ts +0 -12
  39. package/bottomnavigation/types/bottomnavigation-theme-color.d.ts +0 -15
  40. package/bottomnavigation.module.d.ts +0 -31
  41. package/breadcrumb/breadcrumb-item.component.d.ts +0 -29
  42. package/breadcrumb/breadcrumb.component.d.ts +0 -124
  43. package/breadcrumb/list.component.d.ts +0 -31
  44. package/breadcrumb/models/breadcrumb-item.interface.d.ts +0 -59
  45. package/breadcrumb/models/breadcrumb-size.d.ts +0 -8
  46. package/breadcrumb/models/collapse-mode.d.ts +0 -16
  47. package/breadcrumb/models/constants.d.ts +0 -26
  48. package/breadcrumb/template-directives/item-template.directive.d.ts +0 -29
  49. package/breadcrumb/template-directives/separator.directive.d.ts +0 -31
  50. package/breadcrumb/util.d.ts +0 -21
  51. package/breadcrumb.module.d.ts +0 -31
  52. package/common/direction.d.ts +0 -8
  53. package/common/dom-queries.d.ts +0 -12
  54. package/common/preventable-event.d.ts +0 -28
  55. package/common/util.d.ts +0 -32
  56. package/directives.d.ts +0 -123
  57. package/navigation.module.d.ts +0 -43
  58. package/package-metadata.d.ts +0 -9
package/index.d.ts CHANGED
@@ -2,33 +2,1455 @@
2
2
  * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- export { AppBarComponent } from './appbar/appbar.component';
6
- export { AppBarSectionComponent } from './appbar/appbar-section.component';
7
- export { AppBarSpacerComponent } from './appbar/appbar-spacer.component';
8
- export { AppBarPosition } from './appbar/models/position';
9
- export { AppBarPositionMode } from './appbar/models/position-mode';
10
- export { AppBarThemeColor } from './appbar/models/theme-color';
11
- export { AppBarModule } from './appbar.module';
12
- export { NavigationModule } from './navigation.module';
13
- export { BreadCrumbComponent } from './breadcrumb/breadcrumb.component';
14
- export { BreadCrumbItem } from './breadcrumb/models/breadcrumb-item.interface';
15
- export { BreadCrumbCollapseMode } from './breadcrumb/models/collapse-mode';
16
- export { BreadcrumbSize } from './breadcrumb/models/breadcrumb-size';
17
- export { BreadCrumbItemTemplateDirective } from './breadcrumb/template-directives/item-template.directive';
18
- export { BreadCrumbModule } from './breadcrumb.module';
19
- export { BottomNavigationComponent } from './bottomnavigation/bottomnavigation.component';
20
- export { BottomNavigationItemTemplateDirective } from './bottomnavigation/templates/item-template.directive';
21
- export { BottomNavigationItem } from './bottomnavigation/types/bottomnavigation-item';
22
- export { BottomNavigationItemFlow } from './bottomnavigation/types/bottomnavigation-item-flow';
23
- export { BottomNavigationThemeColor } from './bottomnavigation/types/bottomnavigation-theme-color';
24
- export { BottomNavigationFill } from './bottomnavigation/types/bottomnavigation-fill';
25
- export { BottomNavigationPositionMode } from './bottomnavigation/types/bottomnavigation-position-mode';
26
- export { BottomNavigationSelectEvent } from './bottomnavigation/events/select-event';
27
- export { BottomNavigationModule } from './bottomnavigation.module';
28
- export { BreadCrumbItemComponent } from './breadcrumb/breadcrumb-item.component';
29
- export { BreadCrumbListComponent } from './breadcrumb/list.component';
30
- export { ActionSheetComponent } from './actionsheet/actionsheet.component';
31
- export { ActionSheetViewComponent } from './actionsheet/actionsheet-view.component';
32
- export { ActionSheetItem, ActionSheetItemGroup, ActionSheetItemClickEvent, ActionSheetHeaderTemplateDirective, ActionSheetItemTemplateDirective, ActionSheetContentTemplateDirective, ActionSheetFooterTemplateDirective, ActionSheetAnimation, ActionSheetActionsLayout, ActionSheetActionsOrientation, ActionSheetActionsAlignment, ActionSheetAction, ActionSheetTemplateDirective } from './actionsheet/models';
33
- export { ActionSheetModule } from './actionsheet.module';
34
- export * from './directives';
5
+ import * as i0 from '@angular/core';
6
+ import { AfterViewInit, OnDestroy, ElementRef, Renderer2, TemplateRef, NgZone, OnChanges, EventEmitter, QueryList, ChangeDetectorRef, SimpleChanges, OnInit } from '@angular/core';
7
+ import { LocalizationService } from '@progress/kendo-angular-l10n';
8
+ import { SVGIcon } from '@progress/kendo-svg-icons';
9
+ import { ButtonSize, ButtonFillMode, ButtonThemeColor } from '@progress/kendo-angular-buttons';
10
+ import { AnimationBuilder } from '@angular/animations';
11
+ import { Observable } from 'rxjs';
12
+ import { ResizeSensorComponent } from '@progress/kendo-angular-common';
13
+ import { SVGIcon as SVGIcon$1 } from '@progress/kendo-angular-icons';
14
+
15
+ /**
16
+ * Represents the position options of the AppBar
17
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/appbar/positioning#position)).
18
+ *
19
+ * * The possible values are:
20
+ * * `top`—Places the AppBar at the top of the content. This setting requires rendering the AppBar before the main page content. In [`fixed mode`](https://www.telerik.com/kendo-angular-ui/components/navigation/api/appbarcomponent#positionMode), this value applies a `top: 0` CSS style and adds a `box-shadow` to the bottom of the AppBar.
21
+ * * `bottom`—Places the AppBar at the bottom of the content. This setting requires rendering the AppBar after the main page content. In [`fixed mode`](https://www.telerik.com/kendo-angular-ui/components/navigation/api/appbarcomponent#positionMode), this value applies a `bottom: 0` CSS style and adds a `box-shadow` to the top of the AppBar.
22
+ *
23
+ */
24
+ type AppBarPosition = 'top' | 'bottom';
25
+
26
+ /**
27
+ * Represents the possible theme colors of the AppBar
28
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/appbar/theme-color)).
29
+ * The theme color will be applied as a background color to the component.
30
+ *
31
+ * * The possible values are:
32
+ * * `base`—Applies base coloring value.
33
+ * * `primary`—Applies primary coloring value.
34
+ * * `secondary`—Applies secondary coloring value.
35
+ * * `tertiary`—Applies tertiary coloring value.
36
+ * * `inverse`—Applies inverse coloring value.
37
+ *
38
+ */
39
+ type AppBarThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'inverse';
40
+
41
+ /**
42
+ * Represents the available position modes of the AppBar ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/appbar/positioning#position-mode)).
43
+ *
44
+ * The possible values are:
45
+ * * `static`—Positions the AppBar according to the normal flow of the page.
46
+ * * `sticky`—Positions the AppBar based on the user's scroll position. A sticky element toggles between the static and fixed CSS [`position`](https://developer.mozilla.org/en-US/docs/Web/CSS/position) property, depending on the scroll position.
47
+ * * `fixed`—Positions the AppBar relative to the viewport. The component always stays in the same place even if the page is scrolled.
48
+ */
49
+ type AppBarPositionMode = 'static' | 'sticky' | 'fixed';
50
+
51
+ /**
52
+ * Represents the [Kendo UI AppBar component for Angular](https://www.telerik.com/kendo-angular-ui/components/navigation/appbar).
53
+ *
54
+ * Use the AppBar component to display information, actions, brand titles, and additional navigation on the current screen.
55
+ *
56
+ * @example
57
+ * ```html
58
+ * <kendo-appbar>
59
+ * <kendo-appbar-section>
60
+ * <h2>Page Title</h2>
61
+ * </kendo-appbar-section>
62
+ * </kendo-appbar>
63
+ * ```
64
+ *
65
+ * @remarks
66
+ * Supported children components are: {@link AppBarSectionComponent}, {@link AppBarSpacerComponent}
67
+ */
68
+ declare class AppBarComponent implements AfterViewInit, OnDestroy {
69
+ private localizationService;
70
+ private host;
71
+ private renderer;
72
+ hostClass: boolean;
73
+ /**
74
+ * @hidden
75
+ */
76
+ direction: string;
77
+ /**
78
+ * Specifies the position of the AppBar
79
+ * ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/appbar/positioning#position)).
80
+ *
81
+ * @default 'top'
82
+ */
83
+ set position(position: AppBarPosition);
84
+ get position(): AppBarPosition;
85
+ /**
86
+ * Sets the position mode of the AppBar ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/appbar/positioning#position-mode)).
87
+ *
88
+ * @default 'static'
89
+ */
90
+ set positionMode(positionMode: AppBarPositionMode);
91
+ get positionMode(): AppBarPositionMode;
92
+ /**
93
+ * Sets the theme color of the AppBar. The theme color is applied as the background color of the component. The default value is set by the Kendo theme.
94
+ */
95
+ set themeColor(themeColor: AppBarThemeColor);
96
+ get themeColor(): AppBarThemeColor;
97
+ private dynamicRTLSubscription;
98
+ private rtl;
99
+ private _themeColor;
100
+ private _position;
101
+ private _positionMode;
102
+ constructor(localizationService: LocalizationService, host: ElementRef, renderer: Renderer2);
103
+ ngAfterViewInit(): void;
104
+ ngOnDestroy(): void;
105
+ private handleHostClasses;
106
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppBarComponent, never>;
107
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppBarComponent, "kendo-appbar", ["kendoAppBar"], { "position": { "alias": "position"; "required": false; }; "positionMode": { "alias": "positionMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; }, {}, never, ["*"], true, never>;
108
+ }
109
+
110
+ /**
111
+ * Represents the [Kendo UI AppBarSection component for Angular](https://www.telerik.com/kendo-angular-ui/components/navigation/appbar/content-arrangement#sections).
112
+ *
113
+ * Use the AppBarSection component to group content, actions, or navigation items within the AppBar.
114
+ *
115
+ * @example
116
+ * ```html
117
+ * <kendo-appbar>
118
+ * <kendo-appbar-section>
119
+ * <h2>Page Title</h2>
120
+ * </kendo-appbar-section>
121
+ * </kendo-appbar>
122
+ * ```
123
+ */
124
+ declare class AppBarSectionComponent {
125
+ hostClass: boolean;
126
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppBarSectionComponent, never>;
127
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppBarSectionComponent, "kendo-appbar-section", never, {}, {}, never, ["*"], true, never>;
128
+ }
129
+
130
+ /**
131
+ * Represents the [Kendo UI AppBarSpacer component for Angular](https://www.telerik.com/kendo-angular-ui/components/navigation/appbar/content-arrangement#spacings).
132
+ *
133
+ * Use the AppBarSpacer component to add white space between AppBar sections and customize its width.
134
+ *
135
+ * @example
136
+ * ```html
137
+ * <kendo-appbar>
138
+ * <kendo-appbar-section>
139
+ * <button kendoButton fillMode="flat" [svgIcon]="menuIcon"></button>
140
+ * </kendo-appbar-section>
141
+ *
142
+ * <kendo-appbar-spacer></kendo-appbar-spacer>
143
+ *
144
+ * <kendo-appbar-section>
145
+ * <h2>Page Title</h2>
146
+ * </kendo-appbar-section>
147
+ * </kendo-appbar>
148
+ * ```
149
+ */
150
+ declare class AppBarSpacerComponent implements AfterViewInit {
151
+ private renderer;
152
+ private element;
153
+ hostClass: boolean;
154
+ get sizedClass(): boolean;
155
+ /**
156
+ * Specifies the width of the AppBarSpacer.
157
+ *
158
+ * If not set, the AppBarSpacer will take all of the available space.
159
+ */
160
+ width: string;
161
+ constructor(renderer: Renderer2, element: ElementRef);
162
+ ngAfterViewInit(): void;
163
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppBarSpacerComponent, never>;
164
+ static ɵcmp: i0.ɵɵComponentDeclaration<AppBarSpacerComponent, "kendo-appbar-spacer", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
165
+ }
166
+
167
+ /**
168
+ * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi'])
169
+ * definition for the AppBar component.
170
+ *
171
+ * @example
172
+ * ```typescript
173
+ * import { AppBarModule } from '@progress/kendo-angular-navigation';
174
+ * import { BrowserModule } from '@angular/platform-browser';
175
+ * import { NgModule } from '@angular/core';
176
+ * import { AppComponent } from './app.component';
177
+ *
178
+ * @NgModule({
179
+ * declarations: [AppComponent],
180
+ * imports: [BrowserModule, AppBarModule],
181
+ * bootstrap: [AppComponent]
182
+ * })
183
+ * export class AppModule {}
184
+ * ```
185
+ */
186
+ declare class AppBarModule {
187
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppBarModule, never>;
188
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AppBarModule, never, [typeof AppBarComponent, typeof AppBarSectionComponent, typeof AppBarSpacerComponent], [typeof AppBarComponent, typeof AppBarSectionComponent, typeof AppBarSpacerComponent]>;
189
+ static ɵinj: i0.ɵɵInjectorDeclaration<AppBarModule>;
190
+ }
191
+
192
+ /**
193
+ * Defines the group for an ActionSheet item.
194
+ *
195
+ * - `top`&mdash;Renders the item above the separator.
196
+ * - `bottom`&mdash;Renders the item below the separator.
197
+ */
198
+ type ActionSheetItemGroup = 'top' | 'bottom';
199
+
200
+ /**
201
+ * Represents the configuration for an ActionSheet item.
202
+ */
203
+ interface ActionSheetItem {
204
+ /**
205
+ * Specifies the text content of the ActionSheet item.
206
+ */
207
+ title?: string;
208
+ /**
209
+ * Defines the name of an existing [font icon](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list) to render inside the item. The icon is rendered in a `span.k-icon` element.
210
+ */
211
+ icon?: string;
212
+ /**
213
+ * Defines an [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to render within the ActionSheet item.
214
+ */
215
+ svgIcon?: SVGIcon;
216
+ /**
217
+ * Defines one or more CSS classes to apply to a span element inside the item. Allows using custom icons.
218
+ */
219
+ iconClass?: string;
220
+ /**
221
+ * Specifies the group for the item. Use `top` to render the item above the separator, or `bottom` to render below it.
222
+ */
223
+ group?: ActionSheetItemGroup;
224
+ /**
225
+ * Sets additional text rendered below the item's title.
226
+ */
227
+ description?: string;
228
+ /**
229
+ * Specifies whether the ActionSheet item is initially disabled.
230
+ *
231
+ * @default false
232
+ */
233
+ disabled?: boolean;
234
+ /**
235
+ * Defines the size of the icon. Accepts any valid CSS font-size value.
236
+ */
237
+ iconSize?: string;
238
+ /**
239
+ * Sets the color of the icon. Accepts `inherit`, `default`, `primary`, `secondary`, `tertiary`, `info`, `success`, `warning`, `error`, `dark`, `light`, `inverted`, or any hexadecimal value.
240
+ */
241
+ iconColor?: string;
242
+ /**
243
+ * Specifies the CSS classes to apply to the item. Supports all value types accepted by [`ngClass`](link:site.data.urls.angular['ngclassapi']).
244
+ */
245
+ cssClass?: any;
246
+ /**
247
+ * Specifies the CSS styles to apply to the item. Supports all value types accepted by [`ngStyle`](link:site.data.urls.angular['ngstyleapi']).
248
+ */
249
+ cssStyle?: any;
250
+ }
251
+
252
+ /**
253
+ * Provides the event data for the `itemClick` event of the ActionSheet component.
254
+ *
255
+ * Use this event to access the clicked item and the original DOM event.
256
+ */
257
+ declare class ActionSheetItemClickEvent {
258
+ /**
259
+ * Provides the ActionSheet item that was clicked.
260
+ */
261
+ item: ActionSheetItem;
262
+ /**
263
+ * Represents the original DOM event that triggered the `itemClick` event.
264
+ */
265
+ originalEvent: any;
266
+ }
267
+
268
+ /**
269
+ * Represents a template for customizing the header content of the ActionSheet. If you implement this template, it will override the `title` and `subtitle` of the ActionSheet.
270
+ * To define the template, nest an `<ng-template>` tag
271
+ * with the `kendoActionSheetHeaderTemplate` directive inside the `<kendo-actionsheet>` tag.
272
+ *
273
+ * @example
274
+ * ```html
275
+ * <kendo-actionsheet>
276
+ * <ng-template kendoActionSheetHeaderTemplate>
277
+ * <h3>Custom Header</h3>
278
+ * </ng-template>
279
+ * </kendo-actionsheet>
280
+ * ```
281
+ */
282
+ declare class ActionSheetHeaderTemplateDirective {
283
+ templateRef: TemplateRef<any>;
284
+ constructor(templateRef: TemplateRef<any>);
285
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetHeaderTemplateDirective, [{ optional: true; }]>;
286
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ActionSheetHeaderTemplateDirective, "[kendoActionSheetHeaderTemplate]", never, {}, {}, never, never, true, never>;
287
+ }
288
+
289
+ /**
290
+ * Represents a template for customizing the content of each ActionSheet item.
291
+ * To define the template, nest an `<ng-template>` tag
292
+ * with the `kendoActionSheetItemTemplate` directive inside the `<kendo-actionsheet>` tag.
293
+ *
294
+ * @example
295
+ * ```html
296
+ * <kendo-actionsheet [items]="items">
297
+ * <ng-template kendoActionSheetItemTemplate let-item>
298
+ * <span>{{ item.title }} (custom)</span>
299
+ * </ng-template>
300
+ * </kendo-actionsheet>
301
+ * ```
302
+ */
303
+ declare class ActionSheetItemTemplateDirective {
304
+ templateRef: TemplateRef<any>;
305
+ constructor(templateRef: TemplateRef<any>);
306
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetItemTemplateDirective, [{ optional: true; }]>;
307
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ActionSheetItemTemplateDirective, "[kendoActionSheetItemTemplate]", never, {}, {}, never, never, true, never>;
308
+ }
309
+
310
+ /**
311
+ * Represents a template for customizing the list content of the ActionSheet items.
312
+ * To define the template, nest an `<ng-template>` tag
313
+ * with the `kendoActionSheetContentTemplate` directive inside the `<kendo-actionsheet>` tag.
314
+ *
315
+ * @example
316
+ * ```html
317
+ * <kendo-actionsheet [items]="items">
318
+ * <ng-template kendoActionSheetContentTemplate>
319
+ * <div>Custom content here</div>
320
+ * </ng-template>
321
+ * </kendo-actionsheet>
322
+ * ```
323
+ */
324
+ declare class ActionSheetContentTemplateDirective {
325
+ templateRef: TemplateRef<any>;
326
+ constructor(templateRef: TemplateRef<any>);
327
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetContentTemplateDirective, [{ optional: true; }]>;
328
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ActionSheetContentTemplateDirective, "[kendoActionSheetContentTemplate]", never, {}, {}, never, never, true, never>;
329
+ }
330
+
331
+ /**
332
+ * Represents a template for customizing the footer of the ActionSheet.
333
+ * To define the template, nest an `<ng-template>` tag
334
+ * with the `kendoActionSheetFooterTemplate` directive inside the `<kendo-actionsheet>` tag.
335
+ *
336
+ * @example
337
+ * ```html
338
+ * <kendo-actionsheet>
339
+ * <ng-template kendoActionSheetFooterTemplate>
340
+ * <button kendoButton>Custom Footer Button</button>
341
+ * </ng-template>
342
+ * </kendo-actionsheet>
343
+ * ```
344
+ */
345
+ declare class ActionSheetFooterTemplateDirective {
346
+ templateRef: TemplateRef<any>;
347
+ constructor(templateRef: TemplateRef<any>);
348
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetFooterTemplateDirective, [{ optional: true; }]>;
349
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ActionSheetFooterTemplateDirective, "[kendoActionSheetFooterTemplate]", never, {}, {}, never, never, true, never>;
350
+ }
351
+
352
+ /**
353
+ * Represents the settings of the opening and closing animations for the ActionSheet ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/actionsheet/animations)).
354
+ */
355
+ interface ActionSheetAnimation {
356
+ /**
357
+ * Specifies the duration of the ActionSheet opening and closing animations in milliseconds.
358
+ *
359
+ * @default 300
360
+ */
361
+ duration?: number;
362
+ }
363
+
364
+ /**
365
+ * Represents a template for customizing the overall content of the ActionSheet.
366
+ * To define the template, nest an `<ng-template>` tag
367
+ * with the `kendoActionSheetTemplate` directive inside the `<kendo-actionsheet>` tag.
368
+ *
369
+ * @example
370
+ * ```html
371
+ * <kendo-actionsheet>
372
+ * <ng-template kendoActionSheetTemplate>
373
+ * <div>Custom ActionSheet content</div>
374
+ * </ng-template>
375
+ * </kendo-actionsheet>
376
+ * ```
377
+ */
378
+ declare class ActionSheetTemplateDirective {
379
+ templateRef: TemplateRef<any>;
380
+ constructor(templateRef: TemplateRef<any>);
381
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetTemplateDirective, [{ optional: true; }]>;
382
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ActionSheetTemplateDirective, "[kendoActionSheetTemplate]", never, {}, {}, never, never, true, never>;
383
+ }
384
+
385
+ /**
386
+ * Defines the possible orientations for ActionSheet action buttons.
387
+ * - `horizontal`&mdash;Lays out actions in a horizontal row.
388
+ * - `vertical`&mdash;Stacks actions vertically.
389
+ */
390
+ type ActionSheetActionsOrientation = 'horizontal' | 'vertical';
391
+ /**
392
+ * Defines the possible alignments for the ActionSheet action buttons.
393
+ * - `start`&mdash;Aligns actions to the start of the container.
394
+ * - `center`&mdash;Centers actions within the container.
395
+ * - `end`&mdash;Aligns actions to the end of the container.
396
+ * - `stretched`&mdash;Stretches actions to fill the available space.
397
+ * - `justify`&mdash;Distributes actions evenly across the container.
398
+ */
399
+ type ActionSheetActionsAlignment = 'start' | 'center' | 'end' | 'stretched' | 'justify';
400
+ /**
401
+ * Represents the layout configuration options for the ActionSheet action buttons.
402
+ */
403
+ interface ActionSheetActionsLayout {
404
+ /**
405
+ * Specifies the orientation of the actions.
406
+ *
407
+ * @default horizontal
408
+ */
409
+ orientation?: ActionSheetActionsOrientation;
410
+ /**
411
+ * Specifies the alignment of the actions within the container.
412
+ *
413
+ * @default stretched
414
+ */
415
+ alignment?: ActionSheetActionsAlignment;
416
+ }
417
+
418
+ /**
419
+ * Describes the configuration for an ActionSheet action button.
420
+ */
421
+ interface ActionSheetAction {
422
+ /**
423
+ * Specifies the unique identifier of the action button.
424
+ */
425
+ id?: string | number;
426
+ /**
427
+ * Sets the text content of the action button.
428
+ */
429
+ text?: string;
430
+ /**
431
+ * Sets the [font icon](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list) for the action button.
432
+ */
433
+ icon?: string;
434
+ /**
435
+ * Specifies an [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) for the action button.
436
+ */
437
+ svgIcon?: SVGIcon;
438
+ /**
439
+ * Specifies the `title` attribute for the action button. The title appears as the default tooltip.
440
+ *
441
+ * @remarks
442
+ * This option is related to accessibility.
443
+ */
444
+ title?: string;
445
+ /**
446
+ * Sets the size of the action button.
447
+ */
448
+ size?: ButtonSize;
449
+ /**
450
+ * Defines the fill mode of the action button.
451
+ */
452
+ fillMode?: ButtonFillMode;
453
+ /**
454
+ * Specifies the theme color of the action button.
455
+ */
456
+ themeColor?: ButtonThemeColor;
457
+ }
458
+
459
+ /**
460
+ * @hidden
461
+ *
462
+ * Represents the [Kendo UI ActionSheetView component for Angular].
463
+ * Used to display multiple views.
464
+ */
465
+ declare class ActionSheetViewComponent implements AfterViewInit {
466
+ actionSheet: ActionSheetComponent;
467
+ private renderer;
468
+ private host;
469
+ private zone;
470
+ title: string;
471
+ subtitle: string;
472
+ titleId: string;
473
+ hostClass: boolean;
474
+ transitionDuration: string;
475
+ transitionProperty: string;
476
+ headerTemplate: ActionSheetHeaderTemplateDirective;
477
+ contentTemplate: ActionSheetContentTemplateDirective;
478
+ footerTemplate: ActionSheetFooterTemplateDirective;
479
+ actionSheetTemplate: ActionSheetTemplateDirective;
480
+ ngAfterViewInit(): void;
481
+ constructor(actionSheet: ActionSheetComponent, renderer: Renderer2, host: ElementRef, zone: NgZone);
482
+ get orientationClass(): string;
483
+ get alignmentClass(): string;
484
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetViewComponent, [{ optional: true; host: true; }, null, null, null]>;
485
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionSheetViewComponent, "kendo-actionsheet-view", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "titleId": { "alias": "titleId"; "required": false; }; }, {}, ["headerTemplate", "contentTemplate", "footerTemplate", "actionSheetTemplate"], never, true, never>;
486
+ }
487
+
488
+ /**
489
+ * Represents the [Kendo UI ActionSheet component for Angular](https://www.telerik.com/kendo-angular-ui/components/navigation/actionsheet).
490
+ * Use this component to display a set of choices related to a user-initiated task in a modal sheet that slides up from the bottom of the screen.
491
+ *
492
+ * @example
493
+ * ```html
494
+ * <kendo-actionsheet [items]="actionItems" [expanded]="true">
495
+ * </kendo-actionsheet>
496
+ * ```
497
+ */
498
+ declare class ActionSheetComponent implements AfterViewInit, OnDestroy, OnChanges {
499
+ element: ElementRef;
500
+ private ngZone;
501
+ private renderer;
502
+ private localizationService;
503
+ private builder;
504
+ private cdr;
505
+ /**
506
+ * @hidden
507
+ */
508
+ currentView: number;
509
+ /**
510
+ * @hidden
511
+ */
512
+ get hostClass(): boolean;
513
+ /**
514
+ * @hidden
515
+ */
516
+ direction: string;
517
+ /**
518
+ * Specifies the action buttons displayed in the ActionSheet footer.
519
+ */
520
+ actions: ActionSheetAction[];
521
+ /**
522
+ * Configures the layout of the action buttons in the footer. By default, actions are arranged horizontally and stretched to fill the container.
523
+ */
524
+ actionsLayout: ActionSheetActionsLayout;
525
+ /**
526
+ * Determines whether the ActionSheet closes when the overlay is clicked.
527
+ *
528
+ * @default false
529
+ */
530
+ overlayClickClose: boolean;
531
+ /**
532
+ * Sets the title text displayed in the ActionSheet header.
533
+ */
534
+ title: string;
535
+ /**
536
+ * Sets the subtitle text displayed below the title in the header.
537
+ */
538
+ subtitle: string;
539
+ /**
540
+ * Provides the collection of items rendered in the ActionSheet content area.
541
+ */
542
+ items: Array<ActionSheetItem>;
543
+ /**
544
+ * Applies CSS classes to the inner ActionSheet element. Accepts any value supported by [`ngClass`](link:site.data.urls.angular['ngclassapi']).
545
+ */
546
+ set cssClass(value: any);
547
+ get cssClass(): any;
548
+ /**
549
+ * Applies inline styles to the inner ActionSheet element. Accepts any value supported by [`ngStyle`](link:site.data.urls.angular['ngstyleapi']).
550
+ */
551
+ cssStyle: any;
552
+ /**
553
+ * Configures the opening and closing animations for the ActionSheet ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/actionsheet/animations)).
554
+ *
555
+ * @default true
556
+ */
557
+ animation: boolean | ActionSheetAnimation;
558
+ /**
559
+ * Controls whether the ActionSheet is expanded or collapsed.
560
+ *
561
+ * @default false
562
+ */
563
+ expanded: boolean;
564
+ /**
565
+ * Sets the `aria-labelledby` attribute of the ActionSheet wrapper element.
566
+ * Use this option when the built-in header element is replaced through the [`ActionSheetHeaderTemplate`](https://www.telerik.com/kendo-angular-ui/components/navigation/api/actionsheetheadertemplatedirective)
567
+ * or [`ActionSheetContentTemplate`](https://www.telerik.com/kendo-angular-ui/components/navigation/api/actionsheetcontenttemplatedirective).
568
+ *
569
+ * @remarks
570
+ * This property is related to accessibility.
571
+ */
572
+ titleId: string;
573
+ /**
574
+ * @hidden
575
+ *
576
+ * Determines if the ActionSheet should focus the first focusable element when opened.
577
+ */
578
+ initialFocus: boolean;
579
+ /**
580
+ * Fires when the `expanded` property of the component is updated.
581
+ * You can use this event to provide two-way binding for the `expanded` property.
582
+ */
583
+ expandedChange: EventEmitter<boolean>;
584
+ /**
585
+ * Fires when any of the ActionSheet action buttons is clicked.
586
+ */
587
+ action: EventEmitter<ActionSheetAction>;
588
+ /**
589
+ * Fires when the ActionSheet is expanded and its animation is complete.
590
+ */
591
+ expand: EventEmitter<any>;
592
+ /**
593
+ * Fires when the ActionSheet is collapsed and its animation is complete.
594
+ */
595
+ collapse: EventEmitter<any>;
596
+ /**
597
+ * Fires when an ActionSheet item is clicked.
598
+ */
599
+ itemClick: EventEmitter<ActionSheetItemClickEvent>;
600
+ /**
601
+ * Fires when the modal overlay is clicked.
602
+ */
603
+ overlayClick: EventEmitter<any>;
604
+ /**
605
+ * @hidden
606
+ */
607
+ childContainer: ElementRef;
608
+ /**
609
+ * @hidden
610
+ */
611
+ actionSheetViews: QueryList<ActionSheetViewComponent>;
612
+ /**
613
+ * @hidden
614
+ */
615
+ actionSheetTemplate: ActionSheetTemplateDirective;
616
+ /**
617
+ * @hidden
618
+ */
619
+ headerTemplate: ActionSheetHeaderTemplateDirective;
620
+ /**
621
+ * @hidden
622
+ */
623
+ contentTemplate: ActionSheetContentTemplateDirective;
624
+ /**
625
+ * @hidden
626
+ */
627
+ itemTemplate: ActionSheetItemTemplateDirective;
628
+ /**
629
+ * @hidden
630
+ */
631
+ footerTemplate: ActionSheetFooterTemplateDirective;
632
+ private _cssClass;
633
+ private dynamicRTLSubscription;
634
+ private rtl;
635
+ private domSubs;
636
+ private player;
637
+ private animationEnd;
638
+ private isFullscreen;
639
+ constructor(element: ElementRef, ngZone: NgZone, renderer: Renderer2, localizationService: LocalizationService, builder: AnimationBuilder, cdr: ChangeDetectorRef);
640
+ ngAfterViewInit(): void;
641
+ ngOnChanges(changes: SimpleChanges): void;
642
+ ngOnDestroy(): void;
643
+ /**
644
+ * @hidden
645
+ * Navigates to the next view.
646
+ */
647
+ nextView(): void;
648
+ /**
649
+ * @hidden
650
+ * Navigates to the previous view.
651
+ */
652
+ prevView(): void;
653
+ /**
654
+ * Toggles the visibility of the ActionSheet.
655
+ *
656
+ * @param expanded? - Boolean. Specifies if the ActionSheet will be expanded or collapsed.
657
+ */
658
+ toggle(expanded?: boolean): void;
659
+ /**
660
+ * @hidden
661
+ */
662
+ get orientationClass(): string;
663
+ /**
664
+ * @hidden
665
+ */
666
+ get alignmentClass(): string | null;
667
+ /**
668
+ * @hidden
669
+ */
670
+ get topGroupItems(): Array<ActionSheetItem>;
671
+ /**
672
+ * @hidden
673
+ */
674
+ get bottomGroupItems(): Array<ActionSheetItem>;
675
+ /**
676
+ * @hidden
677
+ */
678
+ onItemClick(ev: ActionSheetItemClickEvent): void;
679
+ /**
680
+ * @hidden
681
+ */
682
+ onOverlayClick(): void;
683
+ /**
684
+ * @hidden
685
+ */
686
+ get shouldRenderSeparator(): boolean;
687
+ /**
688
+ * @hidden
689
+ */
690
+ get childContainerStyle(): string;
691
+ private initDomEvents;
692
+ private setCssVariables;
693
+ private hasFullscreenClass;
694
+ private onKeyDown;
695
+ private handleInitialFocus;
696
+ private keepFocusWithinComponent;
697
+ private triggerItemClick;
698
+ private setExpanded;
699
+ private onAnimationEnd;
700
+ private playAnimation;
701
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetComponent, never>;
702
+ static ɵcmp: i0.ɵɵComponentDeclaration<ActionSheetComponent, "kendo-actionsheet", ["kendoActionSheet"], { "actions": { "alias": "actions"; "required": false; }; "actionsLayout": { "alias": "actionsLayout"; "required": false; }; "overlayClickClose": { "alias": "overlayClickClose"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "items": { "alias": "items"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "cssStyle": { "alias": "cssStyle"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "titleId": { "alias": "titleId"; "required": false; }; "initialFocus": { "alias": "initialFocus"; "required": false; }; }, { "expandedChange": "expandedChange"; "action": "action"; "expand": "expand"; "collapse": "collapse"; "itemClick": "itemClick"; "overlayClick": "overlayClick"; }, ["actionSheetTemplate", "headerTemplate", "contentTemplate", "itemTemplate", "footerTemplate", "actionSheetViews"], ["kendo-actionsheet-view"], true, never>;
703
+ }
704
+
705
+ /**
706
+ * @hidden
707
+ */
708
+ declare class PreventableEvent {
709
+ private prevented;
710
+ /**
711
+ * Prevents the default action for a specified event.
712
+ * In this way, the source component suppresses
713
+ * the built-in behavior that follows the event.
714
+ */
715
+ preventDefault(): void;
716
+ /**
717
+ * Returns `true` if the event was prevented
718
+ * by any of its subscribers.
719
+ *
720
+ * @returns `true` if the default action was prevented.
721
+ * Otherwise, returns `false`.
722
+ */
723
+ isDefaultPrevented(): boolean;
724
+ /**
725
+ * @hidden
726
+ */
727
+ constructor(args?: any);
728
+ }
729
+
730
+ /**
731
+ * Provides the arguments for the `select` event of the BottomNavigation.
732
+ */
733
+ declare class BottomNavigationSelectEvent extends PreventableEvent {
734
+ /**
735
+ * Represents the index of the selected item in the `items` collection.
736
+ */
737
+ index: number;
738
+ /**
739
+ * Represents the selected BottomNavigation item.
740
+ */
741
+ item: any;
742
+ /**
743
+ * Provides the DOM event that triggered the selection.
744
+ */
745
+ originalEvent: any;
746
+ /**
747
+ * Provides a reference to the BottomNavigation instance that triggered the event.
748
+ */
749
+ sender: BottomNavigationComponent;
750
+ /**
751
+ * @hidden
752
+ */
753
+ constructor(args: any);
754
+ }
755
+
756
+ /**
757
+ * Represents the possible options to control how the icon and text label are positioned in the BottomNavigation items.
758
+ *
759
+ * The possible values are:
760
+ * * `vertical`&mdash;Renders the text below the icon.
761
+ * * `horizontal`&mdash;Renders the icon and the text on the same line.
762
+ */
763
+ type BottomNavigationItemFlow = 'vertical' | 'horizontal';
764
+
765
+ /**
766
+ * Represents the possible options for the fill style of the BottomNavigation ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/appearance)).
767
+ *
768
+ * The possible values are:
769
+ * * `flat`&mdash;Sets the BottomNavigation fill style to a flat, borderless appearance.
770
+ * * `solid`&mdash;Sets the BottomNavigation fill style to a solid, filled background.
771
+ */
772
+ type BottomNavigationFill = 'flat' | 'solid';
773
+
774
+ /**
775
+ * Represents the options to control the position and behavior of the BottomNavigation when the page is scrollable ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/position-mode)).
776
+ *
777
+ * The possible values are:
778
+ * * `fixed`&mdash;Positions the BottomNavigation at the bottom of the viewport, regardless of the page scroll position.
779
+ * * `sticky`&mdash;Positions the BottomNavigation at the end of the scrollable container.
780
+ */
781
+ type BottomNavigationPositionMode = 'fixed' | 'sticky';
782
+
783
+ /**
784
+ * Represents the possible theme colors of the BottomNavigation ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/appearance)).
785
+ *
786
+ * The possible values are:
787
+ * * `base`&mdash;Applies base coloring value.
788
+ * * `primary`&mdash;Applies primary coloring value.
789
+ * * `secondary`&mdash;Applies secondary coloring value.
790
+ * * `tertiary`&mdash;Applies tertiary coloring value.
791
+ * * `inverse`&mdash;Applies inverse coloring value.
792
+ */
793
+ type BottomNavigationThemeColor = 'base' | 'primary' | 'secondary' | 'tertiary' | 'inverse';
794
+
795
+ /**
796
+ * Represents a template that defines the content of the BottomNavigation items. Use this directive to customize the appearance of each navigation item.
797
+ * To define the template, nest an `<ng-template>` tag with the `kendoBottomNavigationItemTemplate` directive inside the `<kendo-bottomnavigation>` tag ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/templates)).
798
+ *
799
+ * @example
800
+ * ```html
801
+ * <kendo-bottomnavigation [items]="items">
802
+ * <ng-template kendoBottomNavigationItemTemplate let-item>
803
+ * <span>{{ item.text }}</span>
804
+ * </ng-template>
805
+ * </kendo-bottomnavigation>
806
+ * ```
807
+ */
808
+ declare class BottomNavigationItemTemplateDirective {
809
+ templateRef: TemplateRef<any>;
810
+ constructor(templateRef: TemplateRef<any>);
811
+ static ɵfac: i0.ɵɵFactoryDeclaration<BottomNavigationItemTemplateDirective, [{ optional: true; }]>;
812
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BottomNavigationItemTemplateDirective, "[kendoBottomNavigationItemTemplate]", never, {}, {}, never, never, true, never>;
813
+ }
814
+
815
+ /**
816
+ * Represents the [Kendo UI BottomNavigation component for Angular](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation).
817
+ *
818
+ * Use the BottomNavigation component to let users quickly switch between primary views in your app.
819
+ *
820
+ * @example
821
+ * ```typescript
822
+ * @Component({
823
+ * selector: 'my-app',
824
+ * template: `
825
+ * <kendo-bottomnavigation [items]="items"></kendo-bottomnavigation>
826
+ * `
827
+ * })
828
+ * class AppComponent {
829
+ * public items: Array<any> = [
830
+ * { text: 'Inbox', icon: 'envelop', selected: true },
831
+ * { text: 'Calendar', icon: 'calendar'},
832
+ * { text: 'Profile', icon: 'user'}
833
+ * ];
834
+ * }
835
+ * ```
836
+ */
837
+ declare class BottomNavigationComponent implements OnInit, AfterViewInit, OnDestroy {
838
+ private localization;
839
+ private hostElement;
840
+ private ngZone;
841
+ private changeDetector;
842
+ private renderer;
843
+ /**
844
+ * Provides the collection of items rendered in the BottomNavigation ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/items)).
845
+ */
846
+ items: any[];
847
+ /**
848
+ * Shows a top border on the BottomNavigation ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/appearance)).
849
+ *
850
+ * @default false
851
+ */
852
+ border: boolean;
853
+ /**
854
+ * Disables the entire BottomNavigation.
855
+ *
856
+ * @default false
857
+ */
858
+ disabled: boolean;
859
+ /**
860
+ * Sets the fill style of the BottomNavigation ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/appearance)). The default value is set by the Kendo theme.
861
+ */
862
+ set fill(fill: BottomNavigationFill);
863
+ get fill(): BottomNavigationFill;
864
+ /**
865
+ * Controls how the icon and text label are positioned in the BottomNavigation items.
866
+ *
867
+ * @default 'vertical'
868
+ */
869
+ set itemFlow(itemFlow: BottomNavigationItemFlow);
870
+ get itemFlow(): BottomNavigationItemFlow;
871
+ /**
872
+ * Sets the position and behavior of the BottomNavigation when the page is scrollable ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/position-mode)).
873
+ *
874
+ * @default 'fixed'
875
+ */
876
+ set positionMode(positionMode: BottomNavigationPositionMode);
877
+ get positionMode(): BottomNavigationPositionMode;
878
+ /**
879
+ * Sets the theme color of the BottomNavigation ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/appearance)).
880
+ */
881
+ set themeColor(themeColor: BottomNavigationThemeColor);
882
+ get themeColor(): BottomNavigationThemeColor;
883
+ /**
884
+ * Fires when a user selects an item. This event is preventable.
885
+ */
886
+ select: EventEmitter<BottomNavigationSelectEvent>;
887
+ /**
888
+ * @hidden
889
+ */
890
+ hostClass: boolean;
891
+ /**
892
+ * @hidden
893
+ */
894
+ get borderClass(): boolean;
895
+ /**
896
+ * @hidden
897
+ */
898
+ get disabledClass(): boolean;
899
+ /**
900
+ * @hidden
901
+ */
902
+ role: string;
903
+ /**
904
+ * @hidden
905
+ */
906
+ direction: string;
907
+ /**
908
+ * @hidden
909
+ */
910
+ itemTemplate: BottomNavigationItemTemplateDirective;
911
+ /**
912
+ * @hidden
913
+ */
914
+ selectedIdx: number;
915
+ private _fill;
916
+ private _itemFlow;
917
+ private _positionMode;
918
+ private _themeColor;
919
+ private _nativeHostElement;
920
+ private dynamicRTLSubscription;
921
+ private subscriptions;
922
+ private rtl;
923
+ constructor(localization: LocalizationService, hostElement: ElementRef, ngZone: NgZone, changeDetector: ChangeDetectorRef, renderer: Renderer2);
924
+ /**
925
+ * @hidden
926
+ */
927
+ ngOnInit(): void;
928
+ /**
929
+ * @hidden
930
+ */
931
+ ngAfterViewInit(): void;
932
+ /**
933
+ * @hidden
934
+ */
935
+ ngOnDestroy(): void;
936
+ /**
937
+ * @hidden
938
+ */
939
+ selectItem(idx: number, args: any): void;
940
+ private applyClasses;
941
+ private initDomEvents;
942
+ private clickHandler;
943
+ private keyDownHandler;
944
+ private getBottomNavigationItemIndex;
945
+ static ɵfac: i0.ɵɵFactoryDeclaration<BottomNavigationComponent, never>;
946
+ static ɵcmp: i0.ɵɵComponentDeclaration<BottomNavigationComponent, "kendo-bottomnavigation", ["kendoBottomNavigation"], { "items": { "alias": "items"; "required": false; }; "border": { "alias": "border"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "itemFlow": { "alias": "itemFlow"; "required": false; }; "positionMode": { "alias": "positionMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; }, { "select": "select"; }, ["itemTemplate"], never, true, never>;
947
+ }
948
+
949
+ /**
950
+ * @hidden
951
+ */
952
+ interface BreadCrumbItemContext {
953
+ collapsed: boolean;
954
+ isLast: boolean;
955
+ isFirst: boolean;
956
+ }
957
+ /**
958
+ * @hidden
959
+ */
960
+ interface BreadCrumbItemModel {
961
+ context: BreadCrumbItemContext;
962
+ data: BreadCrumbItem;
963
+ }
964
+ /**
965
+ * Represents an interface that defines the structure of individual Breadcrumb items.
966
+ */
967
+ interface BreadCrumbItem {
968
+ /**
969
+ * Sets the text content for the item. If not provided, the numeric item index appears by default.
970
+ */
971
+ text?: string;
972
+ /**
973
+ * Provides a title for the item ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb)). The value appears as a `title` attribute on the element.
974
+ *
975
+ * @remarks
976
+ * This option is related to accessibility.
977
+ */
978
+ title?: string;
979
+ /**
980
+ * Determines if the item is disabled ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb/item-appearance)#disabled-items). The value appears as an `aria-disabled` attribute on the element.
981
+ *
982
+ * @default false
983
+ */
984
+ disabled?: boolean;
985
+ /**
986
+ * Specifies the name of a [built-in font icon](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list) in a Kendo UI theme ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb/item-appearance#displaying-font-icons)). The icon appears inside the item in a `span.k-icon` element.
987
+ */
988
+ icon?: string;
989
+ /**
990
+ * Sets an [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to display inside the item ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb/item-appearance#displaying-svg-icons)).
991
+ */
992
+ svgIcon?: SVGIcon;
993
+ /**
994
+ * Applies one or more CSS classes to a `span` element inside the item ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb/item-appearance#displaying-font-icons)). Use this to show custom icons.
995
+ */
996
+ iconClass?: string;
997
+ /**
998
+ * Provides a URL for an `img` element inside the item ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb/item-appearance#displaying-item-images)). The URL can be relative or absolute. If relative, it is resolved against the web page URL.
999
+ */
1000
+ imageUrl?: string;
1001
+ }
1002
+
1003
+ /**
1004
+ * Defines the collapse mode of the Breadcrumb. This type provides settings to control how the breadcrumb handles overflow scenarios when there is not
1005
+ * enough space to display all items.
1006
+ *
1007
+ * The available values are:
1008
+ * - `auto`&mdash;Items are automatically collapsed based on the width of the Breadcrumb. First and last item always remain visible.
1009
+ * - `wrap`&mdash;Items are wrapped on multiple rows when their total width is bigger than the width of the BreadCrumb.
1010
+ * - `none`&mdash;All items are expanded on the same row. This scenario is useful when you need to scroll the Breadcrumb.
1011
+ *
1012
+ * For more information and example refer to the [Collapse Modes](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb/collapse-modes) article.
1013
+ */
1014
+ type BreadCrumbCollapseMode = 'auto' | 'wrap' | 'none';
1015
+
1016
+ /**
1017
+ * Represents a template that defines the content of a Breadcrumb item. This directive allows you to customize how each Breadcrumb item appears by providing
1018
+ * your own template. You can access the item data and customize the display with icons, styling, or additional content beyond the default text representation.
1019
+ *
1020
+ * To define the template, nest an `<ng-template>` tag with the `kendoBreadCrumbItemTemplate` directive inside the `<kendo-breadcrumb>` tag.
1021
+ *
1022
+ * For more information and example refer to the [Templates](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb/templates) article.
1023
+ *
1024
+ * @example
1025
+ * ```html
1026
+ * <kendo-breadcrumb [items]="items">
1027
+ * <ng-template kendoBreadCrumbItemTemplate let-item="item">
1028
+ * <span>{{ item.text }}</span>
1029
+ * </ng-template>
1030
+ * </kendo-breadcrumb>
1031
+ * ```
1032
+ */
1033
+ declare class BreadCrumbItemTemplateDirective {
1034
+ templateRef: TemplateRef<any>;
1035
+ constructor(templateRef: TemplateRef<any>);
1036
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadCrumbItemTemplateDirective, [{ optional: true; }]>;
1037
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BreadCrumbItemTemplateDirective, "[kendoBreadCrumbItemTemplate]", never, {}, {}, never, never, true, never>;
1038
+ }
1039
+
1040
+ /**
1041
+ * @hidden
1042
+ */
1043
+ declare class BreadCrumbItemComponent implements OnInit, AfterViewInit {
1044
+ private el;
1045
+ item: BreadCrumbItemModel;
1046
+ collapseMode: BreadCrumbCollapseMode;
1047
+ index: number;
1048
+ itemTemplate: TemplateRef<any>;
1049
+ hostClasses: boolean;
1050
+ get isRootItem(): boolean;
1051
+ get isLastItem(): boolean;
1052
+ width: number;
1053
+ disabled: boolean;
1054
+ constructor(el: ElementRef<HTMLLIElement>);
1055
+ ngOnInit(): void;
1056
+ ngAfterViewInit(): void;
1057
+ onImageLoad(): void;
1058
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadCrumbItemComponent, never>;
1059
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadCrumbItemComponent, "[kendoBreadCrumbItem]", never, { "item": { "alias": "item"; "required": false; }; "collapseMode": { "alias": "collapseMode"; "required": false; }; "index": { "alias": "index"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; }, {}, never, ["[kendoBreadCrumbSeparator]"], true, never>;
1060
+ }
1061
+
1062
+ /**
1063
+ * @hidden
1064
+ */
1065
+ declare class BreadCrumbListComponent implements OnDestroy {
1066
+ private el;
1067
+ private zone;
1068
+ items: BreadCrumbItemModel[];
1069
+ itemTemplate: TemplateRef<HTMLElement>;
1070
+ collapseMode: BreadCrumbCollapseMode;
1071
+ separatorIcon: string;
1072
+ separatorSVGIcon: SVGIcon$1;
1073
+ itemClick: EventEmitter<BreadCrumbItem>;
1074
+ renderedItems: QueryList<BreadCrumbItemComponent>;
1075
+ isRootItemContainer: boolean;
1076
+ private domEventsSubscription;
1077
+ constructor(el: ElementRef<HTMLOListElement>, zone: NgZone);
1078
+ ngOnDestroy(): void;
1079
+ private getItemIndex;
1080
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadCrumbListComponent, never>;
1081
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadCrumbListComponent, "[kendoBreadCrumbList]", never, { "items": { "alias": "items"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "collapseMode": { "alias": "collapseMode"; "required": false; }; "separatorIcon": { "alias": "separatorIcon"; "required": false; }; "separatorSVGIcon": { "alias": "separatorSVGIcon"; "required": false; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
1082
+ }
1083
+
1084
+ /**
1085
+ * Represents the possible size options that control the padding of the Breadcrumb elements.
1086
+ */
1087
+ type BreadcrumbSize = 'small' | 'medium' | 'large';
1088
+
1089
+ /**
1090
+ * Represents the [Kendo UI Breadcrumb component for Angular](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb).
1091
+ *
1092
+ * Use the Breadcrumb component to allow users to navigate through a hierarchical structure. The component automatically handles overflow
1093
+ * scenarios and supports customizable separators, templates, and collapse modes.
1094
+ *
1095
+ * @example
1096
+ * ```typescript
1097
+ * @Component({
1098
+ * selector: 'my-app',
1099
+ * template: `
1100
+ * <kendo-breadcrumb
1101
+ * [items]="items"
1102
+ * (itemClick)="onItemClick($event)">
1103
+ * </kendo-breadcrumb>
1104
+ * `
1105
+ * })
1106
+ * class AppComponent {
1107
+ * public items: BreadCrumbItem[] = [
1108
+ * { text: 'Home', title: 'Home', icon: 'home' },
1109
+ * { text: 'Kids', title: 'Kids' },
1110
+ * { text: '8y-16y', title: '8y-16y', disabled: true },
1111
+ * { text: 'New collection', title: 'New collection' },
1112
+ * { text: 'Jeans', title: 'Jeans' }
1113
+ * ];
1114
+ *
1115
+ * public onItemClick(item: BreadCrumbItem): void {
1116
+ * console.log(item);
1117
+ * }
1118
+ * }
1119
+ * ```
1120
+ */
1121
+ declare class BreadCrumbComponent implements OnInit, AfterViewInit, OnDestroy {
1122
+ private localization;
1123
+ private el;
1124
+ private cdr;
1125
+ private zone;
1126
+ private renderer;
1127
+ /**
1128
+ * Configures the collection of items that will be rendered in the Breadcrumb.
1129
+ */
1130
+ set items(items: any[]);
1131
+ get items(): any[];
1132
+ /**
1133
+ * Specifies the name of a [built-in font icon](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list) in a Kendo UI theme to be rendered as a separator.
1134
+ */
1135
+ separatorIcon: string;
1136
+ /**
1137
+ * Defines an [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to be rendered as a separator.
1138
+ */
1139
+ separatorSVGIcon: SVGIcon$1;
1140
+ /**
1141
+ * Controls the collapse mode of the Breadcrumb.
1142
+ * For more information and example, refer to the [Collapse Modes](https://www.telerik.com/kendo-angular-ui/components/navigation/breadcrumb/collapse-modes) article.
1143
+ *
1144
+ * @default `auto`
1145
+ */
1146
+ set collapseMode(mode: BreadCrumbCollapseMode);
1147
+ get collapseMode(): BreadCrumbCollapseMode;
1148
+ /**
1149
+ * Determines the padding of all Breadcrumb elements. The default value is set by the Kendo theme.
1150
+ */
1151
+ set size(size: BreadcrumbSize);
1152
+ get size(): BreadcrumbSize;
1153
+ /**
1154
+ * Fires when you click a Breadcrumb item. The event will not be fired by disabled items and the last item.
1155
+ */
1156
+ itemClick: EventEmitter<BreadCrumbItem>;
1157
+ /**
1158
+ * @hidden
1159
+ */
1160
+ resizeSensor: ResizeSensorComponent;
1161
+ /**
1162
+ * @hidden
1163
+ */
1164
+ itemsContainers: QueryList<ElementRef<HTMLOListElement>>;
1165
+ /**
1166
+ * @hidden
1167
+ */
1168
+ listComponent: BreadCrumbListComponent;
1169
+ /**
1170
+ * @hidden
1171
+ */
1172
+ itemTemplate: BreadCrumbItemTemplateDirective;
1173
+ hostClasses: boolean;
1174
+ get wrapMode(): boolean;
1175
+ hostAriaLabel: string;
1176
+ get getDir(): string;
1177
+ itemsData$: Observable<BreadCrumbItemModel[]>;
1178
+ firstItem$: Observable<BreadCrumbItemModel[]>;
1179
+ private _items;
1180
+ private _collapseMode;
1181
+ private _size;
1182
+ private updateItems;
1183
+ private afterViewInit;
1184
+ private subscriptions;
1185
+ private direction;
1186
+ constructor(localization: LocalizationService, el: ElementRef<HTMLElement>, cdr: ChangeDetectorRef, zone: NgZone, renderer: Renderer2);
1187
+ ngOnInit(): void;
1188
+ ngAfterViewInit(): void;
1189
+ ngOnDestroy(): void;
1190
+ private handleResize;
1191
+ private shouldResize;
1192
+ private attachResizeHandler;
1193
+ private handleClasses;
1194
+ private resizeHandler;
1195
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadCrumbComponent, never>;
1196
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadCrumbComponent, "kendo-breadcrumb", ["kendoBreadCrumb"], { "items": { "alias": "items"; "required": false; }; "separatorIcon": { "alias": "separatorIcon"; "required": false; }; "separatorSVGIcon": { "alias": "separatorSVGIcon"; "required": false; }; "collapseMode": { "alias": "collapseMode"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "itemClick": "itemClick"; }, ["itemTemplate"], never, true, never>;
1197
+ }
1198
+
1199
+ /**
1200
+ * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi'])
1201
+ * definition for the Navigation components.
1202
+ *
1203
+ * @example
1204
+ * ```typescript
1205
+ * import { NavigationModule } from '@progress/kendo-angular-navigation';
1206
+ * import { BrowserModule } from '@angular/platform-browser';
1207
+ * import { NgModule } from '@angular/core';
1208
+ * import { AppComponent } from './app.component';
1209
+ *
1210
+ * @NgModule({
1211
+ * declarations: [AppComponent],
1212
+ * imports: [BrowserModule, NavigationModule],
1213
+ * bootstrap: [AppComponent]
1214
+ * })
1215
+ * export class AppModule {}
1216
+ * ```
1217
+ */
1218
+ declare class NavigationModule {
1219
+ static ɵfac: i0.ɵɵFactoryDeclaration<NavigationModule, never>;
1220
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationModule, never, [typeof ActionSheetComponent, typeof ActionSheetViewComponent, typeof ActionSheetHeaderTemplateDirective, typeof ActionSheetItemTemplateDirective, typeof ActionSheetContentTemplateDirective, typeof ActionSheetFooterTemplateDirective, typeof ActionSheetTemplateDirective, typeof AppBarComponent, typeof AppBarSectionComponent, typeof AppBarSpacerComponent, typeof BottomNavigationComponent, typeof BottomNavigationItemTemplateDirective, typeof BreadCrumbComponent, typeof BreadCrumbItemTemplateDirective], [typeof ActionSheetComponent, typeof ActionSheetViewComponent, typeof ActionSheetHeaderTemplateDirective, typeof ActionSheetItemTemplateDirective, typeof ActionSheetContentTemplateDirective, typeof ActionSheetFooterTemplateDirective, typeof ActionSheetTemplateDirective, typeof AppBarComponent, typeof AppBarSectionComponent, typeof AppBarSpacerComponent, typeof BottomNavigationComponent, typeof BottomNavigationItemTemplateDirective, typeof BreadCrumbComponent, typeof BreadCrumbItemTemplateDirective]>;
1221
+ static ɵinj: i0.ɵɵInjectorDeclaration<NavigationModule>;
1222
+ }
1223
+
1224
+ /**
1225
+ * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi'])
1226
+ * definition for the BreadCrumb component.
1227
+ *
1228
+ * @example
1229
+ * ```typescript
1230
+ * import { BreadCrumbModule } from '@progress/kendo-angular-navigation';
1231
+ * import { BrowserModule } from '@angular/platform-browser';
1232
+ * import { NgModule } from '@angular/core';
1233
+ * import { AppComponent } from './app.component';
1234
+ *
1235
+ * @NgModule({
1236
+ * declarations: [AppComponent],
1237
+ * imports: [BrowserModule, BreadCrumbModule],
1238
+ * bootstrap: [AppComponent]
1239
+ * })
1240
+ * export class AppModule {}
1241
+ * ```
1242
+ */
1243
+ declare class BreadCrumbModule {
1244
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadCrumbModule, never>;
1245
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BreadCrumbModule, never, [typeof BreadCrumbComponent, typeof BreadCrumbItemTemplateDirective], [typeof BreadCrumbComponent, typeof BreadCrumbItemTemplateDirective]>;
1246
+ static ɵinj: i0.ɵɵInjectorDeclaration<BreadCrumbModule>;
1247
+ }
1248
+
1249
+ /**
1250
+ * Describes the structure of a BottomNavigation item ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/items)).
1251
+ */
1252
+ interface BottomNavigationItem {
1253
+ /**
1254
+ * Disables the BottomNavigation item.
1255
+ *
1256
+ * @default false
1257
+ */
1258
+ disabled?: boolean;
1259
+ /**
1260
+ * Defines the name of an existing [font icon](https://www.telerik.com/kendo-angular-ui/components/icons/icon/icon-list) in a Kendo UI theme.
1261
+ */
1262
+ icon?: string;
1263
+ /**
1264
+ * Applies a CSS class or multiple classes separated by spaces to a span element inside the item. Allows the usage of custom icons.
1265
+ */
1266
+ iconClass?: string;
1267
+ /**
1268
+ * Sets an [`SVGIcon`](https://www.telerik.com/kendo-angular-ui/components/icons/api/svgicon) to render within the BottomNavigation item.
1269
+ */
1270
+ svgIcon?: SVGIcon;
1271
+ /**
1272
+ * Specifies whether the BottomNavigation item is selected.
1273
+ */
1274
+ selected?: boolean;
1275
+ /**
1276
+ * Sets the `tabindex` attribute of the BottomNavigation item.
1277
+ *
1278
+ * @default 0
1279
+ */
1280
+ tabIndex?: number;
1281
+ /**
1282
+ * Sets the text content of the BottomNavigation item.
1283
+ */
1284
+ text?: string;
1285
+ /**
1286
+ * Applies CSS classes to the item element of the BottomNavigation. Supports the type of values that are supported by [`ngClass`](link:site.data.urls.angular['ngclassapi']).
1287
+ */
1288
+ cssClass?: any;
1289
+ /**
1290
+ * Applies CSS styles to the item element of the BottomNavigation. Supports the type of values that are supported by [`ngStyle`](link:site.data.urls.angular['ngstyleapi']).
1291
+ */
1292
+ cssStyle?: any;
1293
+ }
1294
+
1295
+ /**
1296
+ * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi'])
1297
+ * definition for the BottomNavigation component.
1298
+ *
1299
+ * @example
1300
+ * ```typescript
1301
+ * import { BottomNavigationModule } from '@progress/kendo-angular-navigation';
1302
+ * import { BrowserModule } from '@angular/platform-browser';
1303
+ * import { NgModule } from '@angular/core';
1304
+ * import { AppComponent } from './app.component';
1305
+ *
1306
+ * @NgModule({
1307
+ * declarations: [AppComponent],
1308
+ * imports: [BrowserModule, BottomNavigationModule],
1309
+ * bootstrap: [AppComponent]
1310
+ * })
1311
+ * export class AppModule {}
1312
+ * ```
1313
+ */
1314
+ declare class BottomNavigationModule {
1315
+ static ɵfac: i0.ɵɵFactoryDeclaration<BottomNavigationModule, never>;
1316
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BottomNavigationModule, never, [typeof BottomNavigationComponent, typeof BottomNavigationItemTemplateDirective], [typeof BottomNavigationComponent, typeof BottomNavigationItemTemplateDirective]>;
1317
+ static ɵinj: i0.ɵɵInjectorDeclaration<BottomNavigationModule>;
1318
+ }
1319
+
1320
+ /**
1321
+ * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi'])
1322
+ * definition for the ActionSheet component.
1323
+ *
1324
+ * @example
1325
+ * ```typescript
1326
+ * import { ActionSheetModule } from '@progress/kendo-angular-navigation';
1327
+ * import { BrowserModule } from '@angular/platform-browser';
1328
+ * import { NgModule } from '@angular/core';
1329
+ * import { AppComponent } from './app.component';
1330
+ *
1331
+ * @NgModule({
1332
+ * declarations: [AppComponent],
1333
+ * imports: [BrowserModule, ActionSheetModule],
1334
+ * bootstrap: [AppComponent]
1335
+ * })
1336
+ * export class AppModule {}
1337
+ * ```
1338
+ */
1339
+ declare class ActionSheetModule {
1340
+ static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetModule, never>;
1341
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ActionSheetModule, never, [typeof ActionSheetComponent, typeof ActionSheetViewComponent, typeof ActionSheetHeaderTemplateDirective, typeof ActionSheetItemTemplateDirective, typeof ActionSheetContentTemplateDirective, typeof ActionSheetFooterTemplateDirective, typeof ActionSheetTemplateDirective], [typeof ActionSheetComponent, typeof ActionSheetViewComponent, typeof ActionSheetHeaderTemplateDirective, typeof ActionSheetItemTemplateDirective, typeof ActionSheetContentTemplateDirective, typeof ActionSheetFooterTemplateDirective, typeof ActionSheetTemplateDirective]>;
1342
+ static ɵinj: i0.ɵɵInjectorDeclaration<ActionSheetModule>;
1343
+ }
1344
+
1345
+ /**
1346
+ * Use this utility array to access all ActionSheet-related components and directives in a standalone Angular component.
1347
+ *
1348
+ * @example
1349
+ * ```typescript
1350
+ * import { Component } from '@angular/core';
1351
+ * import { KENDO_ACTIONSHEET } from '@progress/kendo-angular-navigation';
1352
+ *
1353
+ * @Component({
1354
+ * selector: 'my-app',
1355
+ * standalone: true,
1356
+ * imports: [KENDO_ACTIONSHEET],
1357
+ * template: `
1358
+ * <kendo-actionsheet [items]="items">
1359
+ * </kendo-actionsheet>
1360
+ * `
1361
+ * })
1362
+ * export class AppComponent {}
1363
+ * ```
1364
+ */
1365
+ declare const KENDO_ACTIONSHEET: readonly [typeof ActionSheetComponent, typeof ActionSheetViewComponent, typeof ActionSheetHeaderTemplateDirective, typeof ActionSheetItemTemplateDirective, typeof ActionSheetContentTemplateDirective, typeof ActionSheetFooterTemplateDirective, typeof ActionSheetTemplateDirective];
1366
+ /**
1367
+ * Use this utility array to access all AppBar-related components and directives in a standalone Angular component.
1368
+ *
1369
+ * @example
1370
+ * ```typescript
1371
+ * import { Component } from '@angular/core';
1372
+ * import { KENDO_APPBAR } from '@progress/kendo-angular-navigation';
1373
+ *
1374
+ * @Component({
1375
+ * selector: 'my-app',
1376
+ * standalone: true,
1377
+ * imports: [KENDO_APPBAR],
1378
+ * template: `
1379
+ * <kendo-appbar>
1380
+ * <!-- AppBar content -->
1381
+ * </kendo-appbar>
1382
+ * `
1383
+ * })
1384
+ * export class AppComponent {}
1385
+ * ```
1386
+ */
1387
+ declare const KENDO_APPBAR: readonly [typeof AppBarComponent, typeof AppBarSectionComponent, typeof AppBarSpacerComponent];
1388
+ /**
1389
+ * Use this utility array to access all BottomNavigation-related components and directives in a standalone Angular component.
1390
+ *
1391
+ * @example
1392
+ * ```typescript
1393
+ * import { Component } from '@angular/core';
1394
+ * import { KENDO_BOTTOMNAVIGATION } from '@progress/kendo-angular-navigation';
1395
+ *
1396
+ * @Component({
1397
+ * selector: 'my-app',
1398
+ * standalone: true,
1399
+ * imports: [KENDO_BOTTOMNAVIGATION],
1400
+ * template: `
1401
+ * <kendo-bottomnavigation [items]="items">
1402
+ * </kendo-bottomnavigation>
1403
+ * `
1404
+ * })
1405
+ * export class AppComponent {}
1406
+ * ```
1407
+ */
1408
+ declare const KENDO_BOTTOMNAVIGATION: readonly [typeof BottomNavigationComponent, typeof BottomNavigationItemTemplateDirective];
1409
+ /**
1410
+ * Use this utility array to access all BreadCrumb-related components and directives in a standalone Angular component.
1411
+ *
1412
+ * @example
1413
+ * ```typescript
1414
+ * import { Component } from '@angular/core';
1415
+ * import { KENDO_BREADCRUMB } from '@progress/kendo-angular-navigation';
1416
+ *
1417
+ * @Component({
1418
+ * selector: 'my-app',
1419
+ * standalone: true,
1420
+ * imports: [KENDO_BREADCRUMB],
1421
+ * template: `
1422
+ * <kendo-breadcrumb [items]="items">
1423
+ * </kendo-breadcrumb>
1424
+ * `
1425
+ * })
1426
+ * export class AppComponent {}
1427
+ * ```
1428
+ */
1429
+ declare const KENDO_BREADCRUMB: readonly [typeof BreadCrumbComponent, typeof BreadCrumbItemTemplateDirective];
1430
+ /**
1431
+ * Use this utility array to access all `@progress/kendo-angular-navigation`-related components and directives in a standalone Angular component.
1432
+ *
1433
+ * @example
1434
+ * ```typescript
1435
+ * import { Component } from '@angular/core';
1436
+ * import { KENDO_NAVIGATION } from '@progress/kendo-angular-navigation';
1437
+ *
1438
+ * @Component({
1439
+ * selector: 'my-app',
1440
+ * standalone: true,
1441
+ * imports: [KENDO_NAVIGATION],
1442
+ * template: `
1443
+ * <kendo-appbar>
1444
+ * <!-- AppBar content -->
1445
+ * </kendo-appbar>
1446
+ * <kendo-breadcrumb [items]="breadcrumbItems">
1447
+ * </kendo-breadcrumb>
1448
+ * `
1449
+ * })
1450
+ * export class AppComponent {}
1451
+ * ```
1452
+ */
1453
+ declare const KENDO_NAVIGATION: readonly [typeof ActionSheetComponent, typeof ActionSheetViewComponent, typeof ActionSheetHeaderTemplateDirective, typeof ActionSheetItemTemplateDirective, typeof ActionSheetContentTemplateDirective, typeof ActionSheetFooterTemplateDirective, typeof ActionSheetTemplateDirective, typeof AppBarComponent, typeof AppBarSectionComponent, typeof AppBarSpacerComponent, typeof BottomNavigationComponent, typeof BottomNavigationItemTemplateDirective, typeof BreadCrumbComponent, typeof BreadCrumbItemTemplateDirective];
1454
+
1455
+ export { ActionSheetComponent, ActionSheetContentTemplateDirective, ActionSheetFooterTemplateDirective, ActionSheetHeaderTemplateDirective, ActionSheetItemClickEvent, ActionSheetItemTemplateDirective, ActionSheetModule, ActionSheetTemplateDirective, ActionSheetViewComponent, AppBarComponent, AppBarModule, AppBarSectionComponent, AppBarSpacerComponent, BottomNavigationComponent, BottomNavigationItemTemplateDirective, BottomNavigationModule, BottomNavigationSelectEvent, BreadCrumbComponent, BreadCrumbItemComponent, BreadCrumbItemTemplateDirective, BreadCrumbListComponent, BreadCrumbModule, KENDO_ACTIONSHEET, KENDO_APPBAR, KENDO_BOTTOMNAVIGATION, KENDO_BREADCRUMB, KENDO_NAVIGATION, NavigationModule };
1456
+ export type { ActionSheetAction, ActionSheetActionsAlignment, ActionSheetActionsLayout, ActionSheetActionsOrientation, ActionSheetAnimation, ActionSheetItem, ActionSheetItemGroup, AppBarPosition, AppBarPositionMode, AppBarThemeColor, BottomNavigationFill, BottomNavigationItem, BottomNavigationItemFlow, BottomNavigationPositionMode, BottomNavigationThemeColor, BreadCrumbCollapseMode, BreadCrumbItem, BreadcrumbSize };