@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.
- package/actionsheet/actionsheet.component.d.ts +1 -1
- package/actionsheet/item.component.d.ts +1 -1
- package/actionsheet/list.component.d.ts +1 -1
- package/actionsheet/templates/actionsheet-template.d.ts +1 -1
- package/actionsheet/templates/content-template.directive.d.ts +1 -1
- package/actionsheet/templates/footer-template.directive.d.ts +1 -1
- package/actionsheet/templates/header-template.directive.d.ts +1 -1
- package/actionsheet/templates/item-template.directive.d.ts +1 -1
- package/actionsheet.module.d.ts +7 -11
- package/appbar/appbar-section.component.d.ts +1 -1
- package/appbar/appbar-spacer.component.d.ts +1 -1
- package/appbar/appbar.component.d.ts +1 -1
- package/appbar.module.d.ts +1 -2
- package/bottomnavigation/bottomnavigation-item.component.d.ts +1 -1
- package/bottomnavigation/bottomnavigation.component.d.ts +1 -1
- package/bottomnavigation/templates/item-template.directive.d.ts +1 -1
- package/bottomnavigation.module.d.ts +3 -6
- package/breadcrumb/breadcrumb-item.component.d.ts +1 -1
- package/breadcrumb/breadcrumb.component.d.ts +1 -1
- package/breadcrumb/list.component.d.ts +1 -1
- package/breadcrumb/template-directives/item-template.directive.d.ts +1 -1
- package/breadcrumb/template-directives/separator.directive.d.ts +1 -1
- package/breadcrumb.module.d.ts +2 -8
- package/directives.d.ts +33 -0
- package/esm2020/actionsheet/actionsheet.component.mjs +7 -5
- package/esm2020/actionsheet/item.component.mjs +7 -5
- package/esm2020/actionsheet/list.component.mjs +6 -4
- package/esm2020/actionsheet/templates/actionsheet-template.mjs +3 -2
- package/esm2020/actionsheet/templates/content-template.directive.mjs +3 -2
- package/esm2020/actionsheet/templates/footer-template.directive.mjs +3 -2
- package/esm2020/actionsheet/templates/header-template.directive.mjs +3 -2
- package/esm2020/actionsheet/templates/item-template.directive.mjs +3 -2
- package/esm2020/actionsheet.module.mjs +14 -36
- package/esm2020/appbar/appbar-section.component.mjs +3 -2
- package/esm2020/appbar/appbar-spacer.component.mjs +3 -2
- package/esm2020/appbar/appbar.component.mjs +3 -2
- package/esm2020/appbar.module.mjs +9 -21
- package/esm2020/bottomnavigation/bottomnavigation-item.component.mjs +8 -6
- package/esm2020/bottomnavigation/bottomnavigation.component.mjs +7 -5
- package/esm2020/bottomnavigation/templates/item-template.directive.mjs +3 -2
- package/esm2020/bottomnavigation.module.mjs +10 -13
- package/esm2020/breadcrumb/breadcrumb-item.component.mjs +7 -5
- package/esm2020/breadcrumb/breadcrumb.component.mjs +6 -6
- package/esm2020/breadcrumb/list.component.mjs +6 -5
- package/esm2020/breadcrumb/template-directives/item-template.directive.mjs +3 -2
- package/esm2020/breadcrumb/template-directives/separator.directive.mjs +6 -4
- package/esm2020/breadcrumb.module.mjs +11 -30
- package/esm2020/directives.mjs +55 -0
- package/esm2020/index.mjs +1 -0
- package/esm2020/navigation.module.mjs +22 -18
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-navigation.mjs +1555 -1549
- package/fesm2020/progress-kendo-angular-navigation.mjs +1523 -1517
- package/index.d.ts +1 -0
- package/navigation.module.d.ts +14 -5
- 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 {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
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: [
|
|
46
|
-
|
|
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
|
-
|
|
57
|
-
|
|
58
|
-
|
|
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:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1721827583,
|
|
13
|
+
version: '16.6.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|