Skip to content

Commit 671e21b

Browse files
Svetoslav KrastevSvetoslav Krastev
authored andcommitted
chore(*): Add changelog and remove constructor prop visibility.
1 parent 4c7192b commit 671e21b

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes for each version of this project will be documented in this file.
44

5+
## 15.1.0
6+
7+
- `IgxPivotGrid`
8+
- The `IgxPivotDateDimension` properties `inBaseDimension` and `inOption` have been deprecated and renamed to relatively `baseDimension` and `options`.
9+
510
## 15.0.1
611

712
- `IgxGrid`

projects/igniteui-angular/src/lib/grids/pivot-grid/pivot-grid-dimensions.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ export class IgxPivotDateDimension implements IPivotDimension {
137137
* new IgxPivotDateDimension({ memberName: 'Date', enabled: true }, { total: false, months: false });
138138
* ```
139139
*/
140-
constructor(private _inBaseDimension: IPivotDimension, private _inOptions: IPivotDateDimensionOptions = {}) {
141-
this._options = _inOptions;
142-
this._baseDimension = _inBaseDimension;
140+
constructor(inBaseDimension: IPivotDimension, inOptions: IPivotDateDimensionOptions = {}) {
141+
this._baseDimension = inBaseDimension;
142+
this._options = inOptions;
143143
if (this.baseDimension && this.options) {
144144
this.initialize(this.baseDimension, this.options);
145145
}

0 commit comments

Comments
 (0)