@fluentui/react-text 0.0.0-nightly050f89bf0020211102.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 (244) hide show
  1. package/CHANGELOG.json +1277 -0
  2. package/CHANGELOG.md +471 -0
  3. package/LICENSE +15 -0
  4. package/MIGRATION.md +680 -0
  5. package/README.md +99 -0
  6. package/Spec.md +162 -0
  7. package/assets/typography-examples.gif +0 -0
  8. package/dist/react-text.d.ts +163 -0
  9. package/lib/Body.d.ts +1 -0
  10. package/lib/Body.js +2 -0
  11. package/lib/Body.js.map +1 -0
  12. package/lib/Caption.d.ts +1 -0
  13. package/lib/Caption.js +2 -0
  14. package/lib/Caption.js.map +1 -0
  15. package/lib/Display.d.ts +1 -0
  16. package/lib/Display.js +2 -0
  17. package/lib/Display.js.map +1 -0
  18. package/lib/Headline.d.ts +1 -0
  19. package/lib/Headline.js +2 -0
  20. package/lib/Headline.js.map +1 -0
  21. package/lib/LargeTitle.d.ts +1 -0
  22. package/lib/LargeTitle.js +2 -0
  23. package/lib/LargeTitle.js.map +1 -0
  24. package/lib/Subheadline.d.ts +1 -0
  25. package/lib/Subheadline.js +2 -0
  26. package/lib/Subheadline.js.map +1 -0
  27. package/lib/Text.d.ts +1 -0
  28. package/lib/Text.js +2 -0
  29. package/lib/Text.js.map +1 -0
  30. package/lib/Title1.d.ts +1 -0
  31. package/lib/Title1.js +2 -0
  32. package/lib/Title1.js.map +1 -0
  33. package/lib/Title2.d.ts +1 -0
  34. package/lib/Title2.js +2 -0
  35. package/lib/Title2.js.map +1 -0
  36. package/lib/Title3.d.ts +1 -0
  37. package/lib/Title3.js +2 -0
  38. package/lib/Title3.js.map +1 -0
  39. package/lib/common/isConformant.d.ts +4 -0
  40. package/lib/common/isConformant.js +16 -0
  41. package/lib/common/isConformant.js.map +1 -0
  42. package/lib/components/Body/Body.d.ts +6 -0
  43. package/lib/components/Body/Body.js +27 -0
  44. package/lib/components/Body/Body.js.map +1 -0
  45. package/lib/components/Body/index.d.ts +1 -0
  46. package/lib/components/Body/index.js +2 -0
  47. package/lib/components/Body/index.js.map +1 -0
  48. package/lib/components/Caption/Caption.d.ts +6 -0
  49. package/lib/components/Caption/Caption.js +27 -0
  50. package/lib/components/Caption/Caption.js.map +1 -0
  51. package/lib/components/Caption/index.d.ts +1 -0
  52. package/lib/components/Caption/index.js +2 -0
  53. package/lib/components/Caption/index.js.map +1 -0
  54. package/lib/components/Display/Display.d.ts +6 -0
  55. package/lib/components/Display/Display.js +27 -0
  56. package/lib/components/Display/Display.js.map +1 -0
  57. package/lib/components/Display/index.d.ts +1 -0
  58. package/lib/components/Display/index.js +2 -0
  59. package/lib/components/Display/index.js.map +1 -0
  60. package/lib/components/Headline/Headline.d.ts +6 -0
  61. package/lib/components/Headline/Headline.js +27 -0
  62. package/lib/components/Headline/Headline.js.map +1 -0
  63. package/lib/components/Headline/index.d.ts +1 -0
  64. package/lib/components/Headline/index.js +2 -0
  65. package/lib/components/Headline/index.js.map +1 -0
  66. package/lib/components/LargeTitle/LargeTitle.d.ts +6 -0
  67. package/lib/components/LargeTitle/LargeTitle.js +27 -0
  68. package/lib/components/LargeTitle/LargeTitle.js.map +1 -0
  69. package/lib/components/LargeTitle/index.d.ts +1 -0
  70. package/lib/components/LargeTitle/index.js +2 -0
  71. package/lib/components/LargeTitle/index.js.map +1 -0
  72. package/lib/components/Subheadline/Subheadline.d.ts +6 -0
  73. package/lib/components/Subheadline/Subheadline.js +27 -0
  74. package/lib/components/Subheadline/Subheadline.js.map +1 -0
  75. package/lib/components/Subheadline/index.d.ts +1 -0
  76. package/lib/components/Subheadline/index.js +2 -0
  77. package/lib/components/Subheadline/index.js.map +1 -0
  78. package/lib/components/Text/Text.d.ts +6 -0
  79. package/lib/components/Text/Text.js +15 -0
  80. package/lib/components/Text/Text.js.map +1 -0
  81. package/lib/components/Text/Text.types.d.ts +77 -0
  82. package/lib/components/Text/Text.types.js +2 -0
  83. package/lib/components/Text/Text.types.js.map +1 -0
  84. package/lib/components/Text/index.d.ts +5 -0
  85. package/lib/components/Text/index.js +6 -0
  86. package/lib/components/Text/index.js.map +1 -0
  87. package/lib/components/Text/renderText.d.ts +5 -0
  88. package/lib/components/Text/renderText.js +15 -0
  89. package/lib/components/Text/renderText.js.map +1 -0
  90. package/lib/components/Text/useText.d.ts +12 -0
  91. package/lib/components/Text/useText.js +49 -0
  92. package/lib/components/Text/useText.js.map +1 -0
  93. package/lib/components/Text/useTextStyles.d.ts +5 -0
  94. package/lib/components/Text/useTextStyles.js +110 -0
  95. package/lib/components/Text/useTextStyles.js.map +1 -0
  96. package/lib/components/Title1/Title1.d.ts +6 -0
  97. package/lib/components/Title1/Title1.js +27 -0
  98. package/lib/components/Title1/Title1.js.map +1 -0
  99. package/lib/components/Title1/index.d.ts +1 -0
  100. package/lib/components/Title1/index.js +2 -0
  101. package/lib/components/Title1/index.js.map +1 -0
  102. package/lib/components/Title2/Title2.d.ts +6 -0
  103. package/lib/components/Title2/Title2.js +27 -0
  104. package/lib/components/Title2/Title2.js.map +1 -0
  105. package/lib/components/Title2/index.d.ts +1 -0
  106. package/lib/components/Title2/index.js +2 -0
  107. package/lib/components/Title2/index.js.map +1 -0
  108. package/lib/components/Title3/Title3.d.ts +6 -0
  109. package/lib/components/Title3/Title3.js +27 -0
  110. package/lib/components/Title3/Title3.js.map +1 -0
  111. package/lib/components/Title3/index.d.ts +1 -0
  112. package/lib/components/Title3/index.js +2 -0
  113. package/lib/components/Title3/index.js.map +1 -0
  114. package/lib/components/wrapper.d.ts +7 -0
  115. package/lib/components/wrapper.js +17 -0
  116. package/lib/components/wrapper.js.map +1 -0
  117. package/lib/index.d.ts +10 -0
  118. package/lib/index.js +11 -0
  119. package/lib/index.js.map +1 -0
  120. package/lib/tsdoc-metadata.json +11 -0
  121. package/lib/typographyStyles/index.d.ts +2 -0
  122. package/lib/typographyStyles/index.js +3 -0
  123. package/lib/typographyStyles/index.js.map +1 -0
  124. package/lib/typographyStyles/typographyStyles.d.ts +14 -0
  125. package/lib/typographyStyles/typographyStyles.js +76 -0
  126. package/lib/typographyStyles/typographyStyles.js.map +1 -0
  127. package/lib-commonjs/Body.d.ts +1 -0
  128. package/lib-commonjs/Body.js +10 -0
  129. package/lib-commonjs/Body.js.map +1 -0
  130. package/lib-commonjs/Caption.d.ts +1 -0
  131. package/lib-commonjs/Caption.js +10 -0
  132. package/lib-commonjs/Caption.js.map +1 -0
  133. package/lib-commonjs/Display.d.ts +1 -0
  134. package/lib-commonjs/Display.js +10 -0
  135. package/lib-commonjs/Display.js.map +1 -0
  136. package/lib-commonjs/Headline.d.ts +1 -0
  137. package/lib-commonjs/Headline.js +10 -0
  138. package/lib-commonjs/Headline.js.map +1 -0
  139. package/lib-commonjs/LargeTitle.d.ts +1 -0
  140. package/lib-commonjs/LargeTitle.js +10 -0
  141. package/lib-commonjs/LargeTitle.js.map +1 -0
  142. package/lib-commonjs/Subheadline.d.ts +1 -0
  143. package/lib-commonjs/Subheadline.js +10 -0
  144. package/lib-commonjs/Subheadline.js.map +1 -0
  145. package/lib-commonjs/Text.d.ts +1 -0
  146. package/lib-commonjs/Text.js +10 -0
  147. package/lib-commonjs/Text.js.map +1 -0
  148. package/lib-commonjs/Title1.d.ts +1 -0
  149. package/lib-commonjs/Title1.js +10 -0
  150. package/lib-commonjs/Title1.js.map +1 -0
  151. package/lib-commonjs/Title2.d.ts +1 -0
  152. package/lib-commonjs/Title2.js +10 -0
  153. package/lib-commonjs/Title2.js.map +1 -0
  154. package/lib-commonjs/Title3.d.ts +1 -0
  155. package/lib-commonjs/Title3.js +10 -0
  156. package/lib-commonjs/Title3.js.map +1 -0
  157. package/lib-commonjs/common/isConformant.d.ts +4 -0
  158. package/lib-commonjs/common/isConformant.js +27 -0
  159. package/lib-commonjs/common/isConformant.js.map +1 -0
  160. package/lib-commonjs/components/Body/Body.d.ts +6 -0
  161. package/lib-commonjs/components/Body/Body.js +30 -0
  162. package/lib-commonjs/components/Body/Body.js.map +1 -0
  163. package/lib-commonjs/components/Body/index.d.ts +1 -0
  164. package/lib-commonjs/components/Body/index.js +10 -0
  165. package/lib-commonjs/components/Body/index.js.map +1 -0
  166. package/lib-commonjs/components/Caption/Caption.d.ts +6 -0
  167. package/lib-commonjs/components/Caption/Caption.js +30 -0
  168. package/lib-commonjs/components/Caption/Caption.js.map +1 -0
  169. package/lib-commonjs/components/Caption/index.d.ts +1 -0
  170. package/lib-commonjs/components/Caption/index.js +10 -0
  171. package/lib-commonjs/components/Caption/index.js.map +1 -0
  172. package/lib-commonjs/components/Display/Display.d.ts +6 -0
  173. package/lib-commonjs/components/Display/Display.js +30 -0
  174. package/lib-commonjs/components/Display/Display.js.map +1 -0
  175. package/lib-commonjs/components/Display/index.d.ts +1 -0
  176. package/lib-commonjs/components/Display/index.js +10 -0
  177. package/lib-commonjs/components/Display/index.js.map +1 -0
  178. package/lib-commonjs/components/Headline/Headline.d.ts +6 -0
  179. package/lib-commonjs/components/Headline/Headline.js +30 -0
  180. package/lib-commonjs/components/Headline/Headline.js.map +1 -0
  181. package/lib-commonjs/components/Headline/index.d.ts +1 -0
  182. package/lib-commonjs/components/Headline/index.js +10 -0
  183. package/lib-commonjs/components/Headline/index.js.map +1 -0
  184. package/lib-commonjs/components/LargeTitle/LargeTitle.d.ts +6 -0
  185. package/lib-commonjs/components/LargeTitle/LargeTitle.js +30 -0
  186. package/lib-commonjs/components/LargeTitle/LargeTitle.js.map +1 -0
  187. package/lib-commonjs/components/LargeTitle/index.d.ts +1 -0
  188. package/lib-commonjs/components/LargeTitle/index.js +10 -0
  189. package/lib-commonjs/components/LargeTitle/index.js.map +1 -0
  190. package/lib-commonjs/components/Subheadline/Subheadline.d.ts +6 -0
  191. package/lib-commonjs/components/Subheadline/Subheadline.js +30 -0
  192. package/lib-commonjs/components/Subheadline/Subheadline.js.map +1 -0
  193. package/lib-commonjs/components/Subheadline/index.d.ts +1 -0
  194. package/lib-commonjs/components/Subheadline/index.js +10 -0
  195. package/lib-commonjs/components/Subheadline/index.js.map +1 -0
  196. package/lib-commonjs/components/Text/Text.d.ts +6 -0
  197. package/lib-commonjs/components/Text/Text.js +26 -0
  198. package/lib-commonjs/components/Text/Text.js.map +1 -0
  199. package/lib-commonjs/components/Text/Text.types.d.ts +77 -0
  200. package/lib-commonjs/components/Text/Text.types.js +6 -0
  201. package/lib-commonjs/components/Text/Text.types.js.map +1 -0
  202. package/lib-commonjs/components/Text/index.d.ts +5 -0
  203. package/lib-commonjs/components/Text/index.js +18 -0
  204. package/lib-commonjs/components/Text/index.js.map +1 -0
  205. package/lib-commonjs/components/Text/renderText.d.ts +5 -0
  206. package/lib-commonjs/components/Text/renderText.js +27 -0
  207. package/lib-commonjs/components/Text/renderText.js.map +1 -0
  208. package/lib-commonjs/components/Text/useText.d.ts +12 -0
  209. package/lib-commonjs/components/Text/useText.js +60 -0
  210. package/lib-commonjs/components/Text/useText.js.map +1 -0
  211. package/lib-commonjs/components/Text/useTextStyles.d.ts +5 -0
  212. package/lib-commonjs/components/Text/useTextStyles.js +120 -0
  213. package/lib-commonjs/components/Text/useTextStyles.js.map +1 -0
  214. package/lib-commonjs/components/Title1/Title1.d.ts +6 -0
  215. package/lib-commonjs/components/Title1/Title1.js +30 -0
  216. package/lib-commonjs/components/Title1/Title1.js.map +1 -0
  217. package/lib-commonjs/components/Title1/index.d.ts +1 -0
  218. package/lib-commonjs/components/Title1/index.js +10 -0
  219. package/lib-commonjs/components/Title1/index.js.map +1 -0
  220. package/lib-commonjs/components/Title2/Title2.d.ts +6 -0
  221. package/lib-commonjs/components/Title2/Title2.js +30 -0
  222. package/lib-commonjs/components/Title2/Title2.js.map +1 -0
  223. package/lib-commonjs/components/Title2/index.d.ts +1 -0
  224. package/lib-commonjs/components/Title2/index.js +10 -0
  225. package/lib-commonjs/components/Title2/index.js.map +1 -0
  226. package/lib-commonjs/components/Title3/Title3.d.ts +6 -0
  227. package/lib-commonjs/components/Title3/Title3.js +30 -0
  228. package/lib-commonjs/components/Title3/Title3.js.map +1 -0
  229. package/lib-commonjs/components/Title3/index.d.ts +1 -0
  230. package/lib-commonjs/components/Title3/index.js +10 -0
  231. package/lib-commonjs/components/Title3/index.js.map +1 -0
  232. package/lib-commonjs/components/wrapper.d.ts +7 -0
  233. package/lib-commonjs/components/wrapper.js +29 -0
  234. package/lib-commonjs/components/wrapper.js.map +1 -0
  235. package/lib-commonjs/index.d.ts +10 -0
  236. package/lib-commonjs/index.js +28 -0
  237. package/lib-commonjs/index.js.map +1 -0
  238. package/lib-commonjs/typographyStyles/index.d.ts +2 -0
  239. package/lib-commonjs/typographyStyles/index.js +11 -0
  240. package/lib-commonjs/typographyStyles/index.js.map +1 -0
  241. package/lib-commonjs/typographyStyles/typographyStyles.d.ts +14 -0
  242. package/lib-commonjs/typographyStyles/typographyStyles.js +109 -0
  243. package/lib-commonjs/typographyStyles/typographyStyles.js.map +1 -0
  244. package/package.json +64 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,471 @@
1
+ # Change Log - @fluentui/react-text
2
+
3
+ This log was last generated on Tue, 02 Nov 2021 08:40:40 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly050f89bf0020211102.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v0.0.0-nightly050f89bf0020211102.1)
8
+
9
+ Tue, 02 Nov 2021 08:40:40 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-beta.2..@fluentui/react-text_v0.0.0-nightly050f89bf0020211102.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/40469cc9aef788dfd49e97df32d6aed267c2cc26) by email not defined)
15
+ - Updated with codesandbox comments ([PR #20371](https://github.com/microsoft/fluentui/pull/20371) by gcox@microsoft.com)
16
+ - Bump @fluentui/react-make-styles to v0.0.0-nightly050f89bf0020211102.1 ([commit](https://github.com/microsoft/fluentui/commit/40469cc9aef788dfd49e97df32d6aed267c2cc26) by beachball)
17
+ - Bump @fluentui/react-utilities to v0.0.0-nightly050f89bf0020211102.1 ([commit](https://github.com/microsoft/fluentui/commit/40469cc9aef788dfd49e97df32d6aed267c2cc26) by beachball)
18
+ - Bump @fluentui/babel-make-styles to v0.0.0-nightly050f89bf0020211102.1 ([commit](https://github.com/microsoft/fluentui/commit/40469cc9aef788dfd49e97df32d6aed267c2cc26) by beachball)
19
+ - Bump @fluentui/jest-serializer-make-styles to v0.0.0-nightly050f89bf0020211102.1 ([commit](https://github.com/microsoft/fluentui/commit/40469cc9aef788dfd49e97df32d6aed267c2cc26) by beachball)
20
+ - Bump @fluentui/react-conformance-make-styles to v0.0.0-nightly050f89bf0020211102.1 ([commit](https://github.com/microsoft/fluentui/commit/40469cc9aef788dfd49e97df32d6aed267c2cc26) by beachball)
21
+
22
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-beta.2)
23
+
24
+ Wed, 27 Oct 2021 12:14:23 GMT
25
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-beta.1..@fluentui/react-text_v9.0.0-beta.2)
26
+
27
+ ### Changes
28
+
29
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
30
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
31
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
32
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
33
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
34
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
35
+
36
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-beta.1)
37
+
38
+ Wed, 06 Oct 2021 10:37:22 GMT
39
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.27..@fluentui/react-text_v9.0.0-beta.1)
40
+
41
+ ### Changes
42
+
43
+ - Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
44
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
45
+ - Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
46
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
47
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
48
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
49
+
50
+ ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.27)
51
+
52
+ Tue, 05 Oct 2021 12:47:58 GMT
53
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.26..@fluentui/react-text_v9.0.0-alpha.27)
54
+
55
+ ### Changes
56
+
57
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.78 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
58
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.60 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
59
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
60
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.22 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
61
+
62
+ ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.26)
63
+
64
+ Tue, 05 Oct 2021 09:28:07 GMT
65
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.25..@fluentui/react-text_v9.0.0-alpha.26)
66
+
67
+ ### Changes
68
+
69
+ - Add and use ForwardRefComponent helper type ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by elcraig@microsoft.com)
70
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
71
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
72
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.59 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
73
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
74
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
75
+
76
+ ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.25)
77
+
78
+ Fri, 01 Oct 2021 14:13:08 GMT
79
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.23..@fluentui/react-text_v9.0.0-alpha.25)
80
+
81
+ ### Changes
82
+
83
+ - Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
84
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.76 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
85
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.55 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
86
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.58 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
87
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
88
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
89
+
90
+ ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.23)
91
+
92
+ Wed, 29 Sep 2021 08:06:11 GMT
93
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.22..@fluentui/react-text_v9.0.0-alpha.23)
94
+
95
+ ### Changes
96
+
97
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.74 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
98
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.56 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
99
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
100
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
101
+
102
+ ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.22)
103
+
104
+ Mon, 27 Sep 2021 08:06:00 GMT
105
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.21..@fluentui/react-text_v9.0.0-alpha.22)
106
+
107
+ ### Changes
108
+
109
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
110
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
111
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.55 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
112
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
113
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
114
+
115
+ ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.21)
116
+
117
+ Fri, 24 Sep 2021 09:17:17 GMT
118
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.20..@fluentui/react-text_v9.0.0-alpha.21)
119
+
120
+ ### Changes
121
+
122
+ - Remove workaround for as prop with getNativeElementProps ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by andredias@microsoft.com)
123
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.72 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
124
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.52 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
125
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.54 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
126
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
127
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
128
+
129
+ ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.20)
130
+
131
+ Thu, 23 Sep 2021 08:21:34 GMT
132
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.19..@fluentui/react-text_v9.0.0-alpha.20)
133
+
134
+ ### Changes
135
+
136
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.71 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
137
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.51 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
138
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
139
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
140
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
141
+
142
+ ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.19)
143
+
144
+ Wed, 22 Sep 2021 10:10:07 GMT
145
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.18..@fluentui/react-text_v9.0.0-alpha.19)
146
+
147
+ ### Changes
148
+
149
+ - Migrate to simplified prop merging ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by andredias@microsoft.com)
150
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.70 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
151
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.50 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
152
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.52 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
153
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
154
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
155
+
156
+ ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.18)
157
+
158
+ Tue, 21 Sep 2021 07:42:34 GMT
159
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.17..@fluentui/react-text_v9.0.0-alpha.18)
160
+
161
+ ### Changes
162
+
163
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.69 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
164
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.51 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
165
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
166
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
167
+
168
+ ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.17)
169
+
170
+ Mon, 20 Sep 2021 07:36:26 GMT
171
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.16..@fluentui/react-text_v9.0.0-alpha.17)
172
+
173
+ ### Changes
174
+
175
+ - Bump @fluentui/react-text to v9.0.0-alpha.17 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com)
176
+
177
+ ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.16)
178
+
179
+ Fri, 17 Sep 2021 07:35:26 GMT
180
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.15..@fluentui/react-text_v9.0.0-alpha.16)
181
+
182
+ ### Changes
183
+
184
+ - Bump @fluentui/react-text to v9.0.0-alpha.16 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
185
+
186
+ ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.15)
187
+
188
+ Thu, 16 Sep 2021 07:38:39 GMT
189
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.14..@fluentui/react-text_v9.0.0-alpha.15)
190
+
191
+ ### Changes
192
+
193
+ - Bump @fluentui/react-text to v9.0.0-alpha.15 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
194
+
195
+ ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.14)
196
+
197
+ Tue, 14 Sep 2021 20:09:02 GMT
198
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.13..@fluentui/react-text_v9.0.0-alpha.14)
199
+
200
+ ### Changes
201
+
202
+ - Bump @fluentui/react-text to v9.0.0-alpha.14 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com)
203
+
204
+ ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.13)
205
+
206
+ Fri, 10 Sep 2021 16:31:53 GMT
207
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.12..@fluentui/react-text_v9.0.0-alpha.13)
208
+
209
+ ### Changes
210
+
211
+ - chore(v9): Move all internal v9 dependencies from caret to fixed version ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
212
+ - Bump @fluentui/react-text to v9.0.0-alpha.13 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
213
+
214
+ ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.12)
215
+
216
+ Fri, 10 Sep 2021 07:39:51 GMT
217
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.11..@fluentui/react-text_v9.0.0-alpha.12)
218
+
219
+ ### Changes
220
+
221
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.45 ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com)
222
+
223
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.11)
224
+
225
+ Mon, 06 Sep 2021 07:34:53 GMT
226
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.10..@fluentui/react-text_v9.0.0-alpha.11)
227
+
228
+ ### Changes
229
+
230
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.44 ([PR #19640](https://github.com/microsoft/fluentui/pull/19640) by lingfangao@hotmail.com)
231
+
232
+ ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.10)
233
+
234
+ Thu, 02 Sep 2021 07:36:46 GMT
235
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.9..@fluentui/react-text_v9.0.0-alpha.10)
236
+
237
+ ### Patches
238
+
239
+ - Bump @fluentui/react-conformance to v0.4.5 ([PR #19590](https://github.com/microsoft/fluentui/pull/19590) by olfedias@microsoft.com)
240
+
241
+ ### Changes
242
+
243
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.43 ([PR #19065](https://github.com/microsoft/fluentui/pull/19065) by olfedias@microsoft.com)
244
+
245
+ ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.9)
246
+
247
+ Wed, 01 Sep 2021 07:39:56 GMT
248
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.8..@fluentui/react-text_v9.0.0-alpha.9)
249
+
250
+ ### Changes
251
+
252
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.42 ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com)
253
+
254
+ ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.8)
255
+
256
+ Tue, 31 Aug 2021 07:37:47 GMT
257
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.7..@fluentui/react-text_v9.0.0-alpha.8)
258
+
259
+ ### Changes
260
+
261
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.41 ([PR #19556](https://github.com/microsoft/fluentui/pull/19556) by lingfan.gao@microsoft.com)
262
+
263
+ ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.7)
264
+
265
+ Fri, 27 Aug 2021 07:33:32 GMT
266
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.6..@fluentui/react-text_v9.0.0-alpha.7)
267
+
268
+ ### Changes
269
+
270
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.40 ([PR #19462](https://github.com/microsoft/fluentui/pull/19462) by olfedias@microsoft.com)
271
+
272
+ ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.6)
273
+
274
+ Thu, 26 Aug 2021 07:35:43 GMT
275
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.5..@fluentui/react-text_v9.0.0-alpha.6)
276
+
277
+ ### Changes
278
+
279
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.39 ([PR #19486](https://github.com/microsoft/fluentui/pull/19486) by martinhochel@microsoft.com)
280
+
281
+ ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.5)
282
+
283
+ Tue, 24 Aug 2021 07:34:48 GMT
284
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.4..@fluentui/react-text_v9.0.0-alpha.5)
285
+
286
+ ### Changes
287
+
288
+ - 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)
289
+
290
+ ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.4)
291
+
292
+ Fri, 20 Aug 2021 07:37:28 GMT
293
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.3..@fluentui/react-text_v9.0.0-alpha.4)
294
+
295
+ ### Changes
296
+
297
+ - Update .npmignore ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
298
+
299
+ ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.3)
300
+
301
+ Thu, 19 Aug 2021 07:41:35 GMT
302
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.2..@fluentui/react-text_v9.0.0-alpha.3)
303
+
304
+ ### Changes
305
+
306
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.37 ([PR #19273](https://github.com/microsoft/fluentui/pull/19273) by bsunderhus@microsoft.com)
307
+
308
+ ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.2)
309
+
310
+ Fri, 13 Aug 2021 07:36:34 GMT
311
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.1..@fluentui/react-text_v9.0.0-alpha.2)
312
+
313
+ ### Changes
314
+
315
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.32 ([PR #19341](https://github.com/microsoft/fluentui/pull/19341) by olfedias@microsoft.com)
316
+
317
+ ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.1)
318
+
319
+ Thu, 12 Aug 2021 07:34:46 GMT
320
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.1)
321
+
322
+ ### Changes
323
+
324
+ - Initial release ([PR #19363](https://github.com/microsoft/fluentui/pull/19363) by andredias@microsoft.com)
325
+
326
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
327
+
328
+ Wed, 11 Aug 2021 07:34:54 GMT
329
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
330
+
331
+ ### Changes
332
+
333
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.35 ([PR #19256](https://github.com/microsoft/fluentui/pull/19256) by olfedias@microsoft.com)
334
+
335
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
336
+
337
+ Fri, 06 Aug 2021 07:35:14 GMT
338
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
339
+
340
+ ### Changes
341
+
342
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.34 ([PR #19281](https://github.com/microsoft/fluentui/pull/19281) by jspurlin@microsoft.com)
343
+
344
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
345
+
346
+ Tue, 03 Aug 2021 07:39:30 GMT
347
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
348
+
349
+ ### Patches
350
+
351
+ - Bump @fluentui/eslint-plugin to v1.3.3 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
352
+ - Bump @fluentui/react-conformance to v0.4.4 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
353
+ - Bump @fluentui/scripts to v1.0.0 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
354
+
355
+ ### Changes
356
+
357
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.33 ([PR #19169](https://github.com/microsoft/fluentui/pull/19169) by behowell@microsoft.com)
358
+
359
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
360
+
361
+ Mon, 02 Aug 2021 07:36:20 GMT
362
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
363
+
364
+ ### Changes
365
+
366
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.32 ([PR #19204](https://github.com/microsoft/fluentui/pull/19204) by lingfan.gao@microsoft.com)
367
+
368
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
369
+
370
+ Mon, 26 Jul 2021 07:37:30 GMT
371
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
372
+
373
+ ### Changes
374
+
375
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.31 ([PR #19060](https://github.com/microsoft/fluentui/pull/19060) by miroslav.stastny@microsoft.com)
376
+
377
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
378
+
379
+ Fri, 23 Jul 2021 07:38:19 GMT
380
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
381
+
382
+ ### Changes
383
+
384
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.27 ([PR #19041](https://github.com/microsoft/fluentui/pull/19041) by miroslav.stastny@microsoft.com)
385
+
386
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
387
+
388
+ Thu, 22 Jul 2021 07:36:55 GMT
389
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
390
+
391
+ ### Changes
392
+
393
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.26 ([PR #19023](https://github.com/microsoft/fluentui/pull/19023) by behowell@microsoft.com)
394
+
395
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
396
+
397
+ Thu, 15 Jul 2021 07:36:18 GMT
398
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
399
+
400
+ ### Changes
401
+
402
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.25 ([PR #18861](https://github.com/microsoft/fluentui/pull/18861) by bsunderhus@microsoft.com)
403
+
404
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
405
+
406
+ Tue, 13 Jul 2021 22:32:58 GMT
407
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
408
+
409
+ ### Patches
410
+
411
+ - Bump @fluentui/react-conformance to v0.4.3 ([PR #18925](https://github.com/microsoft/fluentui/pull/18925) by elcraig@microsoft.com)
412
+
413
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
414
+
415
+ Tue, 13 Jul 2021 07:35:36 GMT
416
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
417
+
418
+ ### Changes
419
+
420
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.24 ([PR #18560](https://github.com/microsoft/fluentui/pull/18560) by behowell@microsoft.com)
421
+
422
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
423
+
424
+ Fri, 09 Jul 2021 07:39:31 GMT
425
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
426
+
427
+ ### Patches
428
+
429
+ - Bump @fluentui/eslint-plugin to v1.3.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
430
+ - Bump @fluentui/react-conformance to v0.4.2 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
431
+ - Bump @fluentui/scripts to v1.0.0 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
432
+
433
+ ### Changes
434
+
435
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.23 ([PR #18808](https://github.com/microsoft/fluentui/pull/18808) by martinhochel@microsoft.com)
436
+
437
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
438
+
439
+ Fri, 02 Jul 2021 23:15:55 GMT
440
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
441
+
442
+ ### Changes
443
+
444
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.22 ([PR #18721](https://github.com/microsoft/fluentui/pull/18721) by bsunderhus@microsoft.com)
445
+
446
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
447
+
448
+ Fri, 02 Jul 2021 07:37:06 GMT
449
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
450
+
451
+ ### Changes
452
+
453
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.21 ([PR #18655](https://github.com/microsoft/fluentui/pull/18655) by miroslav.stastny@microsoft.com)
454
+
455
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
456
+
457
+ Wed, 30 Jun 2021 07:38:35 GMT
458
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
459
+
460
+ ### Changes
461
+
462
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.20 ([PR #18695](https://github.com/microsoft/fluentui/pull/18695) by tristan.watanabe@gmail.com)
463
+
464
+ ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-text_v9.0.0-alpha.0)
465
+
466
+ Tue, 29 Jun 2021 07:33:32 GMT
467
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-text_v9.0.0-alpha.0..@fluentui/react-text_v9.0.0-alpha.0)
468
+
469
+ ### Changes
470
+
471
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.19 ([PR #18169](https://github.com/microsoft/fluentui/pull/18169) by olfedias@microsoft.com)
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ @fluentui/react-text
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