Skip to content

Commit

Permalink
refactor(form-field): remove deprecated placeholder options. (#10291)
Browse files Browse the repository at this point in the history
BREAKING CHANGES:

* MatFormFieldControl.shouldPlaceholderFloat which was deprecated in 5.0.0 has been removed. * MatFormFieldControl.shouldLabelFloat is no longer optional and should be used instead.
* `FloatPlaceholderType` which was deprecated in 5.0.0 has been removed. Use `FloatLabelType` instead.
* `PlaceholderOptions` which was deprecated in 5.0.0 has been removed. Use `LabelOptions` instead.
* `MAT_PLACEHOLDER_GLOBAL_OPTIONS` which was deprecated in 5.0.0 has been removed. Use `MAT_LABEL_GLOBAL_OPTIONS` instead.
  • Loading branch information
mmalerba authored and jelbourn committed Mar 9, 2018
1 parent 4a84a67 commit 26ee3e7
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/lib/core/public-api.ts
Expand Up @@ -18,23 +18,5 @@ export * from './label/label-options';
export * from './ripple/index';
export * from './selection/index';

/**
* @deprecated
* @deletion-target 6.0.0
*/
export {MAT_LABEL_GLOBAL_OPTIONS as MAT_PLACEHOLDER_GLOBAL_OPTIONS} from './label/label-options';

/**
* @deprecated
* @deletion-target 6.0.0
*/
export {FloatLabelType as FloatPlaceholderType} from './label/label-options';

/**
* @deprecated
* @deletion-target 6.0.0
*/
export {LabelOptions as PlaceholderOptions} from './label/label-options';

// TODO: don't have this
export * from './testing/month-constants';

0 comments on commit 26ee3e7

Please sign in to comment.