File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
projects/igniteui-angular/src/lib/snackbar Expand file tree Collapse file tree 2 files changed +9
-4
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+
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
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