@progress/kendo-angular-navigation 12.2.0-develop.1 → 12.2.0-develop.2
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 +8 -5
- package/esm2020/actionsheet/actionsheet.component.mjs +10 -6
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-navigation.mjs +12 -8
- package/fesm2020/progress-kendo-angular-navigation.mjs +12 -8
- package/package.json +5 -5
|
@@ -57,6 +57,13 @@ export declare class ActionSheetComponent implements AfterViewInit, OnDestroy, O
|
|
|
57
57
|
* @default false
|
|
58
58
|
*/
|
|
59
59
|
expanded: boolean;
|
|
60
|
+
/**
|
|
61
|
+
* Sets the `aria-labelledby` attribute of the ActionSheet wrapper element.
|
|
62
|
+
* Use this option when the built-in header element is replaced through the [`ActionSheetHeaderTemplate`]({% slug api_navigation_actionsheetheadertemplatedirective %})
|
|
63
|
+
* or [`ActionSheetContentTemplate`]({% slug api_navigation_actionsheetcontenttemplatedirective %}).
|
|
64
|
+
*
|
|
65
|
+
*/
|
|
66
|
+
titleId: string;
|
|
60
67
|
/**
|
|
61
68
|
* Fires when the `expanded` property of the component is updated.
|
|
62
69
|
* Used to provide a two-way binding for the `expanded` property.
|
|
@@ -102,10 +109,6 @@ export declare class ActionSheetComponent implements AfterViewInit, OnDestroy, O
|
|
|
102
109
|
* @hidden
|
|
103
110
|
*/
|
|
104
111
|
footerTemplate: ActionSheetFooterTemplateDirective;
|
|
105
|
-
/**
|
|
106
|
-
* @hidden
|
|
107
|
-
*/
|
|
108
|
-
titleId: string;
|
|
109
112
|
private dynamicRTLSubscription;
|
|
110
113
|
private rtl;
|
|
111
114
|
private domSubs;
|
|
@@ -151,5 +154,5 @@ export declare class ActionSheetComponent implements AfterViewInit, OnDestroy, O
|
|
|
151
154
|
private onAnimationEnd;
|
|
152
155
|
private playAnimation;
|
|
153
156
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetComponent, never>;
|
|
154
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionSheetComponent, "kendo-actionsheet", ["kendoActionSheet"], { "title": "title"; "subtitle": "subtitle"; "items": "items"; "cssClass": "cssClass"; "animation": "animation"; "expanded": "expanded"; }, { "expandedChange": "expandedChange"; "expand": "expand"; "collapse": "collapse"; "itemClick": "itemClick"; "overlayClick": "overlayClick"; }, ["actionSheetTemplate", "headerTemplate", "contentTemplate", "itemTemplate", "footerTemplate"], never>;
|
|
157
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionSheetComponent, "kendo-actionsheet", ["kendoActionSheet"], { "title": "title"; "subtitle": "subtitle"; "items": "items"; "cssClass": "cssClass"; "animation": "animation"; "expanded": "expanded"; "titleId": "titleId"; }, { "expandedChange": "expandedChange"; "expand": "expand"; "collapse": "collapse"; "itemClick": "itemClick"; "overlayClick": "overlayClick"; }, ["actionSheetTemplate", "headerTemplate", "contentTemplate", "itemTemplate", "footerTemplate"], never>;
|
|
155
158
|
}
|
|
@@ -44,6 +44,13 @@ export class ActionSheetComponent {
|
|
|
44
44
|
* @default false
|
|
45
45
|
*/
|
|
46
46
|
this.expanded = false;
|
|
47
|
+
/**
|
|
48
|
+
* Sets the `aria-labelledby` attribute of the ActionSheet wrapper element.
|
|
49
|
+
* Use this option when the built-in header element is replaced through the [`ActionSheetHeaderTemplate`]({% slug api_navigation_actionsheetheadertemplatedirective %})
|
|
50
|
+
* or [`ActionSheetContentTemplate`]({% slug api_navigation_actionsheetcontenttemplatedirective %}).
|
|
51
|
+
*
|
|
52
|
+
*/
|
|
53
|
+
this.titleId = getId('k-actionsheet-title');
|
|
47
54
|
/**
|
|
48
55
|
* Fires when the `expanded` property of the component is updated.
|
|
49
56
|
* Used to provide a two-way binding for the `expanded` property.
|
|
@@ -65,10 +72,6 @@ export class ActionSheetComponent {
|
|
|
65
72
|
* Fires when the modal overlay is clicked.
|
|
66
73
|
*/
|
|
67
74
|
this.overlayClick = new EventEmitter();
|
|
68
|
-
/**
|
|
69
|
-
* @hidden
|
|
70
|
-
*/
|
|
71
|
-
this.titleId = null;
|
|
72
75
|
this.rtl = false;
|
|
73
76
|
this.domSubs = new Subscription();
|
|
74
77
|
this.animationEnd = new EventEmitter();
|
|
@@ -77,7 +80,6 @@ export class ActionSheetComponent {
|
|
|
77
80
|
this.rtl = rtl;
|
|
78
81
|
this.direction = this.rtl ? 'rtl' : 'ltr';
|
|
79
82
|
});
|
|
80
|
-
this.titleId = getId('k-actionsheet-title');
|
|
81
83
|
}
|
|
82
84
|
/**
|
|
83
85
|
* @hidden
|
|
@@ -256,7 +258,7 @@ export class ActionSheetComponent {
|
|
|
256
258
|
}
|
|
257
259
|
}
|
|
258
260
|
ActionSheetComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ActionSheetComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i2.AnimationBuilder }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
259
|
-
ActionSheetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: { title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", animation: "animation", expanded: "expanded" }, outputs: { expandedChange: "expandedChange", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
261
|
+
ActionSheetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: { title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", animation: "animation", expanded: "expanded", titleId: "titleId" }, outputs: { expandedChange: "expandedChange", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
260
262
|
LocalizationService,
|
|
261
263
|
{
|
|
262
264
|
provide: L10N_PREFIX,
|
|
@@ -429,6 +431,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
429
431
|
type: Input
|
|
430
432
|
}], expanded: [{
|
|
431
433
|
type: Input
|
|
434
|
+
}], titleId: [{
|
|
435
|
+
type: Input
|
|
432
436
|
}], expandedChange: [{
|
|
433
437
|
type: Output
|
|
434
438
|
}], expand: [{
|
|
@@ -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: '12.2.0-develop.
|
|
12
|
+
publishDate: 1684484572,
|
|
13
|
+
version: '12.2.0-develop.2',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -26,8 +26,8 @@ const packageMetadata = {
|
|
|
26
26
|
name: '@progress/kendo-angular-navigation',
|
|
27
27
|
productName: 'Kendo UI for Angular',
|
|
28
28
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
29
|
-
publishDate:
|
|
30
|
-
version: '12.2.0-develop.
|
|
29
|
+
publishDate: 1684484572,
|
|
30
|
+
version: '12.2.0-develop.2',
|
|
31
31
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
32
32
|
};
|
|
33
33
|
|
|
@@ -2008,6 +2008,13 @@ class ActionSheetComponent {
|
|
|
2008
2008
|
* @default false
|
|
2009
2009
|
*/
|
|
2010
2010
|
this.expanded = false;
|
|
2011
|
+
/**
|
|
2012
|
+
* Sets the `aria-labelledby` attribute of the ActionSheet wrapper element.
|
|
2013
|
+
* Use this option when the built-in header element is replaced through the [`ActionSheetHeaderTemplate`]({% slug api_navigation_actionsheetheadertemplatedirective %})
|
|
2014
|
+
* or [`ActionSheetContentTemplate`]({% slug api_navigation_actionsheetcontenttemplatedirective %}).
|
|
2015
|
+
*
|
|
2016
|
+
*/
|
|
2017
|
+
this.titleId = getId('k-actionsheet-title');
|
|
2011
2018
|
/**
|
|
2012
2019
|
* Fires when the `expanded` property of the component is updated.
|
|
2013
2020
|
* Used to provide a two-way binding for the `expanded` property.
|
|
@@ -2029,10 +2036,6 @@ class ActionSheetComponent {
|
|
|
2029
2036
|
* Fires when the modal overlay is clicked.
|
|
2030
2037
|
*/
|
|
2031
2038
|
this.overlayClick = new EventEmitter();
|
|
2032
|
-
/**
|
|
2033
|
-
* @hidden
|
|
2034
|
-
*/
|
|
2035
|
-
this.titleId = null;
|
|
2036
2039
|
this.rtl = false;
|
|
2037
2040
|
this.domSubs = new Subscription();
|
|
2038
2041
|
this.animationEnd = new EventEmitter();
|
|
@@ -2041,7 +2044,6 @@ class ActionSheetComponent {
|
|
|
2041
2044
|
this.rtl = rtl;
|
|
2042
2045
|
this.direction = this.rtl ? 'rtl' : 'ltr';
|
|
2043
2046
|
});
|
|
2044
|
-
this.titleId = getId('k-actionsheet-title');
|
|
2045
2047
|
}
|
|
2046
2048
|
/**
|
|
2047
2049
|
* @hidden
|
|
@@ -2223,7 +2225,7 @@ class ActionSheetComponent {
|
|
|
2223
2225
|
}
|
|
2224
2226
|
}
|
|
2225
2227
|
ActionSheetComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ActionSheetComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i2$1.AnimationBuilder }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2226
|
-
ActionSheetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: { title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", animation: "animation", expanded: "expanded" }, outputs: { expandedChange: "expandedChange", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
2228
|
+
ActionSheetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: { title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", animation: "animation", expanded: "expanded", titleId: "titleId" }, outputs: { expandedChange: "expandedChange", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
2227
2229
|
LocalizationService,
|
|
2228
2230
|
{
|
|
2229
2231
|
provide: L10N_PREFIX,
|
|
@@ -2396,6 +2398,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2396
2398
|
type: Input
|
|
2397
2399
|
}], expanded: [{
|
|
2398
2400
|
type: Input
|
|
2401
|
+
}], titleId: [{
|
|
2402
|
+
type: Input
|
|
2399
2403
|
}], expandedChange: [{
|
|
2400
2404
|
type: Output
|
|
2401
2405
|
}], expand: [{
|
|
@@ -26,8 +26,8 @@ const packageMetadata = {
|
|
|
26
26
|
name: '@progress/kendo-angular-navigation',
|
|
27
27
|
productName: 'Kendo UI for Angular',
|
|
28
28
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
29
|
-
publishDate:
|
|
30
|
-
version: '12.2.0-develop.
|
|
29
|
+
publishDate: 1684484572,
|
|
30
|
+
version: '12.2.0-develop.2',
|
|
31
31
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
32
32
|
};
|
|
33
33
|
|
|
@@ -1994,6 +1994,13 @@ class ActionSheetComponent {
|
|
|
1994
1994
|
* @default false
|
|
1995
1995
|
*/
|
|
1996
1996
|
this.expanded = false;
|
|
1997
|
+
/**
|
|
1998
|
+
* Sets the `aria-labelledby` attribute of the ActionSheet wrapper element.
|
|
1999
|
+
* Use this option when the built-in header element is replaced through the [`ActionSheetHeaderTemplate`]({% slug api_navigation_actionsheetheadertemplatedirective %})
|
|
2000
|
+
* or [`ActionSheetContentTemplate`]({% slug api_navigation_actionsheetcontenttemplatedirective %}).
|
|
2001
|
+
*
|
|
2002
|
+
*/
|
|
2003
|
+
this.titleId = getId('k-actionsheet-title');
|
|
1997
2004
|
/**
|
|
1998
2005
|
* Fires when the `expanded` property of the component is updated.
|
|
1999
2006
|
* Used to provide a two-way binding for the `expanded` property.
|
|
@@ -2015,10 +2022,6 @@ class ActionSheetComponent {
|
|
|
2015
2022
|
* Fires when the modal overlay is clicked.
|
|
2016
2023
|
*/
|
|
2017
2024
|
this.overlayClick = new EventEmitter();
|
|
2018
|
-
/**
|
|
2019
|
-
* @hidden
|
|
2020
|
-
*/
|
|
2021
|
-
this.titleId = null;
|
|
2022
2025
|
this.rtl = false;
|
|
2023
2026
|
this.domSubs = new Subscription();
|
|
2024
2027
|
this.animationEnd = new EventEmitter();
|
|
@@ -2027,7 +2030,6 @@ class ActionSheetComponent {
|
|
|
2027
2030
|
this.rtl = rtl;
|
|
2028
2031
|
this.direction = this.rtl ? 'rtl' : 'ltr';
|
|
2029
2032
|
});
|
|
2030
|
-
this.titleId = getId('k-actionsheet-title');
|
|
2031
2033
|
}
|
|
2032
2034
|
/**
|
|
2033
2035
|
* @hidden
|
|
@@ -2206,7 +2208,7 @@ class ActionSheetComponent {
|
|
|
2206
2208
|
}
|
|
2207
2209
|
}
|
|
2208
2210
|
ActionSheetComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ActionSheetComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i2$1.AnimationBuilder }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2209
|
-
ActionSheetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: { title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", animation: "animation", expanded: "expanded" }, outputs: { expandedChange: "expandedChange", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
2211
|
+
ActionSheetComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: ActionSheetComponent, selector: "kendo-actionsheet", inputs: { title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", animation: "animation", expanded: "expanded", titleId: "titleId" }, outputs: { expandedChange: "expandedChange", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
2210
2212
|
LocalizationService,
|
|
2211
2213
|
{
|
|
2212
2214
|
provide: L10N_PREFIX,
|
|
@@ -2379,6 +2381,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2379
2381
|
type: Input
|
|
2380
2382
|
}], expanded: [{
|
|
2381
2383
|
type: Input
|
|
2384
|
+
}], titleId: [{
|
|
2385
|
+
type: Input
|
|
2382
2386
|
}], expandedChange: [{
|
|
2383
2387
|
type: Output
|
|
2384
2388
|
}], expand: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-navigation",
|
|
3
|
-
"version": "12.2.0-develop.
|
|
3
|
+
"version": "12.2.0-develop.2",
|
|
4
4
|
"description": "Kendo UI Navigation for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -21,14 +21,14 @@
|
|
|
21
21
|
"@angular/core": "13 - 16",
|
|
22
22
|
"@angular/platform-browser": "13 - 16",
|
|
23
23
|
"@progress/kendo-licensing": "^1.0.2",
|
|
24
|
-
"@progress/kendo-angular-common": "12.2.0-develop.
|
|
25
|
-
"@progress/kendo-angular-icons": "12.2.0-develop.
|
|
26
|
-
"@progress/kendo-angular-l10n": "12.2.0-develop.
|
|
24
|
+
"@progress/kendo-angular-common": "12.2.0-develop.2",
|
|
25
|
+
"@progress/kendo-angular-icons": "12.2.0-develop.2",
|
|
26
|
+
"@progress/kendo-angular-l10n": "12.2.0-develop.2",
|
|
27
27
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"tslib": "^2.3.1",
|
|
31
|
-
"@progress/kendo-angular-schematics": "12.2.0-develop.
|
|
31
|
+
"@progress/kendo-angular-schematics": "12.2.0-develop.2"
|
|
32
32
|
},
|
|
33
33
|
"schematics": "./schematics/collection.json",
|
|
34
34
|
"module": "fesm2015/progress-kendo-angular-navigation.mjs",
|