File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
projects/igniteui-angular/src/lib/snackbar Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes for each version of this project will be documented in this file.
4
4
5
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.
12
6
13
7
### New Features
14
8
- ` IgxColumn `
15
9
- Added ` byHeader ` parameter to the ` autosize ` method which specifies if the autosizing should be based only on the header content width.
10
+ - ` IgxToast `
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.
12
+ - An optional string parameter ` message ` has been added to ` show() ` method.
13
+ - ` IgxSnackbar `
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.
15
+ - An optional string parameter ` message ` has been added to ` show() ` method.
16
16
17
17
## 10.0.0
18
18
Original file line number Diff line number Diff line change @@ -212,9 +212,9 @@ export class IgxSnackbarComponent {
212
212
* this.snackbar.show();
213
213
* ```
214
214
*/
215
- public show ( msg ?: string ) : void {
215
+ public show ( message ?: string ) : void {
216
216
clearTimeout ( this . timeoutId ) ;
217
- if ( msg !== undefined ) { this . snackbarMessage = msg ; }
217
+ if ( message !== undefined ) { this . snackbarMessage = message ; }
218
218
setTimeout ( this . timeoutId ) ;
219
219
this . isVisible = true ;
220
220
You can’t perform that action at this time.
0 commit comments