This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
Releases: OfficeDev/office-ui-fabric-core
Releases · OfficeDev/office-ui-fabric-core
9.3.0
New
- #1069 Adds a new
ms-background-position()
mixin, which outputs left-to-right and right-to-left styles for thebackground-position
property. - #1071, #1074 Add 26 new icons. 🌶
- #1070 Improves accessibility by wrapping animations in the
prefers-reduced-motion
media query. This allows users to opt-out of animations, which is especially important for those with vestibular disorders. You can read more about the media query on CSS-Tricks.
Deprecated
- #1074 Deprecates the
HumanResources
icon. This will be removed in an upcoming major release.
Documentation
- #1065 Updates the NuGet package documentation to comply with Microsoft's new publishing policies.
9.2.0
9.1.0
New
- #1046: Adds background and border hover color classes that were missing in previous releases, such as
.ms-bgColor-orange--hover
. - #1049: Updates the icons, adding a new
WaffleOffice365
icon. - #1050: Updates the icons, adding 80 news icons.
- #1052: Adds a bold font weight for Segoe UI.
Changed
- #1047: Removes two translucent color variables. This is not considered a breaking change as the variables were never used within Fabric or documented for use.
Removed/Deprecated
- #1050: Renames two icons:
StoreLogo
toStoreLogo16
andStoreLogoMed
toStoreLogoMed20
. The previous names are supported in this version but will be removed in a future release.
9.0.0
8.1.0
New
- #1033: Adds new mixins for applying styles within min-width and max-width media queries. For example,
ms-screen-md-up
andms-screen-xl-down
. - #1040: Updates the icon font to version 2.51, which includes 18 new icons.
Fixed
- #1036: Ensures that
textarea
elements inherit the correct font family when placed inside the.ms-Fabric
wrapper class. - #1039: Fixes a bug where the
ms-textAlignCenter
class was not centering text.
Removed/Deprecated
- #1035: Removes the undocumented font weight hover classes.
- #1034: Removes the
borderColorTop-themePrimary
classes and mixin, which were added by special request years ago and were never documented. - #1039: The
ms-textAlign()
mixin (not to be confused with thems-text-align()
directionality mixin) has been deprecated and will be removed in a future release. This mixin was never documented and has only been used internally.
8.0.0
Breaking Changes
#1029 Removes fabric.rtl.css
, the separate right-to-left (RTL) stylesheet, and places those styles alongside the left-to-right (LTR) styles. For the correct styles to apply, you must set a direction on the parent element of any Fabric classes. The most common place to do this is on the html
element, like so:
<html dir='ltr' ... >
or
<html dir='rtl' ... >
This is all that is required to switch modes between LTR and RTL. Fabric will automatically update "flip" the grid layout, directional icons (e.g. arrows), animations, and more. If your application supports multiple languages/locales, please consider making this small change to improve the experience for users reading right-to-left scripts.
Documentation
#1026 Improved the Markdown formatting of the building documentation.