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
+20-6Lines changed: 20 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,22 @@ All notable changes for each version of this project will be documented in this
4
4
5
5
## 10.1.0
6
6
7
+
### General
8
+
-`igxCombo`
9
+
-**Behavioral Change** - Change default positioning strategy from `ConnectedPositioningStrategy` to `AutoPositionStrategy`. The [`Auto`](https://www.infragistics.com/products/ignite-ui-angular/angular/components/overlay_position.html#auto) strategy will initially try to show the element like the Connected strategy does. If the element goes out of the viewport Auto will flip the starting point and the direction, i.e. if the direction is 'bottom', it will switch it to 'top' and so on. If after flipping direction the content goes out of the view, auto strategy will revert to initial start point and direction and will push the content into the view. Note after pushing the content it may hide the combo's input.
10
+
7
11
### New Features
8
-
-`IgxColumn`
12
+
-`IgxGridState` directive
13
+
- Added support for expansion states, column selection and row pinning.
14
+
- Added support for `IgxTreeGrid` and `IgxHierarchicalGrid` (including child grids)
15
+
-`IgxColumn`
9
16
- Added `byHeader` parameter to the `autosize` method which specifies if the autosizing should be based only on the header content width.
17
+
-`IgxToast`
18
+
-`message` property has been deprecated. You can place the *message text* in the toast content or pass it as parameter to `show` method instead.
19
+
- An optional string parameter `message` has been added to `show()` method.
20
+
-`IgxSnackbar`
21
+
-`message` property has been deprecated. You can place the *message text* in the snackbar content or pass it as parameter to `show` method instead.
22
+
- An optional string parameter `message` has been added to `show()` method.
10
23
11
24
## 10.0.0
12
25
@@ -16,9 +29,9 @@ All notable changes for each version of this project will be documented in this
16
29
-`igx-select`, `igx-combo`, `igx-drop-down`
17
30
-**Behavioral Change** - The select, combo, and dropdown items now have display block and text-overflow ellipsis enabled by default.
18
31
-`IgxTransaction` - The `onStateUpdate` now emits with information of its origin. The emitted value is of type `StateUpdateEvent`, which has two properties:
19
-
-`origin` - it can vary within the values of the `TransactionEventOrigin` interface;
32
+
-`origin` - it can vary within the values of the `TransactionEventOrigin` interface;
20
33
-`actions` - contains information about the transactions, that caused the emission of the event.
21
-
-`IgxPaginator` - The input `overlaySettings` was introduced, which allows applying custom overlay settings for the component.
34
+
-`IgxPaginator` - The input `overlaySettings` was introduced, which allows applying custom overlay settings for the component.
22
35
23
36
### New Features
24
37
-`IgxGrid`
@@ -41,6 +54,7 @@ All notable changes for each version of this project will be documented in this
41
54
-`IgxHierarchicalGrid`
42
55
-`onGridInitialized` - New output has been exposed. Emitted after a grid is being initialized for the corresponding row island.
43
56
-**Behavioral Change** - When moving a column `DropPosition.None` is now acting like `DropPosition.AfterDropTarget`.
57
+
44
58
## 9.1.0
45
59
46
60
### General
@@ -162,9 +176,9 @@ All notable changes for each version of this project will be documented in this
162
176
```typescript
163
177
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
164
178
```
165
-
- Added new properties for paging:
166
-
- `totalRecords` set to alter the pages count based on total remote records. Keep in mind that If you are using paging and all the data is passed to the grid, the value of totalRecords property will be set by default to the length of the provided data source. If totalRecords is set, it will take precedent over the default length based on the data source.
167
-
- `pagingMode` - accepts `GridPagingMode` enumeration. If the paging mode is set to remote the grid will not paginate the passed data source, if the paging mode is set to local (which is the default value) the grid will paginate the data source based on the page, perPage and totalRecords values.
179
+
- Added new properties for paging:
180
+
- `totalRecords` set to alter the pages count based on total remote records. Keep in mind that If you are using paging and all the data is passed to the grid, the value of totalRecords property will be set by default to the length of the provided data source. If totalRecords is set, it will take precedent over the default length based on the data source.
181
+
- `pagingMode` - accepts `GridPagingMode` enumeration. If the paging mode is set to remote the grid will not paginate the passed data source, if the paging mode is set to local (which is the default value) the grid will paginate the data source based on the page, perPage and totalRecords values.
168
182
- Added functionality for column selection.
169
183
- `columnSelection` property has been added. It accepts GridSelection mode enumeration. Grid selection mode could be none, single or multiple.
170
184
- `selected` property has been added to the IgxColumnComponent; Allows you to set whether the column is selected.
0 commit comments