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