v91.0.0
91.0.0
This major release deletes several deprecated APIs and annotates several APIs as deprecated. Usage
of UIWebView has also been replaced with WKWebView.
Breaking changes
Buttons shouldRaiseOnTouch was deleted. Set elevation to MDCShadowElevationNone for all states
instead.
Buttons underlyingColor property was deleted. Use underlyingColorHint instead.
New deprecations
MDCMaskedTransitionController was deprecated. There is no replacement for this component. Please
use a standard presentViewController invocation instead.
New features
ProgressView's cornerRadius property was added. This enables clients to customize the corner radius
of the filled portion of the progress view.
ActionSheet added the ability to add a divider between the header and table. Properties
headerDividerColor and showHeaderDivider were added to MDCActionSheetController. If a client
wants to show a header divider they would need to set showHeaderDivider and then set an
appropriate color for their use case, by default it is clearColor. By default the property
showHeaderDivider view is NO so that we do not break clients. This matches a pattern outlined
in MDCBannerView.
Changes
ActionSheet
BottomSheet
- replace UIWebView usage with WKWebView. (#8453) (Wenyu Zhang)
Buttons
- Delete underlyingColor property (#8451) (Bryan Oltman)
- Remove unused shouldRaiseOnTouch property (#8455) (Bryan Oltman)
MaskedTransition
- Deprecate MDCMaskedTransitionController. (#8443) (featherless)
ProgressView
- Add cornerRadius API. (#7417) (featherless)