File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,26 @@ export class MdSort {
51
51
set disableClear ( v ) { this . _disableClear = coerceBooleanProperty ( v ) ; }
52
52
private _disableClear : boolean ;
53
53
54
+ // Properties with `mat-` prefix for noconflict mode.
55
+ @Input ( 'matSortActive' )
56
+ get _matSortActive ( ) { return this . active ; }
57
+ set _matSortActive ( v ) { this . active = v ; }
58
+
59
+ // Properties with `mat-` prefix for noconflict mode.
60
+ @Input ( 'matSortStart' )
61
+ get _matSortStart ( ) { return this . start ; }
62
+ set _matSortStart ( v ) { this . start = v ; }
63
+
64
+ // Properties with `mat-` prefix for noconflict mode.
65
+ @Input ( 'matSortDirection' )
66
+ get _matSortDirection ( ) { return this . direction ; }
67
+ set _matSortDirection ( v ) { this . direction = v ; }
68
+
69
+ // Properties with `mat-` prefix for noconflict mode.
70
+ @Input ( 'matSortDisableClear' )
71
+ get _matSortDisableClear ( ) { return this . disableClear ; }
72
+ set _matSortDisableClear ( v ) { this . disableClear = v ; }
73
+
54
74
/** Event emitted when the user changes either the active sort or sort direction. */
55
75
@Output ( ) mdSortChange = new EventEmitter < Sort > ( ) ;
56
76
You can’t perform that action at this time.
0 commit comments