@progress/kendo-angular-pivotgrid 22.1.0-develop.1 → 22.1.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.
@@ -2303,7 +2303,9 @@ class PivotGridConfiguratorComponent {
2303
2303
  return this.orientation === 'horizontal';
2304
2304
  }
2305
2305
  get isApplyDisabled() {
2306
- return !this.state?.columnAxes?.length && !this.state?.rowAxes?.length && !this.state?.measureAxes?.length;
2306
+ const hasNoValues = !this.state?.measureAxes?.length;
2307
+ const hasNoRowsOrColumns = !this.state?.rowAxes?.length || !this.state?.columnAxes?.length;
2308
+ return hasNoValues && hasNoRowsOrColumns;
2307
2309
  }
2308
2310
  subs = new Subscription();
2309
2311
  /**
@@ -2323,7 +2325,7 @@ class PivotGridConfiguratorComponent {
2323
2325
  .subscribe(res => {
2324
2326
  const measures = res.find(f => f.caption === 'Measures' && f.uniqueName === '[Measures]');
2325
2327
  if (measures) {
2326
- measures.caption = this.messageFor('configuratorMeasuresText') || 'Measures';
2328
+ measures.caption = this.messageFor('configuratorMeasuresText');
2327
2329
  }
2328
2330
  this.fields = res;
2329
2331
  }));
@@ -3889,7 +3891,7 @@ const packageMetadata = {
3889
3891
  productCode: 'KENDOUIANGULAR',
3890
3892
  productCodes: ['KENDOUIANGULAR'],
3891
3893
  publishDate: 1662018672,
3892
- version: '22.1.0-develop.1',
3894
+ version: '22.1.0-develop.11',
3893
3895
  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'
3894
3896
  };
3895
3897
 
@@ -5159,8 +5161,8 @@ class PivotGridComponent {
5159
5161
  i18n-configuratorFieldsText="kendo.pivotgrid.configuratorFieldsText|The text content of the PivotGrid configurator fields section title element"
5160
5162
  configuratorFieldsText="Fields"
5161
5163
 
5162
- i18n-configuratorFieldsMeasuresText="kendo.pivotgrid.configuratorFieldsMeasuresText|The text content of the PivotGrid configurator fields TreeView Measures node"
5163
- configuratorFieldsMeasuresText="Measures"
5164
+ i18n-configuratorMeasuresText="kendo.pivotgrid.configuratorMeasuresText|The text content of the PivotGrid configurator fields TreeView Measures node"
5165
+ configuratorMeasuresText="Measures"
5164
5166
 
5165
5167
  i18n-configuratorColumnsText="kendo.pivotgrid.configuratorColumnsText|The text content of the PivotGrid configurator columns section title element"
5166
5168
  configuratorColumnsText="Columns"
@@ -5341,8 +5343,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
5341
5343
  i18n-configuratorFieldsText="kendo.pivotgrid.configuratorFieldsText|The text content of the PivotGrid configurator fields section title element"
5342
5344
  configuratorFieldsText="Fields"
5343
5345
 
5344
- i18n-configuratorFieldsMeasuresText="kendo.pivotgrid.configuratorFieldsMeasuresText|The text content of the PivotGrid configurator fields TreeView Measures node"
5345
- configuratorFieldsMeasuresText="Measures"
5346
+ i18n-configuratorMeasuresText="kendo.pivotgrid.configuratorMeasuresText|The text content of the PivotGrid configurator fields TreeView Measures node"
5347
+ configuratorMeasuresText="Measures"
5346
5348
 
5347
5349
  i18n-configuratorColumnsText="kendo.pivotgrid.configuratorColumnsText|The text content of the PivotGrid configurator columns section title element"
5348
5350
  configuratorColumnsText="Columns"
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1768575847,
11
- "version": "22.1.0-develop.1",
10
+ "publishDate": 1769691797,
11
+ "version": "22.1.0-develop.11",
12
12
  "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"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-pivotgrid",
3
- "version": "22.1.0-develop.1",
3
+ "version": "22.1.0-develop.11",
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": 1768575847,
21
+ "publishDate": 1769691797,
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
  },
@@ -30,22 +30,22 @@
30
30
  "@angular/platform-browser": "19 - 21",
31
31
  "@progress/kendo-data-query": "^1.5.5",
32
32
  "@progress/kendo-drawing": "^1.23.1",
33
- "@progress/kendo-licensing": "^1.7.0",
34
- "@progress/kendo-angular-buttons": "22.1.0-develop.1",
35
- "@progress/kendo-angular-common": "22.1.0-develop.1",
36
- "@progress/kendo-angular-dropdowns": "22.1.0-develop.1",
37
- "@progress/kendo-angular-indicators": "22.1.0-develop.1",
38
- "@progress/kendo-angular-inputs": "22.1.0-develop.1",
39
- "@progress/kendo-angular-intl": "22.1.0-develop.1",
40
- "@progress/kendo-angular-l10n": "22.1.0-develop.1",
41
- "@progress/kendo-angular-popup": "22.1.0-develop.1",
42
- "@progress/kendo-angular-icons": "22.1.0-develop.1",
43
- "@progress/kendo-angular-treeview": "22.1.0-develop.1",
33
+ "@progress/kendo-licensing": "^1.10.0",
34
+ "@progress/kendo-angular-buttons": "22.1.0-develop.11",
35
+ "@progress/kendo-angular-common": "22.1.0-develop.11",
36
+ "@progress/kendo-angular-dropdowns": "22.1.0-develop.11",
37
+ "@progress/kendo-angular-indicators": "22.1.0-develop.11",
38
+ "@progress/kendo-angular-inputs": "22.1.0-develop.11",
39
+ "@progress/kendo-angular-intl": "22.1.0-develop.11",
40
+ "@progress/kendo-angular-l10n": "22.1.0-develop.11",
41
+ "@progress/kendo-angular-popup": "22.1.0-develop.11",
42
+ "@progress/kendo-angular-icons": "22.1.0-develop.11",
43
+ "@progress/kendo-angular-treeview": "22.1.0-develop.11",
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": "22.1.0-develop.1",
48
+ "@progress/kendo-angular-schematics": "22.1.0-develop.11",
49
49
  "@progress/kendo-pivotgrid-common": "0.6.3"
50
50
  },
51
51
  "schematics": "./schematics/collection.json",
@@ -11,11 +11,11 @@ function default_1(options) {
11
11
  // Additional dependencies to install.
12
12
  // See https://github.com/telerik/kendo-schematics/issues/28
13
13
  peerDependencies: {
14
- '@progress/kendo-angular-dialog': '22.1.0-develop.1',
14
+ '@progress/kendo-angular-dialog': '22.1.0-develop.11',
15
15
  // peer dep of the icons
16
16
  '@progress/kendo-svg-icons': '^4.0.0',
17
17
  // peer dep of the dropdowns
18
- '@progress/kendo-angular-navigation': '22.1.0-develop.1'
18
+ '@progress/kendo-angular-navigation': '22.1.0-develop.11'
19
19
  } });
20
20
  return (0, schematics_1.externalSchematic)('@progress/kendo-angular-schematics', 'ng-add', finalOptions);
21
21
  }