@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.md ADDED
@@ -0,0 +1,408 @@
1
+ # Change Log - @fluentui/react-theme
2
+
3
+ This log was last generated on Wed, 02 Mar 2022 04:14:58 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20220302-0405.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.0.0-nightly-20220302-0405.1)
8
+
9
+ Wed, 02 Mar 2022 04:14:58 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.3..@fluentui/react-theme_v0.0.0-nightly-20220302-0405.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by email not defined)
15
+
16
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.3)
17
+
18
+ Fri, 18 Feb 2022 13:35:36 GMT
19
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.1..@fluentui/react-theme_v9.0.0-rc.3)
20
+
21
+ ### Changes
22
+
23
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
24
+
25
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.1)
26
+
27
+ Thu, 10 Feb 2022 08:51:02 GMT
28
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.4..@fluentui/react-theme_v9.0.0-rc.1)
29
+
30
+ ### Changes
31
+
32
+ - feat(react-theme): Add colorNeutralForeground1Static token ([PR #21385](https://github.com/microsoft/fluentui/pull/21385) by miroslav.stastny@microsoft.com)
33
+ - updating brand colors ([PR #20140](https://github.com/microsoft/fluentui/pull/20140) by andmarti@microsoft.com)
34
+ - feat: Export tokens as mapping to CSS variables ([PR #21026](https://github.com/microsoft/fluentui/pull/21026) by Humberto.Morimoto@microsoft.com)
35
+ - Extend brand ramp from 13 to 16 tokens ([PR #20884](https://github.com/microsoft/fluentui/pull/20884) by miroslav.stastny@microsoft.com)
36
+ - remove mergeThemes API ([PR #21278](https://github.com/microsoft/fluentui/pull/21278) by martinhochel@microsoft.com)
37
+ - Theme: Adding function to programmatically generate tokens object based on a theme. ([PR #21548](https://github.com/microsoft/fluentui/pull/21548) by Humberto.Morimoto@microsoft.com)
38
+ - Remove `themeToCSSVariables` function ([PR #20828](https://github.com/microsoft/fluentui/pull/20828) by bsunderhus@microsoft.com)
39
+ - feat(react-theme) Add border1 color token for shared colors ([PR #20963](https://github.com/microsoft/fluentui/pull/20963) by miroslav.stastny@microsoft.com)
40
+ - Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
41
+
42
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.4)
43
+
44
+ Thu, 25 Nov 2021 08:34:16 GMT
45
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.3..@fluentui/react-theme_v9.0.0-beta.4)
46
+
47
+ ### Changes
48
+
49
+ - feat(react-theme): update shadow design tokens ([PR #20604](https://github.com/microsoft/fluentui/pull/20604) by miroslav.stastny@microsoft.com)
50
+
51
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.3)
52
+
53
+ Fri, 12 Nov 2021 13:25:09 GMT
54
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.2..@fluentui/react-theme_v9.0.0-beta.3)
55
+
56
+ ### Changes
57
+
58
+ - Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
59
+ - feat(react-theme): add/update design tokens ([PR #20569](https://github.com/microsoft/fluentui/pull/20569) by miroslav.stastny@microsoft.com)
60
+
61
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.2)
62
+
63
+ Wed, 27 Oct 2021 12:14:23 GMT
64
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-beta.1..@fluentui/react-theme_v9.0.0-beta.2)
65
+
66
+ ### Changes
67
+
68
+ - fix(reat-theme): Remove template literal types for color palette ([PR #20251](https://github.com/microsoft/fluentui/pull/20251) by lingfangao@hotmail.com)
69
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
70
+
71
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-beta.1)
72
+
73
+ Wed, 06 Oct 2021 10:37:22 GMT
74
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.26..@fluentui/react-theme_v9.0.0-beta.1)
75
+
76
+ ### Changes
77
+
78
+ - Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
79
+
80
+ ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.26)
81
+
82
+ Fri, 01 Oct 2021 14:13:08 GMT
83
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.24..@fluentui/react-theme_v9.0.0-alpha.26)
84
+
85
+ ### Changes
86
+
87
+ - Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
88
+
89
+ ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.24)
90
+
91
+ Wed, 29 Sep 2021 08:06:11 GMT
92
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.23..@fluentui/react-theme_v9.0.0-alpha.24)
93
+
94
+ ### Changes
95
+
96
+ - Use direct values in alias tokens ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by miroslav.stastny@microsoft.com)
97
+
98
+ ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.23)
99
+
100
+ Tue, 21 Sep 2021 07:42:34 GMT
101
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.22..@fluentui/react-theme_v9.0.0-alpha.23)
102
+
103
+ ### Changes
104
+
105
+ - Theme: Updating value of borderRadius global token. ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by Humberto.Morimoto@microsoft.com)
106
+
107
+ ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.22)
108
+
109
+ Tue, 24 Aug 2021 07:34:48 GMT
110
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.21..@fluentui/react-theme_v9.0.0-alpha.22)
111
+
112
+ ### Changes
113
+
114
+ - 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)
115
+
116
+ ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.21)
117
+
118
+ Fri, 20 Aug 2021 07:37:28 GMT
119
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.20..@fluentui/react-theme_v9.0.0-alpha.21)
120
+
121
+ ### Changes
122
+
123
+ - Update .npmignore ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
124
+
125
+ ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.20)
126
+
127
+ Tue, 03 Aug 2021 07:39:30 GMT
128
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.19..@fluentui/react-theme_v9.0.0-alpha.20)
129
+
130
+ ### Patches
131
+
132
+ - Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
133
+ - Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
134
+
135
+ ### Changes
136
+
137
+ - Enable exhaustive-deps rule for useIsomorphicLayoutEffect ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
138
+
139
+ ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.19)
140
+
141
+ Mon, 26 Jul 2021 07:37:30 GMT
142
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.18..@fluentui/react-theme_v9.0.0-alpha.19)
143
+
144
+ ### Changes
145
+
146
+ - Add global alpha tokens ([PR #19060](https://github.com/microsoft/fluentui/pull/19060) by miroslav.stastny@microsoft.com)
147
+
148
+ ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.18)
149
+
150
+ Fri, 23 Jul 2021 07:38:19 GMT
151
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.17..@fluentui/react-theme_v9.0.0-alpha.18)
152
+
153
+ ### Changes
154
+
155
+ - Update tokens ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com)
156
+
157
+ ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.17)
158
+
159
+ Fri, 09 Jul 2021 07:39:31 GMT
160
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.16..@fluentui/react-theme_v9.0.0-alpha.17)
161
+
162
+ ### Patches
163
+
164
+ - Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
165
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
166
+
167
+ ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.16)
168
+
169
+ Fri, 02 Jul 2021 07:37:06 GMT
170
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.15..@fluentui/react-theme_v9.0.0-alpha.16)
171
+
172
+ ### Changes
173
+
174
+ - chore(react-theme): Migrate to new DX ([PR #18655](https://github.com/microsoft/fluentui/pull/18655) by miroslav.stastny@microsoft.com)
175
+
176
+ ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.15)
177
+
178
+ Mon, 07 Jun 2021 07:38:15 GMT
179
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.14..@fluentui/react-theme_v9.0.0-alpha.15)
180
+
181
+ ### Patches
182
+
183
+ - Bump @fluentui/eslint-plugin to v1.3.1 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
184
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18437](https://github.com/microsoft/fluentui/pull/18437) by martinhochel@microsoft.com)
185
+
186
+ ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.14)
187
+
188
+ Thu, 03 Jun 2021 07:36:03 GMT
189
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.13..@fluentui/react-theme_v9.0.0-alpha.14)
190
+
191
+ ### Changes
192
+
193
+ - Update theme tokens ([PR #18321](https://github.com/microsoft/fluentui/pull/18321) by miroslav.stastny@microsoft.com)
194
+
195
+ ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.13)
196
+
197
+ Thu, 20 May 2021 07:41:54 GMT
198
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.12..@fluentui/react-theme_v9.0.0-alpha.13)
199
+
200
+ ### Patches
201
+
202
+ - Bump @fluentui/eslint-plugin to v1.3.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
203
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18024](https://github.com/microsoft/fluentui/pull/18024) by elcraig@microsoft.com)
204
+
205
+ ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.12)
206
+
207
+ Wed, 19 May 2021 07:34:20 GMT
208
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.11..@fluentui/react-theme_v9.0.0-alpha.12)
209
+
210
+ ### Changes
211
+
212
+ - chore: add more Babel plugins ([PR #18037](https://github.com/microsoft/fluentui/pull/18037) by olfedias@microsoft.com)
213
+
214
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.11)
215
+
216
+ Thu, 13 May 2021 07:36:55 GMT
217
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.10..@fluentui/react-theme_v9.0.0-alpha.11)
218
+
219
+ ### Changes
220
+
221
+ - perf: avoid deep merge in mergeThemes() if possible ([PR #18156](https://github.com/microsoft/fluentui/pull/18156) by olfedias@microsoft.com)
222
+
223
+ ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.10)
224
+
225
+ Fri, 30 Apr 2021 07:42:23 GMT
226
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.9..@fluentui/react-theme_v9.0.0-alpha.10)
227
+
228
+ ### Patches
229
+
230
+ - Bump @fluentui/eslint-plugin to v1.2.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
231
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
232
+
233
+ ### Changes
234
+
235
+ - Upgrade to ts 4.0 ([PR #17932](https://github.com/microsoft/fluentui/pull/17932) by joschect@microsoft.com)
236
+
237
+ ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.9)
238
+
239
+ Fri, 23 Apr 2021 07:37:10 GMT
240
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.8..@fluentui/react-theme_v9.0.0-alpha.9)
241
+
242
+ ### Patches
243
+
244
+ - Bump @fluentui/eslint-plugin to v1.1.1 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
245
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17894](https://github.com/microsoft/fluentui/pull/17894) by olfedias@microsoft.com)
246
+
247
+ ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.8)
248
+
249
+ Thu, 08 Apr 2021 07:33:06 GMT
250
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.7..@fluentui/react-theme_v9.0.0-alpha.8)
251
+
252
+ ### Changes
253
+
254
+ - 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)
255
+
256
+ ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.7)
257
+
258
+ Wed, 31 Mar 2021 00:53:43 GMT
259
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.6..@fluentui/react-theme_v9.0.0-alpha.7)
260
+
261
+ ### Patches
262
+
263
+ - Bump @fluentui/eslint-plugin to v1.1.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
264
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17568](https://github.com/microsoft/fluentui/pull/17568) by elcraig@microsoft.com)
265
+
266
+ ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.6)
267
+
268
+ Mon, 15 Mar 2021 07:36:20 GMT
269
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.5..@fluentui/react-theme_v9.0.0-alpha.6)
270
+
271
+ ### Changes
272
+
273
+ - Remove set-version references ([PR #17381](https://github.com/microsoft/fluentui/pull/17381) by elcraig@microsoft.com)
274
+
275
+ ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.5)
276
+
277
+ Wed, 03 Mar 2021 00:10:09 GMT
278
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.4..@fluentui/react-theme_v9.0.0-alpha.5)
279
+
280
+ ### Changes
281
+
282
+ - Remove set-version dependency from converged components ([PR #17211](https://github.com/microsoft/fluentui/pull/17211) by miroslav.stastny@microsoft.com)
283
+
284
+ ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.4)
285
+
286
+ Tue, 02 Mar 2021 07:24:27 GMT
287
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.3..@fluentui/react-theme_v9.0.0-alpha.4)
288
+
289
+ ### Changes
290
+
291
+ - Fix cranberry color alias ([PR #17131](https://github.com/microsoft/fluentui/pull/17131) by behowell@microsoft.com)
292
+ - remove dependency on @fluentui/utilities ([PR #17197](https://github.com/microsoft/fluentui/pull/17197) by olfedias@microsoft.com)
293
+
294
+ ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.3)
295
+
296
+ Fri, 26 Feb 2021 01:16:27 GMT
297
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.2..@fluentui/react-theme_v9.0.0-alpha.3)
298
+
299
+ ### Patches
300
+
301
+ - Bump @fluentui/eslint-plugin to v1.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
302
+ - Bump @fluentui/scripts to v1.0.0 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
303
+ - Bump @fluentui/set-version to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
304
+ - Bump @fluentui/utilities to v8.0.1 ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
305
+
306
+ ### Changes
307
+
308
+ - Update references to major-bumped packages ([PR #17169](https://github.com/microsoft/fluentui/pull/17169) by elcraig@microsoft.com)
309
+
310
+ ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.2)
311
+
312
+ Thu, 25 Feb 2021 20:16:39 GMT
313
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-alpha.1..@fluentui/react-theme_v9.0.0-alpha.2)
314
+
315
+ ### Changes
316
+
317
+ - 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)
318
+
319
+ ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-alpha.1)
320
+
321
+ Wed, 24 Feb 2021 00:05:29 GMT
322
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.3..@fluentui/react-theme_v9.0.0-alpha.1)
323
+
324
+ ### Changes
325
+
326
+ - bump version to v9 ([PR #17093](https://github.com/microsoft/fluentui/pull/17093) by olfedias@microsoft.com)
327
+
328
+ ## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.3)
329
+
330
+ Mon, 22 Feb 2021 12:26:22 GMT
331
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.2..@fluentui/react-theme_v0.3.3)
332
+
333
+ ### Patches
334
+
335
+ - Add SizeValues type ([PR #16868](https://github.com/microsoft/fluentui/pull/16868) by junioassuncaocharles@gmail.com)
336
+
337
+ ### Changes
338
+
339
+ - Bump @fluentui/utilities to v8.0.0-beta.15 ([PR #17061](https://github.com/microsoft/fluentui/pull/17061) by elcraig@microsoft.com)
340
+
341
+ ## [0.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.2)
342
+
343
+ Thu, 18 Feb 2021 19:38:50 GMT
344
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.2)
345
+
346
+ ### Patches
347
+
348
+ - 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)
349
+
350
+ ### Changes
351
+
352
+ - Bump @fluentui/utilities to v8.0.0-beta.14 ([PR #17048](https://github.com/microsoft/fluentui/pull/17048) by elcraig@microsoft.com)
353
+
354
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
355
+
356
+ Thu, 18 Feb 2021 12:27:34 GMT
357
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
358
+
359
+ ### Changes
360
+
361
+ - Bump @fluentui/eslint-plugin to v1.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
362
+ - Bump @fluentui/utilities to v8.0.0-beta.13 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
363
+ - Bump @fluentui/set-version to v8.0.0-beta.2 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
364
+ - Bump @fluentui/scripts to v1.0.0 ([PR #16975](https://github.com/microsoft/fluentui/pull/16975) by elcraig@microsoft.com)
365
+
366
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
367
+
368
+ Mon, 15 Feb 2021 12:22:00 GMT
369
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
370
+
371
+ ### Changes
372
+
373
+ - Bump @fluentui/utilities to v8.0.0-beta.12 ([PR #16880](https://github.com/microsoft/fluentui/pull/16880) by xgao@microsoft.com)
374
+
375
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
376
+
377
+ Thu, 11 Feb 2021 00:58:10 GMT
378
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.1..@fluentui/react-theme_v0.3.1)
379
+
380
+ ### Changes
381
+
382
+ - Bump @fluentui/utilities to v8.0.0-beta.11 ([PR #16911](https://github.com/microsoft/fluentui/pull/16911) by xgao@microsoft.com)
383
+
384
+ ## [0.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.1)
385
+
386
+ Tue, 09 Feb 2021 00:56:52 GMT
387
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.3.0..@fluentui/react-theme_v0.3.1)
388
+
389
+ ### Patches
390
+
391
+ - fix mergeThemes() to avoid object's mutation ([PR #16869](https://github.com/microsoft/fluentui/pull/16869) by olfedias@microsoft.com)
392
+
393
+ ## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.3.0)
394
+
395
+ Mon, 08 Feb 2021 12:23:08 GMT
396
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v0.2.0..@fluentui/react-theme_v0.3.0)
397
+
398
+ ### Minor changes
399
+
400
+ - Update converged theme shape ([PR #16844](https://github.com/microsoft/fluentui/pull/16844) by miroslav.stastny@microsoft.com)
401
+
402
+ ## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v0.2.0)
403
+
404
+ Tue, 02 Feb 2021 12:21:54 GMT
405
+
406
+ ### Minor changes
407
+
408
+ - 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.