diff --git a/src/material/form-field/form-field.ts b/src/material/form-field/form-field.ts index 0b6368b276e8..66ed63a72e61 100644 --- a/src/material/form-field/form-field.ts +++ b/src/material/form-field/form-field.ts @@ -75,7 +75,12 @@ class MatFormFieldBase { const _MatFormFieldMixinBase: CanColorCtor & typeof MatFormFieldBase = mixinColor(MatFormFieldBase, 'primary'); -/** Possible appearance styles for the form field. */ +/** + * Possible appearance styles for the form field. + * + * Note: The `legacy` and `standard` appearances are deprecated. Please use `fill` or `outline`. + * @breaking-change 11.0.0 Remove `legacy` and `standard`. + */ export type MatFormFieldAppearance = 'legacy' | 'standard' | 'fill' | 'outline'; /**