@progress/kendo-angular-navigation 11.2.0-develop.1 → 11.2.0-develop.11
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 +49 -6
- package/actionsheet/animation/animations.d.ts +13 -0
- package/actionsheet/models/animation.d.ts +13 -0
- package/actionsheet/models/index.d.ts +1 -0
- package/breadcrumb/breadcrumb.component.d.ts +2 -2
- package/esm2020/actionsheet/actionsheet.component.mjs +241 -128
- package/esm2020/actionsheet/animation/animations.mjs +23 -0
- package/esm2020/actionsheet/models/animation.mjs +5 -0
- package/esm2020/bottomnavigation/bottomnavigation-item.component.mjs +4 -1
- package/esm2020/breadcrumb/breadcrumb.component.mjs +7 -9
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-navigation.mjs +269 -138
- package/fesm2020/progress-kendo-angular-navigation.mjs +269 -138
- package/index.d.ts +1 -1
- package/package.json +5 -5
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { animate, style } from '@angular/animations';
|
|
6
|
+
/**
|
|
7
|
+
* @hidden
|
|
8
|
+
*/
|
|
9
|
+
export function slideUp(duration, height) {
|
|
10
|
+
return [
|
|
11
|
+
style({ overflow: 'hidden', display: 'block', height: 0 }),
|
|
12
|
+
animate(`${duration}ms ease-in`, style({ height: `${height}` }))
|
|
13
|
+
];
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @hidden
|
|
17
|
+
*/
|
|
18
|
+
export function slideDown(duration, height) {
|
|
19
|
+
return [
|
|
20
|
+
style({ overflow: 'hidden', height: `${height}` }),
|
|
21
|
+
animate(`${duration}ms ease-in`, style({ overflow: 'hidden', height: 0 }))
|
|
22
|
+
];
|
|
23
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -39,7 +39,7 @@ export class BottomNavigationItemComponent {
|
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
BottomNavigationItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BottomNavigationItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
42
|
-
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: `
|
|
42
|
+
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", "attr.aria-current": "this.selectedClass", "class.k-selected": "this.selectedClass" } }, ngImport: i0, template: `
|
|
43
43
|
<ng-container *ngIf="!itemTemplate">
|
|
44
44
|
<kendo-icon-wrapper *ngIf="itemIcon"
|
|
45
45
|
class="k-bottom-nav-item-icon"
|
|
@@ -110,6 +110,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
110
110
|
}], selectedClass: [{
|
|
111
111
|
type: HostBinding,
|
|
112
112
|
args: ['attr.aria-selected']
|
|
113
|
+
}, {
|
|
114
|
+
type: HostBinding,
|
|
115
|
+
args: ['attr.aria-current']
|
|
113
116
|
}, {
|
|
114
117
|
type: HostBinding,
|
|
115
118
|
args: ['class.k-selected']
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Copyright © 2023 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
|
+
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
5
6
|
import { Component, ContentChild, Input, Output, EventEmitter, ViewChild, HostBinding, ElementRef, ChangeDetectorRef, NgZone, ViewChildren, QueryList, isDevMode } from '@angular/core';
|
|
6
7
|
import { Subscription, ReplaySubject, merge, Subject } from 'rxjs';
|
|
7
8
|
import { filter, map, share, startWith } from 'rxjs/operators';
|
|
@@ -48,11 +49,11 @@ import * as i4 from "@angular/common";
|
|
|
48
49
|
* ```
|
|
49
50
|
*/
|
|
50
51
|
export class BreadCrumbComponent {
|
|
51
|
-
constructor(el, cdr, zone
|
|
52
|
+
constructor(localization, el, cdr, zone) {
|
|
53
|
+
this.localization = localization;
|
|
52
54
|
this.el = el;
|
|
53
55
|
this.cdr = cdr;
|
|
54
56
|
this.zone = zone;
|
|
55
|
-
this.localization = localization;
|
|
56
57
|
/**
|
|
57
58
|
* Fires when a Breadcrumb item is clicked. The event will not be fired by disabled items and the last item.
|
|
58
59
|
*/
|
|
@@ -184,8 +185,8 @@ export class BreadCrumbComponent {
|
|
|
184
185
|
}));
|
|
185
186
|
}
|
|
186
187
|
}
|
|
187
|
-
BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, deps: [{ token:
|
|
188
|
-
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-
|
|
188
|
+
BreadCrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: BreadCrumbComponent, deps: [{ token: i1.LocalizationService }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
189
|
+
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-breadcrumb": "this.hostClasses", "class.k-breadcrumb-wrap": "this.wrapMode", "attr.dir": "this.getDir" } }, providers: [
|
|
189
190
|
LocalizationService,
|
|
190
191
|
{
|
|
191
192
|
provide: L10N_PREFIX,
|
|
@@ -258,7 +259,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
258
259
|
<kendo-resize-sensor [rateLimit]="1000" #resizeSensor></kendo-resize-sensor>
|
|
259
260
|
`
|
|
260
261
|
}]
|
|
261
|
-
}], ctorParameters: function () { return [{ type:
|
|
262
|
+
}], ctorParameters: function () { return [{ type: i1.LocalizationService }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }]; }, propDecorators: { items: [{
|
|
262
263
|
type: Input
|
|
263
264
|
}], separatorIcon: [{
|
|
264
265
|
type: Input
|
|
@@ -279,11 +280,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
279
280
|
args: [BreadCrumbListComponent, { static: true }]
|
|
280
281
|
}], itemTemplate: [{
|
|
281
282
|
type: ContentChild,
|
|
282
|
-
args: [BreadCrumbItemTemplateDirective
|
|
283
|
+
args: [BreadCrumbItemTemplateDirective]
|
|
283
284
|
}], hostClasses: [{
|
|
284
|
-
type: HostBinding,
|
|
285
|
-
args: ['class.k-widget']
|
|
286
|
-
}, {
|
|
287
285
|
type: HostBinding,
|
|
288
286
|
args: ['class.k-breadcrumb']
|
|
289
287
|
}], wrapMode: [{
|
|
@@ -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: '11.2.0-develop.
|
|
12
|
+
publishDate: 1675863059,
|
|
13
|
+
version: '11.2.0-develop.11',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|