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 33All notable changes for each version of this project will be documented in this file.
44
55## 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.
126
137### New Features
148- ` IgxColumn `
159 - 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.
1616
1717## 10.0.0
1818
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments