@progress/kendo-angular-pivotgrid 19.0.0-develop.9 → 19.0.0

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.
@@ -219,8 +219,8 @@ export class PivotGridConfiguratorComponent {
219
219
  * A function which provides the child nodes for a given parent node.
220
220
  */
221
221
  children = (node) => {
222
- if (this.dataService.directive.type === 'olap') {
223
- const observable = from(this.dataService.directive.fetchChildren(node, this.fields));
222
+ if (this.dataService.directive?.type === 'olap') {
223
+ const observable = from(this.dataService.directive?.fetchChildren(node, this.fields));
224
224
  return observable.pipe(mergeMap(value => of(value)));
225
225
  }
226
226
  return of(node.children);
@@ -230,7 +230,7 @@ export class PivotGridConfiguratorComponent {
230
230
  * (Only for OLAP data-binding directive)
231
231
  */
232
232
  handleChildrenLoaded(event) {
233
- if (this.dataService.directive.type === 'local') {
233
+ if (this.dataService.directive?.type === 'local') {
234
234
  return;
235
235
  }
236
236
  const fields = event.children.map(item => item.dataItem);
@@ -10,7 +10,7 @@ export const packageMetadata = {
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCode: 'KENDOUIANGULAR',
12
12
  productCodes: ['KENDOUIANGULAR'],
13
- publishDate: 1746776719,
14
- version: '19.0.0-develop.9',
13
+ publishDate: 1748362645,
14
+ version: '19.0.0',
15
15
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
16
16
  };
@@ -121,11 +121,12 @@ export class PivotGridComponent {
121
121
  */
122
122
  columnHeadersWidth = 200;
123
123
  /**
124
- * If set to true, the user can use dedicated shortcuts to interact with the PivotGrid. By default, navigation is disabled.
124
+ * When the keyboard navigation is enabled, the user can use dedicated shortcuts to interact with the PivotGrid.
125
+ * By default, navigation is enabled. To disable it altogether, and include the PivotGrid content in the normal tab sequence, set the property to `false`.
125
126
  *
126
- * @default false
127
+ * @default true
127
128
  */
128
- navigable = false;
129
+ navigable = true;
129
130
  /**
130
131
  * Holds the displayed aggregated PivotGrid values.
131
132
  */
@@ -262,7 +263,7 @@ export class PivotGridComponent {
262
263
  firstCell.setAttribute('tabindex', '0');
263
264
  }
264
265
  if (!this.navigationSubs) {
265
- this.navigationSubs = this.dataService.directive.expandChange.pipe(merge(this.dataService.directive.configurationChange)).subscribe(() => this.zone.runOutsideAngular(() => {
266
+ this.navigationSubs = this.dataService.directive?.expandChange.pipe(merge(this.dataService.directive?.configurationChange)).subscribe(() => this.zone.runOutsideAngular(() => {
266
267
  setTimeout(() => this.navigation.update());
267
268
  }));
268
269
  this.subs.add(this.navigationSubs);
@@ -2447,8 +2447,8 @@ class PivotGridConfiguratorComponent {
2447
2447
  * A function which provides the child nodes for a given parent node.
2448
2448
  */
2449
2449
  children = (node) => {
2450
- if (this.dataService.directive.type === 'olap') {
2451
- const observable = from(this.dataService.directive.fetchChildren(node, this.fields));
2450
+ if (this.dataService.directive?.type === 'olap') {
2451
+ const observable = from(this.dataService.directive?.fetchChildren(node, this.fields));
2452
2452
  return observable.pipe(mergeMap(value => of(value)));
2453
2453
  }
2454
2454
  return of(node.children);
@@ -2458,7 +2458,7 @@ class PivotGridConfiguratorComponent {
2458
2458
  * (Only for OLAP data-binding directive)
2459
2459
  */
2460
2460
  handleChildrenLoaded(event) {
2461
- if (this.dataService.directive.type === 'local') {
2461
+ if (this.dataService.directive?.type === 'local') {
2462
2462
  return;
2463
2463
  }
2464
2464
  const fields = event.children.map(item => item.dataItem);
@@ -3795,8 +3795,8 @@ const packageMetadata = {
3795
3795
  productName: 'Kendo UI for Angular',
3796
3796
  productCode: 'KENDOUIANGULAR',
3797
3797
  productCodes: ['KENDOUIANGULAR'],
3798
- publishDate: 1746776719,
3799
- version: '19.0.0-develop.9',
3798
+ publishDate: 1748362645,
3799
+ version: '19.0.0',
3800
3800
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
3801
3801
  };
3802
3802
 
@@ -4714,11 +4714,12 @@ class PivotGridComponent {
4714
4714
  */
4715
4715
  columnHeadersWidth = 200;
4716
4716
  /**
4717
- * If set to true, the user can use dedicated shortcuts to interact with the PivotGrid. By default, navigation is disabled.
4717
+ * When the keyboard navigation is enabled, the user can use dedicated shortcuts to interact with the PivotGrid.
4718
+ * By default, navigation is enabled. To disable it altogether, and include the PivotGrid content in the normal tab sequence, set the property to `false`.
4718
4719
  *
4719
- * @default false
4720
+ * @default true
4720
4721
  */
4721
- navigable = false;
4722
+ navigable = true;
4722
4723
  /**
4723
4724
  * Holds the displayed aggregated PivotGrid values.
4724
4725
  */
@@ -4855,7 +4856,7 @@ class PivotGridComponent {
4855
4856
  firstCell.setAttribute('tabindex', '0');
4856
4857
  }
4857
4858
  if (!this.navigationSubs) {
4858
- this.navigationSubs = this.dataService.directive.expandChange.pipe(merge(this.dataService.directive.configurationChange)).subscribe(() => this.zone.runOutsideAngular(() => {
4859
+ this.navigationSubs = this.dataService.directive?.expandChange.pipe(merge(this.dataService.directive?.configurationChange)).subscribe(() => this.zone.runOutsideAngular(() => {
4859
4860
  setTimeout(() => this.navigation.update());
4860
4861
  }));
4861
4862
  this.subs.add(this.navigationSubs);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-pivotgrid",
3
- "version": "19.0.0-develop.9",
3
+ "version": "19.0.0",
4
4
  "description": "PivotGrid package for Angular",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -18,7 +18,7 @@
18
18
  "package": {
19
19
  "productName": "Kendo UI for Angular",
20
20
  "productCode": "KENDOUIANGULAR",
21
- "publishDate": 1746776719,
21
+ "publishDate": 1748362645,
22
22
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning"
23
23
  }
24
24
  },
@@ -31,21 +31,21 @@
31
31
  "@progress/kendo-data-query": "^1.5.5",
32
32
  "@progress/kendo-drawing": "^1.21.0",
33
33
  "@progress/kendo-licensing": "^1.5.0",
34
- "@progress/kendo-angular-buttons": "19.0.0-develop.9",
35
- "@progress/kendo-angular-common": "19.0.0-develop.9",
36
- "@progress/kendo-angular-dropdowns": "19.0.0-develop.9",
37
- "@progress/kendo-angular-indicators": "19.0.0-develop.9",
38
- "@progress/kendo-angular-inputs": "19.0.0-develop.9",
39
- "@progress/kendo-angular-intl": "19.0.0-develop.9",
40
- "@progress/kendo-angular-l10n": "19.0.0-develop.9",
41
- "@progress/kendo-angular-popup": "19.0.0-develop.9",
42
- "@progress/kendo-angular-icons": "19.0.0-develop.9",
43
- "@progress/kendo-angular-treeview": "19.0.0-develop.9",
34
+ "@progress/kendo-angular-buttons": "19.0.0",
35
+ "@progress/kendo-angular-common": "19.0.0",
36
+ "@progress/kendo-angular-dropdowns": "19.0.0",
37
+ "@progress/kendo-angular-indicators": "19.0.0",
38
+ "@progress/kendo-angular-inputs": "19.0.0",
39
+ "@progress/kendo-angular-intl": "19.0.0",
40
+ "@progress/kendo-angular-l10n": "19.0.0",
41
+ "@progress/kendo-angular-popup": "19.0.0",
42
+ "@progress/kendo-angular-icons": "19.0.0",
43
+ "@progress/kendo-angular-treeview": "19.0.0",
44
44
  "rxjs": "^6.5.3 || ^7.0.0"
45
45
  },
46
46
  "dependencies": {
47
47
  "tslib": "^2.3.1",
48
- "@progress/kendo-angular-schematics": "19.0.0-develop.9",
48
+ "@progress/kendo-angular-schematics": "19.0.0",
49
49
  "@progress/kendo-pivotgrid-common": "0.6.3"
50
50
  },
51
51
  "schematics": "./schematics/collection.json",
@@ -76,9 +76,10 @@ export declare class PivotGridComponent implements AfterViewInit, AfterContentIn
76
76
  */
77
77
  columnHeadersWidth: number;
78
78
  /**
79
- * If set to true, the user can use dedicated shortcuts to interact with the PivotGrid. By default, navigation is disabled.
79
+ * When the keyboard navigation is enabled, the user can use dedicated shortcuts to interact with the PivotGrid.
80
+ * By default, navigation is enabled. To disable it altogether, and include the PivotGrid content in the normal tab sequence, set the property to `false`.
80
81
  *
81
- * @default false
82
+ * @default true
82
83
  */
83
84
  navigable: boolean;
84
85
  /**
@@ -6,11 +6,11 @@ function default_1(options) {
6
6
  // Additional dependencies to install.
7
7
  // See https://github.com/telerik/kendo-schematics/issues/28
8
8
  peerDependencies: {
9
- '@progress/kendo-angular-dialog': '19.0.0-develop.9',
9
+ '@progress/kendo-angular-dialog': '19.0.0',
10
10
  // peer dep of the icons
11
11
  '@progress/kendo-svg-icons': '^4.0.0',
12
12
  // peer dep of the dropdowns
13
- '@progress/kendo-angular-navigation': '19.0.0-develop.9'
13
+ '@progress/kendo-angular-navigation': '19.0.0'
14
14
  } });
15
15
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
16
16
  }