We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
legacy
standard
1 parent 11116d5 commit 527f1b5Copy full SHA for 527f1b5
src/material/form-field/form-field.ts
@@ -75,7 +75,12 @@ class MatFormFieldBase {
75
const _MatFormFieldMixinBase: CanColorCtor & typeof MatFormFieldBase =
76
mixinColor(MatFormFieldBase, 'primary');
77
78
-/** Possible appearance styles for the form field. */
+/**
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
+ */
84
export type MatFormFieldAppearance = 'legacy' | 'standard' | 'fill' | 'outline';
85
86
/**
0 commit comments