@progress/kendo-angular-navigation 19.0.0-develop.17 → 19.0.0-develop.18

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.
@@ -17,7 +17,7 @@ export declare class ActionSheetViewComponent {
17
17
  subtitle: string;
18
18
  titleId: string;
19
19
  hostClass: boolean;
20
- animated: boolean;
20
+ get animated(): boolean;
21
21
  transitionDuration: string;
22
22
  transitionProperty: string;
23
23
  headerTemplate: ActionSheetHeaderTemplateDirective;
@@ -21,7 +21,9 @@ export class ActionSheetViewComponent {
21
21
  subtitle;
22
22
  titleId = getId('k-actionsheet-title');
23
23
  hostClass = true;
24
- animated = true;
24
+ get animated() {
25
+ return this.actionSheet?.actionSheetViews?.length > 1;
26
+ }
25
27
  transitionDuration = '500ms';
26
28
  transitionProperty = 'transform';
27
29
  headerTemplate;
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1747240062,
14
- version: '19.0.0-develop.17',
13
+ publishDate: 1747327884,
14
+ version: '19.0.0-develop.18',
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: 1747240062,
29
- version: '19.0.0-develop.17',
28
+ publishDate: 1747327884,
29
+ version: '19.0.0-develop.18',
30
30
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
31
31
  };
32
32
 
@@ -1339,7 +1339,9 @@ class ActionSheetViewComponent {
1339
1339
  subtitle;
1340
1340
  titleId = getId('k-actionsheet-title');
1341
1341
  hostClass = true;
1342
- animated = true;
1342
+ get animated() {
1343
+ return this.actionSheet?.actionSheetViews?.length > 1;
1344
+ }
1343
1345
  transitionDuration = '500ms';
1344
1346
  transitionProperty = 'transform';
1345
1347
  headerTemplate;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-navigation",
3
- "version": "19.0.0-develop.17",
3
+ "version": "19.0.0-develop.18",
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": 1747240062,
20
+ "publishDate": 1747327884,
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.17",
31
- "@progress/kendo-angular-icons": "19.0.0-develop.17",
32
- "@progress/kendo-angular-l10n": "19.0.0-develop.17",
30
+ "@progress/kendo-angular-common": "19.0.0-develop.18",
31
+ "@progress/kendo-angular-icons": "19.0.0-develop.18",
32
+ "@progress/kendo-angular-l10n": "19.0.0-develop.18",
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.17"
37
+ "@progress/kendo-angular-schematics": "19.0.0-develop.18"
38
38
  },
39
39
  "schematics": "./schematics/collection.json",
40
40
  "module": "fesm2022/progress-kendo-angular-navigation.mjs",