@fluentui/react-theme 9.0.0-nightly.d730088d7f.0 → 9.0.0-rc.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.json +349 -10
- package/CHANGELOG.md +157 -40
- package/dist/index.d.ts +433 -0
- package/{lib → dist}/tsdoc-metadata.json +0 -0
- package/lib/alias/darkColor.js +147 -0
- package/lib/alias/darkColor.js.map +1 -0
- package/lib/alias/darkColorPalette.js +33 -0
- package/lib/alias/darkColorPalette.js.map +1 -0
- package/lib/alias/highContrastColor.js +147 -0
- package/lib/alias/highContrastColor.js.map +1 -0
- package/lib/alias/highContrastColorPalette.js +33 -0
- package/lib/alias/highContrastColorPalette.js.map +1 -0
- package/lib/alias/lightColor.js +147 -0
- package/lib/alias/lightColor.js.map +1 -0
- package/lib/alias/lightColorPalette.js +33 -0
- package/lib/alias/lightColorPalette.js.map +1 -0
- package/lib/alias/teamsDarkColor.js +147 -0
- package/lib/alias/teamsDarkColor.js.map +1 -0
- package/lib/alias/teamsDarkColorPalette.js +33 -0
- package/lib/alias/teamsDarkColorPalette.js.map +1 -0
- package/lib/global/borderRadius.js +1 -1
- package/lib/global/borderRadius.js.map +1 -1
- package/lib/global/brandColors.js +53 -31
- package/lib/global/brandColors.js.map +1 -1
- package/lib/global/colors.js +148 -130
- package/lib/global/colors.js.map +1 -1
- package/lib/global/curves.js +12 -0
- package/lib/global/curves.js.map +1 -0
- package/lib/global/durations.js +10 -0
- package/lib/global/durations.js.map +1 -0
- package/lib/global/fonts.js +4 -4
- package/lib/global/fonts.js.map +1 -1
- package/lib/global/index.js +5 -0
- package/lib/global/index.js.map +1 -1
- package/lib/global/spacings.js +40 -0
- package/lib/global/spacings.js.map +1 -0
- package/lib/global/strokeWidths.js +1 -1
- package/lib/global/strokeWidths.js.map +1 -1
- package/lib/global/typographyStyles.js +104 -0
- package/lib/global/typographyStyles.js.map +1 -0
- package/lib/index.js +5 -2
- package/lib/index.js.map +1 -1
- package/lib/themeToTokensObject.js +19 -0
- package/lib/themeToTokensObject.js.map +1 -0
- package/lib/themes/index.js.map +1 -1
- package/lib/themes/teams/darkTheme.js +1 -1
- package/lib/themes/teams/darkTheme.js.map +1 -1
- package/lib/themes/teams/highContrastTheme.js +1 -1
- package/lib/themes/teams/highContrastTheme.js.map +1 -1
- package/lib/themes/teams/index.js.map +1 -1
- package/lib/themes/teams/lightTheme.js +1 -1
- package/lib/themes/teams/lightTheme.js.map +1 -1
- package/lib/themes/web/darkTheme.js +1 -1
- package/lib/themes/web/darkTheme.js.map +1 -1
- package/lib/themes/web/index.js +0 -1
- package/lib/themes/web/index.js.map +1 -1
- package/lib/themes/web/lightTheme.js +1 -1
- package/lib/themes/web/lightTheme.js.map +1 -1
- package/lib/tokens.js +426 -0
- package/lib/tokens.js.map +1 -0
- package/lib/types.js.map +1 -1
- package/lib/utils/createDarkTheme.js +22 -5
- package/lib/utils/createDarkTheme.js.map +1 -1
- package/lib/utils/createHighContrastTheme.js +22 -5
- package/lib/utils/createHighContrastTheme.js.map +1 -1
- package/lib/utils/createLightTheme.js +22 -5
- package/lib/utils/createLightTheme.js.map +1 -1
- package/lib/utils/createTeamsDarkTheme.js +22 -5
- package/lib/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib/utils/index.js +0 -2
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/shadows.js +7 -7
- package/lib/utils/shadows.js.map +1 -1
- package/lib-commonjs/alias/darkColor.js +157 -0
- package/lib-commonjs/alias/darkColor.js.map +1 -0
- package/lib-commonjs/alias/darkColorPalette.js +41 -0
- package/lib-commonjs/alias/darkColorPalette.js.map +1 -0
- package/lib-commonjs/alias/highContrastColor.js +157 -0
- package/lib-commonjs/alias/highContrastColor.js.map +1 -0
- package/lib-commonjs/alias/highContrastColorPalette.js +41 -0
- package/lib-commonjs/alias/highContrastColorPalette.js.map +1 -0
- package/lib-commonjs/alias/lightColor.js +157 -0
- package/lib-commonjs/alias/lightColor.js.map +1 -0
- package/lib-commonjs/alias/lightColorPalette.js +41 -0
- package/lib-commonjs/alias/lightColorPalette.js.map +1 -0
- package/lib-commonjs/alias/teamsDarkColor.js +157 -0
- package/lib-commonjs/alias/teamsDarkColor.js.map +1 -0
- package/lib-commonjs/alias/teamsDarkColorPalette.js +41 -0
- package/lib-commonjs/alias/teamsDarkColorPalette.js.map +1 -0
- package/lib-commonjs/global/borderRadius.js.map +1 -1
- package/lib-commonjs/global/brandColors.js +52 -30
- package/lib-commonjs/global/brandColors.js.map +1 -1
- package/lib-commonjs/global/colors.js +138 -120
- package/lib-commonjs/global/colors.js.map +1 -1
- package/lib-commonjs/global/curves.js +18 -0
- package/lib-commonjs/global/curves.js.map +1 -0
- package/lib-commonjs/global/durations.js +16 -0
- package/lib-commonjs/global/durations.js.map +1 -0
- package/lib-commonjs/global/fonts.js.map +1 -1
- package/lib-commonjs/global/index.js +11 -1
- package/lib-commonjs/global/index.js.map +1 -1
- package/lib-commonjs/global/spacings.js +46 -0
- package/lib-commonjs/global/spacings.js.map +1 -0
- package/lib-commonjs/global/strokeWidths.js.map +1 -1
- package/lib-commonjs/global/typographyStyles.js +112 -0
- package/lib-commonjs/global/typographyStyles.js.map +1 -0
- package/lib-commonjs/index.js +85 -3
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/themeToTokensObject.js +28 -0
- package/lib-commonjs/themeToTokensObject.js.map +1 -0
- package/lib-commonjs/themes/index.js +1 -1
- package/lib-commonjs/themes/index.js.map +1 -1
- package/lib-commonjs/themes/teams/darkTheme.js +2 -2
- package/lib-commonjs/themes/teams/darkTheme.js.map +1 -1
- package/lib-commonjs/themes/teams/highContrastTheme.js +1 -1
- package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -1
- package/lib-commonjs/themes/teams/index.js +1 -1
- package/lib-commonjs/themes/teams/index.js.map +1 -1
- package/lib-commonjs/themes/teams/lightTheme.js +2 -2
- package/lib-commonjs/themes/teams/lightTheme.js.map +1 -1
- package/lib-commonjs/themes/web/darkTheme.js +2 -2
- package/lib-commonjs/themes/web/darkTheme.js.map +1 -1
- package/lib-commonjs/themes/web/index.js +1 -3
- package/lib-commonjs/themes/web/index.js.map +1 -1
- package/lib-commonjs/themes/web/lightTheme.js +2 -2
- package/lib-commonjs/themes/web/lightTheme.js.map +1 -1
- package/lib-commonjs/tokens.js +432 -0
- package/lib-commonjs/tokens.js.map +1 -0
- package/lib-commonjs/types.js.map +1 -1
- package/lib-commonjs/utils/createDarkTheme.js +27 -7
- package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/createHighContrastTheme.js +27 -7
- package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
- package/lib-commonjs/utils/createLightTheme.js +27 -7
- package/lib-commonjs/utils/createLightTheme.js.map +1 -1
- package/lib-commonjs/utils/createTeamsDarkTheme.js +27 -7
- package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/index.js +1 -13
- package/lib-commonjs/utils/index.js.map +1 -1
- package/lib-commonjs/utils/shadows.js +7 -7
- package/lib-commonjs/utils/shadows.js.map +1 -1
- package/package.json +16 -12
- package/dist/react-theme.d.ts +0 -326
- package/lib/alias/dark.d.ts +0 -3
- package/lib/alias/dark.js +0 -117
- package/lib/alias/dark.js.map +0 -1
- package/lib/alias/highContrast.d.ts +0 -3
- package/lib/alias/highContrast.js +0 -117
- package/lib/alias/highContrast.js.map +0 -1
- package/lib/alias/light.d.ts +0 -3
- package/lib/alias/light.js +0 -117
- package/lib/alias/light.js.map +0 -1
- package/lib/alias/teamsDark.d.ts +0 -3
- package/lib/alias/teamsDark.js +0 -117
- package/lib/alias/teamsDark.js.map +0 -1
- package/lib/global/borderRadius.d.ts +0 -2
- package/lib/global/brandColors.d.ts +0 -3
- package/lib/global/colors.d.ts +0 -15
- package/lib/global/fonts.d.ts +0 -5
- package/lib/global/index.d.ts +0 -4
- package/lib/global/strokeWidths.d.ts +0 -2
- package/lib/index.d.ts +0 -3
- package/lib/themes/index.d.ts +0 -2
- package/lib/themes/teams/darkTheme.d.ts +0 -2
- package/lib/themes/teams/highContrastTheme.d.ts +0 -2
- package/lib/themes/teams/index.d.ts +0 -3
- package/lib/themes/teams/lightTheme.d.ts +0 -2
- package/lib/themes/web/darkTheme.d.ts +0 -2
- package/lib/themes/web/highContrastTheme.d.ts +0 -2
- package/lib/themes/web/highContrastTheme.js +0 -3
- package/lib/themes/web/highContrastTheme.js.map +0 -1
- package/lib/themes/web/index.d.ts +0 -3
- package/lib/themes/web/lightTheme.d.ts +0 -2
- package/lib/types.d.ts +0 -327
- package/lib/utils/createDarkTheme.d.ts +0 -2
- package/lib/utils/createHighContrastTheme.d.ts +0 -2
- package/lib/utils/createLightTheme.d.ts +0 -2
- package/lib/utils/createTeamsDarkTheme.d.ts +0 -2
- package/lib/utils/index.d.ts +0 -6
- package/lib/utils/mergeThemes.d.ts +0 -2
- package/lib/utils/mergeThemes.js +0 -14
- package/lib/utils/mergeThemes.js.map +0 -1
- package/lib/utils/shadows.d.ts +0 -2
- package/lib/utils/themeToCSSVariables.d.ts +0 -2
- package/lib/utils/themeToCSSVariables.js +0 -12
- package/lib/utils/themeToCSSVariables.js.map +0 -1
- package/lib-commonjs/alias/dark.d.ts +0 -3
- package/lib-commonjs/alias/dark.js +0 -128
- package/lib-commonjs/alias/dark.js.map +0 -1
- package/lib-commonjs/alias/highContrast.d.ts +0 -3
- package/lib-commonjs/alias/highContrast.js +0 -128
- package/lib-commonjs/alias/highContrast.js.map +0 -1
- package/lib-commonjs/alias/light.d.ts +0 -3
- package/lib-commonjs/alias/light.js +0 -128
- package/lib-commonjs/alias/light.js.map +0 -1
- package/lib-commonjs/alias/teamsDark.d.ts +0 -3
- package/lib-commonjs/alias/teamsDark.js +0 -128
- package/lib-commonjs/alias/teamsDark.js.map +0 -1
- package/lib-commonjs/global/borderRadius.d.ts +0 -2
- package/lib-commonjs/global/brandColors.d.ts +0 -3
- package/lib-commonjs/global/colors.d.ts +0 -15
- package/lib-commonjs/global/fonts.d.ts +0 -5
- package/lib-commonjs/global/index.d.ts +0 -4
- package/lib-commonjs/global/strokeWidths.d.ts +0 -2
- package/lib-commonjs/index.d.ts +0 -3
- package/lib-commonjs/themes/index.d.ts +0 -2
- package/lib-commonjs/themes/teams/darkTheme.d.ts +0 -2
- package/lib-commonjs/themes/teams/highContrastTheme.d.ts +0 -2
- package/lib-commonjs/themes/teams/index.d.ts +0 -3
- package/lib-commonjs/themes/teams/lightTheme.d.ts +0 -2
- package/lib-commonjs/themes/web/darkTheme.d.ts +0 -2
- package/lib-commonjs/themes/web/highContrastTheme.d.ts +0 -2
- package/lib-commonjs/themes/web/highContrastTheme.js +0 -11
- package/lib-commonjs/themes/web/highContrastTheme.js.map +0 -1
- package/lib-commonjs/themes/web/index.d.ts +0 -3
- package/lib-commonjs/themes/web/lightTheme.d.ts +0 -2
- package/lib-commonjs/types.d.ts +0 -327
- package/lib-commonjs/utils/createDarkTheme.d.ts +0 -2
- package/lib-commonjs/utils/createHighContrastTheme.d.ts +0 -2
- package/lib-commonjs/utils/createLightTheme.d.ts +0 -2
- package/lib-commonjs/utils/createTeamsDarkTheme.d.ts +0 -2
- package/lib-commonjs/utils/index.d.ts +0 -6
- package/lib-commonjs/utils/mergeThemes.d.ts +0 -2
- package/lib-commonjs/utils/mergeThemes.js +0 -24
- package/lib-commonjs/utils/mergeThemes.js.map +0 -1
- package/lib-commonjs/utils/shadows.d.ts +0 -2
- package/lib-commonjs/utils/themeToCSSVariables.d.ts +0 -2
- package/lib-commonjs/utils/themeToCSSVariables.js +0 -21
- package/lib-commonjs/utils/themeToCSSVariables.js.map +0 -1
package/CHANGELOG.md
CHANGED
@@ -1,23 +1,140 @@
|
|
1
1
|
# Change Log - @fluentui/react-theme
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Tue, 21 Jun 2022 17:09:27 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
-
## [9.0.0-
|
7
|
+
## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.10)
|
8
8
|
|
9
|
-
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-
|
9
|
+
Tue, 21 Jun 2022 17:09:27 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.9..@fluentui/react-theme_v9.0.0-rc.10)
|
11
11
|
|
12
12
|
### Changes
|
13
13
|
|
14
|
-
-
|
15
|
-
|
16
|
-
|
14
|
+
- BREAKING: reduce shared colors ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by miroslav.stastny@microsoft.com)
|
15
|
+
|
16
|
+
## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.9)
|
17
|
+
|
18
|
+
Mon, 23 May 2022 18:56:50 GMT
|
19
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.8..@fluentui/react-theme_v9.0.0-rc.9)
|
20
|
+
|
21
|
+
### Changes
|
22
|
+
|
23
|
+
- Remove webHighContrast theme ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by miroslav.stastny@microsoft.com)
|
24
|
+
|
25
|
+
## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.8)
|
26
|
+
|
27
|
+
Mon, 23 May 2022 12:13:56 GMT
|
28
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.7..@fluentui/react-theme_v9.0.0-rc.8)
|
29
|
+
|
30
|
+
### Changes
|
31
|
+
|
32
|
+
- feat: ship rolluped only dts ([PR #22828](https://github.com/microsoft/fluentui/pull/22828) by martinhochel@microsoft.com)
|
33
|
+
|
34
|
+
## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.7)
|
35
|
+
|
36
|
+
Thu, 05 May 2022 18:26:27 GMT
|
37
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.6..@fluentui/react-theme_v9.0.0-rc.7)
|
38
|
+
|
39
|
+
### Changes
|
40
|
+
|
41
|
+
- Export TypographyStyle type ([PR #22832](https://github.com/microsoft/fluentui/pull/22832) by miroslav.stastny@microsoft.com)
|
42
|
+
- Removing star exports. ([PR #22810](https://github.com/microsoft/fluentui/pull/22810) by humberto_makoto@hotmail.com)
|
43
|
+
- Added ms suffix to durations ([PR #22831](https://github.com/microsoft/fluentui/pull/22831) by gcox@microsoft.com)
|
44
|
+
|
45
|
+
## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.6)
|
46
|
+
|
47
|
+
Wed, 04 May 2022 13:26:33 GMT
|
48
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.5..@fluentui/react-theme_v9.0.0-rc.6)
|
49
|
+
|
50
|
+
### Changes
|
51
|
+
|
52
|
+
- Add px suffix to spacings ([PR #22722](https://github.com/microsoft/fluentui/pull/22722) by gcox@microsoft.com)
|
53
|
+
- Fixed typo in typography ([PR #22625](https://github.com/microsoft/fluentui/pull/22625) by gcox@microsoft.com)
|
54
|
+
- Fixed line-height in title2 ([PR #22716](https://github.com/microsoft/fluentui/pull/22716) by gcox@microsoft.com)
|
55
|
+
- Added global theme types and tokens ([PR #22607](https://github.com/microsoft/fluentui/pull/22607) by gcox@microsoft.com)
|
56
|
+
- fix(react-theme): Update CompoundBrandBackground and BrandStroke1 ([PR #22751](https://github.com/microsoft/fluentui/pull/22751) by miroslav.stastny@microsoft.com)
|
57
|
+
- Add base font family per figma ([PR #22627](https://github.com/microsoft/fluentui/pull/22627) by gcox@microsoft.com)
|
58
|
+
- Added typeography styles ([PR #22610](https://github.com/microsoft/fluentui/pull/22610) by gcox@microsoft.com)
|
59
|
+
- feat(react-theme): Add colorNeutralForeground2Link color tokens ([PR #22570](https://github.com/microsoft/fluentui/pull/22570) by miroslav.stastny@microsoft.com)
|
60
|
+
|
61
|
+
## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.5)
|
62
|
+
|
63
|
+
Tue, 19 Apr 2022 19:17:02 GMT
|
64
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.4..@fluentui/react-theme_v9.0.0-rc.5)
|
65
|
+
|
66
|
+
### Changes
|
67
|
+
|
68
|
+
- fix(react-theme): Update yellow shared color ([PR #22450](https://github.com/microsoft/fluentui/pull/22450) by miroslav.stastny@microsoft.com)
|
69
|
+
- feat(react-theme): update color tokens ([PR #22238](https://github.com/microsoft/fluentui/pull/22238) by miroslav.stastny@microsoft.com)
|
70
|
+
|
71
|
+
## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.4)
|
72
|
+
|
73
|
+
Fri, 04 Mar 2022 05:17:31 GMT
|
74
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.3..@fluentui/react-theme_v9.0.0-rc.4)
|
75
|
+
|
76
|
+
### Changes
|
77
|
+
|
78
|
+
- Adding explicit export maps on all consumer packages for FUIR 8 and 9. ([PR #21508](https://github.com/microsoft/fluentui/pull/21508) by dzearing@microsoft.com)
|
79
|
+
|
80
|
+
## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.3)
|
81
|
+
|
82
|
+
Fri, 18 Feb 2022 13:35:36 GMT
|
83
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.1..@fluentui/react-theme_v9.0.0-rc.3)
|
84
|
+
|
85
|
+
### Changes
|
86
|
+
|
87
|
+
- fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
|
88
|
+
|
89
|
+
## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.1)
|
90
|
+
|
91
|
+
Thu, 10 Feb 2022 08:51:02 GMT
|
92
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.4..@fluentui/react-theme_v9.0.0-rc.1)
|
93
|
+
|
94
|
+
### Changes
|
95
|
+
|
96
|
+
- feat(react-theme): Add colorNeutralForeground1Static token ([PR #21385](https://github.com/microsoft/fluentui/pull/21385) by miroslav.stastny@microsoft.com)
|
97
|
+
- updating brand colors ([PR #20140](https://github.com/microsoft/fluentui/pull/20140) by andmarti@microsoft.com)
|
98
|
+
- feat: Export tokens as mapping to CSS variables ([PR #21026](https://github.com/microsoft/fluentui/pull/21026) by Humberto.Morimoto@microsoft.com)
|
99
|
+
- Extend brand ramp from 13 to 16 tokens ([PR #20884](https://github.com/microsoft/fluentui/pull/20884) by miroslav.stastny@microsoft.com)
|
100
|
+
- remove mergeThemes API ([PR #21278](https://github.com/microsoft/fluentui/pull/21278) by martinhochel@microsoft.com)
|
101
|
+
- Theme: Adding function to programmatically generate tokens object based on a theme. ([PR #21548](https://github.com/microsoft/fluentui/pull/21548) by Humberto.Morimoto@microsoft.com)
|
102
|
+
- Remove `themeToCSSVariables` function ([PR #20828](https://github.com/microsoft/fluentui/pull/20828) by bsunderhus@microsoft.com)
|
103
|
+
- feat(react-theme) Add border1 color token for shared colors ([PR #20963](https://github.com/microsoft/fluentui/pull/20963) by miroslav.stastny@microsoft.com)
|
104
|
+
- Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
|
105
|
+
|
106
|
+
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.4)
|
107
|
+
|
108
|
+
Thu, 25 Nov 2021 08:34:16 GMT
|
109
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.3..@fluentui/react-theme_v9.0.0-beta.4)
|
110
|
+
|
111
|
+
### Changes
|
112
|
+
|
113
|
+
- feat(react-theme): update shadow design tokens ([PR #20604](https://github.com/microsoft/fluentui/pull/20604) by miroslav.stastny@microsoft.com)
|
114
|
+
|
115
|
+
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.3)
|
116
|
+
|
117
|
+
Fri, 12 Nov 2021 13:25:09 GMT
|
118
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.2..@fluentui/react-theme_v9.0.0-beta.3)
|
119
|
+
|
120
|
+
### Changes
|
121
|
+
|
122
|
+
- Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
|
123
|
+
- feat(react-theme): add/update design tokens ([PR #20569](https://github.com/microsoft/fluentui/pull/20569) by miroslav.stastny@microsoft.com)
|
124
|
+
|
125
|
+
## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.2)
|
126
|
+
|
127
|
+
Wed, 27 Oct 2021 12:14:23 GMT
|
128
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.1..@fluentui/react-theme_v9.0.0-beta.2)
|
129
|
+
|
130
|
+
### Changes
|
131
|
+
|
132
|
+
- fix(reat-theme): Remove template literal types for color palette ([PR #20251](https://github.com/microsoft/fluentui/pull/20251) by lingfangao@hotmail.com)
|
133
|
+
- added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
|
17
134
|
|
18
135
|
## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.1)
|
19
136
|
|
20
|
-
Wed, 06 Oct 2021 10:37:22 GMT
|
137
|
+
Wed, 06 Oct 2021 10:37:22 GMT
|
21
138
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.26..@fluentui/react-theme_v9.0.0-beta.1)
|
22
139
|
|
23
140
|
### Changes
|
@@ -26,7 +143,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
|
|
26
143
|
|
27
144
|
## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.26)
|
28
145
|
|
29
|
-
Fri, 01 Oct 2021 14:13:08 GMT
|
146
|
+
Fri, 01 Oct 2021 14:13:08 GMT
|
30
147
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.24..@fluentui/react-theme_v9.0.0-alpha.26)
|
31
148
|
|
32
149
|
### Changes
|
@@ -35,7 +152,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
|
|
35
152
|
|
36
153
|
## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.24)
|
37
154
|
|
38
|
-
Wed, 29 Sep 2021 08:06:11 GMT
|
155
|
+
Wed, 29 Sep 2021 08:06:11 GMT
|
39
156
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.23..@fluentui/react-theme_v9.0.0-alpha.24)
|
40
157
|
|
41
158
|
### Changes
|
@@ -44,7 +161,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
|
|
44
161
|
|
45
162
|
## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.23)
|
46
163
|
|
47
|
-
Tue, 21 Sep 2021 07:42:34 GMT
|
164
|
+
Tue, 21 Sep 2021 07:42:34 GMT
|
48
165
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.22..@fluentui/react-theme_v9.0.0-alpha.23)
|
49
166
|
|
50
167
|
### Changes
|
@@ -53,7 +170,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
|
|
53
170
|
|
54
171
|
## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.22)
|
55
172
|
|
56
|
-
Tue, 24 Aug 2021 07:34:48 GMT
|
173
|
+
Tue, 24 Aug 2021 07:34:48 GMT
|
57
174
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.21..@fluentui/react-theme_v9.0.0-alpha.22)
|
58
175
|
|
59
176
|
### Changes
|
@@ -62,7 +179,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
|
|
62
179
|
|
63
180
|
## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.21)
|
64
181
|
|
65
|
-
Fri, 20 Aug 2021 07:37:28 GMT
|
182
|
+
Fri, 20 Aug 2021 07:37:28 GMT
|
66
183
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.20..@fluentui/react-theme_v9.0.0-alpha.21)
|
67
184
|
|
68
185
|
### Changes
|
@@ -71,7 +188,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
|
|
71
188
|
|
72
189
|
## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.20)
|
73
190
|
|
74
|
-
Tue, 03 Aug 2021 07:39:30 GMT
|
191
|
+
Tue, 03 Aug 2021 07:39:30 GMT
|
75
192
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.19..@fluentui/react-theme_v9.0.0-alpha.20)
|
76
193
|
|
77
194
|
### Patches
|
@@ -85,7 +202,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
|
|
85
202
|
|
86
203
|
## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.19)
|
87
204
|
|
88
|
-
Mon, 26 Jul 2021 07:37:30 GMT
|
205
|
+
Mon, 26 Jul 2021 07:37:30 GMT
|
89
206
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.18..@fluentui/react-theme_v9.0.0-alpha.19)
|
90
207
|
|
91
208
|
### Changes
|
@@ -94,7 +211,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
|
|
94
211
|
|
95
212
|
## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.18)
|
96
213
|
|
97
|
-
Fri, 23 Jul 2021 07:38:19 GMT
|
214
|
+
Fri, 23 Jul 2021 07:38:19 GMT
|
98
215
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.17..@fluentui/react-theme_v9.0.0-alpha.18)
|
99
216
|
|
100
217
|
### Changes
|
@@ -103,7 +220,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
|
|
103
220
|
|
104
221
|
## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.17)
|
105
222
|
|
106
|
-
Fri, 09 Jul 2021 07:39:31 GMT
|
223
|
+
Fri, 09 Jul 2021 07:39:31 GMT
|
107
224
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.16..@fluentui/react-theme_v9.0.0-alpha.17)
|
108
225
|
|
109
226
|
### Patches
|
@@ -113,7 +230,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
|
|
113
230
|
|
114
231
|
## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.16)
|
115
232
|
|
116
|
-
Fri, 02 Jul 2021 07:37:06 GMT
|
233
|
+
Fri, 02 Jul 2021 07:37:06 GMT
|
117
234
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.15..@fluentui/react-theme_v9.0.0-alpha.16)
|
118
235
|
|
119
236
|
### Changes
|
@@ -122,7 +239,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
|
|
122
239
|
|
123
240
|
## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.15)
|
124
241
|
|
125
|
-
Mon, 07 Jun 2021 07:38:15 GMT
|
242
|
+
Mon, 07 Jun 2021 07:38:15 GMT
|
126
243
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.14..@fluentui/react-theme_v9.0.0-alpha.15)
|
127
244
|
|
128
245
|
### Patches
|
@@ -132,7 +249,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
|
|
132
249
|
|
133
250
|
## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.14)
|
134
251
|
|
135
|
-
Thu, 03 Jun 2021 07:36:03 GMT
|
252
|
+
Thu, 03 Jun 2021 07:36:03 GMT
|
136
253
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.13..@fluentui/react-theme_v9.0.0-alpha.14)
|
137
254
|
|
138
255
|
### Changes
|
@@ -141,7 +258,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
|
|
141
258
|
|
142
259
|
## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.13)
|
143
260
|
|
144
|
-
Thu, 20 May 2021 07:41:54 GMT
|
261
|
+
Thu, 20 May 2021 07:41:54 GMT
|
145
262
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.12..@fluentui/react-theme_v9.0.0-alpha.13)
|
146
263
|
|
147
264
|
### Patches
|
@@ -151,7 +268,7 @@ Thu, 20 May 2021 07:41:54 GMT
|
|
151
268
|
|
152
269
|
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.12)
|
153
270
|
|
154
|
-
Wed, 19 May 2021 07:34:20 GMT
|
271
|
+
Wed, 19 May 2021 07:34:20 GMT
|
155
272
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.11..@fluentui/react-theme_v9.0.0-alpha.12)
|
156
273
|
|
157
274
|
### Changes
|
@@ -160,7 +277,7 @@ Wed, 19 May 2021 07:34:20 GMT
|
|
160
277
|
|
161
278
|
## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.11)
|
162
279
|
|
163
|
-
Thu, 13 May 2021 07:36:55 GMT
|
280
|
+
Thu, 13 May 2021 07:36:55 GMT
|
164
281
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.10..@fluentui/react-theme_v9.0.0-alpha.11)
|
165
282
|
|
166
283
|
### Changes
|
@@ -169,7 +286,7 @@ Thu, 13 May 2021 07:36:55 GMT
|
|
169
286
|
|
170
287
|
## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.10)
|
171
288
|
|
172
|
-
Fri, 30 Apr 2021 07:42:23 GMT
|
289
|
+
Fri, 30 Apr 2021 07:42:23 GMT
|
173
290
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.9..@fluentui/react-theme_v9.0.0-alpha.10)
|
174
291
|
|
175
292
|
### Patches
|
@@ -183,7 +300,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
|
|
183
300
|
|
184
301
|
## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.9)
|
185
302
|
|
186
|
-
Fri, 23 Apr 2021 07:37:10 GMT
|
303
|
+
Fri, 23 Apr 2021 07:37:10 GMT
|
187
304
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.8..@fluentui/react-theme_v9.0.0-alpha.9)
|
188
305
|
|
189
306
|
### Patches
|
@@ -193,7 +310,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
|
|
193
310
|
|
194
311
|
## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.8)
|
195
312
|
|
196
|
-
Thu, 08 Apr 2021 07:33:06 GMT
|
313
|
+
Thu, 08 Apr 2021 07:33:06 GMT
|
197
314
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.7..@fluentui/react-theme_v9.0.0-alpha.8)
|
198
315
|
|
199
316
|
### Changes
|
@@ -202,7 +319,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
|
|
202
319
|
|
203
320
|
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.7)
|
204
321
|
|
205
|
-
Wed, 31 Mar 2021 00:53:43 GMT
|
322
|
+
Wed, 31 Mar 2021 00:53:43 GMT
|
206
323
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.6..@fluentui/react-theme_v9.0.0-alpha.7)
|
207
324
|
|
208
325
|
### Patches
|
@@ -212,7 +329,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
|
|
212
329
|
|
213
330
|
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.6)
|
214
331
|
|
215
|
-
Mon, 15 Mar 2021 07:36:20 GMT
|
332
|
+
Mon, 15 Mar 2021 07:36:20 GMT
|
216
333
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.5..@fluentui/react-theme_v9.0.0-alpha.6)
|
217
334
|
|
218
335
|
### Changes
|
@@ -221,7 +338,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
|
|
221
338
|
|
222
339
|
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.5)
|
223
340
|
|
224
|
-
Wed, 03 Mar 2021 00:10:09 GMT
|
341
|
+
Wed, 03 Mar 2021 00:10:09 GMT
|
225
342
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.4..@fluentui/react-theme_v9.0.0-alpha.5)
|
226
343
|
|
227
344
|
### Changes
|
@@ -230,7 +347,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
|
|
230
347
|
|
231
348
|
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.4)
|
232
349
|
|
233
|
-
Tue, 02 Mar 2021 07:24:27 GMT
|
350
|
+
Tue, 02 Mar 2021 07:24:27 GMT
|
234
351
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.3..@fluentui/react-theme_v9.0.0-alpha.4)
|
235
352
|
|
236
353
|
### Changes
|
@@ -240,7 +357,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
|
|
240
357
|
|
241
358
|
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.3)
|
242
359
|
|
243
|
-
Fri, 26 Feb 2021 01:16:27 GMT
|
360
|
+
Fri, 26 Feb 2021 01:16:27 GMT
|
244
361
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.2..@fluentui/react-theme_v9.0.0-alpha.3)
|
245
362
|
|
246
363
|
### Patches
|
@@ -256,7 +373,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
|
|
256
373
|
|
257
374
|
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.2)
|
258
375
|
|
259
|
-
Thu, 25 Feb 2021 20:16:39 GMT
|
376
|
+
Thu, 25 Feb 2021 20:16:39 GMT
|
260
377
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.1..@fluentui/react-theme_v9.0.0-alpha.2)
|
261
378
|
|
262
379
|
### Changes
|
@@ -265,7 +382,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
|
|
265
382
|
|
266
383
|
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.1)
|
267
384
|
|
268
|
-
Wed, 24 Feb 2021 00:05:29 GMT
|
385
|
+
Wed, 24 Feb 2021 00:05:29 GMT
|
269
386
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.3..@fluentui/react-theme_v9.0.0-alpha.1)
|
270
387
|
|
271
388
|
### Changes
|
@@ -274,7 +391,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
|
|
274
391
|
|
275
392
|
## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.3)
|
276
393
|
|
277
|
-
Mon, 22 Feb 2021 12:26:22 GMT
|
394
|
+
Mon, 22 Feb 2021 12:26:22 GMT
|
278
395
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.2..@fluentui/react-theme_v0.3.3)
|
279
396
|
|
280
397
|
### Patches
|
@@ -287,7 +404,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
|
|
287
404
|
|
288
405
|
## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.2)
|
289
406
|
|
290
|
-
Thu, 18 Feb 2021 19:38:50 GMT
|
407
|
+
Thu, 18 Feb 2021 19:38:50 GMT
|
291
408
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.2)
|
292
409
|
|
293
410
|
### Patches
|
@@ -300,7 +417,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
|
|
300
417
|
|
301
418
|
## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
|
302
419
|
|
303
|
-
Thu, 18 Feb 2021 12:27:34 GMT
|
420
|
+
Thu, 18 Feb 2021 12:27:34 GMT
|
304
421
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
|
305
422
|
|
306
423
|
### Changes
|
@@ -312,7 +429,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
|
|
312
429
|
|
313
430
|
## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
|
314
431
|
|
315
|
-
Mon, 15 Feb 2021 12:22:00 GMT
|
432
|
+
Mon, 15 Feb 2021 12:22:00 GMT
|
316
433
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
|
317
434
|
|
318
435
|
### Changes
|
@@ -321,7 +438,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
|
|
321
438
|
|
322
439
|
## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
|
323
440
|
|
324
|
-
Thu, 11 Feb 2021 00:58:10 GMT
|
441
|
+
Thu, 11 Feb 2021 00:58:10 GMT
|
325
442
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
|
326
443
|
|
327
444
|
### Changes
|
@@ -330,7 +447,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
|
|
330
447
|
|
331
448
|
## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
|
332
449
|
|
333
|
-
Tue, 09 Feb 2021 00:56:52 GMT
|
450
|
+
Tue, 09 Feb 2021 00:56:52 GMT
|
334
451
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.0..@fluentui/react-theme_v0.3.1)
|
335
452
|
|
336
453
|
### Patches
|
@@ -339,7 +456,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
|
|
339
456
|
|
340
457
|
## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.0)
|
341
458
|
|
342
|
-
Mon, 08 Feb 2021 12:23:08 GMT
|
459
|
+
Mon, 08 Feb 2021 12:23:08 GMT
|
343
460
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.2.0..@fluentui/react-theme_v0.3.0)
|
344
461
|
|
345
462
|
### Minor changes
|