@fluentui/react-text 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 (238) hide show
  1. package/CHANGELOG.json +1510 -0
  2. package/CHANGELOG.md +538 -0
  3. package/LICENSE +15 -0
  4. package/MIGRATION.md +730 -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 +183 -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/components/Body/Body.d.ts +7 -0
  40. package/lib/components/Body/Body.js +29 -0
  41. package/lib/components/Body/Body.js.map +1 -0
  42. package/lib/components/Body/index.d.ts +1 -0
  43. package/lib/components/Body/index.js +2 -0
  44. package/lib/components/Body/index.js.map +1 -0
  45. package/lib/components/Caption/Caption.d.ts +7 -0
  46. package/lib/components/Caption/Caption.js +29 -0
  47. package/lib/components/Caption/Caption.js.map +1 -0
  48. package/lib/components/Caption/index.d.ts +1 -0
  49. package/lib/components/Caption/index.js +2 -0
  50. package/lib/components/Caption/index.js.map +1 -0
  51. package/lib/components/Display/Display.d.ts +7 -0
  52. package/lib/components/Display/Display.js +29 -0
  53. package/lib/components/Display/Display.js.map +1 -0
  54. package/lib/components/Display/index.d.ts +1 -0
  55. package/lib/components/Display/index.js +2 -0
  56. package/lib/components/Display/index.js.map +1 -0
  57. package/lib/components/Headline/Headline.d.ts +7 -0
  58. package/lib/components/Headline/Headline.js +29 -0
  59. package/lib/components/Headline/Headline.js.map +1 -0
  60. package/lib/components/Headline/index.d.ts +1 -0
  61. package/lib/components/Headline/index.js +2 -0
  62. package/lib/components/Headline/index.js.map +1 -0
  63. package/lib/components/LargeTitle/LargeTitle.d.ts +7 -0
  64. package/lib/components/LargeTitle/LargeTitle.js +29 -0
  65. package/lib/components/LargeTitle/LargeTitle.js.map +1 -0
  66. package/lib/components/LargeTitle/index.d.ts +1 -0
  67. package/lib/components/LargeTitle/index.js +2 -0
  68. package/lib/components/LargeTitle/index.js.map +1 -0
  69. package/lib/components/Subheadline/Subheadline.d.ts +7 -0
  70. package/lib/components/Subheadline/Subheadline.js +29 -0
  71. package/lib/components/Subheadline/Subheadline.js.map +1 -0
  72. package/lib/components/Subheadline/index.d.ts +1 -0
  73. package/lib/components/Subheadline/index.js +2 -0
  74. package/lib/components/Subheadline/index.js.map +1 -0
  75. package/lib/components/Text/Text.d.ts +6 -0
  76. package/lib/components/Text/Text.js +15 -0
  77. package/lib/components/Text/Text.js.map +1 -0
  78. package/lib/components/Text/Text.types.d.ts +78 -0
  79. package/lib/components/Text/Text.types.js +2 -0
  80. package/lib/components/Text/Text.types.js.map +1 -0
  81. package/lib/components/Text/index.d.ts +5 -0
  82. package/lib/components/Text/index.js +6 -0
  83. package/lib/components/Text/index.js.map +1 -0
  84. package/lib/components/Text/renderText.d.ts +5 -0
  85. package/lib/components/Text/renderText.js +15 -0
  86. package/lib/components/Text/renderText.js.map +1 -0
  87. package/lib/components/Text/useText.d.ts +12 -0
  88. package/lib/components/Text/useText.js +50 -0
  89. package/lib/components/Text/useText.js.map +1 -0
  90. package/lib/components/Text/useTextStyles.d.ts +6 -0
  91. package/lib/components/Text/useTextStyles.js +114 -0
  92. package/lib/components/Text/useTextStyles.js.map +1 -0
  93. package/lib/components/Title1/Title1.d.ts +7 -0
  94. package/lib/components/Title1/Title1.js +29 -0
  95. package/lib/components/Title1/Title1.js.map +1 -0
  96. package/lib/components/Title1/index.d.ts +1 -0
  97. package/lib/components/Title1/index.js +2 -0
  98. package/lib/components/Title1/index.js.map +1 -0
  99. package/lib/components/Title2/Title2.d.ts +7 -0
  100. package/lib/components/Title2/Title2.js +29 -0
  101. package/lib/components/Title2/Title2.js.map +1 -0
  102. package/lib/components/Title2/index.d.ts +1 -0
  103. package/lib/components/Title2/index.js +2 -0
  104. package/lib/components/Title2/index.js.map +1 -0
  105. package/lib/components/Title3/Title3.d.ts +7 -0
  106. package/lib/components/Title3/Title3.js +29 -0
  107. package/lib/components/Title3/Title3.js.map +1 -0
  108. package/lib/components/Title3/index.d.ts +1 -0
  109. package/lib/components/Title3/index.js +2 -0
  110. package/lib/components/Title3/index.js.map +1 -0
  111. package/lib/components/wrapper.d.ts +8 -0
  112. package/lib/components/wrapper.js +20 -0
  113. package/lib/components/wrapper.js.map +1 -0
  114. package/lib/index.d.ts +10 -0
  115. package/lib/index.js +11 -0
  116. package/lib/index.js.map +1 -0
  117. package/lib/tsdoc-metadata.json +11 -0
  118. package/lib/typographyStyles/index.d.ts +2 -0
  119. package/lib/typographyStyles/index.js +3 -0
  120. package/lib/typographyStyles/index.js.map +1 -0
  121. package/lib/typographyStyles/typographyStyles.d.ts +13 -0
  122. package/lib/typographyStyles/typographyStyles.js +60 -0
  123. package/lib/typographyStyles/typographyStyles.js.map +1 -0
  124. package/lib-commonjs/Body.d.ts +1 -0
  125. package/lib-commonjs/Body.js +10 -0
  126. package/lib-commonjs/Body.js.map +1 -0
  127. package/lib-commonjs/Caption.d.ts +1 -0
  128. package/lib-commonjs/Caption.js +10 -0
  129. package/lib-commonjs/Caption.js.map +1 -0
  130. package/lib-commonjs/Display.d.ts +1 -0
  131. package/lib-commonjs/Display.js +10 -0
  132. package/lib-commonjs/Display.js.map +1 -0
  133. package/lib-commonjs/Headline.d.ts +1 -0
  134. package/lib-commonjs/Headline.js +10 -0
  135. package/lib-commonjs/Headline.js.map +1 -0
  136. package/lib-commonjs/LargeTitle.d.ts +1 -0
  137. package/lib-commonjs/LargeTitle.js +10 -0
  138. package/lib-commonjs/LargeTitle.js.map +1 -0
  139. package/lib-commonjs/Subheadline.d.ts +1 -0
  140. package/lib-commonjs/Subheadline.js +10 -0
  141. package/lib-commonjs/Subheadline.js.map +1 -0
  142. package/lib-commonjs/Text.d.ts +1 -0
  143. package/lib-commonjs/Text.js +10 -0
  144. package/lib-commonjs/Text.js.map +1 -0
  145. package/lib-commonjs/Title1.d.ts +1 -0
  146. package/lib-commonjs/Title1.js +10 -0
  147. package/lib-commonjs/Title1.js.map +1 -0
  148. package/lib-commonjs/Title2.d.ts +1 -0
  149. package/lib-commonjs/Title2.js +10 -0
  150. package/lib-commonjs/Title2.js.map +1 -0
  151. package/lib-commonjs/Title3.d.ts +1 -0
  152. package/lib-commonjs/Title3.js +10 -0
  153. package/lib-commonjs/Title3.js.map +1 -0
  154. package/lib-commonjs/components/Body/Body.d.ts +7 -0
  155. package/lib-commonjs/components/Body/Body.js +30 -0
  156. package/lib-commonjs/components/Body/Body.js.map +1 -0
  157. package/lib-commonjs/components/Body/index.d.ts +1 -0
  158. package/lib-commonjs/components/Body/index.js +10 -0
  159. package/lib-commonjs/components/Body/index.js.map +1 -0
  160. package/lib-commonjs/components/Caption/Caption.d.ts +7 -0
  161. package/lib-commonjs/components/Caption/Caption.js +30 -0
  162. package/lib-commonjs/components/Caption/Caption.js.map +1 -0
  163. package/lib-commonjs/components/Caption/index.d.ts +1 -0
  164. package/lib-commonjs/components/Caption/index.js +10 -0
  165. package/lib-commonjs/components/Caption/index.js.map +1 -0
  166. package/lib-commonjs/components/Display/Display.d.ts +7 -0
  167. package/lib-commonjs/components/Display/Display.js +30 -0
  168. package/lib-commonjs/components/Display/Display.js.map +1 -0
  169. package/lib-commonjs/components/Display/index.d.ts +1 -0
  170. package/lib-commonjs/components/Display/index.js +10 -0
  171. package/lib-commonjs/components/Display/index.js.map +1 -0
  172. package/lib-commonjs/components/Headline/Headline.d.ts +7 -0
  173. package/lib-commonjs/components/Headline/Headline.js +30 -0
  174. package/lib-commonjs/components/Headline/Headline.js.map +1 -0
  175. package/lib-commonjs/components/Headline/index.d.ts +1 -0
  176. package/lib-commonjs/components/Headline/index.js +10 -0
  177. package/lib-commonjs/components/Headline/index.js.map +1 -0
  178. package/lib-commonjs/components/LargeTitle/LargeTitle.d.ts +7 -0
  179. package/lib-commonjs/components/LargeTitle/LargeTitle.js +30 -0
  180. package/lib-commonjs/components/LargeTitle/LargeTitle.js.map +1 -0
  181. package/lib-commonjs/components/LargeTitle/index.d.ts +1 -0
  182. package/lib-commonjs/components/LargeTitle/index.js +10 -0
  183. package/lib-commonjs/components/LargeTitle/index.js.map +1 -0
  184. package/lib-commonjs/components/Subheadline/Subheadline.d.ts +7 -0
  185. package/lib-commonjs/components/Subheadline/Subheadline.js +30 -0
  186. package/lib-commonjs/components/Subheadline/Subheadline.js.map +1 -0
  187. package/lib-commonjs/components/Subheadline/index.d.ts +1 -0
  188. package/lib-commonjs/components/Subheadline/index.js +10 -0
  189. package/lib-commonjs/components/Subheadline/index.js.map +1 -0
  190. package/lib-commonjs/components/Text/Text.d.ts +6 -0
  191. package/lib-commonjs/components/Text/Text.js +26 -0
  192. package/lib-commonjs/components/Text/Text.js.map +1 -0
  193. package/lib-commonjs/components/Text/Text.types.d.ts +78 -0
  194. package/lib-commonjs/components/Text/Text.types.js +6 -0
  195. package/lib-commonjs/components/Text/Text.types.js.map +1 -0
  196. package/lib-commonjs/components/Text/index.d.ts +5 -0
  197. package/lib-commonjs/components/Text/index.js +18 -0
  198. package/lib-commonjs/components/Text/index.js.map +1 -0
  199. package/lib-commonjs/components/Text/renderText.d.ts +5 -0
  200. package/lib-commonjs/components/Text/renderText.js +26 -0
  201. package/lib-commonjs/components/Text/renderText.js.map +1 -0
  202. package/lib-commonjs/components/Text/useText.d.ts +12 -0
  203. package/lib-commonjs/components/Text/useText.js +60 -0
  204. package/lib-commonjs/components/Text/useText.js.map +1 -0
  205. package/lib-commonjs/components/Text/useTextStyles.d.ts +6 -0
  206. package/lib-commonjs/components/Text/useTextStyles.js +125 -0
  207. package/lib-commonjs/components/Text/useTextStyles.js.map +1 -0
  208. package/lib-commonjs/components/Title1/Title1.d.ts +7 -0
  209. package/lib-commonjs/components/Title1/Title1.js +30 -0
  210. package/lib-commonjs/components/Title1/Title1.js.map +1 -0
  211. package/lib-commonjs/components/Title1/index.d.ts +1 -0
  212. package/lib-commonjs/components/Title1/index.js +10 -0
  213. package/lib-commonjs/components/Title1/index.js.map +1 -0
  214. package/lib-commonjs/components/Title2/Title2.d.ts +7 -0
  215. package/lib-commonjs/components/Title2/Title2.js +30 -0
  216. package/lib-commonjs/components/Title2/Title2.js.map +1 -0
  217. package/lib-commonjs/components/Title2/index.d.ts +1 -0
  218. package/lib-commonjs/components/Title2/index.js +10 -0
  219. package/lib-commonjs/components/Title2/index.js.map +1 -0
  220. package/lib-commonjs/components/Title3/Title3.d.ts +7 -0
  221. package/lib-commonjs/components/Title3/Title3.js +30 -0
  222. package/lib-commonjs/components/Title3/Title3.js.map +1 -0
  223. package/lib-commonjs/components/Title3/index.d.ts +1 -0
  224. package/lib-commonjs/components/Title3/index.js +10 -0
  225. package/lib-commonjs/components/Title3/index.js.map +1 -0
  226. package/lib-commonjs/components/wrapper.d.ts +8 -0
  227. package/lib-commonjs/components/wrapper.js +32 -0
  228. package/lib-commonjs/components/wrapper.js.map +1 -0
  229. package/lib-commonjs/index.d.ts +10 -0
  230. package/lib-commonjs/index.js +28 -0
  231. package/lib-commonjs/index.js.map +1 -0
  232. package/lib-commonjs/typographyStyles/index.d.ts +2 -0
  233. package/lib-commonjs/typographyStyles/index.js +11 -0
  234. package/lib-commonjs/typographyStyles/index.js.map +1 -0
  235. package/lib-commonjs/typographyStyles/typographyStyles.d.ts +13 -0
  236. package/lib-commonjs/typographyStyles/typographyStyles.js +68 -0
  237. package/lib-commonjs/typographyStyles/typographyStyles.js.map +1 -0
  238. package/package.json +63 -0
package/CHANGELOG.json ADDED
@@ -0,0 +1,1510 @@
1
+ {
2
+ "name": "@fluentui/react-text",
3
+ "entries": [
4
+ {
5
+ "date": "Wed, 02 Mar 2022 04:14:58 GMT",
6
+ "tag": "@fluentui/react-text_v0.0.0-nightly-20220302-0405.1",
7
+ "version": "0.0.0-nightly-20220302-0405.1",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "email not defined",
12
+ "package": "@fluentui/react-text",
13
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec",
14
+ "comment": "Release nightly v9"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-text",
19
+ "comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1",
20
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-text",
25
+ "comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1",
26
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-text",
31
+ "comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220302-0405.1",
32
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
33
+ }
34
+ ]
35
+ }
36
+ },
37
+ {
38
+ "date": "Tue, 01 Mar 2022 02:17:39 GMT",
39
+ "tag": "@fluentui/react-text_v9.0.0-rc.4",
40
+ "version": "9.0.0-rc.4",
41
+ "comments": {
42
+ "prerelease": [
43
+ {
44
+ "author": "olfedias@microsoft.com",
45
+ "package": "@fluentui/react-text",
46
+ "commit": "084d7408855f3e52b67cbca172da1acef9dcb98f",
47
+ "comment": "fix: Add react-theme as dependency"
48
+ },
49
+ {
50
+ "author": "beachball",
51
+ "package": "@fluentui/react-text",
52
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
53
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
54
+ }
55
+ ]
56
+ }
57
+ },
58
+ {
59
+ "date": "Fri, 18 Feb 2022 13:35:36 GMT",
60
+ "tag": "@fluentui/react-text_v9.0.0-rc.3",
61
+ "version": "9.0.0-rc.3",
62
+ "comments": {
63
+ "prerelease": [
64
+ {
65
+ "author": "lingfangao@hotmail.com",
66
+ "package": "@fluentui/react-text",
67
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
68
+ "comment": "fix: Source maps contain original source code"
69
+ },
70
+ {
71
+ "author": "beachball",
72
+ "package": "@fluentui/react-text",
73
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
74
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
75
+ },
76
+ {
77
+ "author": "beachball",
78
+ "package": "@fluentui/react-text",
79
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
80
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
81
+ }
82
+ ]
83
+ }
84
+ },
85
+ {
86
+ "date": "Thu, 10 Feb 2022 08:50:58 GMT",
87
+ "tag": "@fluentui/react-text_v9.0.0-rc.1",
88
+ "version": "9.0.0-rc.1",
89
+ "comments": {
90
+ "prerelease": [
91
+ {
92
+ "author": "lingfangao@hotmail.com",
93
+ "package": "@fluentui/react-text",
94
+ "commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
95
+ "comment": "Bump Fluent UI packages to 9.0.0-rc"
96
+ },
97
+ {
98
+ "author": "behowell@microsoft.com",
99
+ "package": "@fluentui/react-text",
100
+ "commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
101
+ "comment": "BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
102
+ },
103
+ {
104
+ "author": "olfedias@microsoft.com",
105
+ "package": "@fluentui/react-text",
106
+ "commit": "a76afe26daad901ff5458ffdda7e66e600d5bcac",
107
+ "comment": "use makeStyles types from proper package"
108
+ },
109
+ {
110
+ "author": "behowell@microsoft.com",
111
+ "package": "@fluentui/react-text",
112
+ "commit": "53b01d71e335715fda91b33e3d7bbd9d471d5ed3",
113
+ "comment": "Refactor component Slot typings"
114
+ },
115
+ {
116
+ "author": "mgodbolt@microsoft.com",
117
+ "package": "@fluentui/react-text",
118
+ "commit": "839ec14849e112b85aa321d034739ec421199141",
119
+ "comment": "remove export of commons types"
120
+ },
121
+ {
122
+ "author": "Humberto.Morimoto@microsoft.com",
123
+ "package": "@fluentui/react-text",
124
+ "commit": "003de9a9527703d429690c7ab5d7c24b4038d518",
125
+ "comment": "Replacing use of functions in makeStyles with direct use of tokens."
126
+ },
127
+ {
128
+ "author": "Humberto.Morimoto@microsoft.com",
129
+ "package": "@fluentui/react-text",
130
+ "commit": "00a5d945904c896a0664de6ba72c145a255f0848",
131
+ "comment": "Updating use of tokens.fontWeight now that we don't need to use casting."
132
+ },
133
+ {
134
+ "author": "Humberto.Morimoto@microsoft.com",
135
+ "package": "@fluentui/react-text",
136
+ "commit": "e0b8e1fa6980077e7b311fd1c72c28d3e4305db0",
137
+ "comment": "Updating based on changes to composition types."
138
+ },
139
+ {
140
+ "author": "olfedias@microsoft.com",
141
+ "package": "@fluentui/react-text",
142
+ "commit": "5a6f0d55d87f70d67dd1567ce97e637e51b07863",
143
+ "comment": "use Griffel packages"
144
+ },
145
+ {
146
+ "author": "olfedias@microsoft.com",
147
+ "package": "@fluentui/react-text",
148
+ "commit": "554b6709ced97b4d04363f9d9d22b6da4d31378c",
149
+ "comment": "update styles to not use CSS shorthands"
150
+ },
151
+ {
152
+ "author": "beachball",
153
+ "package": "@fluentui/react-text",
154
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
155
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
156
+ },
157
+ {
158
+ "author": "beachball",
159
+ "package": "@fluentui/react-text",
160
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
161
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
162
+ }
163
+ ],
164
+ "none": [
165
+ {
166
+ "author": "olfedias@microsoft.com",
167
+ "package": "@fluentui/react-text",
168
+ "commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
169
+ "comment": "remove inline-style-expand-shorthand from tsconfigs"
170
+ },
171
+ {
172
+ "author": "martinhochel@microsoft.com",
173
+ "package": "@fluentui/react-text",
174
+ "commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
175
+ "comment": "chore: use storybook runner for all vNext packages"
176
+ }
177
+ ]
178
+ }
179
+ },
180
+ {
181
+ "date": "Thu, 25 Nov 2021 08:34:16 GMT",
182
+ "tag": "@fluentui/react-text_v9.0.0-beta.4",
183
+ "version": "9.0.0-beta.4",
184
+ "comments": {
185
+ "prerelease": [
186
+ {
187
+ "author": "andredias@microsoft.com",
188
+ "package": "@fluentui/react-text",
189
+ "commit": "168b9343fc93f5d188c6dbf4c9ced75f8ee4f41b",
190
+ "comment": "Migrate Text"
191
+ },
192
+ {
193
+ "author": "beachball",
194
+ "package": "@fluentui/react-text",
195
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
196
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
197
+ },
198
+ {
199
+ "author": "beachball",
200
+ "package": "@fluentui/react-text",
201
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
202
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
203
+ },
204
+ {
205
+ "author": "beachball",
206
+ "package": "@fluentui/react-text",
207
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
208
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
209
+ },
210
+ {
211
+ "author": "beachball",
212
+ "package": "@fluentui/react-text",
213
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
214
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
215
+ },
216
+ {
217
+ "author": "beachball",
218
+ "package": "@fluentui/react-text",
219
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
220
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
221
+ }
222
+ ]
223
+ }
224
+ },
225
+ {
226
+ "date": "Fri, 12 Nov 2021 13:25:08 GMT",
227
+ "tag": "@fluentui/react-text_v9.0.0-beta.3",
228
+ "version": "9.0.0-beta.3",
229
+ "comments": {
230
+ "prerelease": [
231
+ {
232
+ "author": "gcox@microsoft.com",
233
+ "package": "@fluentui/react-text",
234
+ "commit": "3d5ca9b57c3a6ed9d60a041abc1f5417686ba41e",
235
+ "comment": "Updated with codesandbox comments"
236
+ },
237
+ {
238
+ "author": "olfedias@microsoft.com",
239
+ "package": "@fluentui/react-text",
240
+ "commit": "259d0bf8475629b0b2521157a9b33e97fcf8d513",
241
+ "comment": "export static classes for components"
242
+ },
243
+ {
244
+ "author": "beachball",
245
+ "package": "@fluentui/react-text",
246
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
247
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
248
+ },
249
+ {
250
+ "author": "beachball",
251
+ "package": "@fluentui/react-text",
252
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
253
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
254
+ },
255
+ {
256
+ "author": "beachball",
257
+ "package": "@fluentui/react-text",
258
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
259
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
260
+ },
261
+ {
262
+ "author": "beachball",
263
+ "package": "@fluentui/react-text",
264
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
265
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
266
+ },
267
+ {
268
+ "author": "beachball",
269
+ "package": "@fluentui/react-text",
270
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
271
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
272
+ }
273
+ ],
274
+ "none": [
275
+ {
276
+ "author": "lingfangao@hotmail.com",
277
+ "package": "@fluentui/react-text",
278
+ "commit": "5e04b6208619318aa256768635101d5e64b96cc5",
279
+ "comment": "chore(Text): Add docs for each prop and new typography story"
280
+ },
281
+ {
282
+ "author": "lingfangao@hotmail.com",
283
+ "package": "@fluentui/react-text",
284
+ "commit": "00f70581480b536e723fb69edf0ae617beac4807",
285
+ "comment": "Remove beta release tag"
286
+ },
287
+ {
288
+ "author": "mgodbolt@microsoft.com",
289
+ "package": "@fluentui/react-text",
290
+ "commit": "7fafe76eb2c09f9d17a03c11ba73729d91ef411e",
291
+ "comment": "update docs descriptions"
292
+ }
293
+ ]
294
+ }
295
+ },
296
+ {
297
+ "date": "Wed, 27 Oct 2021 12:14:23 GMT",
298
+ "tag": "@fluentui/react-text_v9.0.0-beta.2",
299
+ "version": "9.0.0-beta.2",
300
+ "comments": {
301
+ "prerelease": [
302
+ {
303
+ "author": "peter@draxler.ml",
304
+ "package": "@fluentui/react-text",
305
+ "commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
306
+ "comment": "added styling of documentation"
307
+ },
308
+ {
309
+ "author": "beachball",
310
+ "package": "@fluentui/react-text",
311
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.2",
312
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
313
+ },
314
+ {
315
+ "author": "beachball",
316
+ "package": "@fluentui/react-text",
317
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
318
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
319
+ },
320
+ {
321
+ "author": "beachball",
322
+ "package": "@fluentui/react-text",
323
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.2",
324
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
325
+ },
326
+ {
327
+ "author": "beachball",
328
+ "package": "@fluentui/react-text",
329
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2",
330
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
331
+ },
332
+ {
333
+ "author": "beachball",
334
+ "package": "@fluentui/react-text",
335
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2",
336
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
337
+ }
338
+ ]
339
+ }
340
+ },
341
+ {
342
+ "date": "Wed, 06 Oct 2021 10:37:22 GMT",
343
+ "tag": "@fluentui/react-text_v9.0.0-beta.1",
344
+ "version": "9.0.0-beta.1",
345
+ "comments": {
346
+ "prerelease": [
347
+ {
348
+ "author": "lingfangao@hotmail.com",
349
+ "package": "@fluentui/react-text",
350
+ "comment": "Bump all v9 components to beta prerelease tag",
351
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
352
+ },
353
+ {
354
+ "author": "beachball",
355
+ "package": "@fluentui/react-text",
356
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.1",
357
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
358
+ },
359
+ {
360
+ "author": "beachball",
361
+ "package": "@fluentui/react-text",
362
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.1",
363
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
364
+ },
365
+ {
366
+ "author": "beachball",
367
+ "package": "@fluentui/react-text",
368
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.1",
369
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
370
+ },
371
+ {
372
+ "author": "beachball",
373
+ "package": "@fluentui/react-text",
374
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1",
375
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
376
+ },
377
+ {
378
+ "author": "beachball",
379
+ "package": "@fluentui/react-text",
380
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1",
381
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
382
+ }
383
+ ]
384
+ }
385
+ },
386
+ {
387
+ "date": "Tue, 05 Oct 2021 12:47:58 GMT",
388
+ "tag": "@fluentui/react-text_v9.0.0-alpha.27",
389
+ "version": "9.0.0-alpha.27",
390
+ "comments": {
391
+ "prerelease": [
392
+ {
393
+ "author": "beachball",
394
+ "package": "@fluentui/react-text",
395
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.78",
396
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
397
+ },
398
+ {
399
+ "author": "beachball",
400
+ "package": "@fluentui/react-text",
401
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.60",
402
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
403
+ },
404
+ {
405
+ "author": "beachball",
406
+ "package": "@fluentui/react-text",
407
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53",
408
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
409
+ },
410
+ {
411
+ "author": "beachball",
412
+ "package": "@fluentui/react-text",
413
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.22",
414
+ "commit": "c41b8f8996acd5b970d894fc910cc4d661f8e3cb"
415
+ }
416
+ ]
417
+ }
418
+ },
419
+ {
420
+ "date": "Tue, 05 Oct 2021 09:28:07 GMT",
421
+ "tag": "@fluentui/react-text_v9.0.0-alpha.26",
422
+ "version": "9.0.0-alpha.26",
423
+ "comments": {
424
+ "prerelease": [
425
+ {
426
+ "author": "elcraig@microsoft.com",
427
+ "package": "@fluentui/react-text",
428
+ "comment": "Add and use ForwardRefComponent helper type",
429
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
430
+ },
431
+ {
432
+ "author": "beachball",
433
+ "package": "@fluentui/react-text",
434
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.77",
435
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
436
+ },
437
+ {
438
+ "author": "beachball",
439
+ "package": "@fluentui/react-text",
440
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.56",
441
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
442
+ },
443
+ {
444
+ "author": "beachball",
445
+ "package": "@fluentui/react-text",
446
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.59",
447
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
448
+ },
449
+ {
450
+ "author": "beachball",
451
+ "package": "@fluentui/react-text",
452
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52",
453
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
454
+ },
455
+ {
456
+ "author": "beachball",
457
+ "package": "@fluentui/react-text",
458
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21",
459
+ "commit": "3b16677a03035dcf03c1297268b85c6d4bd3f839"
460
+ }
461
+ ]
462
+ }
463
+ },
464
+ {
465
+ "date": "Fri, 01 Oct 2021 14:13:08 GMT",
466
+ "tag": "@fluentui/react-text_v9.0.0-alpha.25",
467
+ "version": "9.0.0-alpha.25",
468
+ "comments": {
469
+ "prerelease": [
470
+ {
471
+ "author": "lingfangao@hotmail.com",
472
+ "package": "@fluentui/react-text",
473
+ "comment": "Bump v9 prerelease versions to rerelease",
474
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
475
+ },
476
+ {
477
+ "author": "beachball",
478
+ "package": "@fluentui/react-text",
479
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.76",
480
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
481
+ },
482
+ {
483
+ "author": "beachball",
484
+ "package": "@fluentui/react-text",
485
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.55",
486
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
487
+ },
488
+ {
489
+ "author": "beachball",
490
+ "package": "@fluentui/react-text",
491
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.58",
492
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
493
+ },
494
+ {
495
+ "author": "beachball",
496
+ "package": "@fluentui/react-text",
497
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51",
498
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
499
+ },
500
+ {
501
+ "author": "beachball",
502
+ "package": "@fluentui/react-text",
503
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20",
504
+ "commit": "4fa0856ad0353b787b8ae59229e6f64ef0719824"
505
+ }
506
+ ]
507
+ }
508
+ },
509
+ {
510
+ "date": "Wed, 29 Sep 2021 08:06:11 GMT",
511
+ "tag": "@fluentui/react-text_v9.0.0-alpha.23",
512
+ "version": "9.0.0-alpha.23",
513
+ "comments": {
514
+ "prerelease": [
515
+ {
516
+ "author": "beachball",
517
+ "package": "@fluentui/react-text",
518
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.74",
519
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
520
+ },
521
+ {
522
+ "author": "beachball",
523
+ "package": "@fluentui/react-text",
524
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.56",
525
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
526
+ },
527
+ {
528
+ "author": "beachball",
529
+ "package": "@fluentui/react-text",
530
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49",
531
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
532
+ },
533
+ {
534
+ "author": "beachball",
535
+ "package": "@fluentui/react-text",
536
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18",
537
+ "commit": "ede1575b3a5c8f893124af9415c53968564fb923"
538
+ }
539
+ ]
540
+ }
541
+ },
542
+ {
543
+ "date": "Mon, 27 Sep 2021 08:06:00 GMT",
544
+ "tag": "@fluentui/react-text_v9.0.0-alpha.22",
545
+ "version": "9.0.0-alpha.22",
546
+ "comments": {
547
+ "prerelease": [
548
+ {
549
+ "author": "beachball",
550
+ "package": "@fluentui/react-text",
551
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.73",
552
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
553
+ },
554
+ {
555
+ "author": "beachball",
556
+ "package": "@fluentui/react-text",
557
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.53",
558
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
559
+ },
560
+ {
561
+ "author": "beachball",
562
+ "package": "@fluentui/react-text",
563
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.55",
564
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
565
+ },
566
+ {
567
+ "author": "beachball",
568
+ "package": "@fluentui/react-text",
569
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48",
570
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
571
+ },
572
+ {
573
+ "author": "beachball",
574
+ "package": "@fluentui/react-text",
575
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17",
576
+ "commit": "0df6cb80c9181650bf5d6c5df233bd5e9e779a43"
577
+ }
578
+ ]
579
+ }
580
+ },
581
+ {
582
+ "date": "Fri, 24 Sep 2021 09:17:17 GMT",
583
+ "tag": "@fluentui/react-text_v9.0.0-alpha.21",
584
+ "version": "9.0.0-alpha.21",
585
+ "comments": {
586
+ "prerelease": [
587
+ {
588
+ "author": "andredias@microsoft.com",
589
+ "package": "@fluentui/react-text",
590
+ "comment": "Remove workaround for as prop with getNativeElementProps",
591
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
592
+ },
593
+ {
594
+ "author": "beachball",
595
+ "package": "@fluentui/react-text",
596
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.72",
597
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
598
+ },
599
+ {
600
+ "author": "beachball",
601
+ "package": "@fluentui/react-text",
602
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.52",
603
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
604
+ },
605
+ {
606
+ "author": "beachball",
607
+ "package": "@fluentui/react-text",
608
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.54",
609
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
610
+ },
611
+ {
612
+ "author": "beachball",
613
+ "package": "@fluentui/react-text",
614
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47",
615
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
616
+ },
617
+ {
618
+ "author": "beachball",
619
+ "package": "@fluentui/react-text",
620
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16",
621
+ "commit": "0d26909912889432060fd4c87b2f4a45017e1532"
622
+ }
623
+ ]
624
+ }
625
+ },
626
+ {
627
+ "date": "Thu, 23 Sep 2021 08:21:34 GMT",
628
+ "tag": "@fluentui/react-text_v9.0.0-alpha.20",
629
+ "version": "9.0.0-alpha.20",
630
+ "comments": {
631
+ "none": [
632
+ {
633
+ "author": "tkrasniqi@microsoft.com",
634
+ "package": "@fluentui/react-text",
635
+ "comment": "Updated storybook documentation",
636
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
637
+ }
638
+ ],
639
+ "prerelease": [
640
+ {
641
+ "author": "beachball",
642
+ "package": "@fluentui/react-text",
643
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.71",
644
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
645
+ },
646
+ {
647
+ "author": "beachball",
648
+ "package": "@fluentui/react-text",
649
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.51",
650
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
651
+ },
652
+ {
653
+ "author": "beachball",
654
+ "package": "@fluentui/react-text",
655
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.53",
656
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
657
+ },
658
+ {
659
+ "author": "beachball",
660
+ "package": "@fluentui/react-text",
661
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46",
662
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
663
+ },
664
+ {
665
+ "author": "beachball",
666
+ "package": "@fluentui/react-text",
667
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15",
668
+ "commit": "95682da34c48813f7658032ae490d21d2f363b90"
669
+ }
670
+ ]
671
+ }
672
+ },
673
+ {
674
+ "date": "Wed, 22 Sep 2021 10:10:07 GMT",
675
+ "tag": "@fluentui/react-text_v9.0.0-alpha.19",
676
+ "version": "9.0.0-alpha.19",
677
+ "comments": {
678
+ "prerelease": [
679
+ {
680
+ "author": "andredias@microsoft.com",
681
+ "package": "@fluentui/react-text",
682
+ "comment": "Migrate to simplified prop merging",
683
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
684
+ },
685
+ {
686
+ "author": "beachball",
687
+ "package": "@fluentui/react-text",
688
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.70",
689
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
690
+ },
691
+ {
692
+ "author": "beachball",
693
+ "package": "@fluentui/react-text",
694
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.50",
695
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
696
+ },
697
+ {
698
+ "author": "beachball",
699
+ "package": "@fluentui/react-text",
700
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.52",
701
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
702
+ },
703
+ {
704
+ "author": "beachball",
705
+ "package": "@fluentui/react-text",
706
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45",
707
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
708
+ },
709
+ {
710
+ "author": "beachball",
711
+ "package": "@fluentui/react-text",
712
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14",
713
+ "commit": "bc3f1ec72fc7784a558b0dd6598ee0662f4649c1"
714
+ }
715
+ ]
716
+ }
717
+ },
718
+ {
719
+ "date": "Tue, 21 Sep 2021 07:42:34 GMT",
720
+ "tag": "@fluentui/react-text_v9.0.0-alpha.18",
721
+ "version": "9.0.0-alpha.18",
722
+ "comments": {
723
+ "prerelease": [
724
+ {
725
+ "author": "beachball",
726
+ "package": "@fluentui/react-text",
727
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.69",
728
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
729
+ },
730
+ {
731
+ "author": "beachball",
732
+ "package": "@fluentui/react-text",
733
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.51",
734
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
735
+ },
736
+ {
737
+ "author": "beachball",
738
+ "package": "@fluentui/react-text",
739
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44",
740
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
741
+ },
742
+ {
743
+ "author": "beachball",
744
+ "package": "@fluentui/react-text",
745
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13",
746
+ "commit": "363765ba3d08d2facbb97fb80ab54ff27ac714fd"
747
+ }
748
+ ]
749
+ }
750
+ },
751
+ {
752
+ "date": "Mon, 20 Sep 2021 07:36:26 GMT",
753
+ "tag": "@fluentui/react-text_v9.0.0-alpha.17",
754
+ "version": "9.0.0-alpha.17",
755
+ "comments": {
756
+ "none": [
757
+ {
758
+ "author": "lingfangao@hotmail.com",
759
+ "package": "@fluentui/react-text",
760
+ "comment": "chore: use versioon eslint-plugin and react-conformance in dev dependencies",
761
+ "commit": "b8a304770f77c0353553a152dad34421070400a6"
762
+ }
763
+ ],
764
+ "prerelease": [
765
+ {
766
+ "author": "lingfangao@hotmail.com",
767
+ "package": "@fluentui/react-text",
768
+ "commit": "b8a304770f77c0353553a152dad34421070400a6",
769
+ "comment": "Bump @fluentui/react-text to v9.0.0-alpha.17"
770
+ }
771
+ ]
772
+ }
773
+ },
774
+ {
775
+ "date": "Fri, 17 Sep 2021 07:35:26 GMT",
776
+ "tag": "@fluentui/react-text_v9.0.0-alpha.16",
777
+ "version": "9.0.0-alpha.16",
778
+ "comments": {
779
+ "prerelease": [
780
+ {
781
+ "author": "Humberto.Morimoto@microsoft.com",
782
+ "package": "@fluentui/react-text",
783
+ "commit": "90d71a0914acbb73a0365d60a85237e3d58ef575",
784
+ "comment": "Bump @fluentui/react-text to v9.0.0-alpha.16"
785
+ }
786
+ ]
787
+ }
788
+ },
789
+ {
790
+ "date": "Thu, 16 Sep 2021 07:38:39 GMT",
791
+ "tag": "@fluentui/react-text_v9.0.0-alpha.15",
792
+ "version": "9.0.0-alpha.15",
793
+ "comments": {
794
+ "prerelease": [
795
+ {
796
+ "author": "behowell@microsoft.com",
797
+ "package": "@fluentui/react-text",
798
+ "commit": "fbe41e2877a20ce0f3c01b5188e17c12f941cc4c",
799
+ "comment": "Bump @fluentui/react-text to v9.0.0-alpha.15"
800
+ }
801
+ ]
802
+ }
803
+ },
804
+ {
805
+ "date": "Tue, 14 Sep 2021 20:09:02 GMT",
806
+ "tag": "@fluentui/react-text_v9.0.0-alpha.14",
807
+ "version": "9.0.0-alpha.14",
808
+ "comments": {
809
+ "prerelease": [
810
+ {
811
+ "author": "bsunderhus@microsoft.com",
812
+ "package": "@fluentui/react-text",
813
+ "commit": "10495c31fb5c5cf48b4665601a75a0cfabb6a03c",
814
+ "comment": "Bump @fluentui/react-text to v9.0.0-alpha.14"
815
+ }
816
+ ]
817
+ }
818
+ },
819
+ {
820
+ "date": "Fri, 10 Sep 2021 16:31:53 GMT",
821
+ "tag": "@fluentui/react-text_v9.0.0-alpha.13",
822
+ "version": "9.0.0-alpha.13",
823
+ "comments": {
824
+ "prerelease": [
825
+ {
826
+ "author": "lingfangao@hotmail.com",
827
+ "package": "@fluentui/react-text",
828
+ "comment": "chore(v9): Move all internal v9 dependencies from caret to fixed version",
829
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0"
830
+ },
831
+ {
832
+ "author": "lingfangao@hotmail.com",
833
+ "package": "@fluentui/react-text",
834
+ "commit": "01a06f5b2aa14ae96a2fca056d34d99a5ad124e0",
835
+ "comment": "Bump @fluentui/react-text to v9.0.0-alpha.13"
836
+ }
837
+ ]
838
+ }
839
+ },
840
+ {
841
+ "date": "Fri, 10 Sep 2021 07:39:51 GMT",
842
+ "tag": "@fluentui/react-text_v9.0.0-alpha.12",
843
+ "version": "9.0.0-alpha.12",
844
+ "comments": {
845
+ "prerelease": [
846
+ {
847
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.45",
848
+ "author": "behowell@microsoft.com",
849
+ "commit": "8700a515c7f2659761c5b53f55c32453bc3510b1",
850
+ "package": "@fluentui/react-text"
851
+ }
852
+ ]
853
+ }
854
+ },
855
+ {
856
+ "date": "Tue, 07 Sep 2021 07:34:55 GMT",
857
+ "tag": "@fluentui/react-text_v9.0.0-alpha.11",
858
+ "version": "9.0.0-alpha.11",
859
+ "comments": {
860
+ "none": [
861
+ {
862
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.6",
863
+ "author": "olfedias@microsoft.com",
864
+ "commit": "37e0f35eb706d40c4537010de97db94a831022d3",
865
+ "package": "@fluentui/react-text"
866
+ }
867
+ ]
868
+ }
869
+ },
870
+ {
871
+ "date": "Mon, 06 Sep 2021 07:34:53 GMT",
872
+ "tag": "@fluentui/react-text_v9.0.0-alpha.11",
873
+ "version": "9.0.0-alpha.11",
874
+ "comments": {
875
+ "prerelease": [
876
+ {
877
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.44",
878
+ "author": "lingfangao@hotmail.com",
879
+ "commit": "cd22a603bb20947e7d23a3357b9a535afdb5ee1d",
880
+ "package": "@fluentui/react-text"
881
+ }
882
+ ]
883
+ }
884
+ },
885
+ {
886
+ "date": "Fri, 03 Sep 2021 00:13:07 GMT",
887
+ "tag": "@fluentui/react-text_v9.0.0-alpha.10",
888
+ "version": "9.0.0-alpha.10",
889
+ "comments": {
890
+ "none": [
891
+ {
892
+ "comment": "enable makeStyles conformance tests",
893
+ "author": "olfedias@microsoft.com",
894
+ "commit": "7d246f9483660ee7a6b2a459d102d0d7cbf06695",
895
+ "package": "@fluentui/react-text"
896
+ }
897
+ ]
898
+ }
899
+ },
900
+ {
901
+ "date": "Thu, 02 Sep 2021 07:36:46 GMT",
902
+ "tag": "@fluentui/react-text_v9.0.0-alpha.10",
903
+ "version": "9.0.0-alpha.10",
904
+ "comments": {
905
+ "prerelease": [
906
+ {
907
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.43",
908
+ "author": "olfedias@microsoft.com",
909
+ "commit": "ff3225d408fa6a97628e3f08a5a11a196bef6934",
910
+ "package": "@fluentui/react-text"
911
+ }
912
+ ],
913
+ "patch": [
914
+ {
915
+ "comment": "Bump @fluentui/react-conformance to v0.4.5",
916
+ "author": "olfedias@microsoft.com",
917
+ "commit": "8f887d05e8f2fed8433b147c6e175d8297455c51",
918
+ "package": "@fluentui/react-text"
919
+ }
920
+ ]
921
+ }
922
+ },
923
+ {
924
+ "date": "Wed, 01 Sep 2021 07:39:56 GMT",
925
+ "tag": "@fluentui/react-text_v9.0.0-alpha.9",
926
+ "version": "9.0.0-alpha.9",
927
+ "comments": {
928
+ "prerelease": [
929
+ {
930
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.42",
931
+ "author": "bsunderhus@microsoft.com",
932
+ "commit": "40254a1b07bd51affd276e51af0b1d517714b45c",
933
+ "package": "@fluentui/react-text"
934
+ }
935
+ ]
936
+ }
937
+ },
938
+ {
939
+ "date": "Tue, 31 Aug 2021 07:37:47 GMT",
940
+ "tag": "@fluentui/react-text_v9.0.0-alpha.8",
941
+ "version": "9.0.0-alpha.8",
942
+ "comments": {
943
+ "prerelease": [
944
+ {
945
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.41",
946
+ "author": "lingfan.gao@microsoft.com",
947
+ "commit": "7a53d85571212d2f5b56a84fd84e29f5e1985daa",
948
+ "package": "@fluentui/react-text"
949
+ }
950
+ ]
951
+ }
952
+ },
953
+ {
954
+ "date": "Fri, 27 Aug 2021 07:33:32 GMT",
955
+ "tag": "@fluentui/react-text_v9.0.0-alpha.7",
956
+ "version": "9.0.0-alpha.7",
957
+ "comments": {
958
+ "prerelease": [
959
+ {
960
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.40",
961
+ "author": "olfedias@microsoft.com",
962
+ "commit": "a59db5b49ed755bf1b64ac0ac051d626ec50ffd3",
963
+ "package": "@fluentui/react-text"
964
+ }
965
+ ]
966
+ }
967
+ },
968
+ {
969
+ "date": "Thu, 26 Aug 2021 07:35:43 GMT",
970
+ "tag": "@fluentui/react-text_v9.0.0-alpha.6",
971
+ "version": "9.0.0-alpha.6",
972
+ "comments": {
973
+ "prerelease": [
974
+ {
975
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.39",
976
+ "author": "martinhochel@microsoft.com",
977
+ "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
978
+ "package": "@fluentui/react-text"
979
+ }
980
+ ],
981
+ "none": [
982
+ {
983
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
984
+ "author": "martinhochel@microsoft.com",
985
+ "commit": "210a7de72f25eb379bb76f76867351b7cad36ccd",
986
+ "package": "@fluentui/react-text"
987
+ }
988
+ ]
989
+ }
990
+ },
991
+ {
992
+ "date": "Tue, 24 Aug 2021 07:34:48 GMT",
993
+ "tag": "@fluentui/react-text_v9.0.0-alpha.5",
994
+ "version": "9.0.0-alpha.5",
995
+ "comments": {
996
+ "prerelease": [
997
+ {
998
+ "comment": "Updating TypeScript type-only imports/exports to use import/export type syntax.",
999
+ "author": "dzearing@hotmail.com",
1000
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
1001
+ "package": "@fluentui/react-text"
1002
+ }
1003
+ ],
1004
+ "none": [
1005
+ {
1006
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.1",
1007
+ "author": "dzearing@hotmail.com",
1008
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
1009
+ "package": "@fluentui/react-text"
1010
+ },
1011
+ {
1012
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.38",
1013
+ "author": "dzearing@hotmail.com",
1014
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
1015
+ "package": "@fluentui/react-text"
1016
+ },
1017
+ {
1018
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
1019
+ "author": "dzearing@hotmail.com",
1020
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
1021
+ "package": "@fluentui/react-text"
1022
+ },
1023
+ {
1024
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.41",
1025
+ "author": "dzearing@hotmail.com",
1026
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
1027
+ "package": "@fluentui/react-text"
1028
+ },
1029
+ {
1030
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.59",
1031
+ "author": "dzearing@hotmail.com",
1032
+ "commit": "789a3733b128569190319fce3fe2b46900b24896",
1033
+ "package": "@fluentui/react-text"
1034
+ },
1035
+ {
1036
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
1037
+ "author": "dzearing@hotmail.com",
1038
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
1039
+ "package": "@fluentui/react-text"
1040
+ },
1041
+ {
1042
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1043
+ "author": "dzearing@hotmail.com",
1044
+ "commit": "0abd957c8d4421018e6d792c2a4aa8876967392b",
1045
+ "package": "@fluentui/react-text"
1046
+ }
1047
+ ]
1048
+ }
1049
+ },
1050
+ {
1051
+ "date": "Fri, 20 Aug 2021 07:37:28 GMT",
1052
+ "tag": "@fluentui/react-text_v9.0.0-alpha.4",
1053
+ "version": "9.0.0-alpha.4",
1054
+ "comments": {
1055
+ "prerelease": [
1056
+ {
1057
+ "comment": "Update .npmignore",
1058
+ "author": "elcraig@microsoft.com",
1059
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1060
+ "package": "@fluentui/react-text"
1061
+ }
1062
+ ],
1063
+ "none": [
1064
+ {
1065
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.38",
1066
+ "author": "elcraig@microsoft.com",
1067
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1068
+ "package": "@fluentui/react-text"
1069
+ },
1070
+ {
1071
+ "comment": "Bump @fluentui/eslint-plugin to v1.4.0",
1072
+ "author": "behowell@microsoft.com",
1073
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1074
+ "package": "@fluentui/react-text"
1075
+ },
1076
+ {
1077
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.34",
1078
+ "author": "elcraig@microsoft.com",
1079
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1080
+ "package": "@fluentui/react-text"
1081
+ },
1082
+ {
1083
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-alpha.40",
1084
+ "author": "elcraig@microsoft.com",
1085
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1086
+ "package": "@fluentui/react-text"
1087
+ },
1088
+ {
1089
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-alpha.58",
1090
+ "author": "elcraig@microsoft.com",
1091
+ "commit": "8078e6915b4e74a3e1d2d53f6ff7198fd9dc2631",
1092
+ "package": "@fluentui/react-text"
1093
+ },
1094
+ {
1095
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
1096
+ "author": "behowell@microsoft.com",
1097
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1098
+ "package": "@fluentui/react-text"
1099
+ },
1100
+ {
1101
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1102
+ "author": "behowell@microsoft.com",
1103
+ "commit": "21df8406417c5c5c1d053561a498b920ac962b4b",
1104
+ "package": "@fluentui/react-text"
1105
+ }
1106
+ ]
1107
+ }
1108
+ },
1109
+ {
1110
+ "date": "Thu, 19 Aug 2021 07:41:35 GMT",
1111
+ "tag": "@fluentui/react-text_v9.0.0-alpha.3",
1112
+ "version": "9.0.0-alpha.3",
1113
+ "comments": {
1114
+ "prerelease": [
1115
+ {
1116
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.37",
1117
+ "author": "bsunderhus@microsoft.com",
1118
+ "commit": "e467d64e7d3edb2512a81efdaeca5813269039b4",
1119
+ "package": "@fluentui/react-text"
1120
+ }
1121
+ ]
1122
+ }
1123
+ },
1124
+ {
1125
+ "date": "Wed, 18 Aug 2021 07:33:54 GMT",
1126
+ "tag": "@fluentui/react-text_v9.0.0-alpha.2",
1127
+ "version": "9.0.0-alpha.2",
1128
+ "comments": {
1129
+ "none": [
1130
+ {
1131
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.36",
1132
+ "author": "martinhochel@microsoft.com",
1133
+ "commit": "5dfa622011b10aaab3ab1fb3fc2e5f77c8a13166",
1134
+ "package": "@fluentui/react-text"
1135
+ }
1136
+ ]
1137
+ }
1138
+ },
1139
+ {
1140
+ "date": "Fri, 13 Aug 2021 07:36:34 GMT",
1141
+ "tag": "@fluentui/react-text_v9.0.0-alpha.2",
1142
+ "version": "9.0.0-alpha.2",
1143
+ "comments": {
1144
+ "prerelease": [
1145
+ {
1146
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.32",
1147
+ "author": "olfedias@microsoft.com",
1148
+ "commit": "284da7c9d57b33abce253aed5fc19b02898f6e0c",
1149
+ "package": "@fluentui/react-text"
1150
+ }
1151
+ ]
1152
+ }
1153
+ },
1154
+ {
1155
+ "date": "Thu, 12 Aug 2021 07:34:46 GMT",
1156
+ "tag": "@fluentui/react-text_v9.0.0-alpha.1",
1157
+ "version": "9.0.0-alpha.1",
1158
+ "comments": {
1159
+ "prerelease": [
1160
+ {
1161
+ "comment": "Initial release",
1162
+ "author": "andredias@microsoft.com",
1163
+ "commit": "d65c09077575d1a42ae9beb9ddd8a7b94452e13b",
1164
+ "package": "@fluentui/react-text"
1165
+ }
1166
+ ]
1167
+ }
1168
+ },
1169
+ {
1170
+ "date": "Wed, 11 Aug 2021 07:34:54 GMT",
1171
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1172
+ "version": "9.0.0-alpha.0",
1173
+ "comments": {
1174
+ "prerelease": [
1175
+ {
1176
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.35",
1177
+ "author": "olfedias@microsoft.com",
1178
+ "commit": "954ba1d43684df75942a18c0ef05dc99187729ff",
1179
+ "package": "@fluentui/react-text"
1180
+ }
1181
+ ]
1182
+ }
1183
+ },
1184
+ {
1185
+ "date": "Mon, 09 Aug 2021 07:35:14 GMT",
1186
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1187
+ "version": "9.0.0-alpha.0",
1188
+ "comments": {
1189
+ "none": [
1190
+ {
1191
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.34",
1192
+ "author": "czearing@outlook.com",
1193
+ "commit": "c8aa3a59fbe9a59ca90077418d7c82de9f31ee13",
1194
+ "package": "@fluentui/react-text"
1195
+ }
1196
+ ]
1197
+ }
1198
+ },
1199
+ {
1200
+ "date": "Fri, 06 Aug 2021 07:35:14 GMT",
1201
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1202
+ "version": "9.0.0-alpha.0",
1203
+ "comments": {
1204
+ "prerelease": [
1205
+ {
1206
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.34",
1207
+ "author": "jspurlin@microsoft.com",
1208
+ "commit": "8a09087b4215a36a50b6d3478cd2b74155c9c630",
1209
+ "package": "@fluentui/react-text"
1210
+ }
1211
+ ]
1212
+ }
1213
+ },
1214
+ {
1215
+ "date": "Wed, 04 Aug 2021 07:34:12 GMT",
1216
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1217
+ "version": "9.0.0-alpha.0",
1218
+ "comments": {
1219
+ "none": [
1220
+ {
1221
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.33",
1222
+ "author": "czearing@outlook.com",
1223
+ "commit": "109e85b19d8ee37a9c31ddf8e2083471bab64526",
1224
+ "package": "@fluentui/react-text"
1225
+ }
1226
+ ]
1227
+ }
1228
+ },
1229
+ {
1230
+ "date": "Tue, 03 Aug 2021 07:39:30 GMT",
1231
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1232
+ "version": "9.0.0-alpha.0",
1233
+ "comments": {
1234
+ "patch": [
1235
+ {
1236
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.3",
1237
+ "author": "behowell@microsoft.com",
1238
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1239
+ "package": "@fluentui/react-text"
1240
+ },
1241
+ {
1242
+ "comment": "Bump @fluentui/react-conformance to v0.4.4",
1243
+ "author": "behowell@microsoft.com",
1244
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1245
+ "package": "@fluentui/react-text"
1246
+ },
1247
+ {
1248
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1249
+ "author": "behowell@microsoft.com",
1250
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1251
+ "package": "@fluentui/react-text"
1252
+ }
1253
+ ],
1254
+ "prerelease": [
1255
+ {
1256
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.33",
1257
+ "author": "behowell@microsoft.com",
1258
+ "commit": "86476ee0511ad2693c2829b959f93a87ad10f095",
1259
+ "package": "@fluentui/react-text"
1260
+ }
1261
+ ]
1262
+ }
1263
+ },
1264
+ {
1265
+ "date": "Mon, 02 Aug 2021 07:36:20 GMT",
1266
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1267
+ "version": "9.0.0-alpha.0",
1268
+ "comments": {
1269
+ "prerelease": [
1270
+ {
1271
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.32",
1272
+ "author": "lingfan.gao@microsoft.com",
1273
+ "commit": "ab0e1bafdd9ace2974b3362cd2300fb32af466fb",
1274
+ "package": "@fluentui/react-text"
1275
+ }
1276
+ ]
1277
+ }
1278
+ },
1279
+ {
1280
+ "date": "Mon, 26 Jul 2021 07:37:30 GMT",
1281
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1282
+ "version": "9.0.0-alpha.0",
1283
+ "comments": {
1284
+ "prerelease": [
1285
+ {
1286
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-alpha.31",
1287
+ "author": "miroslav.stastny@microsoft.com",
1288
+ "commit": "aa570c511fdcef015696f07182af8bb251311406",
1289
+ "package": "@fluentui/react-text"
1290
+ }
1291
+ ]
1292
+ }
1293
+ },
1294
+ {
1295
+ "date": "Fri, 23 Jul 2021 07:38:19 GMT",
1296
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1297
+ "version": "9.0.0-alpha.0",
1298
+ "comments": {
1299
+ "prerelease": [
1300
+ {
1301
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.27",
1302
+ "author": "miroslav.stastny@microsoft.com",
1303
+ "commit": "5d812148593dc574a6f3a343a5657614b4d10456",
1304
+ "package": "@fluentui/react-text"
1305
+ }
1306
+ ]
1307
+ }
1308
+ },
1309
+ {
1310
+ "date": "Thu, 22 Jul 2021 07:36:55 GMT",
1311
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1312
+ "version": "9.0.0-alpha.0",
1313
+ "comments": {
1314
+ "prerelease": [
1315
+ {
1316
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.26",
1317
+ "author": "behowell@microsoft.com",
1318
+ "commit": "2e257154d0448b8d4fd64142f93fcc9a225995cc",
1319
+ "package": "@fluentui/react-text"
1320
+ }
1321
+ ]
1322
+ }
1323
+ },
1324
+ {
1325
+ "date": "Tue, 20 Jul 2021 22:23:17 GMT",
1326
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1327
+ "version": "9.0.0-alpha.0",
1328
+ "comments": {
1329
+ "none": [
1330
+ {
1331
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.25",
1332
+ "author": "olfedias@microsoft.com",
1333
+ "commit": "eb109ce88fe81cc91338ece32be1f4e49b81a678",
1334
+ "package": "@fluentui/react-text"
1335
+ }
1336
+ ]
1337
+ }
1338
+ },
1339
+ {
1340
+ "date": "Thu, 15 Jul 2021 07:36:18 GMT",
1341
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1342
+ "version": "9.0.0-alpha.0",
1343
+ "comments": {
1344
+ "prerelease": [
1345
+ {
1346
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.25",
1347
+ "author": "bsunderhus@microsoft.com",
1348
+ "commit": "b60234948eacb8c6fa9d08ab8e98d963f583d475",
1349
+ "package": "@fluentui/react-text"
1350
+ }
1351
+ ]
1352
+ }
1353
+ },
1354
+ {
1355
+ "date": "Tue, 13 Jul 2021 22:32:58 GMT",
1356
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1357
+ "version": "9.0.0-alpha.0",
1358
+ "comments": {
1359
+ "patch": [
1360
+ {
1361
+ "comment": "Bump @fluentui/react-conformance to v0.4.3",
1362
+ "author": "elcraig@microsoft.com",
1363
+ "commit": "12b74625dec55bd1919f6370513043d87705e5ea",
1364
+ "package": "@fluentui/react-text"
1365
+ }
1366
+ ]
1367
+ }
1368
+ },
1369
+ {
1370
+ "date": "Tue, 13 Jul 2021 07:35:36 GMT",
1371
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1372
+ "version": "9.0.0-alpha.0",
1373
+ "comments": {
1374
+ "prerelease": [
1375
+ {
1376
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.24",
1377
+ "author": "behowell@microsoft.com",
1378
+ "commit": "8e5969e291bcafac21df12c9fb591bdd5654c613",
1379
+ "package": "@fluentui/react-text"
1380
+ }
1381
+ ]
1382
+ }
1383
+ },
1384
+ {
1385
+ "date": "Fri, 09 Jul 2021 07:39:31 GMT",
1386
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1387
+ "version": "9.0.0-alpha.0",
1388
+ "comments": {
1389
+ "patch": [
1390
+ {
1391
+ "comment": "Bump @fluentui/eslint-plugin to v1.3.2",
1392
+ "author": "martinhochel@microsoft.com",
1393
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1394
+ "package": "@fluentui/react-text"
1395
+ },
1396
+ {
1397
+ "comment": "Bump @fluentui/react-conformance to v0.4.2",
1398
+ "author": "martinhochel@microsoft.com",
1399
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1400
+ "package": "@fluentui/react-text"
1401
+ },
1402
+ {
1403
+ "comment": "Bump @fluentui/scripts to v1.0.0",
1404
+ "author": "martinhochel@microsoft.com",
1405
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1406
+ "package": "@fluentui/react-text"
1407
+ }
1408
+ ],
1409
+ "prerelease": [
1410
+ {
1411
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.23",
1412
+ "author": "martinhochel@microsoft.com",
1413
+ "commit": "18902eb64710aa6253a79781357b8390bb13665c",
1414
+ "package": "@fluentui/react-text"
1415
+ }
1416
+ ]
1417
+ }
1418
+ },
1419
+ {
1420
+ "date": "Fri, 02 Jul 2021 23:15:55 GMT",
1421
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1422
+ "version": "9.0.0-alpha.0",
1423
+ "comments": {
1424
+ "prerelease": [
1425
+ {
1426
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.22",
1427
+ "author": "bsunderhus@microsoft.com",
1428
+ "commit": "6c37a1cb5c312d4be8b239bfd9f6c9f28e9f0d24",
1429
+ "package": "@fluentui/react-text"
1430
+ }
1431
+ ]
1432
+ }
1433
+ },
1434
+ {
1435
+ "date": "Fri, 02 Jul 2021 07:37:06 GMT",
1436
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1437
+ "version": "9.0.0-alpha.0",
1438
+ "comments": {
1439
+ "prerelease": [
1440
+ {
1441
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.21",
1442
+ "author": "miroslav.stastny@microsoft.com",
1443
+ "commit": "7222c057ece8a528431a1860223d9d920685f975",
1444
+ "package": "@fluentui/react-text"
1445
+ }
1446
+ ]
1447
+ }
1448
+ },
1449
+ {
1450
+ "date": "Wed, 30 Jun 2021 07:38:35 GMT",
1451
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1452
+ "version": "9.0.0-alpha.0",
1453
+ "comments": {
1454
+ "prerelease": [
1455
+ {
1456
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.20",
1457
+ "author": "tristan.watanabe@gmail.com",
1458
+ "commit": "804ca93da84e19cec0737729473be5034a2e4939",
1459
+ "package": "@fluentui/react-text"
1460
+ }
1461
+ ]
1462
+ }
1463
+ },
1464
+ {
1465
+ "date": "Tue, 29 Jun 2021 07:33:32 GMT",
1466
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1467
+ "version": "9.0.0-alpha.0",
1468
+ "comments": {
1469
+ "prerelease": [
1470
+ {
1471
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.19",
1472
+ "author": "olfedias@microsoft.com",
1473
+ "commit": "073ea5f67e3088a92f68caeeca32ef96410aabc5",
1474
+ "package": "@fluentui/react-text"
1475
+ }
1476
+ ]
1477
+ }
1478
+ },
1479
+ {
1480
+ "date": "Mon, 28 Jun 2021 07:35:16 GMT",
1481
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1482
+ "version": "9.0.0-alpha.0",
1483
+ "comments": {
1484
+ "none": [
1485
+ {
1486
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.18",
1487
+ "author": "olfedias@microsoft.com",
1488
+ "commit": "bf6fd1290ea6c6861a5d80f704e0d6d0cadb71e0",
1489
+ "package": "@fluentui/react-text"
1490
+ }
1491
+ ]
1492
+ }
1493
+ },
1494
+ {
1495
+ "date": "Mon, 21 Jun 2021 07:34:33 GMT",
1496
+ "tag": "@fluentui/react-text_v9.0.0-alpha.0",
1497
+ "version": "9.0.0-alpha.0",
1498
+ "comments": {
1499
+ "none": [
1500
+ {
1501
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.18",
1502
+ "author": "miroslav.stastny@microsoft.com",
1503
+ "commit": "7301e00ef64eefcbd9f20e4ac8fd45849b3f74f3",
1504
+ "package": "@fluentui/react-text"
1505
+ }
1506
+ ]
1507
+ }
1508
+ }
1509
+ ]
1510
+ }