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
+34-8Lines changed: 34 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,29 +2,55 @@
2
2
3
3
All notable changes for each version of this project will be documented in this file.
4
4
5
+
## 15.1.1
6
+
-**Breaking Changes** - ` $label-floated-background` and `$label-floated-disabled-background` properties of `IgxInputGroupComponent` theme has been removed.
7
+
-`IgxInputGroupComponent` The input group has been refactored so that the floating label for the input of `type="border"` does not require a background to match the surface background under the input field. Also, suffixes and prefixes are refactored to take the full height of the input which makes it easy to add background to them.
8
+
-
9
+
-**Breaking Changes** - `$size` property of `scrollbar-theme` theme has been renamed to `$scrollbar-size`.
10
+
5
11
## 15.1.0
6
12
13
+
### New Features
14
+
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`:
15
+
-`GroupMemberCountSortingStrategy` is added, which can be used to sort the grid by number of items in each group in ASC or DESC order, if grouping is applied.
16
+
- A new argument `primaryKey` has been introduced to `IRowDataEventArgs` Interface and part of the event arguments that are emitted by the `rowAdded` and `rowDeleted` events. When the grid has a primary key attribute added, then the emitted `primaryKey` event argument represents the row ID, otherwise it defaults to undefined.
17
+
-`IgxColumnComponent`
18
+
- Added `currRec` and `groupRec` parameters to the `groupingComparer` function that give access to the all properties of the compared records.
19
+
7
20
### General
8
21
-`IgxPivotGrid`
9
22
- The `IgxPivotDateDimension` properties `inBaseDimension` and `inOption` have been deprecated and renamed to `baseDimension` and `options` respectively.
10
23
-`IgxGrid`
11
24
-**Breaking Change** The `onGroupingDone` output has been renamed to `groupingDone` to not violate the no on-prefixed outputs convention. Automatic migrations are available and will be applied on `ng update`.
12
25
-`DisplayDensity`
13
-
-**Breaking Change** The `onDensityChanged` output has been renamed to `densityChanged` to not violate the no on-prefixed outputs convention. All components expolsing this event are affected. Automatic migrations are available and will be applied on `ng update`.
26
+
-**Breaking Change** The `onDensityChanged` output has been renamed to `densityChanged` to not violate the no on-prefixed outputs convention. All components exposing this event are affected. Automatic migrations are available and will be applied on `ng update`.
27
+
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
28
+
-**Breaking Change** - `rowSelectionChanging` event arguments are changed. Now the `oldSelection`, `newSelection`, `added` and `removed` collections no longer consist of the row keys of the selected elements when the grid has set a primaryKey, but now in any case the row data is emitted.
29
+
When the grid is working with remote data and a primary key has been set- for the selected rows that are not currently part of the grid view, will be emitted a partial row data object.
30
+
-**Behavioral Change** - When selected row is deleted from the grid component `rowSelectionChanging` event will no longer be emitted.
14
31
-`IgxCarousel`
15
32
-**Breaking Change** The `onSlideChanged`, `onSlideAdded`, `onSlideRemoved`, `onCarouselPaused` and `onCarouselPlaying` outputs have been renamed to `slideChanged`, `slideAdded`, `slideRemoved`, `carouselPaused` and `carouselPlaying` to not violate the no on-prefixed outputs convention. Automatic migrations are available and will be applied on `ng update`.
- Added component validation along with styles for invalid state
35
+
-`igxMask` directive
36
+
- Added the capability to escape mask pattern literals.
37
+
-`IgxBadge`
38
+
- Added `shape` property that controls the shape of the badge and can be either `square` or `rounded`. The default shape of the badge is rounded.
39
+
-`IgxAvatar`
40
+
-**Breaking Change** The `roundShape` property has been deprecated and will be removed in a future version. Users can control the shape of the avatar by the newly added `shape` attribute that can be `square`, `rounded` or `circle`. The default shape of the avatar is `square`.
41
+
-`IgxOverlayService`
42
+
-`attach` method overload accepting `ComponentFactoryResolver` (trough `NgModuleRef`-like object) is now deprecated in line with API deprecated in Angular 13. New overload is added accepting `ViewComponentRef` that should be used instead.
18
43
19
44
20
45
## 15.0.1
21
46
22
47
-`IgxGrid`
23
48
- Added new auto-sizing API `recalculateAutoSizes` that recalculates widths of columns that have size set to `auto`. Can be used in scenarios where you want to auto-size the columns again post initialization.
49
+
- Clicking with the Left Mouse key while holding `Ctrl` on selected cell will deselect the cell.
24
50
-`igxPivotGrid`
25
51
- Adding `aggregatorName` for pivot value configuration as an alternative to setting `aggregator` function. If both are set `aggregatorName` takes precedent. If none are set an error is thrown.
26
52
-`IgxSimpleCombo`
27
-
-**Behavioral Change**
53
+
-**Behavioral Change**
28
54
- When the user clicks on the combo's input, the dropdown opens up.
29
55
- Keyboard navigation `ArrowUp` - when the combo is opened `ArrowUp` will close the dropdown if the search input is focused. If the active item is the first one in the list, the focus will be moved back to the search input while also selecting all of the text in the input. Otherwise `ArrowUp` will move to the previous list item.
30
56
@@ -109,7 +135,7 @@ All notable changes for each version of this project will be documented in this
109
135
110
136
### New Features
111
137
- The filtering logic inside the grid's Advanced Filtering is now extracted as a separate `IgxQueryBuilder` component. The Query Builder allows you to build complex queries by specifying AND/OR operators, conditions and values using the UI. It outputs an object describing the structure of the query. Use the `locale` property to modify the locale settings. The default value is resolved to the global Angular application locale. The `resourceStrings` allows changing the displayed strings.
112
-
138
+
113
139
- Code example below:
114
140
115
141
```html
@@ -145,7 +171,7 @@ All notable changes for each version of this project will be documented in this
145
171
<ng-template igxPivotValueChip let-value>
146
172
{{ value.member }}
147
173
</ng-template>
148
-
```
174
+
```
149
175
- Add support for usage with igxGridState to persist state of the pivotConfiguration with an additional `pivotConfiguration` option:
150
176
151
177
```html
@@ -161,7 +187,7 @@ All notable changes for each version of this project will be documented in this
161
187
```
162
188
163
189
One known issue of the igxGridState directive is that it cannot store functions as the state is stored as string.
164
-
As a result any custom functions set to `memberFunction`, `aggregator`, `formatter`, `styles` etc. will not be stored. Restoring any of these can be achieved with code on application level.
190
+
As a result any custom functions set to `memberFunction`, `aggregator`, `formatter`, `styles` etc. will not be stored. Restoring any of these can be achieved with code on application level.
165
191
Hence we have also exposed 2 new events:
166
192
- `dimensionInit` - emits when a dimension from the configuration is being initialized.
167
193
- `valueInit` - emits when a value from the configuration is being initialized.
@@ -221,7 +247,7 @@ All notable changes for each version of this project will be documented in this
221
247
<column width='auto' ...>
222
248
```
223
249
- Added support for restoring filtering expressions with custom filtering operands for the `IgxGridStateDirective`.
224
-
250
+
225
251
226
252
- Added the `IgcFormControl` directive that, when imported with its `IgcFormsModule`, is designed to seamlessly attach to form components from the Ignite UI for WebComponents package and allows using them in Angular templates and reactive forms with support for `ngModel` and `formControlName` directives. Currently the only Web Component with support through the directive is `igc-rating`.
227
253
@@ -236,7 +262,7 @@ All notable changes for each version of this project will be documented in this
236
262
237
263
## 14.0.0
238
264
239
-
- Added additional theme properties for the `IgxCalendar` so that it's easier to style the `:hover` and `:focus` states inside the selected date or range of dates.
265
+
- Added additional theme properties for the `IgxCalendar` so that it's easier to style the `:hover` and `:focus` states inside the selected date or range of dates.
240
266
- `IgxDatePicker` and `IgxDateRangePicker` now expose a `weekStart` input property like the `IgxCalendar`
241
267
- `IgxCombo` and `IgxSimpleComboComponent`
242
268
- The combobox `role`, `aria-haspopup`, `aria-expanded`, `aria-controls` and `aria-labelledby` attributes have been moved from combo wrapper to the combo input. Additionally the `IgxSimpleComboComponent` input is marked with `aria-readonly="false"` and `aria-autocomplete="list"` attributes. The `aria-labelled` attribute is applied to the combo dropdown as well and can be set by the `ariaLabelledBy` property, the combo label or placeholder. The serach input within the combo dropdown is now marked as `role="searchbox"`, `aria-label="search"` and `aria-autocomplete="list"`. The dropdown item container has `aria-activedescendant` attribute to identify the currently active element of the item list. The `IgxCombo` container is also marked as `aria-multiselectable="true"`. The dropdown header items role has been changed to `group`.
0 commit comments