@fluentui/react-theme 9.0.0-nightly.f81b28ceb3.1 → 9.0.0-rc.4
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 +173 -8
- package/CHANGELOG.md +60 -6
- package/dist/react-theme.d.ts +106 -74
- package/lib/alias/dark.js +155 -114
- package/lib/alias/dark.js.map +1 -1
- package/lib/alias/highContrast.js +155 -114
- package/lib/alias/highContrast.js.map +1 -1
- package/lib/alias/light.js +155 -114
- package/lib/alias/light.js.map +1 -1
- package/lib/alias/teamsDark.js +155 -114
- package/lib/alias/teamsDark.js.map +1 -1
- package/lib/global/borderRadius.js +1 -1
- package/lib/global/borderRadius.js.map +1 -1
- package/lib/global/brandColors.d.ts +1 -0
- package/lib/global/brandColors.js +53 -31
- package/lib/global/brandColors.js.map +1 -1
- package/lib/global/colors.d.ts +2 -2
- package/lib/global/colors.js +125 -125
- package/lib/global/colors.js.map +1 -1
- package/lib/global/fonts.js +4 -4
- package/lib/global/fonts.js.map +1 -1
- package/lib/global/index.js.map +1 -1
- package/lib/global/strokeWidths.js +1 -1
- package/lib/global/strokeWidths.js.map +1 -1
- package/lib/index.d.ts +3 -1
- package/lib/index.js +2 -0
- package/lib/index.js.map +1 -1
- package/lib/themeToTokensObject.d.ts +10 -0
- 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/highContrastTheme.js +1 -1
- package/lib/themes/web/highContrastTheme.js.map +1 -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.d.ts +2 -0
- package/lib/tokens.js +687 -0
- package/lib/tokens.js.map +1 -0
- package/lib/types.d.ts +92 -77
- package/lib/types.js.map +1 -1
- package/lib/utils/createDarkTheme.js +13 -4
- package/lib/utils/createDarkTheme.js.map +1 -1
- package/lib/utils/createHighContrastTheme.js +13 -4
- package/lib/utils/createHighContrastTheme.js.map +1 -1
- package/lib/utils/createLightTheme.js +13 -4
- package/lib/utils/createLightTheme.js.map +1 -1
- package/lib/utils/createTeamsDarkTheme.js +13 -4
- package/lib/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib/utils/index.d.ts +0 -2
- package/lib/utils/index.js +0 -2
- package/lib/utils/index.js.map +1 -1
- package/lib/utils/shadows.d.ts +2 -1
- package/lib/utils/shadows.js +7 -7
- package/lib/utils/shadows.js.map +1 -1
- package/lib-commonjs/alias/dark.js +155 -115
- package/lib-commonjs/alias/dark.js.map +1 -1
- package/lib-commonjs/alias/highContrast.js +155 -115
- package/lib-commonjs/alias/highContrast.js.map +1 -1
- package/lib-commonjs/alias/light.js +155 -115
- package/lib-commonjs/alias/light.js.map +1 -1
- package/lib-commonjs/alias/teamsDark.js +155 -115
- package/lib-commonjs/alias/teamsDark.js.map +1 -1
- package/lib-commonjs/global/borderRadius.js.map +1 -1
- package/lib-commonjs/global/brandColors.d.ts +1 -0
- package/lib-commonjs/global/brandColors.js +52 -30
- package/lib-commonjs/global/brandColors.js.map +1 -1
- package/lib-commonjs/global/colors.d.ts +2 -2
- package/lib-commonjs/global/colors.js +113 -113
- package/lib-commonjs/global/colors.js.map +1 -1
- package/lib-commonjs/global/fonts.js.map +1 -1
- package/lib-commonjs/global/index.js +1 -1
- package/lib-commonjs/global/index.js.map +1 -1
- package/lib-commonjs/global/strokeWidths.js.map +1 -1
- package/lib-commonjs/index.d.ts +3 -1
- package/lib-commonjs/index.js +20 -1
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/themeToTokensObject.d.ts +10 -0
- 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/highContrastTheme.js +1 -1
- package/lib-commonjs/themes/web/highContrastTheme.js.map +1 -1
- package/lib-commonjs/themes/web/index.js +1 -1
- 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.d.ts +2 -0
- package/lib-commonjs/tokens.js +693 -0
- package/lib-commonjs/tokens.js.map +1 -0
- package/lib-commonjs/types.d.ts +92 -77
- package/lib-commonjs/types.js.map +1 -1
- package/lib-commonjs/utils/createDarkTheme.js +16 -8
- package/lib-commonjs/utils/createDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/createHighContrastTheme.js +16 -8
- package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -1
- package/lib-commonjs/utils/createLightTheme.js +16 -8
- package/lib-commonjs/utils/createLightTheme.js.map +1 -1
- package/lib-commonjs/utils/createTeamsDarkTheme.js +16 -8
- package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -1
- package/lib-commonjs/utils/index.d.ts +0 -2
- package/lib-commonjs/utils/index.js +1 -13
- package/lib-commonjs/utils/index.js.map +1 -1
- package/lib-commonjs/utils/shadows.d.ts +2 -1
- package/lib-commonjs/utils/shadows.js +7 -7
- package/lib-commonjs/utils/shadows.js.map +1 -1
- package/package.json +13 -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/themeToCSSVariables.d.ts +0 -2
- package/lib/utils/themeToCSSVariables.js +0 -12
- package/lib/utils/themeToCSSVariables.js.map +0 -1
- 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/themeToCSSVariables.d.ts +0 -2
- package/lib-commonjs/utils/themeToCSSVariables.js +0 -21
- package/lib-commonjs/utils/themeToCSSVariables.js.map +0 -1
package/CHANGELOG.json
CHANGED
@@ -2,22 +2,187 @@
|
|
2
2
|
"name": "@fluentui/react-theme",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
6
|
-
"tag": "@fluentui/react-theme_v9.0.0-
|
7
|
-
"version": "9.0.0-
|
5
|
+
"date": "Fri, 04 Mar 2022 05:15:45 GMT",
|
6
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.4",
|
7
|
+
"version": "9.0.0-rc.4",
|
8
8
|
"comments": {
|
9
9
|
"prerelease": [
|
10
10
|
{
|
11
|
-
"author": "
|
11
|
+
"author": "dzearing@microsoft.com",
|
12
12
|
"package": "@fluentui/react-theme",
|
13
|
-
"
|
14
|
-
"
|
13
|
+
"commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
|
14
|
+
"comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
|
15
|
+
}
|
16
|
+
]
|
17
|
+
}
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"date": "Fri, 18 Feb 2022 13:35:36 GMT",
|
21
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.3",
|
22
|
+
"version": "9.0.0-rc.3",
|
23
|
+
"comments": {
|
24
|
+
"prerelease": [
|
25
|
+
{
|
26
|
+
"author": "lingfangao@hotmail.com",
|
27
|
+
"package": "@fluentui/react-theme",
|
28
|
+
"commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
|
29
|
+
"comment": "fix: Source maps contain original source code"
|
30
|
+
}
|
31
|
+
]
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"date": "Thu, 10 Feb 2022 08:51:02 GMT",
|
36
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.1",
|
37
|
+
"version": "9.0.0-rc.1",
|
38
|
+
"comments": {
|
39
|
+
"none": [
|
40
|
+
{
|
41
|
+
"author": "olfedias@microsoft.com",
|
42
|
+
"package": "@fluentui/react-theme",
|
43
|
+
"commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
|
44
|
+
"comment": "remove inline-style-expand-shorthand from tsconfigs"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"author": "miroslav.stastny@microsoft.com",
|
48
|
+
"package": "@fluentui/react-theme",
|
49
|
+
"commit": "636b848aa2323fd5d450e2206a71afad93aaa578",
|
50
|
+
"comment": "chore(react-theme) Add theme tokens bundle size fixture"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"author": "martinhochel@microsoft.com",
|
54
|
+
"package": "@fluentui/react-theme",
|
55
|
+
"commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
|
56
|
+
"comment": "chore: use storybook runner for all vNext packages"
|
57
|
+
}
|
58
|
+
],
|
59
|
+
"prerelease": [
|
60
|
+
{
|
61
|
+
"author": "miroslav.stastny@microsoft.com",
|
62
|
+
"package": "@fluentui/react-theme",
|
63
|
+
"commit": "fa3937813e6587d90ab5c43579321004fc37d6e9",
|
64
|
+
"comment": "feat(react-theme): Add colorNeutralForeground1Static token"
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"author": "andmarti@microsoft.com",
|
68
|
+
"package": "@fluentui/react-theme",
|
69
|
+
"commit": "3ca42a594827a2ce3d5d18fcd4a399c92fda3bd7",
|
70
|
+
"comment": "updating brand colors"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
74
|
+
"package": "@fluentui/react-theme",
|
75
|
+
"commit": "b382d0421440e0854673a7967137d6c667544f91",
|
76
|
+
"comment": "feat: Export tokens as mapping to CSS variables"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"author": "miroslav.stastny@microsoft.com",
|
80
|
+
"package": "@fluentui/react-theme",
|
81
|
+
"commit": "d7479a7414e636731b678aebb6bf6295fd607fda",
|
82
|
+
"comment": "Extend brand ramp from 13 to 16 tokens"
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"author": "martinhochel@microsoft.com",
|
86
|
+
"package": "@fluentui/react-theme",
|
87
|
+
"commit": "1dba2fca2365f1a748505896679ae160a6fec270",
|
88
|
+
"comment": "remove mergeThemes API"
|
89
|
+
},
|
90
|
+
{
|
91
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
92
|
+
"package": "@fluentui/react-theme",
|
93
|
+
"commit": "1c2a4410205d3c86bc885fb74d6aede75d9bd99d",
|
94
|
+
"comment": "Theme: Adding function to programmatically generate tokens object based on a theme."
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"author": "bsunderhus@microsoft.com",
|
98
|
+
"package": "@fluentui/react-theme",
|
99
|
+
"commit": "c9a03954ffd5d1a85284fb36ef4cd103ed8aa927",
|
100
|
+
"comment": "Remove `themeToCSSVariables` function"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"author": "miroslav.stastny@microsoft.com",
|
104
|
+
"package": "@fluentui/react-theme",
|
105
|
+
"commit": "8985d65f0aac448c6766d27800922224555be0f4",
|
106
|
+
"comment": "feat(react-theme) Add border1 color token for shared colors"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"author": "lingfangao@hotmail.com",
|
110
|
+
"package": "@fluentui/react-theme",
|
111
|
+
"commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
|
112
|
+
"comment": "Bump Fluent UI packages to 9.0.0-rc"
|
113
|
+
}
|
114
|
+
]
|
115
|
+
}
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"date": "Thu, 25 Nov 2021 08:34:16 GMT",
|
119
|
+
"tag": "@fluentui/react-theme_v9.0.0-beta.4",
|
120
|
+
"version": "9.0.0-beta.4",
|
121
|
+
"comments": {
|
122
|
+
"none": [
|
123
|
+
{
|
124
|
+
"author": "olfedias@microsoft.com",
|
125
|
+
"package": "@fluentui/react-theme",
|
126
|
+
"commit": "66670cf47c716e284c7ac7ae5f25d1f77f3aced3",
|
127
|
+
"comment": "update tooling configs"
|
128
|
+
}
|
129
|
+
],
|
130
|
+
"prerelease": [
|
131
|
+
{
|
132
|
+
"author": "miroslav.stastny@microsoft.com",
|
133
|
+
"package": "@fluentui/react-theme",
|
134
|
+
"commit": "0a328c7a57bfa78ff9a4cd896f17e2887da64bec",
|
135
|
+
"comment": "feat(react-theme): update shadow design tokens"
|
136
|
+
}
|
137
|
+
]
|
138
|
+
}
|
139
|
+
},
|
140
|
+
{
|
141
|
+
"date": "Fri, 12 Nov 2021 13:25:09 GMT",
|
142
|
+
"tag": "@fluentui/react-theme_v9.0.0-beta.3",
|
143
|
+
"version": "9.0.0-beta.3",
|
144
|
+
"comments": {
|
145
|
+
"prerelease": [
|
146
|
+
{
|
147
|
+
"author": "gcox@microsoft.com",
|
148
|
+
"package": "@fluentui/react-theme",
|
149
|
+
"commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
|
150
|
+
"comment": "Updated beta and RC components to ES2019"
|
15
151
|
},
|
152
|
+
{
|
153
|
+
"author": "miroslav.stastny@microsoft.com",
|
154
|
+
"package": "@fluentui/react-theme",
|
155
|
+
"commit": "fe9829e4818f9bb7206df37747d5da332706ae4b",
|
156
|
+
"comment": "feat(react-theme): add/update design tokens"
|
157
|
+
}
|
158
|
+
],
|
159
|
+
"none": [
|
16
160
|
{
|
17
161
|
"author": "lingfangao@hotmail.com",
|
18
162
|
"package": "@fluentui/react-theme",
|
19
|
-
"
|
20
|
-
"
|
163
|
+
"commit": "00f70581480b536e723fb69edf0ae617beac4807",
|
164
|
+
"comment": "Remove beta release tag"
|
165
|
+
}
|
166
|
+
]
|
167
|
+
}
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"date": "Wed, 27 Oct 2021 12:14:23 GMT",
|
171
|
+
"tag": "@fluentui/react-theme_v9.0.0-beta.2",
|
172
|
+
"version": "9.0.0-beta.2",
|
173
|
+
"comments": {
|
174
|
+
"prerelease": [
|
175
|
+
{
|
176
|
+
"author": "lingfangao@hotmail.com",
|
177
|
+
"package": "@fluentui/react-theme",
|
178
|
+
"commit": "f81b28ceb3d5d5d52a4f7e7ce50f99aed9832109",
|
179
|
+
"comment": "fix(reat-theme): Remove template literal types for color palette"
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"author": "peter@draxler.ml",
|
183
|
+
"package": "@fluentui/react-theme",
|
184
|
+
"commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
|
185
|
+
"comment": "added styling of documentation"
|
21
186
|
}
|
22
187
|
]
|
23
188
|
}
|
package/CHANGELOG.md
CHANGED
@@ -1,18 +1,72 @@
|
|
1
1
|
# Change Log - @fluentui/react-theme
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Fri, 04 Mar 2022 05:15:45 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
-
## [9.0.0-
|
7
|
+
## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.4)
|
8
8
|
|
9
|
-
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-
|
9
|
+
Fri, 04 Mar 2022 05:15:45 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.3..@fluentui/react-theme_v9.0.0-rc.4)
|
11
11
|
|
12
12
|
### Changes
|
13
13
|
|
14
|
-
-
|
15
|
-
|
14
|
+
- 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)
|
15
|
+
|
16
|
+
## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.3)
|
17
|
+
|
18
|
+
Fri, 18 Feb 2022 13:35:36 GMT
|
19
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.1..@fluentui/react-theme_v9.0.0-rc.3)
|
20
|
+
|
21
|
+
### Changes
|
22
|
+
|
23
|
+
- fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
|
24
|
+
|
25
|
+
## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.1)
|
26
|
+
|
27
|
+
Thu, 10 Feb 2022 08:51:02 GMT
|
28
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.4..@fluentui/react-theme_v9.0.0-rc.1)
|
29
|
+
|
30
|
+
### Changes
|
31
|
+
|
32
|
+
- feat(react-theme): Add colorNeutralForeground1Static token ([PR #21385](https://github.com/microsoft/fluentui/pull/21385) by miroslav.stastny@microsoft.com)
|
33
|
+
- updating brand colors ([PR #20140](https://github.com/microsoft/fluentui/pull/20140) by andmarti@microsoft.com)
|
34
|
+
- feat: Export tokens as mapping to CSS variables ([PR #21026](https://github.com/microsoft/fluentui/pull/21026) by Humberto.Morimoto@microsoft.com)
|
35
|
+
- Extend brand ramp from 13 to 16 tokens ([PR #20884](https://github.com/microsoft/fluentui/pull/20884) by miroslav.stastny@microsoft.com)
|
36
|
+
- remove mergeThemes API ([PR #21278](https://github.com/microsoft/fluentui/pull/21278) by martinhochel@microsoft.com)
|
37
|
+
- 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)
|
38
|
+
- Remove `themeToCSSVariables` function ([PR #20828](https://github.com/microsoft/fluentui/pull/20828) by bsunderhus@microsoft.com)
|
39
|
+
- feat(react-theme) Add border1 color token for shared colors ([PR #20963](https://github.com/microsoft/fluentui/pull/20963) by miroslav.stastny@microsoft.com)
|
40
|
+
- Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
|
41
|
+
|
42
|
+
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.4)
|
43
|
+
|
44
|
+
Thu, 25 Nov 2021 08:34:16 GMT
|
45
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.3..@fluentui/react-theme_v9.0.0-beta.4)
|
46
|
+
|
47
|
+
### Changes
|
48
|
+
|
49
|
+
- feat(react-theme): update shadow design tokens ([PR #20604](https://github.com/microsoft/fluentui/pull/20604) by miroslav.stastny@microsoft.com)
|
50
|
+
|
51
|
+
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.3)
|
52
|
+
|
53
|
+
Fri, 12 Nov 2021 13:25:09 GMT
|
54
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.2..@fluentui/react-theme_v9.0.0-beta.3)
|
55
|
+
|
56
|
+
### Changes
|
57
|
+
|
58
|
+
- Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
|
59
|
+
- feat(react-theme): add/update design tokens ([PR #20569](https://github.com/microsoft/fluentui/pull/20569) by miroslav.stastny@microsoft.com)
|
60
|
+
|
61
|
+
## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.2)
|
62
|
+
|
63
|
+
Wed, 27 Oct 2021 12:14:23 GMT
|
64
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.1..@fluentui/react-theme_v9.0.0-beta.2)
|
65
|
+
|
66
|
+
### Changes
|
67
|
+
|
68
|
+
- fix(reat-theme): Remove template literal types for color palette ([PR #20251](https://github.com/microsoft/fluentui/pull/20251) by lingfangao@hotmail.com)
|
69
|
+
- added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
|
16
70
|
|
17
71
|
## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.1)
|
18
72
|
|