@syncfusion/ej2-angular-pivotview 25.2.5-ngcc → 25.2.6-ngcc

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/CHANGELOG.md CHANGED
@@ -6,6 +6,15 @@
6
6
 
7
7
  #### Bug fixes
8
8
 
9
+ - `#I586835` - When measures have no values, the OLAP pivot table will now be rendered with the correct cell values when drilling down.
10
+ - `#I585932` - Date grouping will now work properly when using remote data in a pivot table.
11
+
12
+ ## 25.2.5 (2024-05-21)
13
+
14
+ ### Pivot Table
15
+
16
+ #### Bug fixes
17
+
9
18
  - `#F187958` - After disabling the defer layout update via check box option, defer layout update elements will be properly rendered when refreshing the pivot table component.
10
19
  - `#F188052` - Empty string members will now be properly filtered when virtualization is enabled in the pivot table.
11
20
 
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-pivotview.umd.js
3
- * version : 25.2.5
3
+ * version : 25.2.6
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
@@ -40,10 +40,20 @@ var __metadata = (this && this.__metadata) || function (k, v) {
40
40
  var inputs = ['aggregateTypes', 'allowCalculatedField', 'allowConditionalFormatting', 'allowDataCompression', 'allowDeferLayoutUpdate', 'allowDrillThrough', 'allowExcelExport', 'allowGrouping', 'allowNumberFormatting', 'allowPdfExport', 'cellTemplate', 'chartSettings', 'chartTypes', 'cssClass', 'dataSourceSettings', 'displayOption', 'editSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePaging', 'enablePersistence', 'enableRtl', 'enableValueSorting', 'enableVirtualization', 'exportAllPages', 'gridSettings', 'groupingBarSettings', 'height', 'hyperlinkSettings', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'maxRowsInDrillThrough', 'pageSettings', 'pagerSettings', 'pivotValues', 'showFieldList', 'showGroupingBar', 'showToolbar', 'showTooltip', 'showValuesButton', 'spinnerTemplate', 'toolbar', 'toolbarTemplate', 'tooltipTemplate', 'virtualScrollSettings', 'width'];
41
41
  var outputs = ['actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeExport', 'beforeServiceInvoke', 'beginDrillThrough', 'calculatedFieldCreate', 'cellClick', 'cellSelected', 'cellSelecting', 'chartSeriesCreated', 'conditionalFormatting', 'created', 'dataBound', 'destroyed', 'drill', 'drillThrough', 'editCompleted', 'enginePopulated', 'enginePopulating', 'exportComplete', 'fetchReport', 'fieldDragStart', 'fieldDrop', 'fieldListRefreshed', 'fieldRemove', 'hyperlinkCellClick', 'load', 'loadReport', 'memberEditorOpen', 'memberFiltering', 'newReport', 'numberFormatting', 'onFieldDropped', 'onHeadersSort', 'onPdfCellRender', 'removeReport', 'renameReport', 'saveReport', 'toolbarClick', 'toolbarRender'];
42
42
  var twoWays = [];
43
-
44
- exports.PivotViewComponent = (function (_super) {
43
+ /**
44
+ * `ej-pivotview` represents the Angular Pivot Table Component.
45
+ * ```html
46
+ * <ej-pivotview></ej-pivotview>
47
+ * ```
48
+ */
49
+ exports.PivotViewComponent = /** @class */ (function (_super) {
45
50
  __extends(PivotViewComponent, _super);
46
-
51
+ /**
52
+ * @param {?} ngEle
53
+ * @param {?} srenderer
54
+ * @param {?} viewContainerRef
55
+ * @param {?} injector
56
+ */
47
57
  function PivotViewComponent(ngEle, srenderer, viewContainerRef, injector) {
48
58
  var _this = _super.call(this) || this;
49
59
  _this.ngEle = ngEle;
@@ -149,19 +159,27 @@ exports.PivotViewComponent = (function (_super) {
149
159
  _this.context = new ej2AngularBase.ComponentBase();
150
160
  return _this;
151
161
  }
152
-
162
+ /**
163
+ * @return {?}
164
+ */
153
165
  PivotViewComponent.prototype.ngOnInit = function () {
154
166
  this.context.ngOnInit(this);
155
167
  };
156
-
168
+ /**
169
+ * @return {?}
170
+ */
157
171
  PivotViewComponent.prototype.ngAfterViewInit = function () {
158
172
  this.context.ngAfterViewInit(this);
159
173
  };
160
-
174
+ /**
175
+ * @return {?}
176
+ */
161
177
  PivotViewComponent.prototype.ngOnDestroy = function () {
162
178
  this.context.ngOnDestroy(this);
163
179
  };
164
-
180
+ /**
181
+ * @return {?}
182
+ */
165
183
  PivotViewComponent.prototype.ngAfterContentChecked = function () {
166
184
  this.context.ngAfterContentChecked(this);
167
185
  };
@@ -177,7 +195,9 @@ exports.PivotViewComponent.decorators = [
177
195
  queries: {}
178
196
  },] },
179
197
  ];
180
-
198
+ /**
199
+ * @nocollapse
200
+ */
181
201
  exports.PivotViewComponent.ctorParameters = function () { return [
182
202
  { type: core.ElementRef, },
183
203
  { type: core.Renderer2, },
@@ -203,8 +223,10 @@ exports.PivotViewComponent = __decorate([
203
223
  core.ViewContainerRef,
204
224
  core.Injector])
205
225
  ], exports.PivotViewComponent);
206
-
207
- var PivotViewModule = (function () {
226
+ /**
227
+ * NgModule definition for the PivotView component.
228
+ */
229
+ var PivotViewModule = /** @class */ (function () {
208
230
  function PivotViewModule() {
209
231
  }
210
232
  return PivotViewModule;
@@ -220,7 +242,9 @@ PivotViewModule.decorators = [
220
242
  ]
221
243
  },] },
222
244
  ];
223
-
245
+ /**
246
+ * @nocollapse
247
+ */
224
248
  PivotViewModule.ctorParameters = function () { return []; };
225
249
  var GroupingBarService = { provide: 'PivotViewGroupingBar', useValue: ej2Pivotview.GroupingBar };
226
250
  var FieldListService = { provide: 'PivotViewFieldList', useValue: ej2Pivotview.FieldList };
@@ -235,8 +259,10 @@ var ExcelExportService = { provide: 'PivotViewExcelExport', useValue: ej2Pivotvi
235
259
  var NumberFormattingService = { provide: 'PivotViewNumberFormatting', useValue: ej2Pivotview.NumberFormatting };
236
260
  var GroupingService = { provide: 'PivotViewGrouping', useValue: ej2Pivotview.Grouping };
237
261
  var PagerService = { provide: 'PivotViewPager', useValue: ej2Pivotview.Pager };
238
-
239
- var PivotViewAllModule = (function () {
262
+ /**
263
+ * NgModule definition for the PivotView component with providers.
264
+ */
265
+ var PivotViewAllModule = /** @class */ (function () {
240
266
  function PivotViewAllModule() {
241
267
  }
242
268
  return PivotViewAllModule;
@@ -264,7 +290,9 @@ PivotViewAllModule.decorators = [
264
290
  ]
265
291
  },] },
266
292
  ];
267
-
293
+ /**
294
+ * @nocollapse
295
+ */
268
296
  PivotViewAllModule.ctorParameters = function () { return []; };
269
297
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
270
298
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -283,10 +311,20 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
283
311
  var inputs$1 = ['aggregateTypes', 'allowCalculatedField', 'allowDeferLayoutUpdate', 'cssClass', 'currencyCode', 'dataSourceSettings', 'enableFieldSearching', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'loadOnDemandInMemberEditor', 'locale', 'maxNodeLimitInMemberEditor', 'renderMode', 'showValuesButton', 'spinnerTemplate', 'target'];
284
312
  var outputs$1 = ['actionBegin', 'actionComplete', 'actionFailure', 'afterServiceInvoke', 'aggregateCellInfo', 'aggregateMenuOpen', 'beforeServiceInvoke', 'calculatedFieldCreate', 'created', 'dataBound', 'destroyed', 'enginePopulated', 'enginePopulating', 'fieldDragStart', 'fieldDrop', 'fieldRemove', 'load', 'memberEditorOpen', 'memberFiltering', 'onFieldDropped', 'onHeadersSort'];
285
313
  var twoWays$1 = [];
286
-
287
- exports.PivotFieldListComponent = (function (_super) {
314
+ /**
315
+ * `ej-pivotfieldlist` represents the Angular PivotFieldList Component.
316
+ * ```html
317
+ * <ej-pivotfieldlist></ej-pivotfieldlist>
318
+ * ```
319
+ */
320
+ exports.PivotFieldListComponent = /** @class */ (function (_super) {
288
321
  __extends(PivotFieldListComponent, _super);
289
-
322
+ /**
323
+ * @param {?} ngEle
324
+ * @param {?} srenderer
325
+ * @param {?} viewContainerRef
326
+ * @param {?} injector
327
+ */
290
328
  function PivotFieldListComponent(ngEle, srenderer, viewContainerRef, injector) {
291
329
  var _this = _super.call(this) || this;
292
330
  _this.ngEle = ngEle;
@@ -308,19 +346,27 @@ exports.PivotFieldListComponent = (function (_super) {
308
346
  _this.context = new ej2AngularBase.ComponentBase();
309
347
  return _this;
310
348
  }
311
-
349
+ /**
350
+ * @return {?}
351
+ */
312
352
  PivotFieldListComponent.prototype.ngOnInit = function () {
313
353
  this.context.ngOnInit(this);
314
354
  };
315
-
355
+ /**
356
+ * @return {?}
357
+ */
316
358
  PivotFieldListComponent.prototype.ngAfterViewInit = function () {
317
359
  this.context.ngAfterViewInit(this);
318
360
  };
319
-
361
+ /**
362
+ * @return {?}
363
+ */
320
364
  PivotFieldListComponent.prototype.ngOnDestroy = function () {
321
365
  this.context.ngOnDestroy(this);
322
366
  };
323
-
367
+ /**
368
+ * @return {?}
369
+ */
324
370
  PivotFieldListComponent.prototype.ngAfterContentChecked = function () {
325
371
  this.context.ngAfterContentChecked(this);
326
372
  };
@@ -336,7 +382,9 @@ exports.PivotFieldListComponent.decorators = [
336
382
  queries: {}
337
383
  },] },
338
384
  ];
339
-
385
+ /**
386
+ * @nocollapse
387
+ */
340
388
  exports.PivotFieldListComponent.ctorParameters = function () { return [
341
389
  { type: core.ElementRef, },
342
390
  { type: core.Renderer2, },
@@ -350,8 +398,10 @@ exports.PivotFieldListComponent = __decorate$1([
350
398
  core.ViewContainerRef,
351
399
  core.Injector])
352
400
  ], exports.PivotFieldListComponent);
353
-
354
- var PivotFieldListModule = (function () {
401
+ /**
402
+ * NgModule definition for the PivotFieldList component.
403
+ */
404
+ var PivotFieldListModule = /** @class */ (function () {
355
405
  function PivotFieldListModule() {
356
406
  }
357
407
  return PivotFieldListModule;
@@ -367,10 +417,14 @@ PivotFieldListModule.decorators = [
367
417
  ]
368
418
  },] },
369
419
  ];
370
-
420
+ /**
421
+ * @nocollapse
422
+ */
371
423
  PivotFieldListModule.ctorParameters = function () { return []; };
372
-
373
- var PivotFieldListAllModule = (function () {
424
+ /**
425
+ * NgModule definition for the PivotFieldList component with providers.
426
+ */
427
+ var PivotFieldListAllModule = /** @class */ (function () {
374
428
  function PivotFieldListAllModule() {
375
429
  }
376
430
  return PivotFieldListAllModule;
@@ -384,7 +438,9 @@ PivotFieldListAllModule.decorators = [
384
438
  providers: []
385
439
  },] },
386
440
  ];
387
-
441
+ /**
442
+ * @nocollapse
443
+ */
388
444
  PivotFieldListAllModule.ctorParameters = function () { return []; };
389
445
 
390
446
  exports.PivotViewModule = PivotViewModule;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-pivotview.umd.min.js
3
- * version : 25.2.5
3
+ * version : 25.2.6
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-pivotview@*",
3
- "_id": "@syncfusion/ej2-angular-pivotview@25.2.4",
3
+ "_id": "@syncfusion/ej2-angular-pivotview@25.2.5",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-oPDTTJeJFQZMaoqIasXMjkWGVE6HOzD3ZrJOP9IwMQtzUKCowdONz+vyInh9awF6OKLEd2fHhvWzqFw4O+M0rQ==",
5
+ "_integrity": "sha512-ktmqgIDH86q0OXo/iccNC7WOn6+0X1RA+V0FN31HYKlGzPvWki69b1ODGXx/V2XnxLeAM3obFFrLA9r0K+7mfQ==",
6
6
  "_location": "/@syncfusion/ej2-angular-pivotview",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-pivotview/-/ej2-angular-pivotview-25.2.4.tgz",
23
- "_shasum": "2ec92e857bc07b2e8c562f5b2c9b32b5559e5057",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-pivotview/-/ej2-angular-pivotview-25.2.5.tgz",
23
+ "_shasum": "1b830f0093ae88472ab3218721224de99495a3a9",
24
24
  "_spec": "@syncfusion/ej2-angular-pivotview@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~25.2.4",
34
+ "@syncfusion/ej2-angular-base": "~25.2.6",
35
35
  "@syncfusion/ej2-base": "~25.2.5",
36
- "@syncfusion/ej2-pivotview": "25.2.5"
36
+ "@syncfusion/ej2-pivotview": "25.2.6"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table. for Angular",
@@ -56,5 +56,5 @@
56
56
  "schematics": "./schematics/collection.json",
57
57
  "sideEffects": false,
58
58
  "typings": "ej2-angular-pivotview.d.ts",
59
- "version": "25.2.5-ngcc"
59
+ "version": "25.2.6-ngcc"
60
60
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-pivotview";
2
- export declare const pkgVer = "^25.2.4";
2
+ export declare const pkgVer = "^25.2.5";
3
3
  export declare const moduleName = "PivotViewModule, PivotFieldListModule";
4
- export declare const themeVer = "~25.2.4";
4
+ export declare const themeVer = "~25.2.5";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-pivotview';
4
- exports.pkgVer = '^25.2.5';
4
+ exports.pkgVer = '^25.2.6';
5
5
  exports.moduleName = 'PivotViewModule, PivotFieldListModule';
6
- exports.themeVer = '~25.2.5';
6
+ exports.themeVer = '~25.2.6';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-pivotview';
2
- export const pkgVer = '^25.2.5';
2
+ export const pkgVer = '^25.2.6';
3
3
  export const moduleName = 'PivotViewModule, PivotFieldListModule';
4
- export const themeVer = '~25.2.5';
4
+ export const themeVer = '~25.2.6';