@progress/kendo-angular-navigation 16.5.0-develop.6 → 16.6.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 (56) hide show
  1. package/actionsheet/actionsheet.component.d.ts +1 -1
  2. package/actionsheet/item.component.d.ts +1 -1
  3. package/actionsheet/list.component.d.ts +1 -1
  4. package/actionsheet/templates/actionsheet-template.d.ts +1 -1
  5. package/actionsheet/templates/content-template.directive.d.ts +1 -1
  6. package/actionsheet/templates/footer-template.directive.d.ts +1 -1
  7. package/actionsheet/templates/header-template.directive.d.ts +1 -1
  8. package/actionsheet/templates/item-template.directive.d.ts +1 -1
  9. package/actionsheet.module.d.ts +7 -11
  10. package/appbar/appbar-section.component.d.ts +1 -1
  11. package/appbar/appbar-spacer.component.d.ts +1 -1
  12. package/appbar/appbar.component.d.ts +1 -1
  13. package/appbar.module.d.ts +1 -2
  14. package/bottomnavigation/bottomnavigation-item.component.d.ts +1 -1
  15. package/bottomnavigation/bottomnavigation.component.d.ts +1 -1
  16. package/bottomnavigation/templates/item-template.directive.d.ts +1 -1
  17. package/bottomnavigation.module.d.ts +3 -6
  18. package/breadcrumb/breadcrumb-item.component.d.ts +1 -1
  19. package/breadcrumb/breadcrumb.component.d.ts +1 -1
  20. package/breadcrumb/list.component.d.ts +1 -1
  21. package/breadcrumb/template-directives/item-template.directive.d.ts +1 -1
  22. package/breadcrumb/template-directives/separator.directive.d.ts +1 -1
  23. package/breadcrumb.module.d.ts +2 -8
  24. package/directives.d.ts +33 -0
  25. package/esm2020/actionsheet/actionsheet.component.mjs +7 -5
  26. package/esm2020/actionsheet/item.component.mjs +7 -5
  27. package/esm2020/actionsheet/list.component.mjs +6 -4
  28. package/esm2020/actionsheet/templates/actionsheet-template.mjs +3 -2
  29. package/esm2020/actionsheet/templates/content-template.directive.mjs +3 -2
  30. package/esm2020/actionsheet/templates/footer-template.directive.mjs +3 -2
  31. package/esm2020/actionsheet/templates/header-template.directive.mjs +3 -2
  32. package/esm2020/actionsheet/templates/item-template.directive.mjs +3 -2
  33. package/esm2020/actionsheet.module.mjs +14 -36
  34. package/esm2020/appbar/appbar-section.component.mjs +3 -2
  35. package/esm2020/appbar/appbar-spacer.component.mjs +3 -2
  36. package/esm2020/appbar/appbar.component.mjs +3 -2
  37. package/esm2020/appbar.module.mjs +9 -21
  38. package/esm2020/bottomnavigation/bottomnavigation-item.component.mjs +8 -6
  39. package/esm2020/bottomnavigation/bottomnavigation.component.mjs +7 -5
  40. package/esm2020/bottomnavigation/templates/item-template.directive.mjs +3 -2
  41. package/esm2020/bottomnavigation.module.mjs +10 -13
  42. package/esm2020/breadcrumb/breadcrumb-item.component.mjs +7 -5
  43. package/esm2020/breadcrumb/breadcrumb.component.mjs +6 -6
  44. package/esm2020/breadcrumb/list.component.mjs +6 -5
  45. package/esm2020/breadcrumb/template-directives/item-template.directive.mjs +3 -2
  46. package/esm2020/breadcrumb/template-directives/separator.directive.mjs +6 -4
  47. package/esm2020/breadcrumb.module.mjs +11 -30
  48. package/esm2020/directives.mjs +55 -0
  49. package/esm2020/index.mjs +1 -0
  50. package/esm2020/navigation.module.mjs +22 -18
  51. package/esm2020/package-metadata.mjs +2 -2
  52. package/fesm2015/progress-kendo-angular-navigation.mjs +1555 -1549
  53. package/fesm2020/progress-kendo-angular-navigation.mjs +1523 -1517
  54. package/index.d.ts +1 -0
  55. package/navigation.module.d.ts +14 -5
  56. package/package.json +5 -5
@@ -3,11 +3,24 @@
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
5
  import { NgModule } from '@angular/core';
6
- import { AppBarModule } from './appbar.module';
7
- import { BreadCrumbModule } from './breadcrumb.module';
8
- import { BottomNavigationModule } from './bottomnavigation.module';
9
- import { ActionSheetModule } from './actionsheet.module';
6
+ import { IconsService } from '@progress/kendo-angular-icons';
7
+ import { ResizeBatchService } from '@progress/kendo-angular-common';
8
+ import { KENDO_NAVIGATION } from './directives';
10
9
  import * as i0 from "@angular/core";
10
+ import * as i1 from "./actionsheet/actionsheet.component";
11
+ import * as i2 from "./actionsheet/templates/header-template.directive";
12
+ import * as i3 from "./actionsheet/templates/item-template.directive";
13
+ import * as i4 from "./actionsheet/templates/content-template.directive";
14
+ import * as i5 from "./actionsheet/templates/footer-template.directive";
15
+ import * as i6 from "./actionsheet/templates/actionsheet-template";
16
+ import * as i7 from "./appbar/appbar.component";
17
+ import * as i8 from "./appbar/appbar-section.component";
18
+ import * as i9 from "./appbar/appbar-spacer.component";
19
+ import * as i10 from "./bottomnavigation/bottomnavigation.component";
20
+ import * as i11 from "./bottomnavigation/templates/item-template.directive";
21
+ import * as i12 from "./breadcrumb/breadcrumb.component";
22
+ import * as i13 from "./breadcrumb/template-directives/item-template.directive";
23
+ // IMPORTANT: NgModule export kept for backwards compatibility
11
24
  /**
12
25
  * Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
13
26
  * definition for the Navigation components.
@@ -42,22 +55,13 @@ import * as i0 from "@angular/core";
42
55
  export class NavigationModule {
43
56
  }
44
57
  NavigationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
45
- NavigationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NavigationModule, exports: [AppBarModule,
46
- BreadCrumbModule,
47
- BottomNavigationModule,
48
- ActionSheetModule] });
49
- NavigationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationModule, imports: [AppBarModule,
50
- BreadCrumbModule,
51
- BottomNavigationModule,
52
- ActionSheetModule] });
58
+ NavigationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: NavigationModule, imports: [i1.ActionSheetComponent, i2.ActionSheetHeaderTemplateDirective, i3.ActionSheetItemTemplateDirective, i4.ActionSheetContentTemplateDirective, i5.ActionSheetFooterTemplateDirective, i6.ActionSheetTemplateDirective, i7.AppBarComponent, i8.AppBarSectionComponent, i9.AppBarSpacerComponent, i10.BottomNavigationComponent, i11.BottomNavigationItemTemplateDirective, i12.BreadCrumbComponent, i13.BreadCrumbItemTemplateDirective], exports: [i1.ActionSheetComponent, i2.ActionSheetHeaderTemplateDirective, i3.ActionSheetItemTemplateDirective, i4.ActionSheetContentTemplateDirective, i5.ActionSheetFooterTemplateDirective, i6.ActionSheetTemplateDirective, i7.AppBarComponent, i8.AppBarSectionComponent, i9.AppBarSpacerComponent, i10.BottomNavigationComponent, i11.BottomNavigationItemTemplateDirective, i12.BreadCrumbComponent, i13.BreadCrumbItemTemplateDirective] });
59
+ NavigationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationModule, providers: [IconsService, ResizeBatchService], imports: [i1.ActionSheetComponent, i7.AppBarComponent, i8.AppBarSectionComponent, i9.AppBarSpacerComponent, i10.BottomNavigationComponent, i12.BreadCrumbComponent] });
53
60
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NavigationModule, decorators: [{
54
61
  type: NgModule,
55
62
  args: [{
56
- exports: [
57
- AppBarModule,
58
- BreadCrumbModule,
59
- BottomNavigationModule,
60
- ActionSheetModule
61
- ]
63
+ imports: [...KENDO_NAVIGATION],
64
+ exports: [...KENDO_NAVIGATION],
65
+ providers: [IconsService, ResizeBatchService]
62
66
  }]
63
67
  }] });
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-navigation',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1721765943,
13
- version: '16.5.0-develop.6',
12
+ publishDate: 1721827583,
13
+ version: '16.6.0-develop.1',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };