@progress/kendo-angular-navigation 19.0.0-develop.7 → 19.0.0-develop.9
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.
|
@@ -91,6 +91,12 @@ export declare class ActionSheetComponent implements AfterViewInit, OnDestroy, O
|
|
|
91
91
|
*
|
|
92
92
|
*/
|
|
93
93
|
titleId: string;
|
|
94
|
+
/**
|
|
95
|
+
* @hidden
|
|
96
|
+
*
|
|
97
|
+
* Determines if the ActionSheet should focus the first focusable element when opened.
|
|
98
|
+
*/
|
|
99
|
+
initialFocus: boolean;
|
|
94
100
|
/**
|
|
95
101
|
* Fires when the `expanded` property of the component is updated.
|
|
96
102
|
* Used to provide a two-way binding for the `expanded` property.
|
|
@@ -207,5 +213,5 @@ export declare class ActionSheetComponent implements AfterViewInit, OnDestroy, O
|
|
|
207
213
|
private onAnimationEnd;
|
|
208
214
|
private playAnimation;
|
|
209
215
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetComponent, never>;
|
|
210
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionSheetComponent, "kendo-actionsheet", ["kendoActionSheet"], { "actions": { "alias": "actions"; "required": false; }; "actionsLayout": { "alias": "actionsLayout"; "required": false; }; "overlayClickClose": { "alias": "overlayClickClose"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "items": { "alias": "items"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "cssStyle": { "alias": "cssStyle"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "titleId": { "alias": "titleId"; "required": false; }; }, { "expandedChange": "expandedChange"; "action": "action"; "expand": "expand"; "collapse": "collapse"; "itemClick": "itemClick"; "overlayClick": "overlayClick"; }, ["actionSheetTemplate", "headerTemplate", "contentTemplate", "itemTemplate", "footerTemplate", "actionSheetViews"], ["kendo-actionsheet-view"], true, never>;
|
|
216
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionSheetComponent, "kendo-actionsheet", ["kendoActionSheet"], { "actions": { "alias": "actions"; "required": false; }; "actionsLayout": { "alias": "actionsLayout"; "required": false; }; "overlayClickClose": { "alias": "overlayClickClose"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "items": { "alias": "items"; "required": false; }; "cssClass": { "alias": "cssClass"; "required": false; }; "cssStyle": { "alias": "cssStyle"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "titleId": { "alias": "titleId"; "required": false; }; "initialFocus": { "alias": "initialFocus"; "required": false; }; }, { "expandedChange": "expandedChange"; "action": "action"; "expand": "expand"; "collapse": "collapse"; "itemClick": "itemClick"; "overlayClick": "overlayClick"; }, ["actionSheetTemplate", "headerTemplate", "contentTemplate", "itemTemplate", "footerTemplate", "actionSheetViews"], ["kendo-actionsheet-view"], true, never>;
|
|
211
217
|
}
|
|
@@ -106,6 +106,12 @@ export class ActionSheetComponent {
|
|
|
106
106
|
*
|
|
107
107
|
*/
|
|
108
108
|
titleId = getId('k-actionsheet-title');
|
|
109
|
+
/**
|
|
110
|
+
* @hidden
|
|
111
|
+
*
|
|
112
|
+
* Determines if the ActionSheet should focus the first focusable element when opened.
|
|
113
|
+
*/
|
|
114
|
+
initialFocus = true;
|
|
109
115
|
/**
|
|
110
116
|
* Fires when the `expanded` property of the component is updated.
|
|
111
117
|
* Used to provide a two-way binding for the `expanded` property.
|
|
@@ -322,7 +328,7 @@ export class ActionSheetComponent {
|
|
|
322
328
|
}
|
|
323
329
|
handleInitialFocus() {
|
|
324
330
|
const [firstFocusable] = getFirstAndLastFocusable(this.element.nativeElement);
|
|
325
|
-
if (firstFocusable) {
|
|
331
|
+
if (firstFocusable && this.initialFocus) {
|
|
326
332
|
firstFocusable.focus();
|
|
327
333
|
}
|
|
328
334
|
}
|
|
@@ -381,7 +387,7 @@ export class ActionSheetComponent {
|
|
|
381
387
|
this.player.play();
|
|
382
388
|
}
|
|
383
389
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.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 });
|
|
384
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ActionSheetComponent, isStandalone: true, selector: "kendo-actionsheet", inputs: { actions: "actions", actionsLayout: "actionsLayout", overlayClickClose: "overlayClickClose", title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", cssStyle: "cssStyle", animation: "animation", expanded: "expanded", titleId: "titleId" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
390
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ActionSheetComponent, isStandalone: true, selector: "kendo-actionsheet", inputs: { actions: "actions", actionsLayout: "actionsLayout", overlayClickClose: "overlayClickClose", title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", cssStyle: "cssStyle", animation: "animation", expanded: "expanded", titleId: "titleId", initialFocus: "initialFocus" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
385
391
|
LocalizationService,
|
|
386
392
|
{
|
|
387
393
|
provide: L10N_PREFIX,
|
|
@@ -619,6 +625,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
619
625
|
type: Input
|
|
620
626
|
}], titleId: [{
|
|
621
627
|
type: Input
|
|
628
|
+
}], initialFocus: [{
|
|
629
|
+
type: Input
|
|
622
630
|
}], expandedChange: [{
|
|
623
631
|
type: Output
|
|
624
632
|
}], action: [{
|
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.0.0-develop.
|
|
13
|
+
publishDate: 1746776340,
|
|
14
|
+
version: '19.0.0-develop.9',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -25,8 +25,8 @@ const packageMetadata = {
|
|
|
25
25
|
productName: 'Kendo UI for Angular',
|
|
26
26
|
productCode: 'KENDOUIANGULAR',
|
|
27
27
|
productCodes: ['KENDOUIANGULAR'],
|
|
28
|
-
publishDate:
|
|
29
|
-
version: '19.0.0-develop.
|
|
28
|
+
publishDate: 1746776340,
|
|
29
|
+
version: '19.0.0-develop.9',
|
|
30
30
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
31
31
|
};
|
|
32
32
|
|
|
@@ -771,6 +771,12 @@ class ActionSheetComponent {
|
|
|
771
771
|
*
|
|
772
772
|
*/
|
|
773
773
|
titleId = getId('k-actionsheet-title');
|
|
774
|
+
/**
|
|
775
|
+
* @hidden
|
|
776
|
+
*
|
|
777
|
+
* Determines if the ActionSheet should focus the first focusable element when opened.
|
|
778
|
+
*/
|
|
779
|
+
initialFocus = true;
|
|
774
780
|
/**
|
|
775
781
|
* Fires when the `expanded` property of the component is updated.
|
|
776
782
|
* Used to provide a two-way binding for the `expanded` property.
|
|
@@ -987,7 +993,7 @@ class ActionSheetComponent {
|
|
|
987
993
|
}
|
|
988
994
|
handleInitialFocus() {
|
|
989
995
|
const [firstFocusable] = getFirstAndLastFocusable(this.element.nativeElement);
|
|
990
|
-
if (firstFocusable) {
|
|
996
|
+
if (firstFocusable && this.initialFocus) {
|
|
991
997
|
firstFocusable.focus();
|
|
992
998
|
}
|
|
993
999
|
}
|
|
@@ -1046,7 +1052,7 @@ class ActionSheetComponent {
|
|
|
1046
1052
|
this.player.play();
|
|
1047
1053
|
}
|
|
1048
1054
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.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 });
|
|
1049
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ActionSheetComponent, isStandalone: true, selector: "kendo-actionsheet", inputs: { actions: "actions", actionsLayout: "actionsLayout", overlayClickClose: "overlayClickClose", title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", cssStyle: "cssStyle", animation: "animation", expanded: "expanded", titleId: "titleId" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
1055
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ActionSheetComponent, isStandalone: true, selector: "kendo-actionsheet", inputs: { actions: "actions", actionsLayout: "actionsLayout", overlayClickClose: "overlayClickClose", title: "title", subtitle: "subtitle", items: "items", cssClass: "cssClass", cssStyle: "cssStyle", animation: "animation", expanded: "expanded", titleId: "titleId", initialFocus: "initialFocus" }, outputs: { expandedChange: "expandedChange", action: "action", expand: "expand", collapse: "collapse", itemClick: "itemClick", overlayClick: "overlayClick" }, host: { properties: { "class.k-actionsheet-container": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
1050
1056
|
LocalizationService,
|
|
1051
1057
|
{
|
|
1052
1058
|
provide: L10N_PREFIX,
|
|
@@ -1284,6 +1290,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1284
1290
|
type: Input
|
|
1285
1291
|
}], titleId: [{
|
|
1286
1292
|
type: Input
|
|
1293
|
+
}], initialFocus: [{
|
|
1294
|
+
type: Input
|
|
1287
1295
|
}], expandedChange: [{
|
|
1288
1296
|
type: Output
|
|
1289
1297
|
}], action: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-navigation",
|
|
3
|
-
"version": "19.0.0-develop.
|
|
3
|
+
"version": "19.0.0-develop.9",
|
|
4
4
|
"description": "Kendo UI Navigation for Angular",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"package": {
|
|
18
18
|
"productName": "Kendo UI for Angular",
|
|
19
19
|
"productCode": "KENDOUIANGULAR",
|
|
20
|
-
"publishDate":
|
|
20
|
+
"publishDate": 1746776340,
|
|
21
21
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"@angular/core": "16 - 19",
|
|
28
28
|
"@angular/platform-browser": "16 - 19",
|
|
29
29
|
"@progress/kendo-licensing": "^1.5.0",
|
|
30
|
-
"@progress/kendo-angular-common": "19.0.0-develop.
|
|
31
|
-
"@progress/kendo-angular-icons": "19.0.0-develop.
|
|
32
|
-
"@progress/kendo-angular-l10n": "19.0.0-develop.
|
|
30
|
+
"@progress/kendo-angular-common": "19.0.0-develop.9",
|
|
31
|
+
"@progress/kendo-angular-icons": "19.0.0-develop.9",
|
|
32
|
+
"@progress/kendo-angular-l10n": "19.0.0-develop.9",
|
|
33
33
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"tslib": "^2.3.1",
|
|
37
|
-
"@progress/kendo-angular-schematics": "19.0.0-develop.
|
|
37
|
+
"@progress/kendo-angular-schematics": "19.0.0-develop.9"
|
|
38
38
|
},
|
|
39
39
|
"schematics": "./schematics/collection.json",
|
|
40
40
|
"module": "fesm2022/progress-kendo-angular-navigation.mjs",
|