@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.json
CHANGED
@@ -2,28 +2,367 @@
|
|
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": "Tue, 21 Jun 2022 17:09:27 GMT",
|
6
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.10",
|
7
|
+
"version": "9.0.0-rc.10",
|
8
8
|
"comments": {
|
9
9
|
"prerelease": [
|
10
10
|
{
|
11
|
-
"author": "
|
11
|
+
"author": "miroslav.stastny@microsoft.com",
|
12
|
+
"package": "@fluentui/react-theme",
|
13
|
+
"commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed",
|
14
|
+
"comment": "BREAKING: reduce shared colors"
|
15
|
+
}
|
16
|
+
]
|
17
|
+
}
|
18
|
+
},
|
19
|
+
{
|
20
|
+
"date": "Mon, 23 May 2022 18:56:50 GMT",
|
21
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.9",
|
22
|
+
"version": "9.0.0-rc.9",
|
23
|
+
"comments": {
|
24
|
+
"prerelease": [
|
25
|
+
{
|
26
|
+
"author": "miroslav.stastny@microsoft.com",
|
27
|
+
"package": "@fluentui/react-theme",
|
28
|
+
"commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
|
29
|
+
"comment": "Remove webHighContrast theme"
|
30
|
+
}
|
31
|
+
]
|
32
|
+
}
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"date": "Mon, 23 May 2022 12:13:56 GMT",
|
36
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.8",
|
37
|
+
"version": "9.0.0-rc.8",
|
38
|
+
"comments": {
|
39
|
+
"prerelease": [
|
40
|
+
{
|
41
|
+
"author": "martinhochel@microsoft.com",
|
42
|
+
"package": "@fluentui/react-theme",
|
43
|
+
"commit": "e7b70cb06f4422e5574993fd2ad44d9073647417",
|
44
|
+
"comment": "feat: ship rolluped only dts"
|
45
|
+
}
|
46
|
+
]
|
47
|
+
}
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"date": "Thu, 05 May 2022 18:26:27 GMT",
|
51
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.7",
|
52
|
+
"version": "9.0.0-rc.7",
|
53
|
+
"comments": {
|
54
|
+
"prerelease": [
|
55
|
+
{
|
56
|
+
"author": "miroslav.stastny@microsoft.com",
|
57
|
+
"package": "@fluentui/react-theme",
|
58
|
+
"commit": "cb0b4bd7ac79ccf27539a12104f651f5d330e464",
|
59
|
+
"comment": "Export TypographyStyle type"
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"author": "humberto_makoto@hotmail.com",
|
63
|
+
"package": "@fluentui/react-theme",
|
64
|
+
"commit": "975977d075e01a9091fcf2b9b84c14f829135fa7",
|
65
|
+
"comment": "Removing star exports."
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"author": "gcox@microsoft.com",
|
69
|
+
"package": "@fluentui/react-theme",
|
70
|
+
"commit": "d325a31bcd5d144e2a40ee4bf085e8ef6b3f5d73",
|
71
|
+
"comment": "Added ms suffix to durations"
|
72
|
+
}
|
73
|
+
],
|
74
|
+
"none": [
|
75
|
+
{
|
76
|
+
"author": "miroslav.stastny@microsoft.com",
|
77
|
+
"package": "@fluentui/react-theme",
|
78
|
+
"commit": "00a4a1dd582f5695b7cb9bba48fb8537534bbec0",
|
79
|
+
"comment": "Generate theme tokens using token pipeline"
|
80
|
+
}
|
81
|
+
]
|
82
|
+
}
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"date": "Wed, 04 May 2022 13:26:33 GMT",
|
86
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.6",
|
87
|
+
"version": "9.0.0-rc.6",
|
88
|
+
"comments": {
|
89
|
+
"prerelease": [
|
90
|
+
{
|
91
|
+
"author": "gcox@microsoft.com",
|
92
|
+
"package": "@fluentui/react-theme",
|
93
|
+
"commit": "27ba5613b1253801c3ae4e2aba0fc9eb2ae464b8",
|
94
|
+
"comment": "Add px suffix to spacings"
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"author": "gcox@microsoft.com",
|
12
98
|
"package": "@fluentui/react-theme",
|
13
|
-
"
|
14
|
-
"
|
99
|
+
"commit": "75ad2567f62e804a8deb3ea6016ba8a674c45627",
|
100
|
+
"comment": "Fixed typo in typography"
|
15
101
|
},
|
102
|
+
{
|
103
|
+
"author": "gcox@microsoft.com",
|
104
|
+
"package": "@fluentui/react-theme",
|
105
|
+
"commit": "7ad290b51135cb84c84e7dd8771bd712892c7484",
|
106
|
+
"comment": "Fixed line-height in title2"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"author": "gcox@microsoft.com",
|
110
|
+
"package": "@fluentui/react-theme",
|
111
|
+
"commit": "57583bfffa6bf28be389dec6c642f36ed253ecdd",
|
112
|
+
"comment": "Added global theme types and tokens"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"author": "miroslav.stastny@microsoft.com",
|
116
|
+
"package": "@fluentui/react-theme",
|
117
|
+
"commit": "3e0ff753cbb3375f28477b2249ecd8b012e2e946",
|
118
|
+
"comment": "fix(react-theme): Update CompoundBrandBackground and BrandStroke1"
|
119
|
+
},
|
120
|
+
{
|
121
|
+
"author": "gcox@microsoft.com",
|
122
|
+
"package": "@fluentui/react-theme",
|
123
|
+
"commit": "354c4f6290d7957345fd53a8f26c8f5472ff92db",
|
124
|
+
"comment": "Add base font family per figma"
|
125
|
+
},
|
126
|
+
{
|
127
|
+
"author": "gcox@microsoft.com",
|
128
|
+
"package": "@fluentui/react-theme",
|
129
|
+
"commit": "78da3be7484d156379a105048c535767f7e1b85f",
|
130
|
+
"comment": "Added typeography styles"
|
131
|
+
},
|
132
|
+
{
|
133
|
+
"author": "miroslav.stastny@microsoft.com",
|
134
|
+
"package": "@fluentui/react-theme",
|
135
|
+
"commit": "e45629a0978492d5a8a44934f5263e47862ac8b3",
|
136
|
+
"comment": "feat(react-theme): Add colorNeutralForeground2Link color tokens"
|
137
|
+
}
|
138
|
+
],
|
139
|
+
"none": [
|
140
|
+
{
|
141
|
+
"author": "tristan.watanabe@gmail.com",
|
142
|
+
"package": "@fluentui/react-theme",
|
143
|
+
"commit": "8ec3d32fa26e6cf803ab9d18671fd51ba06c74ab",
|
144
|
+
"comment": "react-theme: Move to new common folder."
|
145
|
+
}
|
146
|
+
]
|
147
|
+
}
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"date": "Tue, 19 Apr 2022 19:17:02 GMT",
|
151
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.5",
|
152
|
+
"version": "9.0.0-rc.5",
|
153
|
+
"comments": {
|
154
|
+
"none": [
|
155
|
+
{
|
156
|
+
"author": "elcraig@microsoft.com",
|
157
|
+
"package": "@fluentui/react-theme",
|
158
|
+
"commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
|
159
|
+
"comment": "Update React dev deps and hoist them to the repo root"
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"author": "mgodbolt@microsoft.com",
|
163
|
+
"package": "@fluentui/react-theme",
|
164
|
+
"commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
|
165
|
+
"comment": "create v9 api extractor config and set all v9 packags to use it, suppress forgotten export"
|
166
|
+
}
|
167
|
+
],
|
168
|
+
"prerelease": [
|
169
|
+
{
|
170
|
+
"author": "miroslav.stastny@microsoft.com",
|
171
|
+
"package": "@fluentui/react-theme",
|
172
|
+
"commit": "d7e4ddf20d1ecb71d3dfc450c65ffde8c7394e3b",
|
173
|
+
"comment": "fix(react-theme): Update yellow shared color"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"author": "miroslav.stastny@microsoft.com",
|
177
|
+
"package": "@fluentui/react-theme",
|
178
|
+
"commit": "a91094de0bcf0467126052b6785fcbddd5ef0045",
|
179
|
+
"comment": "feat(react-theme): update color tokens"
|
180
|
+
}
|
181
|
+
]
|
182
|
+
}
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"date": "Fri, 04 Mar 2022 05:17:31 GMT",
|
186
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.4",
|
187
|
+
"version": "9.0.0-rc.4",
|
188
|
+
"comments": {
|
189
|
+
"prerelease": [
|
190
|
+
{
|
191
|
+
"author": "dzearing@microsoft.com",
|
192
|
+
"package": "@fluentui/react-theme",
|
193
|
+
"commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
|
194
|
+
"comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
|
195
|
+
}
|
196
|
+
]
|
197
|
+
}
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"date": "Fri, 18 Feb 2022 13:35:36 GMT",
|
201
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.3",
|
202
|
+
"version": "9.0.0-rc.3",
|
203
|
+
"comments": {
|
204
|
+
"prerelease": [
|
205
|
+
{
|
206
|
+
"author": "lingfangao@hotmail.com",
|
207
|
+
"package": "@fluentui/react-theme",
|
208
|
+
"commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
|
209
|
+
"comment": "fix: Source maps contain original source code"
|
210
|
+
}
|
211
|
+
]
|
212
|
+
}
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"date": "Thu, 10 Feb 2022 08:51:02 GMT",
|
216
|
+
"tag": "@fluentui/react-theme_v9.0.0-rc.1",
|
217
|
+
"version": "9.0.0-rc.1",
|
218
|
+
"comments": {
|
219
|
+
"none": [
|
220
|
+
{
|
221
|
+
"author": "olfedias@microsoft.com",
|
222
|
+
"package": "@fluentui/react-theme",
|
223
|
+
"commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
|
224
|
+
"comment": "remove inline-style-expand-shorthand from tsconfigs"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"author": "miroslav.stastny@microsoft.com",
|
228
|
+
"package": "@fluentui/react-theme",
|
229
|
+
"commit": "636b848aa2323fd5d450e2206a71afad93aaa578",
|
230
|
+
"comment": "chore(react-theme) Add theme tokens bundle size fixture"
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"author": "martinhochel@microsoft.com",
|
234
|
+
"package": "@fluentui/react-theme",
|
235
|
+
"commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
|
236
|
+
"comment": "chore: use storybook runner for all vNext packages"
|
237
|
+
}
|
238
|
+
],
|
239
|
+
"prerelease": [
|
240
|
+
{
|
241
|
+
"author": "miroslav.stastny@microsoft.com",
|
242
|
+
"package": "@fluentui/react-theme",
|
243
|
+
"commit": "fa3937813e6587d90ab5c43579321004fc37d6e9",
|
244
|
+
"comment": "feat(react-theme): Add colorNeutralForeground1Static token"
|
245
|
+
},
|
246
|
+
{
|
247
|
+
"author": "andmarti@microsoft.com",
|
248
|
+
"package": "@fluentui/react-theme",
|
249
|
+
"commit": "3ca42a594827a2ce3d5d18fcd4a399c92fda3bd7",
|
250
|
+
"comment": "updating brand colors"
|
251
|
+
},
|
252
|
+
{
|
253
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
254
|
+
"package": "@fluentui/react-theme",
|
255
|
+
"commit": "b382d0421440e0854673a7967137d6c667544f91",
|
256
|
+
"comment": "feat: Export tokens as mapping to CSS variables"
|
257
|
+
},
|
258
|
+
{
|
259
|
+
"author": "miroslav.stastny@microsoft.com",
|
260
|
+
"package": "@fluentui/react-theme",
|
261
|
+
"commit": "d7479a7414e636731b678aebb6bf6295fd607fda",
|
262
|
+
"comment": "Extend brand ramp from 13 to 16 tokens"
|
263
|
+
},
|
264
|
+
{
|
265
|
+
"author": "martinhochel@microsoft.com",
|
266
|
+
"package": "@fluentui/react-theme",
|
267
|
+
"commit": "1dba2fca2365f1a748505896679ae160a6fec270",
|
268
|
+
"comment": "remove mergeThemes API"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
272
|
+
"package": "@fluentui/react-theme",
|
273
|
+
"commit": "1c2a4410205d3c86bc885fb74d6aede75d9bd99d",
|
274
|
+
"comment": "Theme: Adding function to programmatically generate tokens object based on a theme."
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"author": "bsunderhus@microsoft.com",
|
278
|
+
"package": "@fluentui/react-theme",
|
279
|
+
"commit": "c9a03954ffd5d1a85284fb36ef4cd103ed8aa927",
|
280
|
+
"comment": "Remove `themeToCSSVariables` function"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"author": "miroslav.stastny@microsoft.com",
|
284
|
+
"package": "@fluentui/react-theme",
|
285
|
+
"commit": "8985d65f0aac448c6766d27800922224555be0f4",
|
286
|
+
"comment": "feat(react-theme) Add border1 color token for shared colors"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"author": "lingfangao@hotmail.com",
|
290
|
+
"package": "@fluentui/react-theme",
|
291
|
+
"commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
|
292
|
+
"comment": "Bump Fluent UI packages to 9.0.0-rc"
|
293
|
+
}
|
294
|
+
]
|
295
|
+
}
|
296
|
+
},
|
297
|
+
{
|
298
|
+
"date": "Thu, 25 Nov 2021 08:34:16 GMT",
|
299
|
+
"tag": "@fluentui/react-theme_v9.0.0-beta.4",
|
300
|
+
"version": "9.0.0-beta.4",
|
301
|
+
"comments": {
|
302
|
+
"none": [
|
303
|
+
{
|
304
|
+
"author": "olfedias@microsoft.com",
|
305
|
+
"package": "@fluentui/react-theme",
|
306
|
+
"commit": "66670cf47c716e284c7ac7ae5f25d1f77f3aced3",
|
307
|
+
"comment": "update tooling configs"
|
308
|
+
}
|
309
|
+
],
|
310
|
+
"prerelease": [
|
311
|
+
{
|
312
|
+
"author": "miroslav.stastny@microsoft.com",
|
313
|
+
"package": "@fluentui/react-theme",
|
314
|
+
"commit": "0a328c7a57bfa78ff9a4cd896f17e2887da64bec",
|
315
|
+
"comment": "feat(react-theme): update shadow design tokens"
|
316
|
+
}
|
317
|
+
]
|
318
|
+
}
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"date": "Fri, 12 Nov 2021 13:25:09 GMT",
|
322
|
+
"tag": "@fluentui/react-theme_v9.0.0-beta.3",
|
323
|
+
"version": "9.0.0-beta.3",
|
324
|
+
"comments": {
|
325
|
+
"prerelease": [
|
326
|
+
{
|
327
|
+
"author": "gcox@microsoft.com",
|
328
|
+
"package": "@fluentui/react-theme",
|
329
|
+
"commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
|
330
|
+
"comment": "Updated beta and RC components to ES2019"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"author": "miroslav.stastny@microsoft.com",
|
334
|
+
"package": "@fluentui/react-theme",
|
335
|
+
"commit": "fe9829e4818f9bb7206df37747d5da332706ae4b",
|
336
|
+
"comment": "feat(react-theme): add/update design tokens"
|
337
|
+
}
|
338
|
+
],
|
339
|
+
"none": [
|
340
|
+
{
|
341
|
+
"author": "lingfangao@hotmail.com",
|
342
|
+
"package": "@fluentui/react-theme",
|
343
|
+
"commit": "00f70581480b536e723fb69edf0ae617beac4807",
|
344
|
+
"comment": "Remove beta release tag"
|
345
|
+
}
|
346
|
+
]
|
347
|
+
}
|
348
|
+
},
|
349
|
+
{
|
350
|
+
"date": "Wed, 27 Oct 2021 12:14:23 GMT",
|
351
|
+
"tag": "@fluentui/react-theme_v9.0.0-beta.2",
|
352
|
+
"version": "9.0.0-beta.2",
|
353
|
+
"comments": {
|
354
|
+
"prerelease": [
|
16
355
|
{
|
17
356
|
"author": "lingfangao@hotmail.com",
|
18
357
|
"package": "@fluentui/react-theme",
|
19
|
-
"
|
20
|
-
"
|
358
|
+
"commit": "f81b28ceb3d5d5d52a4f7e7ce50f99aed9832109",
|
359
|
+
"comment": "fix(reat-theme): Remove template literal types for color palette"
|
21
360
|
},
|
22
361
|
{
|
23
362
|
"author": "peter@draxler.ml",
|
24
363
|
"package": "@fluentui/react-theme",
|
25
|
-
"
|
26
|
-
"
|
364
|
+
"commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
|
365
|
+
"comment": "added styling of documentation"
|
27
366
|
}
|
28
367
|
]
|
29
368
|
}
|