Skip to content

Commit 279226a

Browse files
committed
chore(*): update changelog with the changes in the toast and snackbar
1 parent 4409cfc commit 279226a

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

CHANGELOG.md

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

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

5+
## 10.1.0
6+
- `IgxToast`
7+
- `message` property has been deprecated. You can use place the message in the toast content or pass it as parameter to the show method instead.
8+
- An optional string parameter `message` has been added to `show()` method.
9+
- `IgxSnackbar`
10+
- `message` property has been deprecated. You can use place the message in the snackbar content or pass it as parameter to the show method instead.
11+
- An optional string parameter `message` has been added to `show()` method.
512
## 10.0.0
613

714
### General
@@ -10,9 +17,9 @@ All notable changes for each version of this project will be documented in this
1017
- `igx-select`, `igx-combo`, `igx-drop-down`
1118
- **Behavioral Change** - The select, combo, and dropdown items now have display block and text-overflow ellipsis enabled by default.
1219
- `IgxTransaction` - The `onStateUpdate` now emits with information of its origin. The emitted value is of type `StateUpdateEvent`, which has two properties:
13-
- `origin` - it can vary within the values of the `TransactionEventOrigin` interface;
20+
- `origin` - it can vary within the values of the `TransactionEventOrigin` interface;
1421
- `actions` - contains information about the transactions, that caused the emission of the event.
15-
- `IgxPaginator` - The input `overlaySettings` was introduced, which allows applying custom overlay settings for the component.
22+
- `IgxPaginator` - The input `overlaySettings` was introduced, which allows applying custom overlay settings for the component.
1623

1724
### New Features
1825
- `IgxGrid`
@@ -156,9 +163,9 @@ All notable changes for each version of this project will be documented in this
156163
```typescript
157164
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
158165
```
159-
- Added new properties for paging:
160-
- `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.
161-
- `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.
166+
- Added new properties for paging:
167+
- `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.
168+
- `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.
162169
- Added functionality for column selection.
163170
- `columnSelection` property has been added. It accepts GridSelection mode enumeration. Grid selection mode could be none, single or multiple.
164171
- `selected` property has been added to the IgxColumnComponent; Allows you to set whether the column is selected.

0 commit comments

Comments
 (0)