Skip to content

Commit 7e8234b

Browse files
crisbetojelbourn
authored andcommitted
refactor(input): deprecate dash-case selectors (#5647)
Removes the `md-prefix` and `md-suffix` selectors from their respective directives. BREAKING CHANGES: Any uses of `md-prefix` and `md-suffix` should be switched over to `mdPrefix` and `mdSuffix`. Fixes #5643.
1 parent 5bcba85 commit 7e8234b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/input/input-container.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,14 @@ export class MdErrorDirective { }
104104

105105
/** Prefix to be placed the the front of the input. */
106106
@Directive({
107-
selector: '[mdPrefix], [matPrefix], [md-prefix]'
107+
selector: '[mdPrefix], [matPrefix]'
108108
})
109109
export class MdPrefix {}
110110

111111

112112
/** Suffix to be placed at the end of the input. */
113113
@Directive({
114-
selector: '[mdSuffix], [matSuffix], [md-suffix]'
114+
selector: '[mdSuffix], [matSuffix]'
115115
})
116116
export class MdSuffix {}
117117

0 commit comments

Comments
 (0)