From 7517b9d9179e24d42675f29467e42028bc507572 Mon Sep 17 00:00:00 2001 From: Miles Malerba Date: Thu, 9 Jan 2020 15:11:19 -0800 Subject: [PATCH] fix(material/form-field): undeprecated legacy and standard appearances There are a few bugs to address with outline and fill styles before we can deprecate these. --- src/material/form-field/form-field.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/material/form-field/form-field.ts b/src/material/form-field/form-field.ts index 1b289e6f133d..2beabaa8eecb 100644 --- a/src/material/form-field/form-field.ts +++ b/src/material/form-field/form-field.ts @@ -75,12 +75,7 @@ class MatFormFieldBase { const _MatFormFieldMixinBase: CanColorCtor & typeof MatFormFieldBase = mixinColor(MatFormFieldBase, 'primary'); -/** - * 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`. - */ +/** Possible appearance styles for the form field. */ export type MatFormFieldAppearance = 'legacy' | 'standard' | 'fill' | 'outline'; /**