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

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