@fluentui/react-theme 9.0.0-alpha.23

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 (277) hide show
  1. package/CHANGELOG.json +786 -0
  2. package/CHANGELOG.md +317 -0
  3. package/LICENSE +15 -0
  4. package/README.md +5 -0
  5. package/dist/react-theme.d.ts +425 -0
  6. package/lib/alias/dark.d.ts +3 -0
  7. package/lib/alias/dark.js +123 -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 +123 -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 +123 -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 +123 -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 +37 -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 +6 -0
  28. package/lib/global/fonts.js +51 -0
  29. package/lib/global/fonts.js.map +1 -0
  30. package/lib/global/index.d.ts +5 -0
  31. package/lib/global/index.js +6 -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/global/utils.d.ts +2 -0
  37. package/lib/global/utils.js +37 -0
  38. package/lib/global/utils.js.map +1 -0
  39. package/lib/index.d.ts +4 -0
  40. package/lib/index.js +5 -0
  41. package/lib/index.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 +4 -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 +4 -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/tsdoc-metadata.json +11 -0
  70. package/lib/types.d.ts +333 -0
  71. package/lib/types.js +2 -0
  72. package/lib/types.js.map +1 -0
  73. package/lib/utils/createDarkTheme.d.ts +2 -0
  74. package/lib/utils/createDarkTheme.js +17 -0
  75. package/lib/utils/createDarkTheme.js.map +1 -0
  76. package/lib/utils/createHighContrastTheme.d.ts +2 -0
  77. package/lib/utils/createHighContrastTheme.js +17 -0
  78. package/lib/utils/createHighContrastTheme.js.map +1 -0
  79. package/lib/utils/createLightTheme.d.ts +2 -0
  80. package/lib/utils/createLightTheme.js +17 -0
  81. package/lib/utils/createLightTheme.js.map +1 -0
  82. package/lib/utils/createTeamsDarkTheme.d.ts +2 -0
  83. package/lib/utils/createTeamsDarkTheme.js +17 -0
  84. package/lib/utils/createTeamsDarkTheme.js.map +1 -0
  85. package/lib/utils/index.d.ts +6 -0
  86. package/lib/utils/index.js +7 -0
  87. package/lib/utils/index.js.map +1 -0
  88. package/lib/utils/mergeThemes.d.ts +8 -0
  89. package/lib/utils/mergeThemes.js +71 -0
  90. package/lib/utils/mergeThemes.js.map +1 -0
  91. package/lib/utils/shadows.d.ts +2 -0
  92. package/lib/utils/shadows.js +11 -0
  93. package/lib/utils/shadows.js.map +1 -0
  94. package/lib/utils/themeToCSSVariables.d.ts +2 -0
  95. package/lib/utils/themeToCSSVariables.js +29 -0
  96. package/lib/utils/themeToCSSVariables.js.map +1 -0
  97. package/lib-amd/alias/dark.d.ts +3 -0
  98. package/lib-amd/alias/dark.js +129 -0
  99. package/lib-amd/alias/dark.js.map +1 -0
  100. package/lib-amd/alias/highContrast.d.ts +3 -0
  101. package/lib-amd/alias/highContrast.js +129 -0
  102. package/lib-amd/alias/highContrast.js.map +1 -0
  103. package/lib-amd/alias/light.d.ts +3 -0
  104. package/lib-amd/alias/light.js +129 -0
  105. package/lib-amd/alias/light.js.map +1 -0
  106. package/lib-amd/alias/teamsDark.d.ts +3 -0
  107. package/lib-amd/alias/teamsDark.js +129 -0
  108. package/lib-amd/alias/teamsDark.js.map +1 -0
  109. package/lib-amd/global/borderRadius.d.ts +2 -0
  110. package/lib-amd/global/borderRadius.js +14 -0
  111. package/lib-amd/global/borderRadius.js.map +1 -0
  112. package/lib-amd/global/brandColors.d.ts +4 -0
  113. package/lib-amd/global/brandColors.js +42 -0
  114. package/lib-amd/global/brandColors.js.map +1 -0
  115. package/lib-amd/global/colors.d.ts +15 -0
  116. package/lib-amd/global/colors.js +830 -0
  117. package/lib-amd/global/colors.js.map +1 -0
  118. package/lib-amd/global/fonts.d.ts +6 -0
  119. package/lib-amd/global/fonts.js +58 -0
  120. package/lib-amd/global/fonts.js.map +1 -0
  121. package/lib-amd/global/index.d.ts +5 -0
  122. package/lib-amd/global/index.js +10 -0
  123. package/lib-amd/global/index.js.map +1 -0
  124. package/lib-amd/global/strokeWidths.d.ts +2 -0
  125. package/lib-amd/global/strokeWidths.js +12 -0
  126. package/lib-amd/global/strokeWidths.js.map +1 -0
  127. package/lib-amd/global/utils.d.ts +2 -0
  128. package/lib-amd/global/utils.js +35 -0
  129. package/lib-amd/global/utils.js.map +1 -0
  130. package/lib-amd/index.d.ts +4 -0
  131. package/lib-amd/index.js +9 -0
  132. package/lib-amd/index.js.map +1 -0
  133. package/lib-amd/themes/index.d.ts +2 -0
  134. package/lib-amd/themes/index.js +7 -0
  135. package/lib-amd/themes/index.js.map +1 -0
  136. package/lib-amd/themes/teams/darkTheme.d.ts +2 -0
  137. package/lib-amd/themes/teams/darkTheme.js +7 -0
  138. package/lib-amd/themes/teams/darkTheme.js.map +1 -0
  139. package/lib-amd/themes/teams/highContrastTheme.d.ts +2 -0
  140. package/lib-amd/themes/teams/highContrastTheme.js +7 -0
  141. package/lib-amd/themes/teams/highContrastTheme.js.map +1 -0
  142. package/lib-amd/themes/teams/index.d.ts +3 -0
  143. package/lib-amd/themes/teams/index.js +8 -0
  144. package/lib-amd/themes/teams/index.js.map +1 -0
  145. package/lib-amd/themes/teams/lightTheme.d.ts +2 -0
  146. package/lib-amd/themes/teams/lightTheme.js +7 -0
  147. package/lib-amd/themes/teams/lightTheme.js.map +1 -0
  148. package/lib-amd/themes/web/darkTheme.d.ts +2 -0
  149. package/lib-amd/themes/web/darkTheme.js +7 -0
  150. package/lib-amd/themes/web/darkTheme.js.map +1 -0
  151. package/lib-amd/themes/web/highContrastTheme.d.ts +2 -0
  152. package/lib-amd/themes/web/highContrastTheme.js +7 -0
  153. package/lib-amd/themes/web/highContrastTheme.js.map +1 -0
  154. package/lib-amd/themes/web/index.d.ts +3 -0
  155. package/lib-amd/themes/web/index.js +8 -0
  156. package/lib-amd/themes/web/index.js.map +1 -0
  157. package/lib-amd/themes/web/lightTheme.d.ts +2 -0
  158. package/lib-amd/themes/web/lightTheme.js +7 -0
  159. package/lib-amd/themes/web/lightTheme.js.map +1 -0
  160. package/lib-amd/types.d.ts +333 -0
  161. package/lib-amd/types.js +5 -0
  162. package/lib-amd/types.js.map +1 -0
  163. package/lib-amd/utils/createDarkTheme.d.ts +2 -0
  164. package/lib-amd/utils/createDarkTheme.js +17 -0
  165. package/lib-amd/utils/createDarkTheme.js.map +1 -0
  166. package/lib-amd/utils/createHighContrastTheme.d.ts +2 -0
  167. package/lib-amd/utils/createHighContrastTheme.js +17 -0
  168. package/lib-amd/utils/createHighContrastTheme.js.map +1 -0
  169. package/lib-amd/utils/createLightTheme.d.ts +2 -0
  170. package/lib-amd/utils/createLightTheme.js +17 -0
  171. package/lib-amd/utils/createLightTheme.js.map +1 -0
  172. package/lib-amd/utils/createTeamsDarkTheme.d.ts +2 -0
  173. package/lib-amd/utils/createTeamsDarkTheme.js +17 -0
  174. package/lib-amd/utils/createTeamsDarkTheme.js.map +1 -0
  175. package/lib-amd/utils/index.d.ts +6 -0
  176. package/lib-amd/utils/index.js +12 -0
  177. package/lib-amd/utils/index.js.map +1 -0
  178. package/lib-amd/utils/mergeThemes.d.ts +8 -0
  179. package/lib-amd/utils/mergeThemes.js +66 -0
  180. package/lib-amd/utils/mergeThemes.js.map +1 -0
  181. package/lib-amd/utils/shadows.d.ts +2 -0
  182. package/lib-amd/utils/shadows.js +17 -0
  183. package/lib-amd/utils/shadows.js.map +1 -0
  184. package/lib-amd/utils/themeToCSSVariables.d.ts +2 -0
  185. package/lib-amd/utils/themeToCSSVariables.js +28 -0
  186. package/lib-amd/utils/themeToCSSVariables.js.map +1 -0
  187. package/lib-commonjs/alias/dark.d.ts +3 -0
  188. package/lib-commonjs/alias/dark.js +132 -0
  189. package/lib-commonjs/alias/dark.js.map +1 -0
  190. package/lib-commonjs/alias/highContrast.d.ts +3 -0
  191. package/lib-commonjs/alias/highContrast.js +132 -0
  192. package/lib-commonjs/alias/highContrast.js.map +1 -0
  193. package/lib-commonjs/alias/light.d.ts +3 -0
  194. package/lib-commonjs/alias/light.js +132 -0
  195. package/lib-commonjs/alias/light.js.map +1 -0
  196. package/lib-commonjs/alias/teamsDark.d.ts +3 -0
  197. package/lib-commonjs/alias/teamsDark.js +132 -0
  198. package/lib-commonjs/alias/teamsDark.js.map +1 -0
  199. package/lib-commonjs/global/borderRadius.d.ts +2 -0
  200. package/lib-commonjs/global/borderRadius.js +15 -0
  201. package/lib-commonjs/global/borderRadius.js.map +1 -0
  202. package/lib-commonjs/global/brandColors.d.ts +4 -0
  203. package/lib-commonjs/global/brandColors.js +43 -0
  204. package/lib-commonjs/global/brandColors.js.map +1 -0
  205. package/lib-commonjs/global/colors.d.ts +15 -0
  206. package/lib-commonjs/global/colors.js +831 -0
  207. package/lib-commonjs/global/colors.js.map +1 -0
  208. package/lib-commonjs/global/fonts.d.ts +6 -0
  209. package/lib-commonjs/global/fonts.js +57 -0
  210. package/lib-commonjs/global/fonts.js.map +1 -0
  211. package/lib-commonjs/global/index.d.ts +5 -0
  212. package/lib-commonjs/global/index.js +18 -0
  213. package/lib-commonjs/global/index.js.map +1 -0
  214. package/lib-commonjs/global/strokeWidths.d.ts +2 -0
  215. package/lib-commonjs/global/strokeWidths.js +13 -0
  216. package/lib-commonjs/global/strokeWidths.js.map +1 -0
  217. package/lib-commonjs/global/utils.d.ts +2 -0
  218. package/lib-commonjs/global/utils.js +51 -0
  219. package/lib-commonjs/global/utils.js.map +1 -0
  220. package/lib-commonjs/index.d.ts +4 -0
  221. package/lib-commonjs/index.js +16 -0
  222. package/lib-commonjs/index.js.map +1 -0
  223. package/lib-commonjs/themes/index.d.ts +2 -0
  224. package/lib-commonjs/themes/index.js +12 -0
  225. package/lib-commonjs/themes/index.js.map +1 -0
  226. package/lib-commonjs/themes/teams/darkTheme.d.ts +2 -0
  227. package/lib-commonjs/themes/teams/darkTheme.js +13 -0
  228. package/lib-commonjs/themes/teams/darkTheme.js.map +1 -0
  229. package/lib-commonjs/themes/teams/highContrastTheme.d.ts +2 -0
  230. package/lib-commonjs/themes/teams/highContrastTheme.js +13 -0
  231. package/lib-commonjs/themes/teams/highContrastTheme.js.map +1 -0
  232. package/lib-commonjs/themes/teams/index.d.ts +3 -0
  233. package/lib-commonjs/themes/teams/index.js +14 -0
  234. package/lib-commonjs/themes/teams/index.js.map +1 -0
  235. package/lib-commonjs/themes/teams/lightTheme.d.ts +2 -0
  236. package/lib-commonjs/themes/teams/lightTheme.js +13 -0
  237. package/lib-commonjs/themes/teams/lightTheme.js.map +1 -0
  238. package/lib-commonjs/themes/web/darkTheme.d.ts +2 -0
  239. package/lib-commonjs/themes/web/darkTheme.js +13 -0
  240. package/lib-commonjs/themes/web/darkTheme.js.map +1 -0
  241. package/lib-commonjs/themes/web/highContrastTheme.d.ts +2 -0
  242. package/lib-commonjs/themes/web/highContrastTheme.js +13 -0
  243. package/lib-commonjs/themes/web/highContrastTheme.js.map +1 -0
  244. package/lib-commonjs/themes/web/index.d.ts +3 -0
  245. package/lib-commonjs/themes/web/index.js +14 -0
  246. package/lib-commonjs/themes/web/index.js.map +1 -0
  247. package/lib-commonjs/themes/web/lightTheme.d.ts +2 -0
  248. package/lib-commonjs/themes/web/lightTheme.js +13 -0
  249. package/lib-commonjs/themes/web/lightTheme.js.map +1 -0
  250. package/lib-commonjs/types.d.ts +333 -0
  251. package/lib-commonjs/types.js +6 -0
  252. package/lib-commonjs/types.js.map +1 -0
  253. package/lib-commonjs/utils/createDarkTheme.d.ts +2 -0
  254. package/lib-commonjs/utils/createDarkTheme.js +30 -0
  255. package/lib-commonjs/utils/createDarkTheme.js.map +1 -0
  256. package/lib-commonjs/utils/createHighContrastTheme.d.ts +2 -0
  257. package/lib-commonjs/utils/createHighContrastTheme.js +30 -0
  258. package/lib-commonjs/utils/createHighContrastTheme.js.map +1 -0
  259. package/lib-commonjs/utils/createLightTheme.d.ts +2 -0
  260. package/lib-commonjs/utils/createLightTheme.js +30 -0
  261. package/lib-commonjs/utils/createLightTheme.js.map +1 -0
  262. package/lib-commonjs/utils/createTeamsDarkTheme.d.ts +2 -0
  263. package/lib-commonjs/utils/createTeamsDarkTheme.js +30 -0
  264. package/lib-commonjs/utils/createTeamsDarkTheme.js.map +1 -0
  265. package/lib-commonjs/utils/index.d.ts +6 -0
  266. package/lib-commonjs/utils/index.js +28 -0
  267. package/lib-commonjs/utils/index.js.map +1 -0
  268. package/lib-commonjs/utils/mergeThemes.d.ts +8 -0
  269. package/lib-commonjs/utils/mergeThemes.js +81 -0
  270. package/lib-commonjs/utils/mergeThemes.js.map +1 -0
  271. package/lib-commonjs/utils/shadows.d.ts +2 -0
  272. package/lib-commonjs/utils/shadows.js +20 -0
  273. package/lib-commonjs/utils/shadows.js.map +1 -0
  274. package/lib-commonjs/utils/themeToCSSVariables.d.ts +2 -0
  275. package/lib-commonjs/utils/themeToCSSVariables.js +38 -0
  276. package/lib-commonjs/utils/themeToCSSVariables.js.map +1 -0
  277. package/package.json +52 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,317 @@
1
+ # Change Log - @fluentui/react-theme
2
+
3
+ This log was last generated on Tue, 21 Sep 2021 07:40:35 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.23)
8
+
9
+ Tue, 21 Sep 2021 07:40:35 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.22..@fluentui/react-theme_v9.0.0-alpha.23)
11
+
12
+ ### Changes
13
+
14
+ - Theme: Updating value of borderRadius global token. ([PR #19880](https://github.com/microsoft/fluentui/pull/19880) by Humberto.Morimoto@microsoft.com)
15
+
16
+ ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.22)
17
+
18
+ Tue, 24 Aug 2021 07:34:48 GMT
19
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.21..@fluentui/react-theme_v9.0.0-alpha.22)
20
+
21
+ ### Changes
22
+
23
+ - Updating TypeScript type-only imports/exports to use import/export type syntax. ([PR #19471](https://github.com/microsoft/fluentui/pull/19471) by dzearing@hotmail.com)
24
+
25
+ ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.21)
26
+
27
+ Fri, 20 Aug 2021 07:37:28 GMT
28
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.20..@fluentui/react-theme_v9.0.0-alpha.21)
29
+
30
+ ### Changes
31
+
32
+ - Update .npmignore ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
33
+
34
+ ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.20)
35
+
36
+ Tue, 03 Aug 2021 07:39:30 GMT
37
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.19..@fluentui/react-theme_v9.0.0-alpha.20)
38
+
39
+ ### Patches
40
+
41
+ - Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
42
+ - Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
43
+
44
+ ### Changes
45
+
46
+ - Enable exhaustive-deps rule for useIsomorphicLayoutEffect ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
47
+
48
+ ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.19)
49
+
50
+ Mon, 26 Jul 2021 07:37:30 GMT
51
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.18..@fluentui/react-theme_v9.0.0-alpha.19)
52
+
53
+ ### Changes
54
+
55
+ - Add global alpha tokens ([PR #19060](https://github.com/microsoft/fluentui/pull/19060) by miroslav.stastny@microsoft.com)
56
+
57
+ ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.18)
58
+
59
+ Fri, 23 Jul 2021 07:38:19 GMT
60
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.17..@fluentui/react-theme_v9.0.0-alpha.18)
61
+
62
+ ### Changes
63
+
64
+ - Update tokens ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com)
65
+
66
+ ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.17)
67
+
68
+ Fri, 09 Jul 2021 07:39:31 GMT
69
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.16..@fluentui/react-theme_v9.0.0-alpha.17)
70
+
71
+ ### Patches
72
+
73
+ - Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
74
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
75
+
76
+ ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.16)
77
+
78
+ Fri, 02 Jul 2021 07:37:06 GMT
79
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.15..@fluentui/react-theme_v9.0.0-alpha.16)
80
+
81
+ ### Changes
82
+
83
+ - chore(react-theme): Migrate to new DX ([PR #18655](https://github.com/microsoft/fluentui/pull/18655) by miroslav.stastny@microsoft.com)
84
+
85
+ ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.15)
86
+
87
+ Mon, 07 Jun 2021 07:38:15 GMT
88
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.14..@fluentui/react-theme_v9.0.0-alpha.15)
89
+
90
+ ### Patches
91
+
92
+ - Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
93
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
94
+
95
+ ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.14)
96
+
97
+ Thu, 03 Jun 2021 07:36:03 GMT
98
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.13..@fluentui/react-theme_v9.0.0-alpha.14)
99
+
100
+ ### Changes
101
+
102
+ - Update theme tokens ([PR #18321](https://github.com/microsoft/fluentui/pull/18321) by miroslav.stastny@microsoft.com)
103
+
104
+ ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.13)
105
+
106
+ Thu, 20 May 2021 07:41:54 GMT
107
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.12..@fluentui/react-theme_v9.0.0-alpha.13)
108
+
109
+ ### Patches
110
+
111
+ - Bump @fluentui/eslint-plugin to v1.3.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
112
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
113
+
114
+ ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.12)
115
+
116
+ Wed, 19 May 2021 07:34:20 GMT
117
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.11..@fluentui/react-theme_v9.0.0-alpha.12)
118
+
119
+ ### Changes
120
+
121
+ - chore: add more Babel plugins ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com)
122
+
123
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.11)
124
+
125
+ Thu, 13 May 2021 07:36:55 GMT
126
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.10..@fluentui/react-theme_v9.0.0-alpha.11)
127
+
128
+ ### Changes
129
+
130
+ - perf: avoid deep merge in mergeThemes() if possible ([PR #18156](https://github.com/microsoft/fluentui/pull/18156) by olfedias@microsoft.com)
131
+
132
+ ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.10)
133
+
134
+ Fri, 30 Apr 2021 07:42:23 GMT
135
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.9..@fluentui/react-theme_v9.0.0-alpha.10)
136
+
137
+ ### Patches
138
+
139
+ - Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
140
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
141
+
142
+ ### Changes
143
+
144
+ - Upgrade to ts 4.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
145
+
146
+ ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.9)
147
+
148
+ Fri, 23 Apr 2021 07:37:10 GMT
149
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.8..@fluentui/react-theme_v9.0.0-alpha.9)
150
+
151
+ ### Patches
152
+
153
+ - Bump @fluentui/eslint-plugin to v1.1.1 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
154
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
155
+
156
+ ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.8)
157
+
158
+ Thu, 08 Apr 2021 07:33:06 GMT
159
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.7..@fluentui/react-theme_v9.0.0-alpha.8)
160
+
161
+ ### Changes
162
+
163
+ - Renaming all instances of ghost to subtle per the latest design guidelines. ([PR #17676](https://github.com/microsoft/fluentui/pull/17676) by Humberto.Morimoto@microsoft.com)
164
+
165
+ ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.7)
166
+
167
+ Wed, 31 Mar 2021 00:53:43 GMT
168
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.6..@fluentui/react-theme_v9.0.0-alpha.7)
169
+
170
+ ### Patches
171
+
172
+ - Bump @fluentui/eslint-plugin to v1.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
173
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
174
+
175
+ ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.6)
176
+
177
+ Mon, 15 Mar 2021 07:36:20 GMT
178
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.5..@fluentui/react-theme_v9.0.0-alpha.6)
179
+
180
+ ### Changes
181
+
182
+ - Remove set-version references ([PR #17381](https://github.com/microsoft/fluentui/pull/17381) by elcraig@microsoft.com)
183
+
184
+ ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.5)
185
+
186
+ Wed, 03 Mar 2021 00:10:09 GMT
187
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.4..@fluentui/react-theme_v9.0.0-alpha.5)
188
+
189
+ ### Changes
190
+
191
+ - Remove set-version dependency from converged components ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com)
192
+
193
+ ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.4)
194
+
195
+ Tue, 02 Mar 2021 07:24:27 GMT
196
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.3..@fluentui/react-theme_v9.0.0-alpha.4)
197
+
198
+ ### Changes
199
+
200
+ - Fix cranberry color alias ([PR #17131](https://github.com/microsoft/fluentui/pull/17131) by behowell@microsoft.com)
201
+ - remove dependency on @fluentui/utilities ([PR #17197](https://github.com/microsoft/fluentui/pull/17197) by olfedias@microsoft.com)
202
+
203
+ ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.3)
204
+
205
+ Fri, 26 Feb 2021 01:16:27 GMT
206
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.2..@fluentui/react-theme_v9.0.0-alpha.3)
207
+
208
+ ### Patches
209
+
210
+ - Bump @fluentui/eslint-plugin to v1.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
211
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
212
+ - Bump @fluentui/set-version to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
213
+ - Bump @fluentui/utilities to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
214
+
215
+ ### Changes
216
+
217
+ - Update references to major-bumped packages ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
218
+
219
+ ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.2)
220
+
221
+ Thu, 25 Feb 2021 20:16:39 GMT
222
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.1..@fluentui/react-theme_v9.0.0-alpha.2)
223
+
224
+ ### Changes
225
+
226
+ - Changing incorrect value for brandForegroundPressed token from brand.shade30 to brand.shade40. ([PR #17085](https://github.com/microsoft/fluentui/pull/17085) by humbertomakotomorimoto@gmail.com)
227
+
228
+ ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.1)
229
+
230
+ Wed, 24 Feb 2021 00:05:29 GMT
231
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.3..@fluentui/react-theme_v9.0.0-alpha.1)
232
+
233
+ ### Changes
234
+
235
+ - bump version to v9 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com)
236
+
237
+ ## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.3)
238
+
239
+ Mon, 22 Feb 2021 12:26:22 GMT
240
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.2..@fluentui/react-theme_v0.3.3)
241
+
242
+ ### Patches
243
+
244
+ - Add SizeValues type ([PR #16868](https://github.com/microsoft/fluentui/pull/16868) by junioassuncaocharles@gmail.com)
245
+
246
+ ### Changes
247
+
248
+ - Bump @fluentui/utilities to v8.0.0-beta.15 ([PR #17061](https://github.com/microsoft/fluentui/pull/17061) by elcraig@microsoft.com)
249
+
250
+ ## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.2)
251
+
252
+ Thu, 18 Feb 2021 19:38:50 GMT
253
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.2)
254
+
255
+ ### Patches
256
+
257
+ - Allow React 17 in peerDependencies. The library has not yet been fully validated with React 17, so please report any issues you find. ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
258
+
259
+ ### Changes
260
+
261
+ - Bump @fluentui/utilities to v8.0.0-beta.14 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
262
+
263
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
264
+
265
+ Thu, 18 Feb 2021 12:27:34 GMT
266
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
267
+
268
+ ### Changes
269
+
270
+ - Bump @fluentui/eslint-plugin to v1.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
271
+ - Bump @fluentui/utilities to v8.0.0-beta.13 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
272
+ - Bump @fluentui/set-version to v8.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
273
+ - Bump @fluentui/scripts to v1.0.0 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
274
+
275
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
276
+
277
+ Mon, 15 Feb 2021 12:22:00 GMT
278
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
279
+
280
+ ### Changes
281
+
282
+ - Bump @fluentui/utilities to v8.0.0-beta.12 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
283
+
284
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
285
+
286
+ Thu, 11 Feb 2021 00:58:10 GMT
287
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
288
+
289
+ ### Changes
290
+
291
+ - Bump @fluentui/utilities to v8.0.0-beta.11 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
292
+
293
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
294
+
295
+ Tue, 09 Feb 2021 00:56:52 GMT
296
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.0..@fluentui/react-theme_v0.3.1)
297
+
298
+ ### Patches
299
+
300
+ - fix mergeThemes() to avoid object's mutation ([PR #16869](https://github.com/microsoft/fluentui/pull/16869) by olfedias@microsoft.com)
301
+
302
+ ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.0)
303
+
304
+ Mon, 08 Feb 2021 12:23:08 GMT
305
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.2.0..@fluentui/react-theme_v0.3.0)
306
+
307
+ ### Minor changes
308
+
309
+ - Update converged theme shape ([PR #16844](https://github.com/microsoft/fluentui/pull/16844) by miroslav.stastny@microsoft.com)
310
+
311
+ ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.2.0)
312
+
313
+ Tue, 02 Feb 2021 12:21:54 GMT
314
+
315
+ ### Minor changes
316
+
317
+ - feat: add basic theme utils ([PR #16762](https://github.com/microsoft/fluentui/pull/16762) by olfedias@microsoft.com)
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ @fluentui/react-theme
2
+
3
+ Copyright (c) Microsoft Corporation
4
+
5
+ All rights reserved.
6
+
7
+ MIT License
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14
+
15
+ Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @fluentui/react-theme
2
+
3
+ **React Theme components for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)**
4
+
5
+ These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.