@progress/kendo-angular-navigation 24.2.2 → 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/directives.d.ts DELETED
@@ -1,123 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { ActionSheetViewComponent } from "./actionsheet/actionsheet-view.component";
6
- import { ActionSheetComponent } from "./actionsheet/actionsheet.component";
7
- import { ActionSheetContentTemplateDirective, ActionSheetFooterTemplateDirective, ActionSheetHeaderTemplateDirective, ActionSheetItemTemplateDirective, ActionSheetTemplateDirective } from "./actionsheet/models";
8
- import { AppBarSectionComponent } from "./appbar/appbar-section.component";
9
- import { AppBarSpacerComponent } from "./appbar/appbar-spacer.component";
10
- import { AppBarComponent } from "./appbar/appbar.component";
11
- import { BottomNavigationComponent } from "./bottomnavigation/bottomnavigation.component";
12
- import { BottomNavigationItemTemplateDirective } from "./bottomnavigation/templates/item-template.directive";
13
- import { BreadCrumbComponent } from "./breadcrumb/breadcrumb.component";
14
- import { BreadCrumbItemTemplateDirective } from "./breadcrumb/template-directives/item-template.directive";
15
- /**
16
- * Use this utility array to access all ActionSheet-related components and directives in a standalone Angular component.
17
- *
18
- * @example
19
- * ```typescript
20
- * import { Component } from '@angular/core';
21
- * import { KENDO_ACTIONSHEET } from '@progress/kendo-angular-navigation';
22
- *
23
- * @Component({
24
- * selector: 'my-app',
25
- * standalone: true,
26
- * imports: [KENDO_ACTIONSHEET],
27
- * template: `
28
- * <kendo-actionsheet [items]="items">
29
- * </kendo-actionsheet>
30
- * `
31
- * })
32
- * export class AppComponent {}
33
- * ```
34
- */
35
- export declare const KENDO_ACTIONSHEET: readonly [typeof ActionSheetComponent, typeof ActionSheetViewComponent, typeof ActionSheetHeaderTemplateDirective, typeof ActionSheetItemTemplateDirective, typeof ActionSheetContentTemplateDirective, typeof ActionSheetFooterTemplateDirective, typeof ActionSheetTemplateDirective];
36
- /**
37
- * Use this utility array to access all AppBar-related components and directives in a standalone Angular component.
38
- *
39
- * @example
40
- * ```typescript
41
- * import { Component } from '@angular/core';
42
- * import { KENDO_APPBAR } from '@progress/kendo-angular-navigation';
43
- *
44
- * @Component({
45
- * selector: 'my-app',
46
- * standalone: true,
47
- * imports: [KENDO_APPBAR],
48
- * template: `
49
- * <kendo-appbar>
50
- * <!-- AppBar content -->
51
- * </kendo-appbar>
52
- * `
53
- * })
54
- * export class AppComponent {}
55
- * ```
56
- */
57
- export declare const KENDO_APPBAR: readonly [typeof AppBarComponent, typeof AppBarSectionComponent, typeof AppBarSpacerComponent];
58
- /**
59
- * Use this utility array to access all BottomNavigation-related components and directives in a standalone Angular component.
60
- *
61
- * @example
62
- * ```typescript
63
- * import { Component } from '@angular/core';
64
- * import { KENDO_BOTTOMNAVIGATION } from '@progress/kendo-angular-navigation';
65
- *
66
- * @Component({
67
- * selector: 'my-app',
68
- * standalone: true,
69
- * imports: [KENDO_BOTTOMNAVIGATION],
70
- * template: `
71
- * <kendo-bottomnavigation [items]="items">
72
- * </kendo-bottomnavigation>
73
- * `
74
- * })
75
- * export class AppComponent {}
76
- * ```
77
- */
78
- export declare const KENDO_BOTTOMNAVIGATION: readonly [typeof BottomNavigationComponent, typeof BottomNavigationItemTemplateDirective];
79
- /**
80
- * Use this utility array to access all BreadCrumb-related components and directives in a standalone Angular component.
81
- *
82
- * @example
83
- * ```typescript
84
- * import { Component } from '@angular/core';
85
- * import { KENDO_BREADCRUMB } from '@progress/kendo-angular-navigation';
86
- *
87
- * @Component({
88
- * selector: 'my-app',
89
- * standalone: true,
90
- * imports: [KENDO_BREADCRUMB],
91
- * template: `
92
- * <kendo-breadcrumb [items]="items">
93
- * </kendo-breadcrumb>
94
- * `
95
- * })
96
- * export class AppComponent {}
97
- * ```
98
- */
99
- export declare const KENDO_BREADCRUMB: readonly [typeof BreadCrumbComponent, typeof BreadCrumbItemTemplateDirective];
100
- /**
101
- * Use this utility array to access all `@progress/kendo-angular-navigation`-related components and directives in a standalone Angular component.
102
- *
103
- * @example
104
- * ```typescript
105
- * import { Component } from '@angular/core';
106
- * import { KENDO_NAVIGATION } from '@progress/kendo-angular-navigation';
107
- *
108
- * @Component({
109
- * selector: 'my-app',
110
- * standalone: true,
111
- * imports: [KENDO_NAVIGATION],
112
- * template: `
113
- * <kendo-appbar>
114
- * <!-- AppBar content -->
115
- * </kendo-appbar>
116
- * <kendo-breadcrumb [items]="breadcrumbItems">
117
- * </kendo-breadcrumb>
118
- * `
119
- * })
120
- * export class AppComponent {}
121
- * ```
122
- */
123
- export 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];
@@ -1,43 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import * as i0 from "@angular/core";
6
- import * as i1 from "./actionsheet/actionsheet.component";
7
- import * as i2 from "./actionsheet/actionsheet-view.component";
8
- import * as i3 from "./actionsheet/templates/header-template.directive";
9
- import * as i4 from "./actionsheet/templates/item-template.directive";
10
- import * as i5 from "./actionsheet/templates/content-template.directive";
11
- import * as i6 from "./actionsheet/templates/footer-template.directive";
12
- import * as i7 from "./actionsheet/templates/actionsheet-template";
13
- import * as i8 from "./appbar/appbar.component";
14
- import * as i9 from "./appbar/appbar-section.component";
15
- import * as i10 from "./appbar/appbar-spacer.component";
16
- import * as i11 from "./bottomnavigation/bottomnavigation.component";
17
- import * as i12 from "./bottomnavigation/templates/item-template.directive";
18
- import * as i13 from "./breadcrumb/breadcrumb.component";
19
- import * as i14 from "./breadcrumb/template-directives/item-template.directive";
20
- /**
21
- * Represents the [`NgModule`](link:site.data.urls.angular['ngmoduleapi'])
22
- * definition for the Navigation components.
23
- *
24
- * @example
25
- * ```typescript
26
- * import { NavigationModule } from '@progress/kendo-angular-navigation';
27
- * import { BrowserModule } from '@angular/platform-browser';
28
- * import { NgModule } from '@angular/core';
29
- * import { AppComponent } from './app.component';
30
- *
31
- * @NgModule({
32
- * declarations: [AppComponent],
33
- * imports: [BrowserModule, NavigationModule],
34
- * bootstrap: [AppComponent]
35
- * })
36
- * export class AppModule {}
37
- * ```
38
- */
39
- export declare class NavigationModule {
40
- static ɵfac: i0.ɵɵFactoryDeclaration<NavigationModule, never>;
41
- static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationModule, never, [typeof i1.ActionSheetComponent, typeof i2.ActionSheetViewComponent, typeof i3.ActionSheetHeaderTemplateDirective, typeof i4.ActionSheetItemTemplateDirective, typeof i5.ActionSheetContentTemplateDirective, typeof i6.ActionSheetFooterTemplateDirective, typeof i7.ActionSheetTemplateDirective, typeof i8.AppBarComponent, typeof i9.AppBarSectionComponent, typeof i10.AppBarSpacerComponent, typeof i11.BottomNavigationComponent, typeof i12.BottomNavigationItemTemplateDirective, typeof i13.BreadCrumbComponent, typeof i14.BreadCrumbItemTemplateDirective], [typeof i1.ActionSheetComponent, typeof i2.ActionSheetViewComponent, typeof i3.ActionSheetHeaderTemplateDirective, typeof i4.ActionSheetItemTemplateDirective, typeof i5.ActionSheetContentTemplateDirective, typeof i6.ActionSheetFooterTemplateDirective, typeof i7.ActionSheetTemplateDirective, typeof i8.AppBarComponent, typeof i9.AppBarSectionComponent, typeof i10.AppBarSpacerComponent, typeof i11.BottomNavigationComponent, typeof i12.BottomNavigationItemTemplateDirective, typeof i13.BreadCrumbComponent, typeof i14.BreadCrumbItemTemplateDirective]>;
42
- static ɵinj: i0.ɵɵInjectorDeclaration<NavigationModule>;
43
- }
@@ -1,9 +0,0 @@
1
- /**-----------------------------------------------------------------------------------------
2
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
3
- * Licensed under commercial license. See LICENSE.md in the project root for more information
4
- *-------------------------------------------------------------------------------------------*/
5
- import { type PackageMetadata } from '@progress/kendo-licensing';
6
- /**
7
- * @hidden
8
- */
9
- export declare const packageMetadata: PackageMetadata;