You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+38-15Lines changed: 38 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ All notable changes for each version of this project will be documented in this
8
8
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
9
9
-**Breaking Change** - The `locale` and `pipeArgs` parameters are removed from the `operate` method exposed by the `IgxNumberSummaryOperand`, `IgxDateSummaryOperand`, `IgxCurrencySummaryOperand` and `IgxPercentSummaryOperand`. They are now set in the `igx-grid-summary-cell` template. To change the locale and format setting of the `igx-grid-summary-cell` the user can use the new `summaryFormatter` property of the `IgxColumnComponent`.
10
10
-**Breaking Change** - `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid` events are renamed as follows:
11
+
-`onCellClick` -> `cellClick`
11
12
-`onScroll` -> `gridScroll`
12
13
-`onSelection` -> `selected`
13
14
-`onRowSelectionChange` -> `rowSelected`
@@ -67,9 +68,17 @@ All notable changes for each version of this project will be documented in this
67
68
-`increment` and `decrement` methods now accept an optional `delta` parameter which targets the currently spun date portion. It takes precedence over the values set in `spinDelta`.
68
69
-`IgxDatePicker`
69
70
-**Feature** - `value` accepts ISO 8601 string format.
71
+
-**Feature** - The actions template now exposes the Calendar component as implicit context:
- **Breaking Change** - `value` type could be `Date` or `string`.
71
80
- **Breaking Change** - `onSelection` event is renamed to `valueChange`.
72
-
-**Breaking Change** - new way to define custom elements in the `igx-date-picker` while the following properties are deleted or deprecated: `formatter`, `context`, `labelInternal`, `template`.
81
+
- **Breaking Change** - new way to define custom elements in the `igx-date-picker` while the following properties are deleted or deprecated: `formatter`, `context`, `labelInternal`, `template`.
- **Breaking Change** - `value` start and end types could be `Date` or `string`.
119
136
- **Breaking Change** - `rangeSelected` event is renamed to `valueChange`.
120
137
- **Breaking Change** - `onOpening`, `onOpened`, `onClosing` and `onClosed` events are renamed respectively to `opening`, `opened`, `closing` and `closed`.
121
138
- **Breaking Change** - `monthsViewNumber` is renamed to `displayMonthsCount`.
139
+
- `IgxSliderComponent`
140
+
- **Breaking Change** - The following outputs are renamed:
141
+
- `onValueChange` to `valueChange`
142
+
- `onValueChanged` to `dragFinished`
143
+
- `IgxCircularProgressBarComponent`
144
+
- **Breaking Change** - The following outputs are renamed:
145
+
- `onProgressChanged` to `progressChanged`
146
+
- `IgxLinearProgressBarComponent`
147
+
- **Breaking Change** - The following outputs are renamed:
148
+
- `onProgressChanged` to `progressChanged`
122
149
123
150
124
151
### New Features
@@ -173,14 +200,22 @@ All notable changes for each version of this project will be documented in this
173
200
[summaryFormatter]="dateSummaryFormat">
174
201
</igx-column>
175
202
```
203
+
- Two new column types are introduced `dateTime` and `time`. In order to operate with them is necessary to set the column property dataType to `'dateTime'` or `'time'`.
- **Behavioral Change** - `Column Autosize` feature now does not handle templated headers where the first level children are sized based on parent like default `div` and etc. Autosizing for such headers will not result in change.
177
212
- **Behavioral Change** - Calling `autosize` through the `IgxColumnComponent` API now takes into consideration the `minWidth` and `maxWidth` of the column.
178
213
- A new `IgxColumnComponent` input property is exposed called `autosizeHeader`, which if false, allows the autosizing to ignore the header cell and autosize only based on content cells.
179
214
- `IgxTabs`
180
215
- The `tabAlignment` property of the `IgxTabs` component replaces the `type` property and enables you to set the tab alignment to `start`, `center`, `end` and `justify`.
181
216
- The `igx-tab-header` supports `igx-prefix` and `igx-suffix` directives in its `ng-content`.
182
217
- `IgxBottomNav`
183
-
- The `IgxBottomNav` component exposes `disableAnimations` property which determines whether the contents should animate when switching the selected item. The property is set to `true` by default which means that the animations are disabled.
218
+
- The `IgxBottomNav` component exposes `disableAnimations` property which determines whether the contents should animate when switching the selected item. The property is set to `true` by default which means that the animations are disabled.
184
219
- `IgxOverlayService`
185
220
- `detach` and `detachAll` methods are added to `IgxOverlayService`. Calling `detach` will remove all the elements generated for the related overlay, as well as clean up all related resources. Calling `detachAll` will remove all elements generated by any call to `IgxOverlay` `attach`, and will clean up all related resources. _Note: calling `hide` or `hideAll` will not clean generated by the service elements and will not clean up related resources._
186
221
- `IgxCombo`
@@ -199,7 +234,7 @@ All notable changes for each version of this project will be documented in this
199
234
}
200
235
}
201
236
```
202
-
237
+
203
238
### Themes:
204
239
- Breaking Changes:
205
240
- `IgxButton` theme has been simplified. The number of theme params (`igx-button-theme`) has been reduced significantly and no longer includes prefixed parameters (`flat-*`, `raised-*`, etc.). See the migration guide to update existing button themes. Updates performed with `ng update` will migrate existing button themes but some additional tweaking may be required to account for the abscense of prefixed params.
@@ -212,18 +247,6 @@ All notable changes for each version of this project will be documented in this
212
247
```
213
248
214
249
215
-
### General:
216
-
- `IgxSliderComponent`
217
-
- **Breaking Change** - The following outputs are renamed:
218
-
- `onValueChange` to `valueChange`
219
-
- `onValueChanged` to `dragFinished`
220
-
- `IgxCircularProgressBarComponent`
221
-
- **Breaking Change** - The following outputs are renamed:
222
-
- `onProgressChanged` to `progressChanged`
223
-
- `IgxLinearProgressBarComponent`
224
-
- **Breaking Change** - The following outputs are renamed:
0 commit comments