Skip to content

Commit 9ea5694

Browse files
mmalerbaandrewseguin
authored andcommitted
fix(material/form-field): undeprecated legacy and standard appearances (#18144)
There are a few bugs to address with outline and fill styles before we can deprecate these.
1 parent a7f7e9b commit 9ea5694

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/material/form-field/form-field.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,7 @@ class MatFormFieldBase {
7575
const _MatFormFieldMixinBase: CanColorCtor & typeof MatFormFieldBase =
7676
mixinColor(MatFormFieldBase, 'primary');
7777

78-
/**
79-
* Possible appearance styles for the form field.
80-
*
81-
* Note: The `legacy` and `standard` appearances are deprecated. Please use `fill` or `outline`.
82-
* @breaking-change 11.0.0 Remove `legacy` and `standard`.
83-
*/
78+
/** Possible appearance styles for the form field. */
8479
export type MatFormFieldAppearance = 'legacy' | 'standard' | 'fill' | 'outline';
8580

8681
/**

0 commit comments

Comments
 (0)