@progress/kendo-angular-navigation 11.0.0-develop.109 → 11.0.0-develop.111
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/models/actionsheet-item.interface.d.ts +5 -0
- package/actionsheet.module.d.ts +2 -1
- package/bottomnavigation/types/bottomnavigation-item.d.ts +5 -0
- package/bottomnavigation.module.d.ts +2 -1
- package/breadcrumb/breadcrumb.component.d.ts +6 -1
- package/breadcrumb/list.component.d.ts +3 -1
- package/breadcrumb/models/breadcrumb-item.interface.d.ts +5 -0
- package/breadcrumb/template-directives/separator.directive.d.ts +6 -1
- package/breadcrumb.module.d.ts +2 -1
- package/esm2020/actionsheet/item.component.mjs +17 -14
- package/esm2020/actionsheet.module.mjs +4 -3
- package/esm2020/bottomnavigation/bottomnavigation-item.component.mjs +17 -4
- package/esm2020/bottomnavigation.module.mjs +4 -3
- package/esm2020/breadcrumb/breadcrumb-item.component.mjs +15 -6
- package/esm2020/breadcrumb/breadcrumb.component.mjs +8 -2
- package/esm2020/breadcrumb/list.component.mjs +6 -3
- package/esm2020/breadcrumb/template-directives/separator.directive.mjs +40 -8
- package/esm2020/breadcrumb.module.mjs +4 -3
- package/esm2020/package-metadata.mjs +1 -1
- package/fesm2015/progress-kendo-angular-navigation.mjs +109 -45
- package/fesm2020/progress-kendo-angular-navigation.mjs +109 -45
- package/package.json +5 -4
- package/schematics/ngAdd/index.js +4 -1
|
@@ -9,10 +9,13 @@ import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
|
9
9
|
import { validatePackage } from '@progress/kendo-licensing';
|
|
10
10
|
import * as i3 from '@progress/kendo-angular-common';
|
|
11
11
|
import { closestInScope as closestInScope$1, isDocumentAvailable, Keys, ResizeSensorModule } from '@progress/kendo-angular-common';
|
|
12
|
-
import * as
|
|
12
|
+
import * as i2 from '@angular/common';
|
|
13
13
|
import { CommonModule } from '@angular/common';
|
|
14
14
|
import { fromEvent, merge, ReplaySubject, Subject, Subscription } from 'rxjs';
|
|
15
15
|
import { filter, map, startWith, share } from 'rxjs/operators';
|
|
16
|
+
import * as i1$1 from '@progress/kendo-angular-icons';
|
|
17
|
+
import { IconsModule } from '@progress/kendo-angular-icons';
|
|
18
|
+
import { chevronRightIcon, chevronLeftIcon } from '@progress/kendo-svg-icons';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
* @hidden
|
|
@@ -21,7 +24,7 @@ const packageMetadata = {
|
|
|
21
24
|
name: '@progress/kendo-angular-navigation',
|
|
22
25
|
productName: 'Kendo UI for Angular',
|
|
23
26
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
24
|
-
publishDate:
|
|
27
|
+
publishDate: 1673607373,
|
|
25
28
|
version: '',
|
|
26
29
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
27
30
|
};
|
|
@@ -494,8 +497,12 @@ BreadCrumbItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
494
497
|
class="k-cursor-pointer k-flex-none"
|
|
495
498
|
>
|
|
496
499
|
<img *ngIf="item.data.imageUrl" (load)="onImageLoad()" [src]="item.data.imageUrl" class="k-image" role="presentation" />
|
|
497
|
-
<
|
|
498
|
-
|
|
500
|
+
<kendo-icon-wrapper *ngIf="item.data.icon || item.data.iconClass"
|
|
501
|
+
[name]="item.data.icon"
|
|
502
|
+
[customFontClass]="item.data.iconClass"
|
|
503
|
+
[svgIcon]="item.data.svgIcon"
|
|
504
|
+
>
|
|
505
|
+
</kendo-icon-wrapper>
|
|
499
506
|
{{ item.data.text }}
|
|
500
507
|
</span>
|
|
501
508
|
<ng-template
|
|
@@ -511,7 +518,7 @@ BreadCrumbItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0"
|
|
|
511
518
|
<ng-container *ngIf="collapseMode !== 'wrap'">
|
|
512
519
|
<ng-container *ngTemplateOutlet="separator"></ng-container>
|
|
513
520
|
</ng-container>
|
|
514
|
-
`, isInline: true,
|
|
521
|
+
`, isInline: true, components: [{ type: i1$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] });
|
|
515
522
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbItemComponent, decorators: [{
|
|
516
523
|
type: Component,
|
|
517
524
|
args: [{
|
|
@@ -543,8 +550,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
543
550
|
class="k-cursor-pointer k-flex-none"
|
|
544
551
|
>
|
|
545
552
|
<img *ngIf="item.data.imageUrl" (load)="onImageLoad()" [src]="item.data.imageUrl" class="k-image" role="presentation" />
|
|
546
|
-
<
|
|
547
|
-
|
|
553
|
+
<kendo-icon-wrapper *ngIf="item.data.icon || item.data.iconClass"
|
|
554
|
+
[name]="item.data.icon"
|
|
555
|
+
[customFontClass]="item.data.iconClass"
|
|
556
|
+
[svgIcon]="item.data.svgIcon"
|
|
557
|
+
>
|
|
558
|
+
</kendo-icon-wrapper>
|
|
548
559
|
{{ item.data.text }}
|
|
549
560
|
</span>
|
|
550
561
|
<ng-template
|
|
@@ -607,6 +618,8 @@ const closestItem = (target, targetAttr, scope) => closestInScope(target, target
|
|
|
607
618
|
|
|
608
619
|
const DEFAULT_ICON = 'chevron-right';
|
|
609
620
|
const DEFAULT_RTL_ICON = 'chevron-left';
|
|
621
|
+
const DEFAULT_SVG_ICON = chevronRightIcon;
|
|
622
|
+
const DEFAULT_RTL_SVG_ICON = chevronLeftIcon;
|
|
610
623
|
/**
|
|
611
624
|
* @hidden
|
|
612
625
|
*/
|
|
@@ -620,8 +633,6 @@ class BreadCrumbSeparatorDirective {
|
|
|
620
633
|
this.direction = this.localization.rtl ? 'rtl' : 'ltr';
|
|
621
634
|
}
|
|
622
635
|
set icon(icon) {
|
|
623
|
-
const element = this.el.nativeElement;
|
|
624
|
-
element.classList.remove(`k-i-${this._icon}`);
|
|
625
636
|
if (isPresent(icon)) {
|
|
626
637
|
this._icon = icon;
|
|
627
638
|
this.hasDefaultIcon = false;
|
|
@@ -630,32 +641,62 @@ class BreadCrumbSeparatorDirective {
|
|
|
630
641
|
this._icon = this.direction === 'ltr' ? DEFAULT_ICON : DEFAULT_RTL_ICON;
|
|
631
642
|
this.hasDefaultIcon = true;
|
|
632
643
|
}
|
|
633
|
-
element.classList.add(`k-i-${this._icon}`);
|
|
634
644
|
}
|
|
635
645
|
get icon() {
|
|
636
646
|
return this._icon;
|
|
637
647
|
}
|
|
648
|
+
set svgIcon(svgIcon) {
|
|
649
|
+
if (isPresent(svgIcon)) {
|
|
650
|
+
this._svgIcon = svgIcon;
|
|
651
|
+
this.hasDefaultSvgIcon = false;
|
|
652
|
+
}
|
|
653
|
+
else {
|
|
654
|
+
this._svgIcon = this.direction === 'ltr' ? DEFAULT_SVG_ICON : DEFAULT_RTL_SVG_ICON;
|
|
655
|
+
this.hasDefaultSvgIcon = true;
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
get svgIcon() {
|
|
659
|
+
return this._svgIcon;
|
|
660
|
+
}
|
|
638
661
|
ngOnInit() {
|
|
639
662
|
this.localizationChangesSubscription = this.localization.changes.subscribe(({ rtl }) => {
|
|
640
663
|
this.direction = rtl ? 'rtl' : 'ltr';
|
|
641
664
|
if (this.hasDefaultIcon) {
|
|
642
665
|
this.icon = undefined;
|
|
643
666
|
}
|
|
667
|
+
if (this.hasDefaultSvgIcon) {
|
|
668
|
+
this.svgIcon = undefined;
|
|
669
|
+
}
|
|
644
670
|
});
|
|
645
671
|
}
|
|
646
672
|
ngOnDestroy() {
|
|
647
673
|
this.localizationChangesSubscription.unsubscribe();
|
|
648
674
|
}
|
|
649
675
|
}
|
|
650
|
-
BreadCrumbSeparatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbSeparatorDirective, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.
|
|
651
|
-
BreadCrumbSeparatorDirective.ɵ
|
|
676
|
+
BreadCrumbSeparatorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbSeparatorDirective, deps: [{ token: i0.ElementRef }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
677
|
+
BreadCrumbSeparatorDirective.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbSeparatorDirective, selector: "[kendoBreadCrumbSeparator]", inputs: { icon: "icon", svgIcon: "svgIcon" }, host: { properties: { "class.k-breadcrumb-delimiter-icon": "this.defaultClasses", "class.k-icon": "this.defaultClasses", "attr.aria-hidden": "this.ariaHidden" } }, ngImport: i0, template: `
|
|
678
|
+
<kendo-icon-wrapper
|
|
679
|
+
[name]="icon"
|
|
680
|
+
[svgIcon]="svgIcon"
|
|
681
|
+
>
|
|
682
|
+
</kendo-icon-wrapper>
|
|
683
|
+
`, isInline: true, components: [{ type: i1$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }] });
|
|
652
684
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbSeparatorDirective, decorators: [{
|
|
653
|
-
type:
|
|
685
|
+
type: Component,
|
|
654
686
|
args: [{
|
|
655
|
-
selector: '[kendoBreadCrumbSeparator]'
|
|
687
|
+
selector: '[kendoBreadCrumbSeparator]',
|
|
688
|
+
template: `
|
|
689
|
+
<kendo-icon-wrapper
|
|
690
|
+
[name]="icon"
|
|
691
|
+
[svgIcon]="svgIcon"
|
|
692
|
+
>
|
|
693
|
+
</kendo-icon-wrapper>
|
|
694
|
+
`
|
|
656
695
|
}]
|
|
657
696
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.LocalizationService }]; }, propDecorators: { icon: [{
|
|
658
697
|
type: Input
|
|
698
|
+
}], svgIcon: [{
|
|
699
|
+
type: Input
|
|
659
700
|
}], defaultClasses: [{
|
|
660
701
|
type: HostBinding,
|
|
661
702
|
args: ['class.k-breadcrumb-delimiter-icon']
|
|
@@ -701,7 +742,7 @@ class BreadCrumbListComponent {
|
|
|
701
742
|
}
|
|
702
743
|
}
|
|
703
744
|
BreadCrumbListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbListComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
704
|
-
BreadCrumbListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbListComponent, selector: "[kendoBreadCrumbList]", inputs: { items: "items", itemTemplate: "itemTemplate", collapseMode: "collapseMode", separatorIcon: "separatorIcon" }, outputs: { itemClick: "itemClick" }, viewQueries: [{ propertyName: "renderedItems", predicate: BreadCrumbItemComponent, descendants: true }], ngImport: i0, template: "\n <ng-container *ngFor=\"let item of items; let i = index; let isFirst = first; let isLast = last\">\n <li\n #renderedItem\n kendoBreadCrumbItem\n *ngIf=\"!(collapseMode === 'wrap' && isFirst) || isRootItemContainer\"\n [attr.data-kendo-breadcrumb-index]=\"i\"\n [item]=\"item\"\n [index]=\"i\"\n [collapseMode]=\"collapseMode\"\n [itemTemplate]=\"itemTemplate\"\n >\n <span kendoBreadCrumbSeparator [icon]=\"separatorIcon\" *ngIf=\"collapseMode === 'wrap' && !isFirst\"></span>\n <span\n kendoBreadCrumbSeparator\n [icon]=\"separatorIcon\"\n *ngIf=\"collapseMode !== 'wrap' && !isLast && !(item?.context.collapsed && items[i + 1]?.context.collapsed)\"\n ></span>\n </li>\n </ng-container>\n ", isInline: true, components: [{ type: BreadCrumbItemComponent, selector: "[kendoBreadCrumbItem]", inputs: ["item", "collapseMode", "index", "itemTemplate"] }
|
|
745
|
+
BreadCrumbListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbListComponent, selector: "[kendoBreadCrumbList]", inputs: { items: "items", itemTemplate: "itemTemplate", collapseMode: "collapseMode", separatorIcon: "separatorIcon", separatorSVGIcon: "separatorSVGIcon" }, outputs: { itemClick: "itemClick" }, viewQueries: [{ propertyName: "renderedItems", predicate: BreadCrumbItemComponent, descendants: true }], ngImport: i0, template: "\n <ng-container *ngFor=\"let item of items; let i = index; let isFirst = first; let isLast = last\">\n <li\n #renderedItem\n kendoBreadCrumbItem\n *ngIf=\"!(collapseMode === 'wrap' && isFirst) || isRootItemContainer\"\n [attr.data-kendo-breadcrumb-index]=\"i\"\n [item]=\"item\"\n [index]=\"i\"\n [collapseMode]=\"collapseMode\"\n [itemTemplate]=\"itemTemplate\"\n >\n <span kendoBreadCrumbSeparator [icon]=\"separatorIcon\" *ngIf=\"collapseMode === 'wrap' && !isFirst\"></span>\n <span\n kendoBreadCrumbSeparator\n [icon]=\"separatorIcon\"\n [svgIcon]=\"separatorSVGIcon\"\n *ngIf=\"collapseMode !== 'wrap' && !isLast && !(item?.context.collapsed && items[i + 1]?.context.collapsed)\"\n ></span>\n </li>\n </ng-container>\n ", isInline: true, components: [{ type: BreadCrumbItemComponent, selector: "[kendoBreadCrumbItem]", inputs: ["item", "collapseMode", "index", "itemTemplate"] }, { type: BreadCrumbSeparatorDirective, selector: "[kendoBreadCrumbSeparator]", inputs: ["icon", "svgIcon"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
705
746
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbListComponent, decorators: [{
|
|
706
747
|
type: Component,
|
|
707
748
|
args: [{
|
|
@@ -723,6 +764,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
723
764
|
<span
|
|
724
765
|
kendoBreadCrumbSeparator
|
|
725
766
|
[icon]="separatorIcon"
|
|
767
|
+
[svgIcon]="separatorSVGIcon"
|
|
726
768
|
*ngIf="collapseMode !== 'wrap' && !isLast && !(item?.context.collapsed && items[i + 1]?.context.collapsed)"
|
|
727
769
|
></span>
|
|
728
770
|
</li>
|
|
@@ -737,6 +779,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
737
779
|
type: Input
|
|
738
780
|
}], separatorIcon: [{
|
|
739
781
|
type: Input
|
|
782
|
+
}], separatorSVGIcon: [{
|
|
783
|
+
type: Input
|
|
740
784
|
}], itemClick: [{
|
|
741
785
|
type: Output
|
|
742
786
|
}], renderedItems: [{
|
|
@@ -930,7 +974,7 @@ class BreadCrumbComponent {
|
|
|
930
974
|
}
|
|
931
975
|
}
|
|
932
976
|
BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
933
|
-
BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: { items: "items", separatorIcon: "separatorIcon", collapseMode: "collapseMode" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.k-widget": "this.hostClasses", "class.k-breadcrumb": "this.hostClasses", "class.k-breadcrumb-wrap": "this.wrapMode", "attr.dir": "this.getDir" } }, providers: [
|
|
977
|
+
BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BreadCrumbComponent, selector: "kendo-breadcrumb", inputs: { items: "items", separatorIcon: "separatorIcon", separatorSVGIcon: "separatorSVGIcon", collapseMode: "collapseMode" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.k-widget": "this.hostClasses", "class.k-breadcrumb": "this.hostClasses", "class.k-breadcrumb-wrap": "this.wrapMode", "attr.dir": "this.getDir" } }, providers: [
|
|
934
978
|
LocalizationService,
|
|
935
979
|
{
|
|
936
980
|
provide: L10N_PREFIX,
|
|
@@ -946,6 +990,7 @@ BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
946
990
|
[itemTemplate]="itemTemplate?.templateRef"
|
|
947
991
|
[collapseMode]="collapseMode"
|
|
948
992
|
[separatorIcon]="separatorIcon"
|
|
993
|
+
[separatorSVGIcon]="separatorSVGIcon"
|
|
949
994
|
(itemClick)="itemClick.emit($event)"
|
|
950
995
|
></ol>
|
|
951
996
|
<ol
|
|
@@ -956,11 +1001,12 @@ BreadCrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
956
1001
|
[itemTemplate]="itemTemplate?.templateRef"
|
|
957
1002
|
[collapseMode]="collapseMode"
|
|
958
1003
|
[separatorIcon]="separatorIcon"
|
|
1004
|
+
[separatorSVGIcon]="separatorSVGIcon"
|
|
959
1005
|
(itemClick)="itemClick.emit($event)"
|
|
960
1006
|
[ngClass]="{ 'k-flex-wrap': collapseMode === 'wrap', 'k-flex-none': collapseMode === 'none' }"
|
|
961
1007
|
></ol>
|
|
962
1008
|
<kendo-resize-sensor [rateLimit]="1000" #resizeSensor></kendo-resize-sensor>
|
|
963
|
-
`, isInline: true, components: [{ type: BreadCrumbListComponent, selector: "[kendoBreadCrumbList]", inputs: ["items", "itemTemplate", "collapseMode", "separatorIcon"], outputs: ["itemClick"] }, { type: i3.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], directives: [{ type:
|
|
1009
|
+
`, isInline: true, components: [{ type: BreadCrumbListComponent, selector: "[kendoBreadCrumbList]", inputs: ["items", "itemTemplate", "collapseMode", "separatorIcon", "separatorSVGIcon"], outputs: ["itemClick"] }, { type: i3.ResizeSensorComponent, selector: "kendo-resize-sensor", inputs: ["rateLimit"], outputs: ["resize"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], pipes: { "async": i2.AsyncPipe } });
|
|
964
1010
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, decorators: [{
|
|
965
1011
|
type: Component,
|
|
966
1012
|
args: [{
|
|
@@ -983,6 +1029,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
983
1029
|
[itemTemplate]="itemTemplate?.templateRef"
|
|
984
1030
|
[collapseMode]="collapseMode"
|
|
985
1031
|
[separatorIcon]="separatorIcon"
|
|
1032
|
+
[separatorSVGIcon]="separatorSVGIcon"
|
|
986
1033
|
(itemClick)="itemClick.emit($event)"
|
|
987
1034
|
></ol>
|
|
988
1035
|
<ol
|
|
@@ -993,6 +1040,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
993
1040
|
[itemTemplate]="itemTemplate?.templateRef"
|
|
994
1041
|
[collapseMode]="collapseMode"
|
|
995
1042
|
[separatorIcon]="separatorIcon"
|
|
1043
|
+
[separatorSVGIcon]="separatorSVGIcon"
|
|
996
1044
|
(itemClick)="itemClick.emit($event)"
|
|
997
1045
|
[ngClass]="{ 'k-flex-wrap': collapseMode === 'wrap', 'k-flex-none': collapseMode === 'none' }"
|
|
998
1046
|
></ol>
|
|
@@ -1003,6 +1051,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1003
1051
|
type: Input
|
|
1004
1052
|
}], separatorIcon: [{
|
|
1005
1053
|
type: Input
|
|
1054
|
+
}], separatorSVGIcon: [{
|
|
1055
|
+
type: Input
|
|
1006
1056
|
}], collapseMode: [{
|
|
1007
1057
|
type: Input
|
|
1008
1058
|
}], itemClick: [{
|
|
@@ -1082,16 +1132,16 @@ class BreadCrumbModule {
|
|
|
1082
1132
|
BreadCrumbModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1083
1133
|
BreadCrumbModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbModule, declarations: [BreadCrumbComponent,
|
|
1084
1134
|
BreadCrumbItemComponent,
|
|
1085
|
-
BreadCrumbListComponent, BreadCrumbItemTemplateDirective, BreadCrumbSeparatorDirective], imports: [CommonModule, ResizeSensorModule], exports: [BreadCrumbComponent,
|
|
1135
|
+
BreadCrumbListComponent, BreadCrumbItemTemplateDirective, BreadCrumbSeparatorDirective], imports: [CommonModule, ResizeSensorModule, IconsModule], exports: [BreadCrumbComponent,
|
|
1086
1136
|
BreadCrumbItemComponent,
|
|
1087
1137
|
BreadCrumbListComponent, BreadCrumbItemTemplateDirective] });
|
|
1088
|
-
BreadCrumbModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbModule, imports: [[CommonModule, ResizeSensorModule]] });
|
|
1138
|
+
BreadCrumbModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbModule, imports: [[CommonModule, ResizeSensorModule, IconsModule]] });
|
|
1089
1139
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbModule, decorators: [{
|
|
1090
1140
|
type: NgModule,
|
|
1091
1141
|
args: [{
|
|
1092
1142
|
declarations: [declarations$2],
|
|
1093
1143
|
exports: [exportedModules$1],
|
|
1094
|
-
imports: [CommonModule, ResizeSensorModule]
|
|
1144
|
+
imports: [CommonModule, ResizeSensorModule, IconsModule]
|
|
1095
1145
|
}]
|
|
1096
1146
|
}] });
|
|
1097
1147
|
|
|
@@ -1150,14 +1200,20 @@ class BottomNavigationItemComponent {
|
|
|
1150
1200
|
BottomNavigationItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1151
1201
|
BottomNavigationItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: BottomNavigationItemComponent, selector: "[kendoBottomNavigationItem]", inputs: { itemTemplate: "itemTemplate", item: "item", index: "index", disabledComponent: "disabledComponent", selectedIdx: "selectedIdx", orientation: "orientation" }, host: { properties: { "attr.aria-disabled": "this.disabledClass", "class.k-disabled": "this.disabledClass", "class.k-hstack": "this.horizontalItemClass", "class.k-vstack": "this.verticalItemClass", "attr.aria-label": "this.label", "attr.tabindex": "this.tabindex", "attr.aria-selected": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
|
|
1152
1202
|
<ng-container *ngIf="!itemTemplate">
|
|
1153
|
-
<
|
|
1203
|
+
<kendo-icon-wrapper *ngIf="itemIcon"
|
|
1204
|
+
class="k-bottom-nav-item-icon"
|
|
1205
|
+
[name]="item.icon"
|
|
1206
|
+
[customFontClass]="item.iconClass"
|
|
1207
|
+
[svgIcon]="item.svgIcon"
|
|
1208
|
+
>
|
|
1209
|
+
</kendo-icon-wrapper>
|
|
1154
1210
|
<span *ngIf="item.text" class="k-bottom-nav-item-text">{{item.text}}</span>
|
|
1155
1211
|
</ng-container>
|
|
1156
1212
|
<ng-template *ngIf="itemTemplate"
|
|
1157
1213
|
[ngTemplateOutlet]="itemTemplate?.templateRef"
|
|
1158
1214
|
[ngTemplateOutletContext]="{ $implicit: item }">
|
|
1159
1215
|
</ng-template>
|
|
1160
|
-
`, isInline: true,
|
|
1216
|
+
`, isInline: true, components: [{ type: i1$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
1161
1217
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationItemComponent, decorators: [{
|
|
1162
1218
|
type: Component,
|
|
1163
1219
|
args: [{
|
|
@@ -1165,7 +1221,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1165
1221
|
selector: '[kendoBottomNavigationItem]',
|
|
1166
1222
|
template: `
|
|
1167
1223
|
<ng-container *ngIf="!itemTemplate">
|
|
1168
|
-
<
|
|
1224
|
+
<kendo-icon-wrapper *ngIf="itemIcon"
|
|
1225
|
+
class="k-bottom-nav-item-icon"
|
|
1226
|
+
[name]="item.icon"
|
|
1227
|
+
[customFontClass]="item.iconClass"
|
|
1228
|
+
[svgIcon]="item.svgIcon"
|
|
1229
|
+
>
|
|
1230
|
+
</kendo-icon-wrapper>
|
|
1169
1231
|
<span *ngIf="item.text" class="k-bottom-nav-item-text">{{item.text}}</span>
|
|
1170
1232
|
</ng-container>
|
|
1171
1233
|
<ng-template *ngIf="itemTemplate"
|
|
@@ -1493,7 +1555,7 @@ BottomNavigationComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.
|
|
|
1493
1555
|
provide: L10N_PREFIX,
|
|
1494
1556
|
useValue: 'kendo.bottomnavigation'
|
|
1495
1557
|
}
|
|
1496
|
-
], queries: [{ propertyName: "itemTemplate", first: true, predicate: BottomNavigationItemTemplateDirective, descendants: true }], exportAs: ["kendoBottomNavigation"], ngImport: i0, template: "\n <ng-container *ngIf=\"items\">\n <span kendoBottomNavigationItem\n *ngFor=\"let item of items; let idx=index\"\n role=\"link\"\n class=\"k-bottom-nav-item\"\n [disabledComponent]=\"disabled\"\n [item]=\"item\"\n [index]=\"idx\"\n [selectedIdx]=\"selectedIdx\"\n [itemTemplate]=\"itemTemplate\"\n [attr.data-kendo-bottomnavigation-index]=\"idx\"\n [ngClass]=\"item.cssClass\"\n [ngStyle]=\"item.cssStyle\"\n [orientation]=\"itemFlow\">\n </span>\n </ng-container>\n ", isInline: true, components: [{ type: BottomNavigationItemComponent, selector: "[kendoBottomNavigationItem]", inputs: ["itemTemplate", "item", "index", "disabledComponent", "selectedIdx", "orientation"] }], directives: [{ type:
|
|
1558
|
+
], queries: [{ propertyName: "itemTemplate", first: true, predicate: BottomNavigationItemTemplateDirective, descendants: true }], exportAs: ["kendoBottomNavigation"], ngImport: i0, template: "\n <ng-container *ngIf=\"items\">\n <span kendoBottomNavigationItem\n *ngFor=\"let item of items; let idx=index\"\n role=\"link\"\n class=\"k-bottom-nav-item\"\n [disabledComponent]=\"disabled\"\n [item]=\"item\"\n [index]=\"idx\"\n [selectedIdx]=\"selectedIdx\"\n [itemTemplate]=\"itemTemplate\"\n [attr.data-kendo-bottomnavigation-index]=\"idx\"\n [ngClass]=\"item.cssClass\"\n [ngStyle]=\"item.cssStyle\"\n [orientation]=\"itemFlow\">\n </span>\n </ng-container>\n ", isInline: true, components: [{ type: BottomNavigationItemComponent, selector: "[kendoBottomNavigationItem]", inputs: ["itemTemplate", "item", "index", "disabledComponent", "selectedIdx", "orientation"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
1497
1559
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationComponent, decorators: [{
|
|
1498
1560
|
type: Component,
|
|
1499
1561
|
args: [{
|
|
@@ -1604,14 +1666,14 @@ const declarations$1 = [BottomNavigationItemComponent, ...exportedComponents];
|
|
|
1604
1666
|
class BottomNavigationModule {
|
|
1605
1667
|
}
|
|
1606
1668
|
BottomNavigationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1607
|
-
BottomNavigationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationModule, declarations: [BottomNavigationItemComponent, BottomNavigationComponent, BottomNavigationItemTemplateDirective], imports: [CommonModule], exports: [BottomNavigationComponent, BottomNavigationItemTemplateDirective] });
|
|
1608
|
-
BottomNavigationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationModule, imports: [[CommonModule]] });
|
|
1669
|
+
BottomNavigationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationModule, declarations: [BottomNavigationItemComponent, BottomNavigationComponent, BottomNavigationItemTemplateDirective], imports: [CommonModule, IconsModule], exports: [BottomNavigationComponent, BottomNavigationItemTemplateDirective] });
|
|
1670
|
+
BottomNavigationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationModule, imports: [[CommonModule, IconsModule]] });
|
|
1609
1671
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationModule, decorators: [{
|
|
1610
1672
|
type: NgModule,
|
|
1611
1673
|
args: [{
|
|
1612
1674
|
declarations: [declarations$1],
|
|
1613
1675
|
exports: [exportedComponents],
|
|
1614
|
-
imports: [CommonModule]
|
|
1676
|
+
imports: [CommonModule, IconsModule]
|
|
1615
1677
|
}]
|
|
1616
1678
|
}] });
|
|
1617
1679
|
|
|
@@ -1714,12 +1776,6 @@ class ActionSheetItemComponent {
|
|
|
1714
1776
|
}
|
|
1715
1777
|
manageIconClasses(item) {
|
|
1716
1778
|
const classes = ['k-actionsheet-item-icon'];
|
|
1717
|
-
if (item.icon) {
|
|
1718
|
-
classes.push(`k-icon k-i-${item.icon}`);
|
|
1719
|
-
}
|
|
1720
|
-
if (item.iconClass) {
|
|
1721
|
-
classes.push(`${item.iconClass}`);
|
|
1722
|
-
}
|
|
1723
1779
|
const isHexColor = isPresent(item.iconColor) && hexColorRegex.test(item.iconColor);
|
|
1724
1780
|
const isThemeColor = isPresent(item.iconColor) && item.iconColor !== '' && !isHexColor;
|
|
1725
1781
|
if (isThemeColor) {
|
|
@@ -1751,10 +1807,14 @@ ActionSheetItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
1751
1807
|
<ng-template #defaultTemplate>
|
|
1752
1808
|
<span class="k-actionsheet-action">
|
|
1753
1809
|
<span *ngIf="item.icon || item.iconClass" class="k-icon-wrap">
|
|
1754
|
-
<
|
|
1810
|
+
<kendo-icon-wrapper
|
|
1811
|
+
[name]="item.icon"
|
|
1812
|
+
[customFontClass]="item.iconClass"
|
|
1755
1813
|
[class]="manageIconClasses(item)"
|
|
1756
|
-
[
|
|
1757
|
-
|
|
1814
|
+
[svgIcon]="item.svgIcon"
|
|
1815
|
+
[style]="manageIconStyles(item)"
|
|
1816
|
+
>
|
|
1817
|
+
</kendo-icon-wrapper>
|
|
1758
1818
|
</span>
|
|
1759
1819
|
<span *ngIf="item.title || item.description" class="k-actionsheet-item-text">
|
|
1760
1820
|
<span *ngIf="item.title" class="k-actionsheet-item-title">{{item.title}}</span>
|
|
@@ -1762,7 +1822,7 @@ ActionSheetItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0
|
|
|
1762
1822
|
</span>
|
|
1763
1823
|
</span>
|
|
1764
1824
|
</ng-template>
|
|
1765
|
-
`, isInline: true,
|
|
1825
|
+
`, isInline: true, components: [{ type: i1$1.IconWrapperComponent, selector: "kendo-icon-wrapper", inputs: ["name", "svgIcon", "innerCssClass", "customFontClass"], exportAs: ["kendoIconWrapper"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
1766
1826
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionSheetItemComponent, decorators: [{
|
|
1767
1827
|
type: Component,
|
|
1768
1828
|
args: [{
|
|
@@ -1778,10 +1838,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
1778
1838
|
<ng-template #defaultTemplate>
|
|
1779
1839
|
<span class="k-actionsheet-action">
|
|
1780
1840
|
<span *ngIf="item.icon || item.iconClass" class="k-icon-wrap">
|
|
1781
|
-
<
|
|
1841
|
+
<kendo-icon-wrapper
|
|
1842
|
+
[name]="item.icon"
|
|
1843
|
+
[customFontClass]="item.iconClass"
|
|
1782
1844
|
[class]="manageIconClasses(item)"
|
|
1783
|
-
[
|
|
1784
|
-
|
|
1845
|
+
[svgIcon]="item.svgIcon"
|
|
1846
|
+
[style]="manageIconStyles(item)"
|
|
1847
|
+
>
|
|
1848
|
+
</kendo-icon-wrapper>
|
|
1785
1849
|
</span>
|
|
1786
1850
|
<span *ngIf="item.title || item.description" class="k-actionsheet-item-text">
|
|
1787
1851
|
<span *ngIf="item.title" class="k-actionsheet-item-title">{{item.title}}</span>
|
|
@@ -1847,7 +1911,7 @@ class ActionSheetListComponent {
|
|
|
1847
1911
|
}
|
|
1848
1912
|
}
|
|
1849
1913
|
ActionSheetListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionSheetListComponent, deps: [{ token: i0.Renderer2 }, { token: i0.NgZone }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1850
|
-
ActionSheetListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ActionSheetListComponent, selector: "[kendoActionSheetList]", inputs: { groupItems: "groupItems", allItems: "allItems", itemTemplate: "itemTemplate" }, outputs: { itemClick: "itemClick" }, ngImport: i0, template: "\n <span *ngFor=\"let item of groupItems\" kendoActionSheetItem\n tabindex=\"0\"\n role=\"button\"\n [attr.aria-disabled]=\"item.disabled\"\n [class.k-actionsheet-item]=\"true\"\n [attr.kendo-actionsheet-item-index]=\"setAttrIndex(item)\"\n [class.k-disabled]=\"item.disabled\"\n [ngClass]=\"item.cssClass\"\n [ngStyle]=\"item.cssStyle\"\n [itemTemplate]=\"itemTemplate\"\n [item]=\"item\">\n </span>\n ", isInline: true, components: [{ type: ActionSheetItemComponent, selector: "[kendoActionSheetItem]", inputs: ["itemTemplate", "item"] }], directives: [{ type:
|
|
1914
|
+
ActionSheetListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ActionSheetListComponent, selector: "[kendoActionSheetList]", inputs: { groupItems: "groupItems", allItems: "allItems", itemTemplate: "itemTemplate" }, outputs: { itemClick: "itemClick" }, ngImport: i0, template: "\n <span *ngFor=\"let item of groupItems\" kendoActionSheetItem\n tabindex=\"0\"\n role=\"button\"\n [attr.aria-disabled]=\"item.disabled\"\n [class.k-actionsheet-item]=\"true\"\n [attr.kendo-actionsheet-item-index]=\"setAttrIndex(item)\"\n [class.k-disabled]=\"item.disabled\"\n [ngClass]=\"item.cssClass\"\n [ngStyle]=\"item.cssStyle\"\n [itemTemplate]=\"itemTemplate\"\n [item]=\"item\">\n </span>\n ", isInline: true, components: [{ type: ActionSheetItemComponent, selector: "[kendoActionSheetItem]", inputs: ["itemTemplate", "item"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
|
|
1851
1915
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionSheetListComponent, decorators: [{
|
|
1852
1916
|
type: Component,
|
|
1853
1917
|
args: [{
|
|
@@ -2075,7 +2139,7 @@ ActionSheetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", v
|
|
|
2075
2139
|
</div>
|
|
2076
2140
|
</div>
|
|
2077
2141
|
</div>
|
|
2078
|
-
`, isInline: true, components: [{ type: ActionSheetListComponent, selector: "[kendoActionSheetList]", inputs: ["groupItems", "allItems", "itemTemplate"], outputs: ["itemClick"] }], directives: [{ type:
|
|
2142
|
+
`, isInline: true, components: [{ type: ActionSheetListComponent, selector: "[kendoActionSheetList]", inputs: ["groupItems", "allItems", "itemTemplate"], outputs: ["itemClick"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }] });
|
|
2079
2143
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionSheetComponent, decorators: [{
|
|
2080
2144
|
type: Component,
|
|
2081
2145
|
args: [{
|
|
@@ -2232,17 +2296,17 @@ ActionSheetModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", versi
|
|
|
2232
2296
|
ActionSheetListComponent, ActionSheetComponent, ActionSheetHeaderTemplateDirective,
|
|
2233
2297
|
ActionSheetItemTemplateDirective,
|
|
2234
2298
|
ActionSheetContentTemplateDirective,
|
|
2235
|
-
ActionSheetFooterTemplateDirective], imports: [CommonModule], exports: [ActionSheetComponent, ActionSheetHeaderTemplateDirective,
|
|
2299
|
+
ActionSheetFooterTemplateDirective], imports: [CommonModule, IconsModule], exports: [ActionSheetComponent, ActionSheetHeaderTemplateDirective,
|
|
2236
2300
|
ActionSheetItemTemplateDirective,
|
|
2237
2301
|
ActionSheetContentTemplateDirective,
|
|
2238
2302
|
ActionSheetFooterTemplateDirective] });
|
|
2239
|
-
ActionSheetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionSheetModule, imports: [[CommonModule]] });
|
|
2303
|
+
ActionSheetModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionSheetModule, imports: [[CommonModule, IconsModule]] });
|
|
2240
2304
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionSheetModule, decorators: [{
|
|
2241
2305
|
type: NgModule,
|
|
2242
2306
|
args: [{
|
|
2243
2307
|
declarations: [declarations],
|
|
2244
2308
|
exports: [exportedModules],
|
|
2245
|
-
imports: [CommonModule]
|
|
2309
|
+
imports: [CommonModule, IconsModule]
|
|
2246
2310
|
}]
|
|
2247
2311
|
}] });
|
|
2248
2312
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-navigation",
|
|
3
|
-
"version": "11.0.0-develop.
|
|
3
|
+
"version": "11.0.0-develop.111",
|
|
4
4
|
"description": "Kendo UI Navigation for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -21,9 +21,10 @@
|
|
|
21
21
|
"@angular/core": "13 - 15",
|
|
22
22
|
"@angular/platform-browser": "13 - 15",
|
|
23
23
|
"@progress/kendo-licensing": "^1.0.2",
|
|
24
|
-
"@progress/kendo-angular-common": "11.0.0-develop.
|
|
25
|
-
"@progress/kendo-angular-
|
|
26
|
-
"@progress/kendo-angular-
|
|
24
|
+
"@progress/kendo-angular-common": "11.0.0-develop.111",
|
|
25
|
+
"@progress/kendo-angular-icons": "11.0.0-develop.111",
|
|
26
|
+
"@progress/kendo-angular-l10n": "11.0.0-develop.111",
|
|
27
|
+
"@progress/kendo-angular-schematics": "11.0.0-develop.111",
|
|
27
28
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
@@ -2,7 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
4
4
|
function default_1(options) {
|
|
5
|
-
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'NavigationModule', package: 'navigation'
|
|
5
|
+
const finalOptions = Object.assign(Object.assign({}, options), { mainNgModule: 'NavigationModule', package: 'navigation', peerDependencies: {
|
|
6
|
+
// Peer dependency of icons
|
|
7
|
+
"@progress/kendo-svg-icons": "^1.0.0"
|
|
8
|
+
} });
|
|
6
9
|
return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
|
|
7
10
|
}
|
|
8
11
|
exports.default = default_1;
|