@fluentui/react-theme 0.0.0-nightly-20220302-0405.1

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.
Files changed (181) hide show
  1. package/CHANGELOG.json +1025 -0
  2. package/CHANGELOG.md +408 -0
  3. package/LICENSE +15 -0
  4. package/README.md +5 -0
  5. package/dist/react-theme.d.ts +358 -0
  6. package/lib/alias/dark.d.ts +3 -0
  7. package/lib/alias/dark.js +158 -0
  8. package/lib/alias/dark.js.map +1 -0
  9. package/lib/alias/highContrast.d.ts +3 -0
  10. package/lib/alias/highContrast.js +158 -0
  11. package/lib/alias/highContrast.js.map +1 -0
  12. package/lib/alias/light.d.ts +3 -0
  13. package/lib/alias/light.js +158 -0
  14. package/lib/alias/light.js.map +1 -0
  15. package/lib/alias/teamsDark.d.ts +3 -0
  16. package/lib/alias/teamsDark.js +158 -0
  17. package/lib/alias/teamsDark.js.map +1 -0
  18. package/lib/global/borderRadius.d.ts +2 -0
  19. package/lib/global/borderRadius.js +9 -0
  20. package/lib/global/borderRadius.js.map +1 -0
  21. package/lib/global/brandColors.d.ts +4 -0
  22. package/lib/global/brandColors.js +55 -0
  23. package/lib/global/brandColors.js.map +1 -0
  24. package/lib/global/colors.d.ts +15 -0
  25. package/lib/global/colors.js +825 -0
  26. package/lib/global/colors.js.map +1 -0
  27. package/lib/global/fonts.d.ts +5 -0
  28. package/lib/global/fonts.js +37 -0
  29. package/lib/global/fonts.js.map +1 -0
  30. package/lib/global/index.d.ts +4 -0
  31. package/lib/global/index.js +5 -0
  32. package/lib/global/index.js.map +1 -0
  33. package/lib/global/strokeWidths.d.ts +2 -0
  34. package/lib/global/strokeWidths.js +7 -0
  35. package/lib/global/strokeWidths.js.map +1 -0
  36. package/lib/index.d.ts +5 -0
  37. package/lib/index.js +5 -0
  38. package/lib/index.js.map +1 -0
  39. package/lib/themeToTokensObject.d.ts +10 -0
  40. package/lib/themeToTokensObject.js +19 -0
  41. package/lib/themeToTokensObject.js.map +1 -0
  42. package/lib/themes/index.d.ts +2 -0
  43. package/lib/themes/index.js +3 -0
  44. package/lib/themes/index.js.map +1 -0
  45. package/lib/themes/teams/darkTheme.d.ts +2 -0
  46. package/lib/themes/teams/darkTheme.js +4 -0
  47. package/lib/themes/teams/darkTheme.js.map +1 -0
  48. package/lib/themes/teams/highContrastTheme.d.ts +2 -0
  49. package/lib/themes/teams/highContrastTheme.js +3 -0
  50. package/lib/themes/teams/highContrastTheme.js.map +1 -0
  51. package/lib/themes/teams/index.d.ts +3 -0
  52. package/lib/themes/teams/index.js +4 -0
  53. package/lib/themes/teams/index.js.map +1 -0
  54. package/lib/themes/teams/lightTheme.d.ts +2 -0
  55. package/lib/themes/teams/lightTheme.js +4 -0
  56. package/lib/themes/teams/lightTheme.js.map +1 -0
  57. package/lib/themes/web/darkTheme.d.ts +2 -0
  58. package/lib/themes/web/darkTheme.js +4 -0
  59. package/lib/themes/web/darkTheme.js.map +1 -0
  60. package/lib/themes/web/highContrastTheme.d.ts +2 -0
  61. package/lib/themes/web/highContrastTheme.js +3 -0
  62. package/lib/themes/web/highContrastTheme.js.map +1 -0
  63. package/lib/themes/web/index.d.ts +3 -0
  64. package/lib/themes/web/index.js +4 -0
  65. package/lib/themes/web/index.js.map +1 -0
  66. package/lib/themes/web/lightTheme.d.ts +2 -0
  67. package/lib/themes/web/lightTheme.js +4 -0
  68. package/lib/themes/web/lightTheme.js.map +1 -0
  69. package/lib/tokens.d.ts +2 -0
  70. package/lib/tokens.js +687 -0
  71. package/lib/tokens.js.map +1 -0
  72. package/lib/tsdoc-metadata.json +11 -0
  73. package/lib/types.d.ts +342 -0
  74. package/lib/types.js +2 -0
  75. package/lib/types.js.map +1 -0
  76. package/lib/utils/createDarkTheme.d.ts +2 -0
  77. package/lib/utils/createDarkTheme.js +18 -0
  78. package/lib/utils/createDarkTheme.js.map +1 -0
  79. package/lib/utils/createHighContrastTheme.d.ts +2 -0
  80. package/lib/utils/createHighContrastTheme.js +18 -0
  81. package/lib/utils/createHighContrastTheme.js.map +1 -0
  82. package/lib/utils/createLightTheme.d.ts +2 -0
  83. package/lib/utils/createLightTheme.js +18 -0
  84. package/lib/utils/createLightTheme.js.map +1 -0
  85. package/lib/utils/createTeamsDarkTheme.d.ts +2 -0
  86. package/lib/utils/createTeamsDarkTheme.js +18 -0
  87. package/lib/utils/createTeamsDarkTheme.js.map +1 -0
  88. package/lib/utils/index.d.ts +4 -0
  89. package/lib/utils/index.js +5 -0
  90. package/lib/utils/index.js.map +1 -0
  91. package/lib/utils/shadows.d.ts +3 -0
  92. package/lib/utils/shadows.js +11 -0
  93. package/lib/utils/shadows.js.map +1 -0
  94. package/lib-commonjs/alias/dark.d.ts +3 -0
  95. package/lib-commonjs/alias/dark.js +168 -0
  96. package/lib-commonjs/alias/dark.js.map +1 -0
  97. package/lib-commonjs/alias/highContrast.d.ts +3 -0
  98. package/lib-commonjs/alias/highContrast.js +168 -0
  99. package/lib-commonjs/alias/highContrast.js.map +1 -0
  100. package/lib-commonjs/alias/light.d.ts +3 -0
  101. package/lib-commonjs/alias/light.js +168 -0
  102. package/lib-commonjs/alias/light.js.map +1 -0
  103. package/lib-commonjs/alias/teamsDark.d.ts +3 -0
  104. package/lib-commonjs/alias/teamsDark.js +168 -0
  105. package/lib-commonjs/alias/teamsDark.js.map +1 -0
  106. package/lib-commonjs/global/borderRadius.d.ts +2 -0
  107. package/lib-commonjs/global/borderRadius.js +15 -0
  108. package/lib-commonjs/global/borderRadius.js.map +1 -0
  109. package/lib-commonjs/global/brandColors.d.ts +4 -0
  110. package/lib-commonjs/global/brandColors.js +61 -0
  111. package/lib-commonjs/global/brandColors.js.map +1 -0
  112. package/lib-commonjs/global/colors.d.ts +15 -0
  113. package/lib-commonjs/global/colors.js +831 -0
  114. package/lib-commonjs/global/colors.js.map +1 -0
  115. package/lib-commonjs/global/fonts.d.ts +5 -0
  116. package/lib-commonjs/global/fonts.js +43 -0
  117. package/lib-commonjs/global/fonts.js.map +1 -0
  118. package/lib-commonjs/global/index.d.ts +4 -0
  119. package/lib-commonjs/global/index.js +16 -0
  120. package/lib-commonjs/global/index.js.map +1 -0
  121. package/lib-commonjs/global/strokeWidths.d.ts +2 -0
  122. package/lib-commonjs/global/strokeWidths.js +13 -0
  123. package/lib-commonjs/global/strokeWidths.js.map +1 -0
  124. package/lib-commonjs/index.d.ts +5 -0
  125. package/lib-commonjs/index.js +31 -0
  126. package/lib-commonjs/index.js.map +1 -0
  127. package/lib-commonjs/themeToTokensObject.d.ts +10 -0
  128. package/lib-commonjs/themeToTokensObject.js +28 -0
  129. package/lib-commonjs/themeToTokensObject.js.map +1 -0
  130. package/lib-commonjs/themes/index.d.ts +2 -0
  131. package/lib-commonjs/themes/index.js +12 -0
  132. package/lib-commonjs/themes/index.js.map +1 -0
  133. package/lib-commonjs/themes/teams/darkTheme.d.ts +2 -0
  134. package/lib-commonjs/themes/teams/darkTheme.js +13 -0
  135. package/lib-commonjs/themes/teams/darkTheme.js.map +1 -0
  136. package/lib-commonjs/themes/teams/highContrastTheme.d.ts +2 -0
  137. package/lib-commonjs/themes/teams/highContrastTheme.js +11 -0
  138. package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -0
  139. package/lib-commonjs/themes/teams/index.d.ts +3 -0
  140. package/lib-commonjs/themes/teams/index.js +14 -0
  141. package/lib-commonjs/themes/teams/index.js.map +1 -0
  142. package/lib-commonjs/themes/teams/lightTheme.d.ts +2 -0
  143. package/lib-commonjs/themes/teams/lightTheme.js +13 -0
  144. package/lib-commonjs/themes/teams/lightTheme.js.map +1 -0
  145. package/lib-commonjs/themes/web/darkTheme.d.ts +2 -0
  146. package/lib-commonjs/themes/web/darkTheme.js +13 -0
  147. package/lib-commonjs/themes/web/darkTheme.js.map +1 -0
  148. package/lib-commonjs/themes/web/highContrastTheme.d.ts +2 -0
  149. package/lib-commonjs/themes/web/highContrastTheme.js +11 -0
  150. package/lib-commonjs/themes/web/highContrastTheme.js.map +1 -0
  151. package/lib-commonjs/themes/web/index.d.ts +3 -0
  152. package/lib-commonjs/themes/web/index.js +14 -0
  153. package/lib-commonjs/themes/web/index.js.map +1 -0
  154. package/lib-commonjs/themes/web/lightTheme.d.ts +2 -0
  155. package/lib-commonjs/themes/web/lightTheme.js +13 -0
  156. package/lib-commonjs/themes/web/lightTheme.js.map +1 -0
  157. package/lib-commonjs/tokens.d.ts +2 -0
  158. package/lib-commonjs/tokens.js +693 -0
  159. package/lib-commonjs/tokens.js.map +1 -0
  160. package/lib-commonjs/types.d.ts +342 -0
  161. package/lib-commonjs/types.js +6 -0
  162. package/lib-commonjs/types.js.map +1 -0
  163. package/lib-commonjs/utils/createDarkTheme.d.ts +2 -0
  164. package/lib-commonjs/utils/createDarkTheme.js +30 -0
  165. package/lib-commonjs/utils/createDarkTheme.js.map +1 -0
  166. package/lib-commonjs/utils/createHighContrastTheme.d.ts +2 -0
  167. package/lib-commonjs/utils/createHighContrastTheme.js +30 -0
  168. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -0
  169. package/lib-commonjs/utils/createLightTheme.d.ts +2 -0
  170. package/lib-commonjs/utils/createLightTheme.js +30 -0
  171. package/lib-commonjs/utils/createLightTheme.js.map +1 -0
  172. package/lib-commonjs/utils/createTeamsDarkTheme.d.ts +2 -0
  173. package/lib-commonjs/utils/createTeamsDarkTheme.js +30 -0
  174. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -0
  175. package/lib-commonjs/utils/index.d.ts +4 -0
  176. package/lib-commonjs/utils/index.js +16 -0
  177. package/lib-commonjs/utils/index.js.map +1 -0
  178. package/lib-commonjs/utils/shadows.d.ts +3 -0
  179. package/lib-commonjs/utils/shadows.js +20 -0
  180. package/lib-commonjs/utils/shadows.js.map +1 -0
  181. package/package.json +52 -0
package/CHANGELOG.json ADDED
@@ -0,0 +1,1025 @@
1
+ {
2
+ "name": "@fluentui/react-theme",
3
+ "entries": [
4
+ {
5
+ "date": "Wed, 02 Mar 2022 04:14:58 GMT",
6
+ "tag": "@fluentui/react-theme_v0.0.0-nightly-20220302-0405.1",
7
+ "version": "0.0.0-nightly-20220302-0405.1",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "email not defined",
12
+ "package": "@fluentui/react-theme",
13
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec",
14
+ "comment": "Release nightly v9"
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"
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": [
160
+ {
161
+ "author": "lingfangao@hotmail.com",
162
+ "package": "@fluentui/react-theme",
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"
186
+ }
187
+ ]
188
+ }
189
+ },
190
+ {
191
+ "date": "Wed, 06 Oct 2021 10:37:22 GMT",
192
+ "tag": "@fluentui/react-theme_v9.0.0-beta.1",
193
+ "version": "9.0.0-beta.1",
194
+ "comments": {
195
+ "prerelease": [
196
+ {
197
+ "author": "lingfangao@hotmail.com",
198
+ "package": "@fluentui/react-theme",
199
+ "comment": "Bump all v9 components to beta prerelease tag",
200
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
201
+ }
202
+ ]
203
+ }
204
+ },
205
+ {
206
+ "date": "Fri, 01 Oct 2021 14:13:08 GMT",
207
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.26",
208
+ "version": "9.0.0-alpha.26",
209
+ "comments": {
210
+ "prerelease": [
211
+ {
212
+ "author": "lingfangao@hotmail.com",
213
+ "package": "@fluentui/react-theme",
214
+ "comment": "Bump v9 prerelease versions to rerelease",
215
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
216
+ }
217
+ ],
218
+ "none": [
219
+ {
220
+ "author": "miroslav.stastny@microsoft.com",
221
+ "package": "@fluentui/react-theme",
222
+ "comment": "docs(react-theme): fix shadows story",
223
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
224
+ }
225
+ ]
226
+ }
227
+ },
228
+ {
229
+ "date": "Wed, 29 Sep 2021 08:06:11 GMT",
230
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.24",
231
+ "version": "9.0.0-alpha.24",
232
+ "comments": {
233
+ "prerelease": [
234
+ {
235
+ "author": "miroslav.stastny@microsoft.com",
236
+ "package": "@fluentui/react-theme",
237
+ "comment": "Use direct values in alias tokens",
238
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
239
+ }
240
+ ]
241
+ }
242
+ },
243
+ {
244
+ "date": "Tue, 21 Sep 2021 07:42:34 GMT",
245
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.23",
246
+ "version": "9.0.0-alpha.23",
247
+ "comments": {
248
+ "prerelease": [
249
+ {
250
+ "author": "Humberto.Morimoto@microsoft.com",
251
+ "package": "@fluentui/react-theme",
252
+ "comment": "Theme: Updating value of borderRadius global token.",
253
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
254
+ }
255
+ ]
256
+ }
257
+ },
258
+ {
259
+ "date": "Mon, 20 Sep 2021 07:36:26 GMT",
260
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.22",
261
+ "version": "9.0.0-alpha.22",
262
+ "comments": {
263
+ "none": [
264
+ {
265
+ "author": "lingfangao@hotmail.com",
266
+ "package": "@fluentui/react-theme",
267
+ "comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
268
+ "commit": "b8a304770f77c0353553a152dad34421070400a6"
269
+ }
270
+ ]
271
+ }
272
+ },
273
+ {
274
+ "date": "Tue, 24 Aug 2021 07:34:48 GMT",
275
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.22",
276
+ "version": "9.0.0-alpha.22",
277
+ "comments": {
278
+ "prerelease": [
279
+ {
280
+ "comment": "Updating TypeScript type-only imports/exports to use import/export type syntax.",
281
+ "author": "dzearing@hotmail.com",
282
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
283
+ "package": "@fluentui/react-theme"
284
+ }
285
+ ],
286
+ "none": [
287
+ {
288
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.1",
289
+ "author": "dzearing@hotmail.com",
290
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
291
+ "package": "@fluentui/react-theme"
292
+ },
293
+ {
294
+ "comment": "Bump @fluentui/scripts to v1.0.0",
295
+ "author": "dzearing@hotmail.com",
296
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
297
+ "package": "@fluentui/react-theme"
298
+ }
299
+ ]
300
+ }
301
+ },
302
+ {
303
+ "date": "Fri, 20 Aug 2021 07:37:28 GMT",
304
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.21",
305
+ "version": "9.0.0-alpha.21",
306
+ "comments": {
307
+ "prerelease": [
308
+ {
309
+ "comment": "Update .npmignore",
310
+ "author": "elcraig@microsoft.com",
311
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
312
+ "package": "@fluentui/react-theme"
313
+ }
314
+ ],
315
+ "none": [
316
+ {
317
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.0",
318
+ "author": "behowell@microsoft.com",
319
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
320
+ "package": "@fluentui/react-theme"
321
+ },
322
+ {
323
+ "comment": "Bump @fluentui/scripts to v1.0.0",
324
+ "author": "behowell@microsoft.com",
325
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
326
+ "package": "@fluentui/react-theme"
327
+ }
328
+ ]
329
+ }
330
+ },
331
+ {
332
+ "date": "Tue, 03 Aug 2021 07:39:30 GMT",
333
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.20",
334
+ "version": "9.0.0-alpha.20",
335
+ "comments": {
336
+ "prerelease": [
337
+ {
338
+ "comment": "Enable exhaustive-deps rule for useIsomorphicLayoutEffect",
339
+ "author": "behowell@microsoft.com",
340
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
341
+ "package": "@fluentui/react-theme"
342
+ }
343
+ ],
344
+ "patch": [
345
+ {
346
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.3",
347
+ "author": "behowell@microsoft.com",
348
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
349
+ "package": "@fluentui/react-theme"
350
+ },
351
+ {
352
+ "comment": "Bump @fluentui/scripts to v1.0.0",
353
+ "author": "behowell@microsoft.com",
354
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
355
+ "package": "@fluentui/react-theme"
356
+ }
357
+ ]
358
+ }
359
+ },
360
+ {
361
+ "date": "Mon, 26 Jul 2021 07:37:30 GMT",
362
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.19",
363
+ "version": "9.0.0-alpha.19",
364
+ "comments": {
365
+ "prerelease": [
366
+ {
367
+ "comment": "Add global alpha tokens",
368
+ "author": "miroslav.stastny@microsoft.com",
369
+ "commit": "aa570c511fdcef015696f07182af8bb251311406",
370
+ "package": "@fluentui/react-theme"
371
+ }
372
+ ]
373
+ }
374
+ },
375
+ {
376
+ "date": "Fri, 23 Jul 2021 07:38:19 GMT",
377
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.18",
378
+ "version": "9.0.0-alpha.18",
379
+ "comments": {
380
+ "prerelease": [
381
+ {
382
+ "comment": "Update tokens",
383
+ "author": "miroslav.stastny@microsoft.com",
384
+ "commit": "5d812148593dc574a6f3a343a5657614b4d10456",
385
+ "package": "@fluentui/react-theme"
386
+ }
387
+ ]
388
+ }
389
+ },
390
+ {
391
+ "date": "Fri, 09 Jul 2021 07:39:31 GMT",
392
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.17",
393
+ "version": "9.0.0-alpha.17",
394
+ "comments": {
395
+ "patch": [
396
+ {
397
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.2",
398
+ "author": "martinhochel@microsoft.com",
399
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
400
+ "package": "@fluentui/react-theme"
401
+ },
402
+ {
403
+ "comment": "Bump @fluentui/scripts to v1.0.0",
404
+ "author": "martinhochel@microsoft.com",
405
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
406
+ "package": "@fluentui/react-theme"
407
+ }
408
+ ]
409
+ }
410
+ },
411
+ {
412
+ "date": "Fri, 02 Jul 2021 07:37:06 GMT",
413
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.16",
414
+ "version": "9.0.0-alpha.16",
415
+ "comments": {
416
+ "prerelease": [
417
+ {
418
+ "comment": "chore(react-theme): Migrate to new DX",
419
+ "author": "miroslav.stastny@microsoft.com",
420
+ "commit": "7222c057ece8a528431a1860223d9d920685f975",
421
+ "package": "@fluentui/react-theme"
422
+ }
423
+ ]
424
+ }
425
+ },
426
+ {
427
+ "date": "Mon, 21 Jun 2021 07:34:33 GMT",
428
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.15",
429
+ "version": "9.0.0-alpha.15",
430
+ "comments": {
431
+ "none": [
432
+ {
433
+ "comment": "doc(react-theme): Improve alias color tokens story",
434
+ "author": "miroslav.stastny@microsoft.com",
435
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
436
+ "package": "@fluentui/react-theme"
437
+ }
438
+ ]
439
+ }
440
+ },
441
+ {
442
+ "date": "Mon, 07 Jun 2021 07:38:15 GMT",
443
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.15",
444
+ "version": "9.0.0-alpha.15",
445
+ "comments": {
446
+ "patch": [
447
+ {
448
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.1",
449
+ "author": "martinhochel@microsoft.com",
450
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
451
+ "package": "@fluentui/react-theme"
452
+ },
453
+ {
454
+ "comment": "Bump @fluentui/scripts to v1.0.0",
455
+ "author": "martinhochel@microsoft.com",
456
+ "commit": "f856cb3f7fbc3edb3646204c0c7e435fc7678dd1",
457
+ "package": "@fluentui/react-theme"
458
+ }
459
+ ]
460
+ }
461
+ },
462
+ {
463
+ "date": "Thu, 03 Jun 2021 07:36:03 GMT",
464
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.14",
465
+ "version": "9.0.0-alpha.14",
466
+ "comments": {
467
+ "prerelease": [
468
+ {
469
+ "comment": "Update theme tokens",
470
+ "author": "miroslav.stastny@microsoft.com",
471
+ "commit": "32aed1a91b19ac1beb161a7a2ab43e78b51f53d1",
472
+ "package": "@fluentui/react-theme"
473
+ }
474
+ ]
475
+ }
476
+ },
477
+ {
478
+ "date": "Tue, 01 Jun 2021 07:31:58 GMT",
479
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.13",
480
+ "version": "9.0.0-alpha.13",
481
+ "comments": {
482
+ "none": [
483
+ {
484
+ "comment": "Revert \"chore: enable Jest aliases for converged packages (#18337)\"",
485
+ "author": "olfedias@microsoft.com",
486
+ "commit": "b5f2a02b37c8ea394a65f7a22bff057de93370dd",
487
+ "package": "@fluentui/react-theme"
488
+ }
489
+ ]
490
+ }
491
+ },
492
+ {
493
+ "date": "Fri, 28 May 2021 07:33:57 GMT",
494
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.13",
495
+ "version": "9.0.0-alpha.13",
496
+ "comments": {
497
+ "none": [
498
+ {
499
+ "comment": "enable Jest aliases",
500
+ "author": "olfedias@microsoft.com",
501
+ "commit": "5379823a6f53bd36a936806153d228b9a0ef0543",
502
+ "package": "@fluentui/react-theme"
503
+ }
504
+ ]
505
+ }
506
+ },
507
+ {
508
+ "date": "Fri, 21 May 2021 07:34:54 GMT",
509
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.13",
510
+ "version": "9.0.0-alpha.13",
511
+ "comments": {
512
+ "none": [
513
+ {
514
+ "comment": "chore(react-theme): Collocate stories",
515
+ "author": "miroslav.stastny@microsoft.com",
516
+ "commit": "3f78f90075ae78bfd28f7d498ae8f012f0221279",
517
+ "package": "@fluentui/react-theme"
518
+ }
519
+ ]
520
+ }
521
+ },
522
+ {
523
+ "date": "Thu, 20 May 2021 07:41:54 GMT",
524
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.13",
525
+ "version": "9.0.0-alpha.13",
526
+ "comments": {
527
+ "patch": [
528
+ {
529
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.0",
530
+ "author": "elcraig@microsoft.com",
531
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
532
+ "package": "@fluentui/react-theme"
533
+ },
534
+ {
535
+ "comment": "Bump @fluentui/scripts to v1.0.0",
536
+ "author": "elcraig@microsoft.com",
537
+ "commit": "630b71c415cd40ed0e36773eab99d62cd02a30fb",
538
+ "package": "@fluentui/react-theme"
539
+ }
540
+ ]
541
+ }
542
+ },
543
+ {
544
+ "date": "Wed, 19 May 2021 07:34:20 GMT",
545
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.12",
546
+ "version": "9.0.0-alpha.12",
547
+ "comments": {
548
+ "prerelease": [
549
+ {
550
+ "comment": "chore: add more Babel plugins",
551
+ "author": "olfedias@microsoft.com",
552
+ "commit": "975140887c6ad2391f8db63003ed440239ec9c25",
553
+ "package": "@fluentui/react-theme"
554
+ }
555
+ ]
556
+ }
557
+ },
558
+ {
559
+ "date": "Thu, 13 May 2021 07:36:55 GMT",
560
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.11",
561
+ "version": "9.0.0-alpha.11",
562
+ "comments": {
563
+ "prerelease": [
564
+ {
565
+ "comment": "perf: avoid deep merge in mergeThemes() if possible",
566
+ "author": "olfedias@microsoft.com",
567
+ "commit": "d1d73e5ea7be50ad93077fad7d3b05af4db1cc94",
568
+ "package": "@fluentui/react-theme"
569
+ }
570
+ ]
571
+ }
572
+ },
573
+ {
574
+ "date": "Fri, 30 Apr 2021 07:42:23 GMT",
575
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.10",
576
+ "version": "9.0.0-alpha.10",
577
+ "comments": {
578
+ "prerelease": [
579
+ {
580
+ "comment": "Upgrade to ts 4.0",
581
+ "author": "joschect@microsoft.com",
582
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
583
+ "package": "@fluentui/react-theme"
584
+ }
585
+ ],
586
+ "patch": [
587
+ {
588
+ "comment": "Bump @fluentui/eslint-plugin to v1.2.0",
589
+ "author": "joschect@microsoft.com",
590
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
591
+ "package": "@fluentui/react-theme"
592
+ },
593
+ {
594
+ "comment": "Bump @fluentui/scripts to v1.0.0",
595
+ "author": "joschect@microsoft.com",
596
+ "commit": "2b62c457bb860f6675fae4acae86ee6c0b06c279",
597
+ "package": "@fluentui/react-theme"
598
+ }
599
+ ]
600
+ }
601
+ },
602
+ {
603
+ "date": "Fri, 23 Apr 2021 07:37:10 GMT",
604
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.9",
605
+ "version": "9.0.0-alpha.9",
606
+ "comments": {
607
+ "patch": [
608
+ {
609
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.1",
610
+ "author": "olfedias@microsoft.com",
611
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
612
+ "package": "@fluentui/react-theme"
613
+ },
614
+ {
615
+ "comment": "Bump @fluentui/scripts to v1.0.0",
616
+ "author": "olfedias@microsoft.com",
617
+ "commit": "7d1a9a8aee217022e55b8c39c723b1390b5d8095",
618
+ "package": "@fluentui/react-theme"
619
+ }
620
+ ]
621
+ }
622
+ },
623
+ {
624
+ "date": "Mon, 19 Apr 2021 07:33:33 GMT",
625
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.8",
626
+ "version": "9.0.0-alpha.8",
627
+ "comments": {
628
+ "none": [
629
+ {
630
+ "comment": "Remove unneeded react-app-polyfill devDependency",
631
+ "author": "elcraig@microsoft.com",
632
+ "commit": "fdc32557d49e5d70ea7e4af8957102d415b44547",
633
+ "package": "@fluentui/react-theme"
634
+ }
635
+ ]
636
+ }
637
+ },
638
+ {
639
+ "date": "Thu, 08 Apr 2021 07:33:06 GMT",
640
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.8",
641
+ "version": "9.0.0-alpha.8",
642
+ "comments": {
643
+ "prerelease": [
644
+ {
645
+ "comment": "Renaming all instances of ghost to subtle per the latest design guidelines.",
646
+ "author": "Humberto.Morimoto@microsoft.com",
647
+ "commit": "25e841e469f1a7b33278f8a5dccd2f7865b3a557",
648
+ "package": "@fluentui/react-theme"
649
+ }
650
+ ]
651
+ }
652
+ },
653
+ {
654
+ "date": "Wed, 31 Mar 2021 00:53:43 GMT",
655
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.7",
656
+ "version": "9.0.0-alpha.7",
657
+ "comments": {
658
+ "patch": [
659
+ {
660
+ "comment": "Bump @fluentui/eslint-plugin to v1.1.0",
661
+ "author": "elcraig@microsoft.com",
662
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
663
+ "package": "@fluentui/react-theme"
664
+ },
665
+ {
666
+ "comment": "Bump @fluentui/scripts to v1.0.0",
667
+ "author": "elcraig@microsoft.com",
668
+ "commit": "d41b79242e6b682dfa58fcd76797ecfd9146d4cf",
669
+ "package": "@fluentui/react-theme"
670
+ }
671
+ ]
672
+ }
673
+ },
674
+ {
675
+ "date": "Mon, 15 Mar 2021 07:36:20 GMT",
676
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.6",
677
+ "version": "9.0.0-alpha.6",
678
+ "comments": {
679
+ "prerelease": [
680
+ {
681
+ "comment": "Remove set-version references",
682
+ "author": "elcraig@microsoft.com",
683
+ "commit": "b0bef818ea07833d9b9797ef26a4b24200ed0307",
684
+ "package": "@fluentui/react-theme"
685
+ }
686
+ ],
687
+ "none": [
688
+ {
689
+ "comment": "Remove unneeded scripts",
690
+ "author": "elcraig@microsoft.com",
691
+ "commit": "3b4dd6b9e941da11297cea43c5218a4da2d277d5",
692
+ "package": "@fluentui/react-theme"
693
+ }
694
+ ]
695
+ }
696
+ },
697
+ {
698
+ "date": "Fri, 12 Mar 2021 20:04:27 GMT",
699
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.5",
700
+ "version": "9.0.0-alpha.5",
701
+ "comments": {
702
+ "none": [
703
+ {
704
+ "comment": "Move `@types/node` and `@types/webpack-env` devDependencies to root, and remove unneeded references",
705
+ "author": "elcraig@microsoft.com",
706
+ "commit": "8789ee1074aad852bd0a95d0183dbdf2ee718e1d",
707
+ "package": "@fluentui/react-theme"
708
+ }
709
+ ]
710
+ }
711
+ },
712
+ {
713
+ "date": "Wed, 03 Mar 2021 00:10:09 GMT",
714
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.5",
715
+ "version": "9.0.0-alpha.5",
716
+ "comments": {
717
+ "prerelease": [
718
+ {
719
+ "comment": "Remove set-version dependency from converged components",
720
+ "author": "miroslav.stastny@microsoft.com",
721
+ "commit": "712ca04cd82ad2b3426762a409cdce05a7cc80fc",
722
+ "package": "@fluentui/react-theme"
723
+ }
724
+ ]
725
+ }
726
+ },
727
+ {
728
+ "date": "Tue, 02 Mar 2021 07:24:27 GMT",
729
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.4",
730
+ "version": "9.0.0-alpha.4",
731
+ "comments": {
732
+ "prerelease": [
733
+ {
734
+ "comment": "Fix cranberry color alias",
735
+ "author": "behowell@microsoft.com",
736
+ "commit": "b97a96052d0b4c0c1d2f280bdb01f443f8d9bc63",
737
+ "package": "@fluentui/react-theme"
738
+ },
739
+ {
740
+ "comment": "remove dependency on @fluentui/utilities",
741
+ "author": "olfedias@microsoft.com",
742
+ "commit": "529d34473f30680fa35928e0d977434ab2ed2173",
743
+ "package": "@fluentui/react-theme"
744
+ }
745
+ ]
746
+ }
747
+ },
748
+ {
749
+ "date": "Fri, 26 Feb 2021 01:16:27 GMT",
750
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.3",
751
+ "version": "9.0.0-alpha.3",
752
+ "comments": {
753
+ "prerelease": [
754
+ {
755
+ "comment": "Update references to major-bumped packages",
756
+ "author": "elcraig@microsoft.com",
757
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
758
+ "package": "@fluentui/react-theme"
759
+ }
760
+ ],
761
+ "patch": [
762
+ {
763
+ "comment": "Bump @fluentui/eslint-plugin to v1.0.1",
764
+ "author": "elcraig@microsoft.com",
765
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
766
+ "package": "@fluentui/react-theme"
767
+ },
768
+ {
769
+ "comment": "Bump @fluentui/scripts to v1.0.0",
770
+ "author": "elcraig@microsoft.com",
771
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
772
+ "package": "@fluentui/react-theme"
773
+ },
774
+ {
775
+ "comment": "Bump @fluentui/set-version to v8.0.1",
776
+ "author": "elcraig@microsoft.com",
777
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
778
+ "package": "@fluentui/react-theme"
779
+ },
780
+ {
781
+ "comment": "Bump @fluentui/utilities to v8.0.1",
782
+ "author": "elcraig@microsoft.com",
783
+ "commit": "71f0a43b375b4a932ecbcf6778288422db2dc267",
784
+ "package": "@fluentui/react-theme"
785
+ }
786
+ ]
787
+ }
788
+ },
789
+ {
790
+ "date": "Thu, 25 Feb 2021 20:16:39 GMT",
791
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.2",
792
+ "version": "9.0.0-alpha.2",
793
+ "comments": {
794
+ "prerelease": [
795
+ {
796
+ "comment": "Changing incorrect value for brandForegroundPressed token from brand.shade30 to brand.shade40.",
797
+ "author": "humbertomakotomorimoto@gmail.com",
798
+ "commit": "40e4e2ed855e0b2a4ac67a462f2b79919aef868b",
799
+ "package": "@fluentui/react-theme"
800
+ }
801
+ ]
802
+ }
803
+ },
804
+ {
805
+ "date": "Wed, 24 Feb 2021 00:05:29 GMT",
806
+ "tag": "@fluentui/react-theme_v9.0.0-alpha.1",
807
+ "version": "9.0.0-alpha.1",
808
+ "comments": {
809
+ "prerelease": [
810
+ {
811
+ "comment": "bump version to v9",
812
+ "author": "olfedias@microsoft.com",
813
+ "commit": "74da15f2f1fb10fe089fcaef24a47ac5dba89ad2",
814
+ "package": "@fluentui/react-theme"
815
+ }
816
+ ]
817
+ }
818
+ },
819
+ {
820
+ "date": "Mon, 22 Feb 2021 12:26:22 GMT",
821
+ "tag": "@fluentui/react-theme_v0.3.3",
822
+ "version": "0.3.3",
823
+ "comments": {
824
+ "patch": [
825
+ {
826
+ "comment": "Add SizeValues type",
827
+ "author": "junioassuncaocharles@gmail.com",
828
+ "commit": "aafa83d81733e74a141773df6fd38d935739ff17",
829
+ "package": "@fluentui/react-theme"
830
+ }
831
+ ],
832
+ "prerelease": [
833
+ {
834
+ "comment": "Bump @fluentui/utilities to v8.0.0-beta.15",
835
+ "author": "elcraig@microsoft.com",
836
+ "commit": "a37bab178f676de967b937a8bad1a309e3e67fd8",
837
+ "package": "@fluentui/react-theme"
838
+ }
839
+ ]
840
+ }
841
+ },
842
+ {
843
+ "date": "Thu, 18 Feb 2021 19:38:50 GMT",
844
+ "tag": "@fluentui/react-theme_v0.3.2",
845
+ "version": "0.3.2",
846
+ "comments": {
847
+ "patch": [
848
+ {
849
+ "comment": "Allow React 17 in peerDependencies. The library has not yet been fully validated with React 17, so please report any issues you find.",
850
+ "author": "elcraig@microsoft.com",
851
+ "commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4",
852
+ "package": "@fluentui/react-theme"
853
+ }
854
+ ],
855
+ "prerelease": [
856
+ {
857
+ "comment": "Bump @fluentui/utilities to v8.0.0-beta.14",
858
+ "author": "elcraig@microsoft.com",
859
+ "commit": "3b7379fde2d54e677a1d65ae86468bb5fdaf9fa4",
860
+ "package": "@fluentui/react-theme"
861
+ }
862
+ ]
863
+ }
864
+ },
865
+ {
866
+ "date": "Thu, 18 Feb 2021 12:27:34 GMT",
867
+ "tag": "@fluentui/react-theme_v0.3.1",
868
+ "version": "0.3.1",
869
+ "comments": {
870
+ "prerelease": [
871
+ {
872
+ "comment": "Bump @fluentui/eslint-plugin to v1.0.0-beta.2",
873
+ "author": "elcraig@microsoft.com",
874
+ "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
875
+ "package": "@fluentui/react-theme"
876
+ },
877
+ {
878
+ "comment": "Bump @fluentui/utilities to v8.0.0-beta.13",
879
+ "author": "elcraig@microsoft.com",
880
+ "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
881
+ "package": "@fluentui/react-theme"
882
+ },
883
+ {
884
+ "comment": "Bump @fluentui/set-version to v8.0.0-beta.2",
885
+ "author": "elcraig@microsoft.com",
886
+ "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
887
+ "package": "@fluentui/react-theme"
888
+ },
889
+ {
890
+ "comment": "Bump @fluentui/scripts to v1.0.0",
891
+ "author": "elcraig@microsoft.com",
892
+ "commit": "1072765ed2e0ffda34688d84d376a8bc4bf928f0",
893
+ "package": "@fluentui/react-theme"
894
+ }
895
+ ]
896
+ }
897
+ },
898
+ {
899
+ "date": "Wed, 17 Feb 2021 12:21:39 GMT",
900
+ "tag": "@fluentui/react-theme_v0.3.1",
901
+ "version": "0.3.1",
902
+ "comments": {
903
+ "none": [
904
+ {
905
+ "comment": "Bump @fluentui/set-version to v8.0.0-beta.1",
906
+ "author": "martinhochel@microsoft.com",
907
+ "commit": "0de01d003589b5e2f166bc070729dca20125a091",
908
+ "package": "@fluentui/react-theme"
909
+ }
910
+ ]
911
+ }
912
+ },
913
+ {
914
+ "date": "Mon, 15 Feb 2021 12:22:00 GMT",
915
+ "tag": "@fluentui/react-theme_v0.3.1",
916
+ "version": "0.3.1",
917
+ "comments": {
918
+ "prerelease": [
919
+ {
920
+ "comment": "Bump @fluentui/utilities to v8.0.0-beta.12",
921
+ "author": "xgao@microsoft.com",
922
+ "commit": "d5a5a4f26ce900b3e1b3c0f6c46a17c2e3430439",
923
+ "package": "@fluentui/react-theme"
924
+ }
925
+ ]
926
+ }
927
+ },
928
+ {
929
+ "date": "Thu, 11 Feb 2021 12:18:41 GMT",
930
+ "tag": "@fluentui/react-theme_v0.3.1",
931
+ "version": "0.3.1",
932
+ "comments": {
933
+ "none": [
934
+ {
935
+ "comment": "Bump @fluentui/utilities to v8.0.0-beta.11",
936
+ "author": "martinhochel@microsoft.com",
937
+ "commit": "7566015a7edd355b4fcd3796bc8f44f732ef0877",
938
+ "package": "@fluentui/react-theme"
939
+ }
940
+ ]
941
+ }
942
+ },
943
+ {
944
+ "date": "Thu, 11 Feb 2021 00:58:10 GMT",
945
+ "tag": "@fluentui/react-theme_v0.3.1",
946
+ "version": "0.3.1",
947
+ "comments": {
948
+ "prerelease": [
949
+ {
950
+ "comment": "Bump @fluentui/utilities to v8.0.0-beta.11",
951
+ "author": "xgao@microsoft.com",
952
+ "commit": "69357e7a30d4c282ad82d2ecf4da6fc4b942ab99",
953
+ "package": "@fluentui/react-theme"
954
+ }
955
+ ]
956
+ }
957
+ },
958
+ {
959
+ "date": "Tue, 09 Feb 2021 00:56:52 GMT",
960
+ "tag": "@fluentui/react-theme_v0.3.1",
961
+ "version": "0.3.1",
962
+ "comments": {
963
+ "patch": [
964
+ {
965
+ "comment": "fix mergeThemes() to avoid object's mutation",
966
+ "author": "olfedias@microsoft.com",
967
+ "commit": "e6a1c491a67b911cc285fcc9d89b6fca152aacd9",
968
+ "package": "@fluentui/react-theme"
969
+ }
970
+ ]
971
+ }
972
+ },
973
+ {
974
+ "date": "Mon, 08 Feb 2021 12:23:08 GMT",
975
+ "tag": "@fluentui/react-theme_v0.3.0",
976
+ "version": "0.3.0",
977
+ "comments": {
978
+ "minor": [
979
+ {
980
+ "comment": "Update converged theme shape",
981
+ "author": "miroslav.stastny@microsoft.com",
982
+ "commit": "bca3d0d79accb3675bf3dfd49c0297e646b91d2c",
983
+ "package": "@fluentui/react-theme"
984
+ }
985
+ ]
986
+ }
987
+ },
988
+ {
989
+ "date": "Wed, 03 Feb 2021 05:51:40 GMT",
990
+ "tag": "@fluentui/react-theme_v0.2.0",
991
+ "version": "0.2.0",
992
+ "comments": {
993
+ "none": [
994
+ {
995
+ "comment": "add missing Jest config",
996
+ "author": "olfedias@microsoft.com",
997
+ "commit": "e68a6c887cbc45ddb111b6a0c3c8a21ab4a17256",
998
+ "package": "@fluentui/react-theme"
999
+ },
1000
+ {
1001
+ "comment": "Remove .npmrc files except at root",
1002
+ "author": "hantatsang@gmail.com",
1003
+ "commit": "c688ee2ea6f192c4874974ebf11598523ccf6db9",
1004
+ "package": "@fluentui/react-theme"
1005
+ }
1006
+ ]
1007
+ }
1008
+ },
1009
+ {
1010
+ "date": "Tue, 02 Feb 2021 12:21:54 GMT",
1011
+ "tag": "@fluentui/react-theme_v0.2.0",
1012
+ "version": "0.2.0",
1013
+ "comments": {
1014
+ "minor": [
1015
+ {
1016
+ "comment": "feat: add basic theme utils",
1017
+ "author": "olfedias@microsoft.com",
1018
+ "commit": "026320cfc0408dbc2d25d3959856d787ef21d344",
1019
+ "package": "@fluentui/react-theme"
1020
+ }
1021
+ ]
1022
+ }
1023
+ }
1024
+ ]
1025
+ }