@fluentui/react-card 9.0.0-beta.3 → 9.0.0-beta.31

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 (178) hide show
  1. package/CHANGELOG.json +1473 -1
  2. package/CHANGELOG.md +422 -31
  3. package/README.md +68 -4
  4. package/dist/index.d.ts +286 -0
  5. package/lib/Card.js.map +1 -1
  6. package/lib/CardFooter.js.map +1 -1
  7. package/lib/CardHeader.js.map +1 -1
  8. package/lib/CardPreview.js.map +1 -1
  9. package/lib/components/Card/Card.js +8 -8
  10. package/lib/components/Card/Card.js.map +1 -1
  11. package/lib/components/Card/Card.types.js.map +1 -1
  12. package/lib/components/Card/index.js.map +1 -1
  13. package/lib/components/Card/renderCard.js +8 -8
  14. package/lib/components/Card/renderCard.js.map +1 -1
  15. package/lib/components/Card/useCard.js +31 -11
  16. package/lib/components/Card/useCard.js.map +1 -1
  17. package/lib/components/Card/useCardStyles.js +221 -25
  18. package/lib/components/Card/useCardStyles.js.map +1 -1
  19. package/lib/components/CardFooter/CardFooter.js +7 -7
  20. package/lib/components/CardFooter/CardFooter.js.map +1 -1
  21. package/lib/components/CardFooter/CardFooter.types.js.map +1 -1
  22. package/lib/components/CardFooter/index.js.map +1 -1
  23. package/lib/components/CardFooter/renderCardFooter.js +9 -9
  24. package/lib/components/CardFooter/renderCardFooter.js.map +1 -1
  25. package/lib/components/CardFooter/useCardFooter.js +10 -13
  26. package/lib/components/CardFooter/useCardFooter.js.map +1 -1
  27. package/lib/components/CardFooter/useCardFooterStyles.js +16 -10
  28. package/lib/components/CardFooter/useCardFooterStyles.js.map +1 -1
  29. package/lib/components/CardHeader/CardHeader.js +7 -7
  30. package/lib/components/CardHeader/CardHeader.js.map +1 -1
  31. package/lib/components/CardHeader/CardHeader.types.js.map +1 -1
  32. package/lib/components/CardHeader/index.js.map +1 -1
  33. package/lib/components/CardHeader/renderCardHeader.js +12 -9
  34. package/lib/components/CardHeader/renderCardHeader.js.map +1 -1
  35. package/lib/components/CardHeader/useCardHeader.js +16 -23
  36. package/lib/components/CardHeader/useCardHeader.js.map +1 -1
  37. package/lib/components/CardHeader/useCardHeaderStyles.js +54 -32
  38. package/lib/components/CardHeader/useCardHeaderStyles.js.map +1 -1
  39. package/lib/components/CardPreview/CardPreview.js +7 -7
  40. package/lib/components/CardPreview/CardPreview.js.map +1 -1
  41. package/lib/components/CardPreview/CardPreview.types.js.map +1 -1
  42. package/lib/components/CardPreview/index.js.map +1 -1
  43. package/lib/components/CardPreview/renderCardPreview.js +9 -9
  44. package/lib/components/CardPreview/renderCardPreview.js.map +1 -1
  45. package/lib/components/CardPreview/useCardPreview.js +10 -13
  46. package/lib/components/CardPreview/useCardPreview.js.map +1 -1
  47. package/lib/components/CardPreview/useCardPreviewStyles.js +17 -15
  48. package/lib/components/CardPreview/useCardPreviewStyles.js.map +1 -1
  49. package/lib/index.js +4 -4
  50. package/lib/index.js.map +1 -1
  51. package/lib-commonjs/Card.js +1 -1
  52. package/lib-commonjs/Card.js.map +1 -1
  53. package/lib-commonjs/CardFooter.js +1 -1
  54. package/lib-commonjs/CardFooter.js.map +1 -1
  55. package/lib-commonjs/CardHeader.js +1 -1
  56. package/lib-commonjs/CardHeader.js.map +1 -1
  57. package/lib-commonjs/CardPreview.js +1 -1
  58. package/lib-commonjs/CardPreview.js.map +1 -1
  59. package/lib-commonjs/components/Card/Card.js +9 -9
  60. package/lib-commonjs/components/Card/Card.js.map +1 -1
  61. package/lib-commonjs/components/Card/Card.types.js.map +1 -1
  62. package/lib-commonjs/components/Card/index.js +1 -1
  63. package/lib-commonjs/components/Card/index.js.map +1 -1
  64. package/lib-commonjs/components/Card/renderCard.js +12 -13
  65. package/lib-commonjs/components/Card/renderCard.js.map +1 -1
  66. package/lib-commonjs/components/Card/useCard.js +34 -15
  67. package/lib-commonjs/components/Card/useCard.js.map +1 -1
  68. package/lib-commonjs/components/Card/useCardStyles.js +228 -27
  69. package/lib-commonjs/components/Card/useCardStyles.js.map +1 -1
  70. package/lib-commonjs/components/CardFooter/CardFooter.js +8 -8
  71. package/lib-commonjs/components/CardFooter/CardFooter.js.map +1 -1
  72. package/lib-commonjs/components/CardFooter/CardFooter.types.js.map +1 -1
  73. package/lib-commonjs/components/CardFooter/index.js +1 -1
  74. package/lib-commonjs/components/CardFooter/index.js.map +1 -1
  75. package/lib-commonjs/components/CardFooter/renderCardFooter.js +13 -15
  76. package/lib-commonjs/components/CardFooter/renderCardFooter.js.map +1 -1
  77. package/lib-commonjs/components/CardFooter/useCardFooter.js +14 -18
  78. package/lib-commonjs/components/CardFooter/useCardFooter.js.map +1 -1
  79. package/lib-commonjs/components/CardFooter/useCardFooterStyles.js +18 -12
  80. package/lib-commonjs/components/CardFooter/useCardFooterStyles.js.map +1 -1
  81. package/lib-commonjs/components/CardHeader/CardHeader.js +8 -8
  82. package/lib-commonjs/components/CardHeader/CardHeader.js.map +1 -1
  83. package/lib-commonjs/components/CardHeader/CardHeader.types.js.map +1 -1
  84. package/lib-commonjs/components/CardHeader/index.js +1 -1
  85. package/lib-commonjs/components/CardHeader/index.js.map +1 -1
  86. package/lib-commonjs/components/CardHeader/renderCardHeader.js +16 -15
  87. package/lib-commonjs/components/CardHeader/renderCardHeader.js.map +1 -1
  88. package/lib-commonjs/components/CardHeader/useCardHeader.js +20 -29
  89. package/lib-commonjs/components/CardHeader/useCardHeader.js.map +1 -1
  90. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js +56 -34
  91. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js.map +1 -1
  92. package/lib-commonjs/components/CardPreview/CardPreview.js +8 -8
  93. package/lib-commonjs/components/CardPreview/CardPreview.js.map +1 -1
  94. package/lib-commonjs/components/CardPreview/CardPreview.types.js.map +1 -1
  95. package/lib-commonjs/components/CardPreview/index.js +1 -1
  96. package/lib-commonjs/components/CardPreview/index.js.map +1 -1
  97. package/lib-commonjs/components/CardPreview/renderCardPreview.js +13 -15
  98. package/lib-commonjs/components/CardPreview/renderCardPreview.js.map +1 -1
  99. package/lib-commonjs/components/CardPreview/useCardPreview.js +14 -18
  100. package/lib-commonjs/components/CardPreview/useCardPreview.js.map +1 -1
  101. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js +19 -17
  102. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js.map +1 -1
  103. package/lib-commonjs/index.js +140 -5
  104. package/lib-commonjs/index.js.map +1 -1
  105. package/package.json +27 -29
  106. package/assets/ai_deck_template.png +0 -0
  107. package/assets/avatar_elvia.svg +0 -9
  108. package/assets/avatar_mauricio.svg +0 -9
  109. package/assets/doc_template.png +0 -0
  110. package/assets/powerpoint_logo.svg +0 -9
  111. package/assets/sales_template.png +0 -0
  112. package/assets/word_logo.svg +0 -9
  113. package/dist/react-card.d.ts +0 -188
  114. package/lib/Card.d.ts +0 -1
  115. package/lib/CardFooter.d.ts +0 -1
  116. package/lib/CardHeader.d.ts +0 -1
  117. package/lib/CardPreview.d.ts +0 -1
  118. package/lib/common/isConformant.d.ts +0 -4
  119. package/lib/common/isConformant.js +0 -11
  120. package/lib/common/isConformant.js.map +0 -1
  121. package/lib/components/Card/Card.d.ts +0 -6
  122. package/lib/components/Card/Card.types.d.ts +0 -13
  123. package/lib/components/Card/index.d.ts +0 -5
  124. package/lib/components/Card/renderCard.d.ts +0 -5
  125. package/lib/components/Card/useCard.d.ts +0 -12
  126. package/lib/components/Card/useCardStyles.d.ts +0 -5
  127. package/lib/components/CardFooter/CardFooter.d.ts +0 -6
  128. package/lib/components/CardFooter/CardFooter.types.d.ts +0 -13
  129. package/lib/components/CardFooter/index.d.ts +0 -5
  130. package/lib/components/CardFooter/renderCardFooter.d.ts +0 -5
  131. package/lib/components/CardFooter/useCardFooter.d.ts +0 -16
  132. package/lib/components/CardFooter/useCardFooterStyles.d.ts +0 -5
  133. package/lib/components/CardHeader/CardHeader.d.ts +0 -6
  134. package/lib/components/CardHeader/CardHeader.types.d.ts +0 -17
  135. package/lib/components/CardHeader/index.d.ts +0 -5
  136. package/lib/components/CardHeader/renderCardHeader.d.ts +0 -5
  137. package/lib/components/CardHeader/useCardHeader.d.ts +0 -13
  138. package/lib/components/CardHeader/useCardHeaderStyles.d.ts +0 -5
  139. package/lib/components/CardPreview/CardPreview.d.ts +0 -6
  140. package/lib/components/CardPreview/CardPreview.types.d.ts +0 -13
  141. package/lib/components/CardPreview/index.d.ts +0 -5
  142. package/lib/components/CardPreview/renderCardPreview.d.ts +0 -5
  143. package/lib/components/CardPreview/useCardPreview.d.ts +0 -16
  144. package/lib/components/CardPreview/useCardPreviewStyles.d.ts +0 -5
  145. package/lib/index.d.ts +0 -4
  146. package/lib/tsdoc-metadata.json +0 -11
  147. package/lib-commonjs/Card.d.ts +0 -1
  148. package/lib-commonjs/CardFooter.d.ts +0 -1
  149. package/lib-commonjs/CardHeader.d.ts +0 -1
  150. package/lib-commonjs/CardPreview.d.ts +0 -1
  151. package/lib-commonjs/common/isConformant.d.ts +0 -4
  152. package/lib-commonjs/common/isConformant.js +0 -22
  153. package/lib-commonjs/common/isConformant.js.map +0 -1
  154. package/lib-commonjs/components/Card/Card.d.ts +0 -6
  155. package/lib-commonjs/components/Card/Card.types.d.ts +0 -13
  156. package/lib-commonjs/components/Card/index.d.ts +0 -5
  157. package/lib-commonjs/components/Card/renderCard.d.ts +0 -5
  158. package/lib-commonjs/components/Card/useCard.d.ts +0 -12
  159. package/lib-commonjs/components/Card/useCardStyles.d.ts +0 -5
  160. package/lib-commonjs/components/CardFooter/CardFooter.d.ts +0 -6
  161. package/lib-commonjs/components/CardFooter/CardFooter.types.d.ts +0 -13
  162. package/lib-commonjs/components/CardFooter/index.d.ts +0 -5
  163. package/lib-commonjs/components/CardFooter/renderCardFooter.d.ts +0 -5
  164. package/lib-commonjs/components/CardFooter/useCardFooter.d.ts +0 -16
  165. package/lib-commonjs/components/CardFooter/useCardFooterStyles.d.ts +0 -5
  166. package/lib-commonjs/components/CardHeader/CardHeader.d.ts +0 -6
  167. package/lib-commonjs/components/CardHeader/CardHeader.types.d.ts +0 -17
  168. package/lib-commonjs/components/CardHeader/index.d.ts +0 -5
  169. package/lib-commonjs/components/CardHeader/renderCardHeader.d.ts +0 -5
  170. package/lib-commonjs/components/CardHeader/useCardHeader.d.ts +0 -13
  171. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.d.ts +0 -5
  172. package/lib-commonjs/components/CardPreview/CardPreview.d.ts +0 -6
  173. package/lib-commonjs/components/CardPreview/CardPreview.types.d.ts +0 -13
  174. package/lib-commonjs/components/CardPreview/index.d.ts +0 -5
  175. package/lib-commonjs/components/CardPreview/renderCardPreview.d.ts +0 -5
  176. package/lib-commonjs/components/CardPreview/useCardPreview.d.ts +0 -16
  177. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.d.ts +0 -5
  178. package/lib-commonjs/index.d.ts +0 -4
package/CHANGELOG.json CHANGED
@@ -2,7 +2,1479 @@
2
2
  "name": "@fluentui/react-card",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 27 Oct 2021 12:12:23 GMT",
5
+ "date": "Wed, 02 Nov 2022 11:54:50 GMT",
6
+ "tag": "@fluentui/react-card_v9.0.0-beta.31",
7
+ "version": "9.0.0-beta.31",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "olfedias@microsoft.com",
12
+ "package": "@fluentui/react-card",
13
+ "commit": "c619ba066f11a8654e95375314824ba6b81b003e",
14
+ "comment": "chore: Update Griffel to latest version"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-card",
19
+ "comment": "Bump @fluentui/react-utilities to v9.2.0",
20
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-card",
25
+ "comment": "Bump @fluentui/react-tabster to v9.2.1",
26
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-card",
31
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.17",
32
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-card",
37
+ "comment": "Bump @fluentui/react-text to v9.1.5",
38
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-card",
43
+ "comment": "Bump @fluentui/react-button to v9.1.7",
44
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Tue, 25 Oct 2022 00:35:40 GMT",
51
+ "tag": "@fluentui/react-card_v9.0.0-beta.30",
52
+ "version": "9.0.0-beta.30",
53
+ "comments": {
54
+ "prerelease": [
55
+ {
56
+ "author": "beachball",
57
+ "package": "@fluentui/react-card",
58
+ "comment": "Bump @fluentui/react-text to v9.1.4",
59
+ "commit": "eef12b9ae58b64ff68576dc2d865b601e46c85b9"
60
+ },
61
+ {
62
+ "author": "beachball",
63
+ "package": "@fluentui/react-card",
64
+ "comment": "Bump @fluentui/react-button to v9.1.6",
65
+ "commit": "eef12b9ae58b64ff68576dc2d865b601e46c85b9"
66
+ }
67
+ ]
68
+ }
69
+ },
70
+ {
71
+ "date": "Thu, 20 Oct 2022 08:39:28 GMT",
72
+ "tag": "@fluentui/react-card_v9.0.0-beta.29",
73
+ "version": "9.0.0-beta.29",
74
+ "comments": {
75
+ "prerelease": [
76
+ {
77
+ "author": "tristan.watanabe@gmail.com",
78
+ "package": "@fluentui/react-card",
79
+ "commit": "ffad7cc2b7fd1da575db124105c4bc2dbb352cbb",
80
+ "comment": "chore: Migrate to new package structure."
81
+ },
82
+ {
83
+ "author": "mgodbolt@microsoft.com",
84
+ "package": "@fluentui/react-card",
85
+ "commit": "17096b3137d9d3e7c7443ddc3ce0738b2910a334",
86
+ "comment": "chore: Bump peer deps to support React 18"
87
+ },
88
+ {
89
+ "author": "olfedias@microsoft.com",
90
+ "package": "@fluentui/react-card",
91
+ "commit": "06865dada128321804646582f564ee86d835d174",
92
+ "comment": "chore: Update Griffel to latest version"
93
+ },
94
+ {
95
+ "author": "beachball",
96
+ "package": "@fluentui/react-card",
97
+ "comment": "Bump @fluentui/react-utilities to v9.1.2",
98
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
99
+ },
100
+ {
101
+ "author": "beachball",
102
+ "package": "@fluentui/react-card",
103
+ "comment": "Bump @fluentui/react-tabster to v9.2.0",
104
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
105
+ },
106
+ {
107
+ "author": "beachball",
108
+ "package": "@fluentui/react-card",
109
+ "comment": "Bump @fluentui/react-theme to v9.1.1",
110
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
111
+ },
112
+ {
113
+ "author": "beachball",
114
+ "package": "@fluentui/react-card",
115
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.16",
116
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
117
+ },
118
+ {
119
+ "author": "beachball",
120
+ "package": "@fluentui/react-card",
121
+ "comment": "Bump @fluentui/react-text to v9.1.3",
122
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
123
+ },
124
+ {
125
+ "author": "beachball",
126
+ "package": "@fluentui/react-card",
127
+ "comment": "Bump @fluentui/react-button to v9.1.5",
128
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
129
+ }
130
+ ]
131
+ }
132
+ },
133
+ {
134
+ "date": "Thu, 13 Oct 2022 11:02:44 GMT",
135
+ "tag": "@fluentui/react-card_v9.0.0-beta.28",
136
+ "version": "9.0.0-beta.28",
137
+ "comments": {
138
+ "prerelease": [
139
+ {
140
+ "author": "olfedias@microsoft.com",
141
+ "package": "@fluentui/react-card",
142
+ "commit": "1a527d440e0497ef8046b3ce240492241e7a04ac",
143
+ "comment": "chore: Update Griffel to latest version"
144
+ },
145
+ {
146
+ "author": "beachball",
147
+ "package": "@fluentui/react-card",
148
+ "comment": "Bump @fluentui/react-utilities to v9.1.1",
149
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
150
+ },
151
+ {
152
+ "author": "beachball",
153
+ "package": "@fluentui/react-card",
154
+ "comment": "Bump @fluentui/react-tabster to v9.1.3",
155
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
156
+ },
157
+ {
158
+ "author": "beachball",
159
+ "package": "@fluentui/react-card",
160
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.15",
161
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
162
+ },
163
+ {
164
+ "author": "beachball",
165
+ "package": "@fluentui/react-card",
166
+ "comment": "Bump @fluentui/react-text to v9.1.2",
167
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
168
+ },
169
+ {
170
+ "author": "beachball",
171
+ "package": "@fluentui/react-card",
172
+ "comment": "Bump @fluentui/react-button to v9.1.4",
173
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
174
+ }
175
+ ]
176
+ }
177
+ },
178
+ {
179
+ "date": "Mon, 03 Oct 2022 22:24:42 GMT",
180
+ "tag": "@fluentui/react-card_v9.0.0-beta.27",
181
+ "version": "9.0.0-beta.27",
182
+ "comments": {
183
+ "prerelease": [
184
+ {
185
+ "author": "beachball",
186
+ "package": "@fluentui/react-card",
187
+ "comment": "Bump @fluentui/react-tabster to v9.1.2",
188
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
189
+ },
190
+ {
191
+ "author": "beachball",
192
+ "package": "@fluentui/react-card",
193
+ "comment": "Bump @fluentui/react-button to v9.1.3",
194
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
195
+ }
196
+ ]
197
+ }
198
+ },
199
+ {
200
+ "date": "Tue, 20 Sep 2022 20:55:45 GMT",
201
+ "tag": "@fluentui/react-card_v9.0.0-beta.26",
202
+ "version": "9.0.0-beta.26",
203
+ "comments": {
204
+ "prerelease": [
205
+ {
206
+ "author": "beachball",
207
+ "package": "@fluentui/react-card",
208
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.14",
209
+ "commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
210
+ },
211
+ {
212
+ "author": "beachball",
213
+ "package": "@fluentui/react-card",
214
+ "comment": "Bump @fluentui/react-text to v9.1.1",
215
+ "commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
216
+ },
217
+ {
218
+ "author": "beachball",
219
+ "package": "@fluentui/react-card",
220
+ "comment": "Bump @fluentui/react-button to v9.1.2",
221
+ "commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
222
+ }
223
+ ]
224
+ }
225
+ },
226
+ {
227
+ "date": "Thu, 15 Sep 2022 09:49:58 GMT",
228
+ "tag": "@fluentui/react-card_v9.0.0-beta.25",
229
+ "version": "9.0.0-beta.25",
230
+ "comments": {
231
+ "none": [
232
+ {
233
+ "author": "martinhochel@microsoft.com",
234
+ "package": "@fluentui/react-card",
235
+ "commit": "e6cf183695d6d67a24e038c49a876224e5ed35e5",
236
+ "comment": "chore: update package scaffold"
237
+ },
238
+ {
239
+ "author": "martinhochel@microsoft.com",
240
+ "package": "@fluentui/react-card",
241
+ "commit": "ba9444d594f3a960cc590eae5237c08bf7c5a07f",
242
+ "comment": "chore: consume cypress.config from it's package boundary"
243
+ }
244
+ ],
245
+ "prerelease": [
246
+ {
247
+ "author": "olfedias@microsoft.com",
248
+ "package": "@fluentui/react-card",
249
+ "commit": "e610024474cfe5d45f61501a8b6a21daf4c794a2",
250
+ "comment": "chore: Update Griffel to latest version"
251
+ },
252
+ {
253
+ "author": "beachball",
254
+ "package": "@fluentui/react-card",
255
+ "comment": "Bump @fluentui/react-utilities to v9.1.0",
256
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
257
+ },
258
+ {
259
+ "author": "beachball",
260
+ "package": "@fluentui/react-card",
261
+ "comment": "Bump @fluentui/react-tabster to v9.1.1",
262
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
263
+ },
264
+ {
265
+ "author": "beachball",
266
+ "package": "@fluentui/react-card",
267
+ "comment": "Bump @fluentui/react-theme to v9.1.0",
268
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
269
+ },
270
+ {
271
+ "author": "beachball",
272
+ "package": "@fluentui/react-card",
273
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.13",
274
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
275
+ },
276
+ {
277
+ "author": "beachball",
278
+ "package": "@fluentui/react-card",
279
+ "comment": "Bump @fluentui/react-text to v9.1.0",
280
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
281
+ },
282
+ {
283
+ "author": "beachball",
284
+ "package": "@fluentui/react-card",
285
+ "comment": "Bump @fluentui/react-button to v9.1.1",
286
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
287
+ }
288
+ ]
289
+ }
290
+ },
291
+ {
292
+ "date": "Wed, 03 Aug 2022 16:03:40 GMT",
293
+ "tag": "@fluentui/react-card_v9.0.0-beta.24",
294
+ "version": "9.0.0-beta.24",
295
+ "comments": {
296
+ "none": [
297
+ {
298
+ "author": "marcosmoura@microsoft.com",
299
+ "package": "@fluentui/react-card",
300
+ "commit": "8d0180b3bbaad7459257fb8bf7f2235953d12eec",
301
+ "comment": "docs(react-card): create migration guide from v0 to v9"
302
+ },
303
+ {
304
+ "author": "popatudor@microsoft.com",
305
+ "package": "@fluentui/react-card",
306
+ "commit": "59610d4c795d76a580fbb9391e20cf1249408555",
307
+ "comment": {
308
+ "title": "",
309
+ "value": ""
310
+ }
311
+ },
312
+ {
313
+ "author": "39736248+andrefcdias@users.noreply.github.com",
314
+ "package": "@fluentui/react-card",
315
+ "commit": "770a741091a1f5d1f3b6d4bbfecdd29e333fef9c",
316
+ "comment": "chore: add missing Card components to Storybook"
317
+ }
318
+ ],
319
+ "prerelease": [
320
+ {
321
+ "author": "miroslav.stastny@microsoft.com",
322
+ "package": "@fluentui/react-card",
323
+ "commit": "08563664778fd80284561d3c9d254307a0a32362",
324
+ "comment": "chore: Bump Griffel dependencies"
325
+ },
326
+ {
327
+ "author": "beachball",
328
+ "package": "@fluentui/react-card",
329
+ "comment": "Bump @fluentui/react-tabster to v9.1.0",
330
+ "commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
331
+ },
332
+ {
333
+ "author": "beachball",
334
+ "package": "@fluentui/react-card",
335
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.12",
336
+ "commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
337
+ },
338
+ {
339
+ "author": "beachball",
340
+ "package": "@fluentui/react-card",
341
+ "comment": "Bump @fluentui/react-text to v9.0.4",
342
+ "commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
343
+ },
344
+ {
345
+ "author": "beachball",
346
+ "package": "@fluentui/react-card",
347
+ "comment": "Bump @fluentui/react-button to v9.1.0",
348
+ "commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
349
+ }
350
+ ]
351
+ }
352
+ },
353
+ {
354
+ "date": "Fri, 15 Jul 2022 18:27:26 GMT",
355
+ "tag": "@fluentui/react-card_v9.0.0-beta.23",
356
+ "version": "9.0.0-beta.23",
357
+ "comments": {
358
+ "none": [
359
+ {
360
+ "author": "39736248+andrefcdias@users.noreply.github.com",
361
+ "package": "@fluentui/react-card",
362
+ "commit": "447b211fec38e4320b13c5ee2f7449c188f8183c",
363
+ "comment": "docs: add missing info to README"
364
+ },
365
+ {
366
+ "author": "39736248+andrefcdias@users.noreply.github.com",
367
+ "package": "@fluentui/react-card",
368
+ "commit": "640408c5aef9c3037f5f6bc08069ff9d9141a7ee",
369
+ "comment": "chore: add templates to stories"
370
+ }
371
+ ]
372
+ }
373
+ },
374
+ {
375
+ "date": "Thu, 14 Jul 2022 21:21:09 GMT",
376
+ "tag": "@fluentui/react-card_v9.0.0-beta.23",
377
+ "version": "9.0.0-beta.23",
378
+ "comments": {
379
+ "prerelease": [
380
+ {
381
+ "author": "Humberto.Morimoto@microsoft.com",
382
+ "package": "@fluentui/react-card",
383
+ "commit": "802bc4e3730a88b0fc61b5bf42ef7fc6b6543fe2",
384
+ "comment": "fix: Fixing bad version bump of @fluentui/react-utilities."
385
+ },
386
+ {
387
+ "author": "beachball",
388
+ "package": "@fluentui/react-card",
389
+ "comment": "Bump @fluentui/react-utilities to v9.0.2",
390
+ "commit": "79b513146194367544160f364b0a7dd749ed93e4"
391
+ },
392
+ {
393
+ "author": "beachball",
394
+ "package": "@fluentui/react-card",
395
+ "comment": "Bump @fluentui/react-tabster to v9.0.3",
396
+ "commit": "79b513146194367544160f364b0a7dd749ed93e4"
397
+ },
398
+ {
399
+ "author": "beachball",
400
+ "package": "@fluentui/react-card",
401
+ "comment": "Bump @fluentui/react-text to v9.0.3",
402
+ "commit": "79b513146194367544160f364b0a7dd749ed93e4"
403
+ },
404
+ {
405
+ "author": "beachball",
406
+ "package": "@fluentui/react-card",
407
+ "comment": "Bump @fluentui/react-button to v9.0.3",
408
+ "commit": "79b513146194367544160f364b0a7dd749ed93e4"
409
+ }
410
+ ]
411
+ }
412
+ },
413
+ {
414
+ "date": "Thu, 14 Jul 2022 17:06:16 GMT",
415
+ "tag": "@fluentui/react-card_v9.0.0-beta.22",
416
+ "version": "9.0.0-beta.22",
417
+ "comments": {
418
+ "prerelease": [
419
+ {
420
+ "author": "39736248+andrefcdias@users.noreply.github.com",
421
+ "package": "@fluentui/react-card",
422
+ "commit": "317b411a60a53ab5c0ed6c8ea58302940e8e0158",
423
+ "comment": "BREAKING CHANGE: new structural and styling approach applied to CardHeader"
424
+ },
425
+ {
426
+ "author": "39736248+andrefcdias@users.noreply.github.com",
427
+ "package": "@fluentui/react-card",
428
+ "commit": "b61d5f07a11be23b322de7e6cc50f280fb31746d",
429
+ "comment": "feat: add `img` as allowed element for CardPreview's logo slot"
430
+ },
431
+ {
432
+ "author": "beachball",
433
+ "package": "@fluentui/react-card",
434
+ "comment": "Bump @fluentui/react-utilities to v9.0.1-0",
435
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
436
+ },
437
+ {
438
+ "author": "beachball",
439
+ "package": "@fluentui/react-card",
440
+ "comment": "Bump @fluentui/react-tabster to v9.0.2",
441
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
442
+ },
443
+ {
444
+ "author": "beachball",
445
+ "package": "@fluentui/react-card",
446
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.11",
447
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
448
+ },
449
+ {
450
+ "author": "beachball",
451
+ "package": "@fluentui/react-card",
452
+ "comment": "Bump @fluentui/react-text to v9.0.2",
453
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
454
+ },
455
+ {
456
+ "author": "beachball",
457
+ "package": "@fluentui/react-card",
458
+ "comment": "Bump @fluentui/react-button to v9.0.2",
459
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
460
+ }
461
+ ]
462
+ }
463
+ },
464
+ {
465
+ "date": "Tue, 28 Jun 2022 17:39:47 GMT",
466
+ "tag": "@fluentui/react-card_v9.0.0-beta.21",
467
+ "version": "9.0.0-beta.21",
468
+ "comments": {
469
+ "prerelease": [
470
+ {
471
+ "author": "lingfangao@hotmail.com",
472
+ "package": "@fluentui/react-card",
473
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b",
474
+ "comment": "fix: Use caret dependency range for Griffel"
475
+ },
476
+ {
477
+ "author": "beachball",
478
+ "package": "@fluentui/react-card",
479
+ "comment": "Bump @fluentui/react-tabster to v9.0.1",
480
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
481
+ },
482
+ {
483
+ "author": "beachball",
484
+ "package": "@fluentui/react-card",
485
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.10",
486
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
487
+ },
488
+ {
489
+ "author": "beachball",
490
+ "package": "@fluentui/react-card",
491
+ "comment": "Bump @fluentui/react-text to v9.0.1",
492
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
493
+ },
494
+ {
495
+ "author": "beachball",
496
+ "package": "@fluentui/react-card",
497
+ "comment": "Bump @fluentui/react-button to v9.0.1",
498
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
499
+ }
500
+ ]
501
+ }
502
+ },
503
+ {
504
+ "date": "Tue, 28 Jun 2022 15:13:27 GMT",
505
+ "tag": "@fluentui/react-card_v9.0.0-beta.20",
506
+ "version": "9.0.0-beta.20",
507
+ "comments": {
508
+ "none": [
509
+ {
510
+ "author": "mgodbolt@microsoft.com",
511
+ "package": "@fluentui/react-card",
512
+ "commit": "0bdd0010f448387293f6dc715c1749ccc3aa85d6",
513
+ "comment": "Convert card to index based stories"
514
+ },
515
+ {
516
+ "author": "39736248+andrefcdias@users.noreply.github.com",
517
+ "package": "@fluentui/react-card",
518
+ "commit": "571209f9a7d3ecdaf08f1584dc094c51db3b7a9e",
519
+ "comment": "chore: migrate to new DX"
520
+ },
521
+ {
522
+ "author": "lingfangao@hotmail.com",
523
+ "package": "@fluentui/react-card",
524
+ "commit": "2da2d47e3dac6f8f4396ab112ab80b1dd34cc9ac",
525
+ "comment": "Bump cypress to v10"
526
+ }
527
+ ],
528
+ "prerelease": [
529
+ {
530
+ "author": "39736248+andrefcdias@users.noreply.github.com",
531
+ "package": "@fluentui/react-card",
532
+ "commit": "06030b7cbf61b157df4b2a203a456aca6380ea6b",
533
+ "comment": "feat: add `orientation` prop"
534
+ },
535
+ {
536
+ "author": "39736248+andrefcdias@users.noreply.github.com",
537
+ "package": "@fluentui/react-card",
538
+ "commit": "0a35ab4703e21e5f6763b17ed33a48ad3ae4409b",
539
+ "comment": "chore: add basic API documentation"
540
+ },
541
+ {
542
+ "author": "lingfangao@hotmail.com",
543
+ "package": "@fluentui/react-card",
544
+ "commit": "675acea49c97f10837ddee9b8c4350ca27750125",
545
+ "comment": "Bump Griffel dependencies"
546
+ },
547
+ {
548
+ "author": "39736248+andrefcdias@users.noreply.github.com",
549
+ "package": "@fluentui/react-card",
550
+ "commit": "fbd2de31c257aa192dbc69d6eacda6388af06b30",
551
+ "comment": "feat: Add focus indicators"
552
+ },
553
+ {
554
+ "author": "lingfangao@hotmail.com",
555
+ "package": "@fluentui/react-card",
556
+ "commit": "e0aabd850b15adf9c151ebd4e332f7c50ad6cfdf",
557
+ "comment": "Update 9.0.0-rc dependencies to use caret range"
558
+ },
559
+ {
560
+ "author": "beachball",
561
+ "package": "@fluentui/react-card",
562
+ "comment": "Bump @fluentui/react-utilities to v9.0.0",
563
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
564
+ },
565
+ {
566
+ "author": "beachball",
567
+ "package": "@fluentui/react-card",
568
+ "comment": "Bump @fluentui/react-tabster to v9.0.0",
569
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
570
+ },
571
+ {
572
+ "author": "beachball",
573
+ "package": "@fluentui/react-card",
574
+ "comment": "Bump @fluentui/react-theme to v9.0.0",
575
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
576
+ },
577
+ {
578
+ "author": "beachball",
579
+ "package": "@fluentui/react-card",
580
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9",
581
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
582
+ },
583
+ {
584
+ "author": "beachball",
585
+ "package": "@fluentui/react-card",
586
+ "comment": "Bump @fluentui/react-text to v9.0.0",
587
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
588
+ },
589
+ {
590
+ "author": "beachball",
591
+ "package": "@fluentui/react-card",
592
+ "comment": "Bump @fluentui/react-button to v9.0.0",
593
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
594
+ }
595
+ ]
596
+ }
597
+ },
598
+ {
599
+ "date": "Thu, 23 Jun 2022 14:25:31 GMT",
600
+ "tag": "@fluentui/react-card_v9.0.0-beta.19",
601
+ "version": "9.0.0-beta.19",
602
+ "comments": {
603
+ "prerelease": [
604
+ {
605
+ "author": "beachball",
606
+ "package": "@fluentui/react-card",
607
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.14",
608
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
609
+ },
610
+ {
611
+ "author": "beachball",
612
+ "package": "@fluentui/react-card",
613
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.10",
614
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
615
+ },
616
+ {
617
+ "author": "beachball",
618
+ "package": "@fluentui/react-card",
619
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.12",
620
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
621
+ },
622
+ {
623
+ "author": "beachball",
624
+ "package": "@fluentui/react-card",
625
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.14",
626
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
627
+ }
628
+ ]
629
+ }
630
+ },
631
+ {
632
+ "date": "Tue, 31 May 2022 21:28:36 GMT",
633
+ "tag": "@fluentui/react-card_v9.0.0-beta.18",
634
+ "version": "9.0.0-beta.18",
635
+ "comments": {
636
+ "prerelease": [
637
+ {
638
+ "author": "39736248+andrefcdias@users.noreply.github.com",
639
+ "package": "@fluentui/react-card",
640
+ "commit": "8caa7bbfd4c5cb91324def7470a280ac9bf6dec8",
641
+ "comment": "feat: Add `size` property to control card padding and border radius"
642
+ },
643
+ {
644
+ "author": "olfedias@microsoft.com",
645
+ "package": "@fluentui/react-card",
646
+ "commit": "0a5e9fa77a72eecafdd07034ccdc0b95fd49877c",
647
+ "comment": "chore: Update Griffel to latest version"
648
+ },
649
+ {
650
+ "author": "beachball",
651
+ "package": "@fluentui/react-card",
652
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.10",
653
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
654
+ },
655
+ {
656
+ "author": "beachball",
657
+ "package": "@fluentui/react-card",
658
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.13",
659
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
660
+ },
661
+ {
662
+ "author": "beachball",
663
+ "package": "@fluentui/react-card",
664
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8",
665
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
666
+ },
667
+ {
668
+ "author": "beachball",
669
+ "package": "@fluentui/react-card",
670
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.11",
671
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
672
+ },
673
+ {
674
+ "author": "beachball",
675
+ "package": "@fluentui/react-card",
676
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.13",
677
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
678
+ }
679
+ ]
680
+ }
681
+ },
682
+ {
683
+ "date": "Thu, 26 May 2022 21:01:32 GMT",
684
+ "tag": "@fluentui/react-card_v9.0.0-beta.17",
685
+ "version": "9.0.0-beta.17",
686
+ "comments": {
687
+ "prerelease": [
688
+ {
689
+ "author": "beachball",
690
+ "package": "@fluentui/react-card",
691
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.12",
692
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
693
+ },
694
+ {
695
+ "author": "beachball",
696
+ "package": "@fluentui/react-card",
697
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.12",
698
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
699
+ }
700
+ ]
701
+ }
702
+ },
703
+ {
704
+ "date": "Mon, 23 May 2022 18:56:42 GMT",
705
+ "tag": "@fluentui/react-card_v9.0.0-beta.16",
706
+ "version": "9.0.0-beta.16",
707
+ "comments": {
708
+ "prerelease": [
709
+ {
710
+ "author": "esteban.230@hotmail.com",
711
+ "package": "@fluentui/react-card",
712
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
713
+ "comment": "Removing <componentName>ClassName exports."
714
+ },
715
+ {
716
+ "author": "seanmonahan@microsoft.com",
717
+ "package": "@fluentui/react-card",
718
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
719
+ "comment": "update tabster tab behaviors"
720
+ },
721
+ {
722
+ "author": "beachball",
723
+ "package": "@fluentui/react-card",
724
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.11",
725
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
726
+ },
727
+ {
728
+ "author": "beachball",
729
+ "package": "@fluentui/react-card",
730
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.9",
731
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
732
+ },
733
+ {
734
+ "author": "beachball",
735
+ "package": "@fluentui/react-card",
736
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7",
737
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
738
+ },
739
+ {
740
+ "author": "beachball",
741
+ "package": "@fluentui/react-card",
742
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.10",
743
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
744
+ },
745
+ {
746
+ "author": "beachball",
747
+ "package": "@fluentui/react-card",
748
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.11",
749
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
750
+ }
751
+ ]
752
+ }
753
+ },
754
+ {
755
+ "date": "Mon, 23 May 2022 12:14:05 GMT",
756
+ "tag": "@fluentui/react-card_v9.0.0-beta.15",
757
+ "version": "9.0.0-beta.15",
758
+ "comments": {
759
+ "prerelease": [
760
+ {
761
+ "author": "olfedias@microsoft.com",
762
+ "package": "@fluentui/react-card",
763
+ "commit": "f120fe9160ad7311a87af0cfacd8d2fb26275e34",
764
+ "comment": "chore: Update Griffel to latest version"
765
+ },
766
+ {
767
+ "author": "39736248+andrefcdias@users.noreply.github.com",
768
+ "package": "@fluentui/react-card",
769
+ "commit": "a42bebb19d1403bfbde96cfb4b09e3ce32490ec6",
770
+ "comment": "CardPreview now expands properly, all the way to the Card's edges"
771
+ },
772
+ {
773
+ "author": "39736248+andrefcdias@users.noreply.github.com",
774
+ "package": "@fluentui/react-card",
775
+ "commit": "d24b84d3239563973ed1dff9145998a4403c531e",
776
+ "comment": "fix: focus no longer being managed when using `focusMode=\"off\"`"
777
+ },
778
+ {
779
+ "author": "sarah.higley@microsoft.com",
780
+ "package": "@fluentui/react-card",
781
+ "commit": "a31441fdf2fa55f706983653febf5c318d76693d",
782
+ "comment": "remove commons from Card"
783
+ },
784
+ {
785
+ "author": "olfedias@microsoft.com",
786
+ "package": "@fluentui/react-card",
787
+ "commit": "60804cec07a495b8a5d1fc66338bf0443b212144",
788
+ "comment": "chore: Update Griffel to latest version"
789
+ },
790
+ {
791
+ "author": "beachball",
792
+ "package": "@fluentui/react-card",
793
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.9",
794
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
795
+ },
796
+ {
797
+ "author": "beachball",
798
+ "package": "@fluentui/react-card",
799
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.10",
800
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
801
+ },
802
+ {
803
+ "author": "beachball",
804
+ "package": "@fluentui/react-card",
805
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.8",
806
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
807
+ },
808
+ {
809
+ "author": "beachball",
810
+ "package": "@fluentui/react-card",
811
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6",
812
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
813
+ },
814
+ {
815
+ "author": "beachball",
816
+ "package": "@fluentui/react-card",
817
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.9",
818
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
819
+ },
820
+ {
821
+ "author": "beachball",
822
+ "package": "@fluentui/react-card",
823
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.10",
824
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
825
+ }
826
+ ]
827
+ }
828
+ },
829
+ {
830
+ "date": "Thu, 05 May 2022 18:26:29 GMT",
831
+ "tag": "@fluentui/react-card_v9.0.0-beta.14",
832
+ "version": "9.0.0-beta.14",
833
+ "comments": {
834
+ "prerelease": [
835
+ {
836
+ "author": "39736248+andrefcdias@users.noreply.github.com",
837
+ "package": "@fluentui/react-card",
838
+ "commit": "6f5126ab390def986bda1c95c1540c20e8b0ddd9",
839
+ "comment": "Added new `focusMode` property to control the focus behavior inside of the component"
840
+ },
841
+ {
842
+ "author": "beachball",
843
+ "package": "@fluentui/react-card",
844
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.8",
845
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
846
+ },
847
+ {
848
+ "author": "beachball",
849
+ "package": "@fluentui/react-card",
850
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.9",
851
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
852
+ },
853
+ {
854
+ "author": "beachball",
855
+ "package": "@fluentui/react-card",
856
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.7",
857
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
858
+ },
859
+ {
860
+ "author": "beachball",
861
+ "package": "@fluentui/react-card",
862
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5",
863
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
864
+ },
865
+ {
866
+ "author": "beachball",
867
+ "package": "@fluentui/react-card",
868
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.8",
869
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
870
+ },
871
+ {
872
+ "author": "beachball",
873
+ "package": "@fluentui/react-card",
874
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.9",
875
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
876
+ }
877
+ ]
878
+ }
879
+ },
880
+ {
881
+ "date": "Wed, 04 May 2022 13:26:38 GMT",
882
+ "tag": "@fluentui/react-card_v9.0.0-beta.13",
883
+ "version": "9.0.0-beta.13",
884
+ "comments": {
885
+ "none": [
886
+ {
887
+ "author": "tristan.watanabe@gmail.com",
888
+ "package": "@fluentui/react-card",
889
+ "commit": "b8dde556ff82051c140074a3140e83bfdd56f4dc",
890
+ "comment": "react-card: Move to new common folder."
891
+ }
892
+ ],
893
+ "prerelease": [
894
+ {
895
+ "author": "martinhochel@microsoft.com",
896
+ "package": "@fluentui/react-card",
897
+ "commit": "fd41e5b15e3a2f08245cd4e4bbcc0f07a367ce3b",
898
+ "comment": "feat: ship rolluped only dts"
899
+ },
900
+ {
901
+ "author": "beachball",
902
+ "package": "@fluentui/react-card",
903
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.7",
904
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
905
+ },
906
+ {
907
+ "author": "beachball",
908
+ "package": "@fluentui/react-card",
909
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.8",
910
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
911
+ },
912
+ {
913
+ "author": "beachball",
914
+ "package": "@fluentui/react-card",
915
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.6",
916
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
917
+ },
918
+ {
919
+ "author": "beachball",
920
+ "package": "@fluentui/react-card",
921
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.7",
922
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
923
+ },
924
+ {
925
+ "author": "beachball",
926
+ "package": "@fluentui/react-card",
927
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.8",
928
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
929
+ }
930
+ ]
931
+ }
932
+ },
933
+ {
934
+ "date": "Mon, 25 Apr 2022 09:32:19 GMT",
935
+ "tag": "@fluentui/react-card_v9.0.0-beta.12",
936
+ "version": "9.0.0-beta.12",
937
+ "comments": {
938
+ "prerelease": [
939
+ {
940
+ "author": "beachball",
941
+ "package": "@fluentui/react-card",
942
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.7",
943
+ "commit": "02ca1d3c198452c1693067f5f18bd01b2ed5d6e6"
944
+ },
945
+ {
946
+ "author": "beachball",
947
+ "package": "@fluentui/react-card",
948
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.7",
949
+ "commit": "02ca1d3c198452c1693067f5f18bd01b2ed5d6e6"
950
+ }
951
+ ]
952
+ }
953
+ },
954
+ {
955
+ "date": "Tue, 19 Apr 2022 19:17:14 GMT",
956
+ "tag": "@fluentui/react-card_v9.0.0-beta.11",
957
+ "version": "9.0.0-beta.11",
958
+ "comments": {
959
+ "none": [
960
+ {
961
+ "author": "mgodbolt@microsoft.com",
962
+ "package": "@fluentui/react-card",
963
+ "commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
964
+ "comment": {
965
+ "title": "",
966
+ "value": ""
967
+ }
968
+ },
969
+ {
970
+ "author": "elcraig@microsoft.com",
971
+ "package": "@fluentui/react-card",
972
+ "commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
973
+ "comment": "Update React dev deps and hoist them to the repo root"
974
+ },
975
+ {
976
+ "author": "39736248+andrefcdias@users.noreply.github.com",
977
+ "package": "@fluentui/react-card",
978
+ "commit": "d07a94aa25cf00c471a17883bd53f71fc1dc4d25",
979
+ "comment": "Cleanup of Card storybook"
980
+ },
981
+ {
982
+ "author": "martinhochel@microsoft.com",
983
+ "package": "@fluentui/react-card",
984
+ "commit": "320b8bbba1e498c65d011f3fae09dee98e7a11bb",
985
+ "comment": "refactor: autofix no export star at index file for cxe-prg packages"
986
+ }
987
+ ],
988
+ "prerelease": [
989
+ {
990
+ "author": "olfedias@microsoft.com",
991
+ "package": "@fluentui/react-card",
992
+ "commit": "e569d6e04d83cbcc6225e61db52ff81d2addd363",
993
+ "comment": "chore: Update Griffel to latest version"
994
+ },
995
+ {
996
+ "author": "seanmonahan@microsoft.com",
997
+ "package": "@fluentui/react-card",
998
+ "commit": "086a675fd0c648944ff4048450190a0a13467de3",
999
+ "comment": "Add static classnames to Card"
1000
+ },
1001
+ {
1002
+ "author": "beachball",
1003
+ "package": "@fluentui/react-card",
1004
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.6",
1005
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1006
+ },
1007
+ {
1008
+ "author": "beachball",
1009
+ "package": "@fluentui/react-card",
1010
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.6",
1011
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1012
+ },
1013
+ {
1014
+ "author": "beachball",
1015
+ "package": "@fluentui/react-card",
1016
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.5",
1017
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1018
+ },
1019
+ {
1020
+ "author": "beachball",
1021
+ "package": "@fluentui/react-card",
1022
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4",
1023
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1024
+ },
1025
+ {
1026
+ "author": "beachball",
1027
+ "package": "@fluentui/react-card",
1028
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.6",
1029
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1030
+ },
1031
+ {
1032
+ "author": "beachball",
1033
+ "package": "@fluentui/react-card",
1034
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.6",
1035
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1036
+ }
1037
+ ]
1038
+ }
1039
+ },
1040
+ {
1041
+ "date": "Fri, 04 Mar 2022 05:17:35 GMT",
1042
+ "tag": "@fluentui/react-card_v9.0.0-beta.10",
1043
+ "version": "9.0.0-beta.10",
1044
+ "comments": {
1045
+ "prerelease": [
1046
+ {
1047
+ "author": "dzearing@microsoft.com",
1048
+ "package": "@fluentui/react-card",
1049
+ "commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
1050
+ "comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
1051
+ },
1052
+ {
1053
+ "author": "beachball",
1054
+ "package": "@fluentui/react-card",
1055
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.5",
1056
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1057
+ },
1058
+ {
1059
+ "author": "beachball",
1060
+ "package": "@fluentui/react-card",
1061
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.5",
1062
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1063
+ },
1064
+ {
1065
+ "author": "beachball",
1066
+ "package": "@fluentui/react-card",
1067
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.4",
1068
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1069
+ },
1070
+ {
1071
+ "author": "beachball",
1072
+ "package": "@fluentui/react-card",
1073
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.5",
1074
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1075
+ },
1076
+ {
1077
+ "author": "beachball",
1078
+ "package": "@fluentui/react-card",
1079
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.5",
1080
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1081
+ }
1082
+ ]
1083
+ }
1084
+ },
1085
+ {
1086
+ "date": "Tue, 01 Mar 2022 02:17:35 GMT",
1087
+ "tag": "@fluentui/react-card_v9.0.0-beta.9",
1088
+ "version": "9.0.0-beta.9",
1089
+ "comments": {
1090
+ "prerelease": [
1091
+ {
1092
+ "author": "olfedias@microsoft.com",
1093
+ "package": "@fluentui/react-card",
1094
+ "commit": "084d7408855f3e52b67cbca172da1acef9dcb98f",
1095
+ "comment": "fix: Add react-theme as dependency"
1096
+ },
1097
+ {
1098
+ "author": "beachball",
1099
+ "package": "@fluentui/react-card",
1100
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
1101
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
1102
+ },
1103
+ {
1104
+ "author": "beachball",
1105
+ "package": "@fluentui/react-card",
1106
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.4",
1107
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
1108
+ },
1109
+ {
1110
+ "author": "beachball",
1111
+ "package": "@fluentui/react-card",
1112
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.4",
1113
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
1114
+ },
1115
+ {
1116
+ "author": "beachball",
1117
+ "package": "@fluentui/react-card",
1118
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.4",
1119
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
1120
+ }
1121
+ ]
1122
+ }
1123
+ },
1124
+ {
1125
+ "date": "Fri, 18 Feb 2022 13:35:29 GMT",
1126
+ "tag": "@fluentui/react-card_v9.0.0-beta.8",
1127
+ "version": "9.0.0-beta.8",
1128
+ "comments": {
1129
+ "prerelease": [
1130
+ {
1131
+ "author": "lingfangao@hotmail.com",
1132
+ "package": "@fluentui/react-card",
1133
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
1134
+ "comment": "fix: Source maps contain original source code"
1135
+ },
1136
+ {
1137
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1138
+ "package": "@fluentui/react-card",
1139
+ "commit": "6f39f6ae5bd33c8aa46dbb5cc1e46eded1fc2967",
1140
+ "comment": "Add new appearance property to allow for different card styles"
1141
+ },
1142
+ {
1143
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1144
+ "package": "@fluentui/react-card",
1145
+ "commit": "4a28b5a69d0e6cf53c19c5e93bc93465f9b8a132",
1146
+ "comment": "fix: top padding issues with CardPreview"
1147
+ },
1148
+ {
1149
+ "author": "beachball",
1150
+ "package": "@fluentui/react-card",
1151
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
1152
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1153
+ },
1154
+ {
1155
+ "author": "beachball",
1156
+ "package": "@fluentui/react-card",
1157
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.3",
1158
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1159
+ },
1160
+ {
1161
+ "author": "beachball",
1162
+ "package": "@fluentui/react-card",
1163
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
1164
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1165
+ },
1166
+ {
1167
+ "author": "beachball",
1168
+ "package": "@fluentui/react-card",
1169
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.3",
1170
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1171
+ },
1172
+ {
1173
+ "author": "beachball",
1174
+ "package": "@fluentui/react-card",
1175
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.3",
1176
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1177
+ }
1178
+ ]
1179
+ }
1180
+ },
1181
+ {
1182
+ "date": "Thu, 10 Feb 2022 08:51:52 GMT",
1183
+ "tag": "@fluentui/react-card_v9.0.0-beta.6",
1184
+ "version": "9.0.0-beta.6",
1185
+ "comments": {
1186
+ "prerelease": [
1187
+ {
1188
+ "author": "ololubek@microsoft.com",
1189
+ "package": "@fluentui/react-card",
1190
+ "commit": "63cbefe55e5db10eedbde19392aa8b6376d6a7f7",
1191
+ "comment": "Update react-icons usage to resizable icons"
1192
+ },
1193
+ {
1194
+ "author": "lingfangao@hotmail.com",
1195
+ "package": "@fluentui/react-card",
1196
+ "commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
1197
+ "comment": "Bump Fluent UI dependencies to 9.0.0-rc"
1198
+ },
1199
+ {
1200
+ "author": "Humberto.Morimoto@microsoft.com",
1201
+ "package": "@fluentui/react-card",
1202
+ "commit": "37772e1ef0b587bf08984dd053ebb356c57c5247",
1203
+ "comment": "react-card: Replacing use of functions in makeStyles with direct use of tokens."
1204
+ },
1205
+ {
1206
+ "author": "Humberto.Morimoto@microsoft.com",
1207
+ "package": "@fluentui/react-card",
1208
+ "commit": "e0b8e1fa6980077e7b311fd1c72c28d3e4305db0",
1209
+ "comment": "Updating based on changes to composition types."
1210
+ },
1211
+ {
1212
+ "author": "elcraig@microsoft.com",
1213
+ "package": "@fluentui/react-card",
1214
+ "commit": "d892c7f79c543b6008634ecd669b75b5108cad46",
1215
+ "comment": "Remove empty CardCommons type and outdated boilerplate comments"
1216
+ },
1217
+ {
1218
+ "author": "behowell@microsoft.com",
1219
+ "package": "@fluentui/react-card",
1220
+ "commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
1221
+ "comment": "BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
1222
+ },
1223
+ {
1224
+ "author": "olfedias@microsoft.com",
1225
+ "package": "@fluentui/react-card",
1226
+ "commit": "1249d2ee042780865e877fc2ed48f56e0eff25d1",
1227
+ "comment": "use Griffel packages"
1228
+ },
1229
+ {
1230
+ "author": "behowell@microsoft.com",
1231
+ "package": "@fluentui/react-card",
1232
+ "commit": "53b01d71e335715fda91b33e3d7bbd9d471d5ed3",
1233
+ "comment": "Refactor component Slot typings"
1234
+ },
1235
+ {
1236
+ "author": "olfedias@microsoft.com",
1237
+ "package": "@fluentui/react-card",
1238
+ "commit": "158d89b5d98e3544e06f4f09967d2af8ab43e249",
1239
+ "comment": "update styles no not use CSS shorthands"
1240
+ },
1241
+ {
1242
+ "author": "behowell@microsoft.com",
1243
+ "package": "@fluentui/react-card",
1244
+ "commit": "7cc28ed8320b00f42d91c63882f10316db2205c5",
1245
+ "comment": "Remove component's shorthandProps array"
1246
+ },
1247
+ {
1248
+ "author": "beachball",
1249
+ "package": "@fluentui/react-card",
1250
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
1251
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1252
+ },
1253
+ {
1254
+ "author": "beachball",
1255
+ "package": "@fluentui/react-card",
1256
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.1",
1257
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1258
+ },
1259
+ {
1260
+ "author": "beachball",
1261
+ "package": "@fluentui/react-card",
1262
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
1263
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1264
+ },
1265
+ {
1266
+ "author": "beachball",
1267
+ "package": "@fluentui/react-card",
1268
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.1",
1269
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1270
+ },
1271
+ {
1272
+ "author": "beachball",
1273
+ "package": "@fluentui/react-card",
1274
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.1",
1275
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1276
+ }
1277
+ ],
1278
+ "none": [
1279
+ {
1280
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1281
+ "package": "@fluentui/react-card",
1282
+ "commit": "8e04b14546f264bb197ffce70bdff8ec83762c49",
1283
+ "comment": "Add Alpha notice"
1284
+ },
1285
+ {
1286
+ "author": "martinhochel@microsoft.com",
1287
+ "package": "@fluentui/react-card",
1288
+ "commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
1289
+ "comment": "chore: use storybook runner for all vNext packages"
1290
+ },
1291
+ {
1292
+ "author": "andredias@microsoft.com",
1293
+ "package": "@fluentui/react-card",
1294
+ "commit": "c6c745b664df52f5cbdd5a190cc08cae971216e0",
1295
+ "comment": "Add component spec"
1296
+ },
1297
+ {
1298
+ "author": "olfedias@microsoft.com",
1299
+ "package": "@fluentui/react-card",
1300
+ "commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
1301
+ "comment": "remove inline-style-expand-shorthand from tsconfigs"
1302
+ },
1303
+ {
1304
+ "author": "me@levithomason.com",
1305
+ "package": "@fluentui/react-card",
1306
+ "commit": "4bd15194a66379b165043141c266faa0c1ea1502",
1307
+ "comment": "document how to import preview components"
1308
+ },
1309
+ {
1310
+ "author": "bsunderhus@microsoft.com",
1311
+ "package": "@fluentui/react-card",
1312
+ "commit": "c0d4e63ee58e60e2c6674efbacc0783cd520984e",
1313
+ "comment": "Updates components with nullRender changes"
1314
+ },
1315
+ {
1316
+ "author": "me@levithomason.com",
1317
+ "package": "@fluentui/react-card",
1318
+ "commit": "a15d363937fad523e90350458ec3e44fe7199dc0",
1319
+ "comment": "Move Storybook stories to Preview Components section"
1320
+ }
1321
+ ]
1322
+ }
1323
+ },
1324
+ {
1325
+ "date": "Thu, 25 Nov 2021 08:34:12 GMT",
1326
+ "tag": "@fluentui/react-card_v9.0.0-beta.5",
1327
+ "version": "9.0.0-beta.5",
1328
+ "comments": {
1329
+ "prerelease": [
1330
+ {
1331
+ "author": "andredias@microsoft.com",
1332
+ "package": "@fluentui/react-card",
1333
+ "commit": "5f5fb9fe289f45c7f9afe9f052c51f19cfd41160",
1334
+ "comment": "Migrate Card"
1335
+ },
1336
+ {
1337
+ "author": "beachball",
1338
+ "package": "@fluentui/react-card",
1339
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
1340
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1341
+ },
1342
+ {
1343
+ "author": "beachball",
1344
+ "package": "@fluentui/react-card",
1345
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
1346
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1347
+ },
1348
+ {
1349
+ "author": "beachball",
1350
+ "package": "@fluentui/react-card",
1351
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
1352
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1353
+ },
1354
+ {
1355
+ "author": "beachball",
1356
+ "package": "@fluentui/react-card",
1357
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
1358
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1359
+ },
1360
+ {
1361
+ "author": "beachball",
1362
+ "package": "@fluentui/react-card",
1363
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
1364
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1365
+ },
1366
+ {
1367
+ "author": "beachball",
1368
+ "package": "@fluentui/react-card",
1369
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
1370
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1371
+ },
1372
+ {
1373
+ "author": "beachball",
1374
+ "package": "@fluentui/react-card",
1375
+ "comment": "Bump @fluentui/react-text to v9.0.0-beta.4",
1376
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1377
+ },
1378
+ {
1379
+ "author": "beachball",
1380
+ "package": "@fluentui/react-card",
1381
+ "comment": "Bump @fluentui/react-button to v9.0.0-beta.5",
1382
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1383
+ }
1384
+ ]
1385
+ }
1386
+ },
1387
+ {
1388
+ "date": "Fri, 12 Nov 2021 13:25:17 GMT",
1389
+ "tag": "@fluentui/react-card_v9.0.0-beta.4",
1390
+ "version": "9.0.0-beta.4",
1391
+ "comments": {
1392
+ "none": [
1393
+ {
1394
+ "author": "mgodbolt@microsoft.com",
1395
+ "package": "@fluentui/react-card",
1396
+ "commit": "7fafe76eb2c09f9d17a03c11ba73729d91ef411e",
1397
+ "comment": "update docs descriptions"
1398
+ },
1399
+ {
1400
+ "author": "lingfangao@hotmail.com",
1401
+ "package": "@fluentui/react-card",
1402
+ "commit": "00f70581480b536e723fb69edf0ae617beac4807",
1403
+ "comment": "Remove beta release tag"
1404
+ },
1405
+ {
1406
+ "author": "mgodbolt@microsoft.com",
1407
+ "package": "@fluentui/react-card",
1408
+ "commit": "114b089957bcbf547bb8713f2bfb4811239fb5a2",
1409
+ "comment": "add default and move assets to github urls"
1410
+ }
1411
+ ],
1412
+ "prerelease": [
1413
+ {
1414
+ "author": "olfedias@microsoft.com",
1415
+ "package": "@fluentui/react-card",
1416
+ "commit": "22460e1421c0f3b2bdf9c76d80a2cb202fa30079",
1417
+ "comment": "export static classes for components"
1418
+ },
1419
+ {
1420
+ "author": "andredias@microsoft.com",
1421
+ "package": "@fluentui/react-card",
1422
+ "commit": "70e81a56249d55dae418217ddcef5d16e030862a",
1423
+ "comment": "Migrate to new useFocusableGroup usage"
1424
+ },
1425
+ {
1426
+ "author": "beachball",
1427
+ "package": "@fluentui/react-card",
1428
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
1429
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
1430
+ },
1431
+ {
1432
+ "author": "beachball",
1433
+ "package": "@fluentui/react-card",
1434
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
1435
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
1436
+ },
1437
+ {
1438
+ "author": "beachball",
1439
+ "package": "@fluentui/react-card",
1440
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.4",
1441
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
1442
+ },
1443
+ {
1444
+ "author": "beachball",
1445
+ "package": "@fluentui/react-card",
1446
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
1447
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
1448
+ },
1449
+ {
1450
+ "author": "beachball",
1451
+ "package": "@fluentui/react-card",
1452
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
1453
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
1454
+ },
1455
+ {
1456
+ "author": "beachball",
1457
+ "package": "@fluentui/react-card",
1458
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
1459
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
1460
+ },
1461
+ {
1462
+ "author": "beachball",
1463
+ "package": "@fluentui/react-card",
1464
+ "comment": "Bump @fluentui/react-text to v9.0.0-beta.3",
1465
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
1466
+ },
1467
+ {
1468
+ "author": "beachball",
1469
+ "package": "@fluentui/react-card",
1470
+ "comment": "Bump @fluentui/react-button to v9.0.0-beta.4",
1471
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
1472
+ }
1473
+ ]
1474
+ }
1475
+ },
1476
+ {
1477
+ "date": "Wed, 27 Oct 2021 12:14:15 GMT",
6
1478
  "tag": "@fluentui/react-card_v9.0.0-beta.3",
7
1479
  "version": "9.0.0-beta.3",
8
1480
  "comments": {