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