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
+21-5Lines changed: 21 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,26 @@ All notable changes for each version of this project will be documented in this
5
5
## 10.1.0
6
6
7
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.
8
10
-`igxGrid`
9
11
- Added `onScroll` event, which is emitted when the grid is scrolled vertically or horizontally.
10
12
-`igxTreeGrid`
11
13
- Removed `onDataPreLoad` event as it is specific for remote virtualization implementation, which is not supported for the `igxTreeGrid`. A more generic `onScroll` event is exposed and can be used instead.
12
14
15
+
### New Features
16
+
-`IgxGridState` directive
17
+
- Added support for expansion states, column selection and row pinning.
18
+
- Added support for `IgxTreeGrid` and `IgxHierarchicalGrid` (including child grids)
19
+
-`IgxColumn`
20
+
- Added `byHeader` parameter to the `autosize` method which specifies if the autosizing should be based only on the header content width.
21
+
-`IgxToast`
22
+
-`message` property has been deprecated. You can place the *message text* in the toast content or pass it as parameter to `show` method instead.
23
+
- An optional string parameter `message` has been added to `show()` method.
24
+
-`IgxSnackbar`
25
+
-`message` property has been deprecated. You can place the *message text* in the snackbar content or pass it as parameter to `show` method instead.
26
+
- An optional string parameter `message` has been added to `show()` method.
27
+
13
28
## 10.0.0
14
29
15
30
### General
@@ -18,9 +33,9 @@ All notable changes for each version of this project will be documented in this
18
33
-`igx-select`, `igx-combo`, `igx-drop-down`
19
34
-**Behavioral Change** - The select, combo, and dropdown items now have display block and text-overflow ellipsis enabled by default.
20
35
-`IgxTransaction` - The `onStateUpdate` now emits with information of its origin. The emitted value is of type `StateUpdateEvent`, which has two properties:
21
-
-`origin` - it can vary within the values of the `TransactionEventOrigin` interface;
36
+
-`origin` - it can vary within the values of the `TransactionEventOrigin` interface;
22
37
-`actions` - contains information about the transactions, that caused the emission of the event.
23
-
-`IgxPaginator` - The input `overlaySettings` was introduced, which allows applying custom overlay settings for the component.
38
+
-`IgxPaginator` - The input `overlaySettings` was introduced, which allows applying custom overlay settings for the component.
24
39
25
40
### New Features
26
41
-`IgxGrid`
@@ -43,6 +58,7 @@ All notable changes for each version of this project will be documented in this
43
58
-`IgxHierarchicalGrid`
44
59
-`onGridInitialized` - New output has been exposed. Emitted after a grid is being initialized for the corresponding row island.
45
60
-**Behavioral Change** - When moving a column `DropPosition.None` is now acting like `DropPosition.AfterDropTarget`.
61
+
46
62
## 9.1.0
47
63
48
64
### General
@@ -164,9 +180,9 @@ All notable changes for each version of this project will be documented in this
164
180
```typescript
165
181
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
166
182
```
167
-
- Added new properties for paging:
168
-
- `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.
169
-
- `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.
183
+
- Added new properties for paging:
184
+
- `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.
185
+
- `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.
170
186
- Added functionality for column selection.
171
187
- `columnSelection` property has been added. It accepts GridSelection mode enumeration. Grid selection mode could be none, single or multiple.
172
188
- `selected` property has been added to the IgxColumnComponent; Allows you to set whether the column is selected.
0 commit comments