Skip to content

Commit d77afa0

Browse files
committed
chore(*): address the requested changes
1 parent 58f0a50 commit d77afa0

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,17 @@
33
All notable changes for each version of this project will be documented in this file.
44

55
## 10.1.0
6+
7+
### New Features
8+
- `IgxColumn`
9+
- Added `byHeader` parameter to the `autosize` method which specifies if the autosizing should be based only on the header content width.
610
- `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.
11+
- `message` property has been deprecated. You can place the *message text* in the toast content or pass it as parameter to `show` method instead.
812
- An optional string parameter `message` has been added to `show()` method.
913
- `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.
14+
- `message` property has been deprecated. You can place the *message text* in the snackbar content or pass it as parameter to `show` method instead.
1115
- An optional string parameter `message` has been added to `show()` method.
16+
1217
## 10.0.0
1318

1419
### General

projects/igniteui-angular/src/lib/snackbar/snackbar.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,9 @@ export class IgxSnackbarComponent {
212212
* this.snackbar.show();
213213
* ```
214214
*/
215-
public show(msg?: string): void {
215+
public show(message?: string): void {
216216
clearTimeout(this.timeoutId);
217-
if (msg !== undefined) { this.snackbarMessage = msg; }
217+
if (message !== undefined) { this.snackbarMessage = message; }
218218
setTimeout(this.timeoutId);
219219
this.isVisible = true;
220220

0 commit comments

Comments
 (0)