@fluentui/react-card 9.0.0-nightly.d730088d7f.0 → 9.0.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (191) hide show
  1. package/CHANGELOG.json +2059 -24
  2. package/CHANGELOG.md +627 -43
  3. package/README.md +68 -4
  4. package/dist/index.d.ts +389 -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 +10 -9
  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/CardContext.js +29 -0
  13. package/lib/components/Card/CardContext.js.map +1 -0
  14. package/lib/components/Card/index.js +1 -0
  15. package/lib/components/Card/index.js.map +1 -1
  16. package/lib/components/Card/renderCard.js +16 -9
  17. package/lib/components/Card/renderCard.js.map +1 -1
  18. package/lib/components/Card/useCard.js +89 -16
  19. package/lib/components/Card/useCard.js.map +1 -1
  20. package/lib/components/Card/useCardContextValue.js +8 -0
  21. package/lib/components/Card/useCardContextValue.js.map +1 -0
  22. package/lib/components/Card/useCardSelectable.js +116 -0
  23. package/lib/components/Card/useCardSelectable.js.map +1 -0
  24. package/lib/components/Card/useCardStyles.js +329 -34
  25. package/lib/components/Card/useCardStyles.js.map +1 -1
  26. package/lib/components/CardFooter/CardFooter.js +7 -8
  27. package/lib/components/CardFooter/CardFooter.js.map +1 -1
  28. package/lib/components/CardFooter/CardFooter.types.js.map +1 -1
  29. package/lib/components/CardFooter/index.js.map +1 -1
  30. package/lib/components/CardFooter/renderCardFooter.js +11 -10
  31. package/lib/components/CardFooter/renderCardFooter.js.map +1 -1
  32. package/lib/components/CardFooter/useCardFooter.js +10 -14
  33. package/lib/components/CardFooter/useCardFooter.js.map +1 -1
  34. package/lib/components/CardFooter/useCardFooterStyles.js +20 -20
  35. package/lib/components/CardFooter/useCardFooterStyles.js.map +1 -1
  36. package/lib/components/CardHeader/CardHeader.js +7 -8
  37. package/lib/components/CardHeader/CardHeader.js.map +1 -1
  38. package/lib/components/CardHeader/CardHeader.types.js.map +1 -1
  39. package/lib/components/CardHeader/index.js.map +1 -1
  40. package/lib/components/CardHeader/renderCardHeader.js +17 -10
  41. package/lib/components/CardHeader/renderCardHeader.js.map +1 -1
  42. package/lib/components/CardHeader/useCardHeader.js +40 -25
  43. package/lib/components/CardHeader/useCardHeader.js.map +1 -1
  44. package/lib/components/CardHeader/useCardHeaderStyles.js +53 -40
  45. package/lib/components/CardHeader/useCardHeaderStyles.js.map +1 -1
  46. package/lib/components/CardPreview/CardPreview.js +7 -8
  47. package/lib/components/CardPreview/CardPreview.js.map +1 -1
  48. package/lib/components/CardPreview/CardPreview.types.js.map +1 -1
  49. package/lib/components/CardPreview/index.js.map +1 -1
  50. package/lib/components/CardPreview/renderCardPreview.js +11 -10
  51. package/lib/components/CardPreview/renderCardPreview.js.map +1 -1
  52. package/lib/components/CardPreview/useCardPreview.js +42 -15
  53. package/lib/components/CardPreview/useCardPreview.js.map +1 -1
  54. package/lib/components/CardPreview/useCardPreviewStyles.js +24 -28
  55. package/lib/components/CardPreview/useCardPreviewStyles.js.map +1 -1
  56. package/lib/index.js +5 -4
  57. package/lib/index.js.map +1 -1
  58. package/lib-commonjs/Card.js +1 -3
  59. package/lib-commonjs/Card.js.map +1 -1
  60. package/lib-commonjs/CardFooter.js +1 -3
  61. package/lib-commonjs/CardFooter.js.map +1 -1
  62. package/lib-commonjs/CardHeader.js +1 -3
  63. package/lib-commonjs/CardHeader.js.map +1 -1
  64. package/lib-commonjs/CardPreview.js +1 -3
  65. package/lib-commonjs/CardPreview.js.map +1 -1
  66. package/lib-commonjs/components/Card/Card.js +11 -15
  67. package/lib-commonjs/components/Card/Card.js.map +1 -1
  68. package/lib-commonjs/components/Card/Card.types.js.map +1 -1
  69. package/lib-commonjs/components/Card/CardContext.js +36 -0
  70. package/lib-commonjs/components/Card/CardContext.js.map +1 -0
  71. package/lib-commonjs/components/Card/index.js +2 -7
  72. package/lib-commonjs/components/Card/index.js.map +1 -1
  73. package/lib-commonjs/components/Card/renderCard.js +20 -18
  74. package/lib-commonjs/components/Card/renderCard.js.map +1 -1
  75. package/lib-commonjs/components/Card/useCard.js +91 -23
  76. package/lib-commonjs/components/Card/useCard.js.map +1 -1
  77. package/lib-commonjs/components/Card/useCardContextValue.js +15 -0
  78. package/lib-commonjs/components/Card/useCardContextValue.js.map +1 -0
  79. package/lib-commonjs/components/Card/useCardSelectable.js +123 -0
  80. package/lib-commonjs/components/Card/useCardSelectable.js.map +1 -0
  81. package/lib-commonjs/components/Card/useCardStyles.js +331 -39
  82. package/lib-commonjs/components/Card/useCardStyles.js.map +1 -1
  83. package/lib-commonjs/components/CardFooter/CardFooter.js +8 -14
  84. package/lib-commonjs/components/CardFooter/CardFooter.js.map +1 -1
  85. package/lib-commonjs/components/CardFooter/CardFooter.types.js.map +1 -1
  86. package/lib-commonjs/components/CardFooter/index.js +1 -7
  87. package/lib-commonjs/components/CardFooter/index.js.map +1 -1
  88. package/lib-commonjs/components/CardFooter/renderCardFooter.js +15 -20
  89. package/lib-commonjs/components/CardFooter/renderCardFooter.js.map +1 -1
  90. package/lib-commonjs/components/CardFooter/useCardFooter.js +13 -21
  91. package/lib-commonjs/components/CardFooter/useCardFooter.js.map +1 -1
  92. package/lib-commonjs/components/CardFooter/useCardFooterStyles.js +22 -25
  93. package/lib-commonjs/components/CardFooter/useCardFooterStyles.js.map +1 -1
  94. package/lib-commonjs/components/CardHeader/CardHeader.js +8 -14
  95. package/lib-commonjs/components/CardHeader/CardHeader.js.map +1 -1
  96. package/lib-commonjs/components/CardHeader/CardHeader.types.js.map +1 -1
  97. package/lib-commonjs/components/CardHeader/index.js +1 -7
  98. package/lib-commonjs/components/CardHeader/index.js.map +1 -1
  99. package/lib-commonjs/components/CardHeader/renderCardHeader.js +21 -20
  100. package/lib-commonjs/components/CardHeader/renderCardHeader.js.map +1 -1
  101. package/lib-commonjs/components/CardHeader/useCardHeader.js +43 -33
  102. package/lib-commonjs/components/CardHeader/useCardHeader.js.map +1 -1
  103. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js +55 -45
  104. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js.map +1 -1
  105. package/lib-commonjs/components/CardPreview/CardPreview.js +8 -14
  106. package/lib-commonjs/components/CardPreview/CardPreview.js.map +1 -1
  107. package/lib-commonjs/components/CardPreview/CardPreview.types.js.map +1 -1
  108. package/lib-commonjs/components/CardPreview/index.js +1 -7
  109. package/lib-commonjs/components/CardPreview/index.js.map +1 -1
  110. package/lib-commonjs/components/CardPreview/renderCardPreview.js +15 -20
  111. package/lib-commonjs/components/CardPreview/renderCardPreview.js.map +1 -1
  112. package/lib-commonjs/components/CardPreview/useCardPreview.js +44 -21
  113. package/lib-commonjs/components/CardPreview/useCardPreview.js.map +1 -1
  114. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js +26 -33
  115. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js.map +1 -1
  116. package/lib-commonjs/index.js +150 -10
  117. package/lib-commonjs/index.js.map +1 -1
  118. package/package.json +30 -30
  119. package/assets/ai_deck_template.png +0 -0
  120. package/assets/avatar_elvia.svg +0 -9
  121. package/assets/avatar_mauricio.svg +0 -9
  122. package/assets/doc_template.png +0 -0
  123. package/assets/powerpoint_logo.svg +0 -9
  124. package/assets/sales_template.png +0 -0
  125. package/assets/word_logo.svg +0 -9
  126. package/dist/react-card.d.ts +0 -188
  127. package/lib/Card.d.ts +0 -1
  128. package/lib/CardFooter.d.ts +0 -1
  129. package/lib/CardHeader.d.ts +0 -1
  130. package/lib/CardPreview.d.ts +0 -1
  131. package/lib/common/isConformant.d.ts +0 -4
  132. package/lib/common/isConformant.js +0 -11
  133. package/lib/common/isConformant.js.map +0 -1
  134. package/lib/components/Card/Card.d.ts +0 -6
  135. package/lib/components/Card/Card.types.d.ts +0 -13
  136. package/lib/components/Card/index.d.ts +0 -5
  137. package/lib/components/Card/renderCard.d.ts +0 -5
  138. package/lib/components/Card/useCard.d.ts +0 -12
  139. package/lib/components/Card/useCardStyles.d.ts +0 -5
  140. package/lib/components/CardFooter/CardFooter.d.ts +0 -6
  141. package/lib/components/CardFooter/CardFooter.types.d.ts +0 -13
  142. package/lib/components/CardFooter/index.d.ts +0 -5
  143. package/lib/components/CardFooter/renderCardFooter.d.ts +0 -5
  144. package/lib/components/CardFooter/useCardFooter.d.ts +0 -16
  145. package/lib/components/CardFooter/useCardFooterStyles.d.ts +0 -5
  146. package/lib/components/CardHeader/CardHeader.d.ts +0 -6
  147. package/lib/components/CardHeader/CardHeader.types.d.ts +0 -17
  148. package/lib/components/CardHeader/index.d.ts +0 -5
  149. package/lib/components/CardHeader/renderCardHeader.d.ts +0 -5
  150. package/lib/components/CardHeader/useCardHeader.d.ts +0 -13
  151. package/lib/components/CardHeader/useCardHeaderStyles.d.ts +0 -5
  152. package/lib/components/CardPreview/CardPreview.d.ts +0 -6
  153. package/lib/components/CardPreview/CardPreview.types.d.ts +0 -13
  154. package/lib/components/CardPreview/index.d.ts +0 -5
  155. package/lib/components/CardPreview/renderCardPreview.d.ts +0 -5
  156. package/lib/components/CardPreview/useCardPreview.d.ts +0 -16
  157. package/lib/components/CardPreview/useCardPreviewStyles.d.ts +0 -5
  158. package/lib/index.d.ts +0 -4
  159. package/lib/tsdoc-metadata.json +0 -11
  160. package/lib-commonjs/Card.d.ts +0 -1
  161. package/lib-commonjs/CardFooter.d.ts +0 -1
  162. package/lib-commonjs/CardHeader.d.ts +0 -1
  163. package/lib-commonjs/CardPreview.d.ts +0 -1
  164. package/lib-commonjs/common/isConformant.d.ts +0 -4
  165. package/lib-commonjs/common/isConformant.js +0 -22
  166. package/lib-commonjs/common/isConformant.js.map +0 -1
  167. package/lib-commonjs/components/Card/Card.d.ts +0 -6
  168. package/lib-commonjs/components/Card/Card.types.d.ts +0 -13
  169. package/lib-commonjs/components/Card/index.d.ts +0 -5
  170. package/lib-commonjs/components/Card/renderCard.d.ts +0 -5
  171. package/lib-commonjs/components/Card/useCard.d.ts +0 -12
  172. package/lib-commonjs/components/Card/useCardStyles.d.ts +0 -5
  173. package/lib-commonjs/components/CardFooter/CardFooter.d.ts +0 -6
  174. package/lib-commonjs/components/CardFooter/CardFooter.types.d.ts +0 -13
  175. package/lib-commonjs/components/CardFooter/index.d.ts +0 -5
  176. package/lib-commonjs/components/CardFooter/renderCardFooter.d.ts +0 -5
  177. package/lib-commonjs/components/CardFooter/useCardFooter.d.ts +0 -16
  178. package/lib-commonjs/components/CardFooter/useCardFooterStyles.d.ts +0 -5
  179. package/lib-commonjs/components/CardHeader/CardHeader.d.ts +0 -6
  180. package/lib-commonjs/components/CardHeader/CardHeader.types.d.ts +0 -17
  181. package/lib-commonjs/components/CardHeader/index.d.ts +0 -5
  182. package/lib-commonjs/components/CardHeader/renderCardHeader.d.ts +0 -5
  183. package/lib-commonjs/components/CardHeader/useCardHeader.d.ts +0 -13
  184. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.d.ts +0 -5
  185. package/lib-commonjs/components/CardPreview/CardPreview.d.ts +0 -6
  186. package/lib-commonjs/components/CardPreview/CardPreview.types.d.ts +0 -13
  187. package/lib-commonjs/components/CardPreview/index.d.ts +0 -5
  188. package/lib-commonjs/components/CardPreview/renderCardPreview.d.ts +0 -5
  189. package/lib-commonjs/components/CardPreview/useCardPreview.d.ts +0 -16
  190. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.d.ts +0 -5
  191. package/lib-commonjs/index.d.ts +0 -4
package/CHANGELOG.json CHANGED
@@ -2,70 +2,2105 @@
2
2
  "name": "@fluentui/react-card",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 20 Oct 2021 09:19:30 GMT",
6
- "tag": "@fluentui/react-card_v9.0.0-nightly.d730088d7f.0",
7
- "version": "9.0.0-nightly.d730088d7f.0",
5
+ "date": "Wed, 08 Mar 2023 17:38:56 GMT",
6
+ "tag": "@fluentui/react-card_v9.0.0-rc.1",
7
+ "version": "9.0.0-rc.1",
8
8
  "comments": {
9
+ "none": [
10
+ {
11
+ "author": "martinhochel@microsoft.com",
12
+ "package": "@fluentui/react-card",
13
+ "commit": "677a67b551966986db34a6fac608cb89ee150471",
14
+ "comment": "style: apply prettier 2.3-2.8 formatting on whole codebase"
15
+ }
16
+ ],
17
+ "prerelease": [
18
+ {
19
+ "author": "marcosvmmoura@gmail.com",
20
+ "package": "@fluentui/react-card",
21
+ "commit": "30ad74d01e550256a7f62dd8760d393d54473959",
22
+ "comment": "feat: bump to release candidate"
23
+ },
24
+ {
25
+ "author": "beachball",
26
+ "package": "@fluentui/react-card",
27
+ "comment": "Bump @fluentui/react-tabster to v9.5.4",
28
+ "commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56"
29
+ },
30
+ {
31
+ "author": "beachball",
32
+ "package": "@fluentui/react-card",
33
+ "comment": "Bump @fluentui/react-utilities to v9.6.1",
34
+ "commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56"
35
+ },
36
+ {
37
+ "author": "beachball",
38
+ "package": "@fluentui/react-card",
39
+ "comment": "Bump @fluentui/react-button to v9.3.0",
40
+ "commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56"
41
+ }
42
+ ]
43
+ }
44
+ },
45
+ {
46
+ "date": "Wed, 22 Feb 2023 23:06:04 GMT",
47
+ "tag": "@fluentui/react-card_v9.0.0-beta.47",
48
+ "version": "9.0.0-beta.47",
49
+ "comments": {
50
+ "prerelease": [
51
+ {
52
+ "author": "marcosvmmoura@gmail.com",
53
+ "package": "@fluentui/react-card",
54
+ "commit": "9ee6caa17f745e014ecba467a4528181ae49be30",
55
+ "comment": "fix: allow elements of card to grow to fill the available space"
56
+ }
57
+ ]
58
+ }
59
+ },
60
+ {
61
+ "date": "Wed, 15 Feb 2023 11:44:52 GMT",
62
+ "tag": "@fluentui/react-card_v9.0.0-beta.46",
63
+ "version": "9.0.0-beta.46",
64
+ "comments": {
65
+ "prerelease": [
66
+ {
67
+ "author": "beachball",
68
+ "package": "@fluentui/react-card",
69
+ "comment": "Bump @fluentui/react-tabster to v9.5.3",
70
+ "commit": "087d981aab96bef2e332a373069a19bc702a7ca2"
71
+ },
72
+ {
73
+ "author": "beachball",
74
+ "package": "@fluentui/react-card",
75
+ "comment": "Bump @fluentui/react-utilities to v9.6.0",
76
+ "commit": "087d981aab96bef2e332a373069a19bc702a7ca2"
77
+ },
78
+ {
79
+ "author": "beachball",
80
+ "package": "@fluentui/react-card",
81
+ "comment": "Bump @fluentui/react-button to v9.2.5",
82
+ "commit": "087d981aab96bef2e332a373069a19bc702a7ca2"
83
+ }
84
+ ]
85
+ }
86
+ },
87
+ {
88
+ "date": "Mon, 13 Feb 2023 23:43:14 GMT",
89
+ "tag": "@fluentui/react-card_v9.0.0-beta.45",
90
+ "version": "9.0.0-beta.45",
91
+ "comments": {
92
+ "prerelease": [
93
+ {
94
+ "author": "beachball",
95
+ "package": "@fluentui/react-card",
96
+ "comment": "Bump @fluentui/react-tabster to v9.5.2",
97
+ "commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513"
98
+ },
99
+ {
100
+ "author": "beachball",
101
+ "package": "@fluentui/react-card",
102
+ "comment": "Bump @fluentui/react-utilities to v9.5.3",
103
+ "commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513"
104
+ },
105
+ {
106
+ "author": "beachball",
107
+ "package": "@fluentui/react-card",
108
+ "comment": "Bump @fluentui/react-button to v9.2.4",
109
+ "commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513"
110
+ }
111
+ ]
112
+ }
113
+ },
114
+ {
115
+ "date": "Fri, 10 Feb 2023 08:49:58 GMT",
116
+ "tag": "@fluentui/react-card_v9.0.0-beta.44",
117
+ "version": "9.0.0-beta.44",
118
+ "comments": {
119
+ "prerelease": [
120
+ {
121
+ "author": "marcosvmmoura@gmail.com",
122
+ "package": "@fluentui/react-card",
123
+ "commit": "43a79058970c5e18c912b1a5a47e776ad8b72465",
124
+ "comment": "fix: keyboard navigation not working for select elements"
125
+ },
126
+ {
127
+ "author": "beachball",
128
+ "package": "@fluentui/react-card",
129
+ "comment": "Bump @fluentui/react-tabster to v9.5.1",
130
+ "commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931"
131
+ },
132
+ {
133
+ "author": "beachball",
134
+ "package": "@fluentui/react-card",
135
+ "comment": "Bump @fluentui/react-utilities to v9.5.2",
136
+ "commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931"
137
+ },
138
+ {
139
+ "author": "beachball",
140
+ "package": "@fluentui/react-card",
141
+ "comment": "Bump @fluentui/react-button to v9.2.3",
142
+ "commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931"
143
+ }
144
+ ]
145
+ }
146
+ },
147
+ {
148
+ "date": "Tue, 07 Feb 2023 14:13:09 GMT",
149
+ "tag": "@fluentui/react-card_v9.0.0-beta.43",
150
+ "version": "9.0.0-beta.43",
151
+ "comments": {
152
+ "prerelease": [
153
+ {
154
+ "author": "marcosvmmoura@gmail.com",
155
+ "package": "@fluentui/react-card",
156
+ "commit": "24ed48c6ff8d0340314931cfecd74e3265b47148",
157
+ "comment": "docs: improve API documentation of card props"
158
+ },
159
+ {
160
+ "author": "beachball",
161
+ "package": "@fluentui/react-card",
162
+ "comment": "Bump @fluentui/react-tabster to v9.5.0",
163
+ "commit": "8a1405562b3328c408f15e3bf511d3eb6a0c0e66"
164
+ },
165
+ {
166
+ "author": "beachball",
167
+ "package": "@fluentui/react-card",
168
+ "comment": "Bump @fluentui/react-button to v9.2.2",
169
+ "commit": "8a1405562b3328c408f15e3bf511d3eb6a0c0e66"
170
+ }
171
+ ],
172
+ "none": [
173
+ {
174
+ "author": "marcosvmmoura@gmail.com",
175
+ "package": "@fluentui/react-card",
176
+ "commit": "0cbf85cf12a08ff04ac1807a49ca469f92330211",
177
+ "comment": "docs: improve a11y of card storybook examples"
178
+ }
179
+ ]
180
+ }
181
+ },
182
+ {
183
+ "date": "Tue, 31 Jan 2023 19:53:58 GMT",
184
+ "tag": "@fluentui/react-card_v9.0.0-beta.42",
185
+ "version": "9.0.0-beta.42",
186
+ "comments": {
187
+ "prerelease": [
188
+ {
189
+ "author": "beachball",
190
+ "package": "@fluentui/react-card",
191
+ "comment": "Bump @fluentui/react-tabster to v9.4.2",
192
+ "commit": "794d9e845cb952f597ba786e70cd8d248be62746"
193
+ },
194
+ {
195
+ "author": "beachball",
196
+ "package": "@fluentui/react-card",
197
+ "comment": "Bump @fluentui/react-utilities to v9.5.1",
198
+ "commit": "794d9e845cb952f597ba786e70cd8d248be62746"
199
+ },
200
+ {
201
+ "author": "beachball",
202
+ "package": "@fluentui/react-card",
203
+ "comment": "Bump @fluentui/react-button to v9.2.1",
204
+ "commit": "794d9e845cb952f597ba786e70cd8d248be62746"
205
+ }
206
+ ]
207
+ }
208
+ },
209
+ {
210
+ "date": "Thu, 26 Jan 2023 13:31:03 GMT",
211
+ "tag": "@fluentui/react-card_v9.0.0-beta.41",
212
+ "version": "9.0.0-beta.41",
213
+ "comments": {
214
+ "prerelease": [
215
+ {
216
+ "author": "beachball",
217
+ "package": "@fluentui/react-card",
218
+ "comment": "Bump @fluentui/react-tabster to v9.4.1",
219
+ "commit": "403e1370f1effca7d3db131eda381abf31cf66b1"
220
+ },
221
+ {
222
+ "author": "beachball",
223
+ "package": "@fluentui/react-card",
224
+ "comment": "Bump @fluentui/react-utilities to v9.5.0",
225
+ "commit": "403e1370f1effca7d3db131eda381abf31cf66b1"
226
+ },
227
+ {
228
+ "author": "beachball",
229
+ "package": "@fluentui/react-card",
230
+ "comment": "Bump @fluentui/react-button to v9.2.0",
231
+ "commit": "403e1370f1effca7d3db131eda381abf31cf66b1"
232
+ }
233
+ ]
234
+ }
235
+ },
236
+ {
237
+ "date": "Wed, 18 Jan 2023 16:32:57 GMT",
238
+ "tag": "@fluentui/react-card_v9.0.0-beta.40",
239
+ "version": "9.0.0-beta.40",
240
+ "comments": {
241
+ "prerelease": [
242
+ {
243
+ "author": "beachball",
244
+ "package": "@fluentui/react-card",
245
+ "comment": "Bump @fluentui/react-tabster to v9.4.0",
246
+ "commit": "13cf1d07a6df4617106c731ba0379b6102a08104"
247
+ },
248
+ {
249
+ "author": "beachball",
250
+ "package": "@fluentui/react-card",
251
+ "comment": "Bump @fluentui/react-button to v9.1.16",
252
+ "commit": "13cf1d07a6df4617106c731ba0379b6102a08104"
253
+ }
254
+ ]
255
+ }
256
+ },
257
+ {
258
+ "date": "Mon, 16 Jan 2023 08:38:56 GMT",
259
+ "tag": "@fluentui/react-card_v9.0.0-beta.39",
260
+ "version": "9.0.0-beta.39",
261
+ "comments": {
262
+ "none": [
263
+ {
264
+ "author": "marcosvmmoura@gmail.com",
265
+ "package": "@fluentui/react-card",
266
+ "commit": "87dc68c62fc7796a2ffbe04ce9fe9aecc240286f",
267
+ "comment": "docs: add migration guide for cards from V0 to V9"
268
+ },
269
+ {
270
+ "author": "martinhochel@microsoft.com",
271
+ "package": "@fluentui/react-card",
272
+ "commit": "64bb45980d68de1219c6b36a7db5363f0a9cff9f",
273
+ "comment": "chore: migrate to packaged scripts"
274
+ }
275
+ ],
276
+ "prerelease": [
277
+ {
278
+ "author": "beachball",
279
+ "package": "@fluentui/react-card",
280
+ "comment": "Bump @fluentui/react-tabster to v9.3.7",
281
+ "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7"
282
+ },
283
+ {
284
+ "author": "beachball",
285
+ "package": "@fluentui/react-card",
286
+ "comment": "Bump @fluentui/react-button to v9.1.15",
287
+ "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7"
288
+ }
289
+ ]
290
+ }
291
+ },
292
+ {
293
+ "date": "Mon, 09 Jan 2023 14:34:55 GMT",
294
+ "tag": "@fluentui/react-card_v9.0.0-beta.38",
295
+ "version": "9.0.0-beta.38",
296
+ "comments": {
297
+ "none": [
298
+ {
299
+ "author": "martinhochel@microsoft.com",
300
+ "package": "@fluentui/react-card",
301
+ "commit": "abae9f7a10d544d8d6b530b974fff235cfd2f956",
302
+ "comment": "chore: introduce more barrel file api within /scripts"
303
+ }
304
+ ],
305
+ "prerelease": [
306
+ {
307
+ "author": "beachball",
308
+ "package": "@fluentui/react-card",
309
+ "comment": "Bump @fluentui/react-tabster to v9.3.6",
310
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
311
+ },
312
+ {
313
+ "author": "beachball",
314
+ "package": "@fluentui/react-card",
315
+ "comment": "Bump @fluentui/react-utilities to v9.4.0",
316
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
317
+ },
318
+ {
319
+ "author": "beachball",
320
+ "package": "@fluentui/react-card",
321
+ "comment": "Bump @fluentui/react-button to v9.1.14",
322
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
323
+ }
324
+ ]
325
+ }
326
+ },
327
+ {
328
+ "date": "Wed, 04 Jan 2023 01:40:54 GMT",
329
+ "tag": "@fluentui/react-card_v9.0.0-beta.37",
330
+ "version": "9.0.0-beta.37",
331
+ "comments": {
332
+ "none": [
333
+ {
334
+ "author": "martinhochel@microsoft.com",
335
+ "package": "@fluentui/react-card",
336
+ "commit": "194b0cf0cc27c1c1233aa945f09b3ad29778d8ca",
337
+ "comment": "chore(scripts): use for @fluentui/scripts version within all package.json"
338
+ },
339
+ {
340
+ "author": "martinhochel@microsoft.com",
341
+ "package": "@fluentui/react-card",
342
+ "commit": "4ec2b998b294d6d9c3196d3d82893bdd97d0c105",
343
+ "comment": "chore(scripts): move index.ts to to follow sub-folder domain packaging"
344
+ }
345
+ ],
346
+ "prerelease": [
347
+ {
348
+ "author": "olfedias@microsoft.com",
349
+ "package": "@fluentui/react-card",
350
+ "commit": "2c38f1e4ae07b2b60df596efe11015a68f166dbf",
351
+ "comment": "chore: Update Griffel to latest version"
352
+ },
353
+ {
354
+ "author": "beachball",
355
+ "package": "@fluentui/react-card",
356
+ "comment": "Bump @fluentui/react-tabster to v9.3.5",
357
+ "commit": "3e322d15529451be153e97298873253e21af4082"
358
+ },
359
+ {
360
+ "author": "beachball",
361
+ "package": "@fluentui/react-card",
362
+ "comment": "Bump @fluentui/react-utilities to v9.3.1",
363
+ "commit": "3e322d15529451be153e97298873253e21af4082"
364
+ },
365
+ {
366
+ "author": "beachball",
367
+ "package": "@fluentui/react-card",
368
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.19",
369
+ "commit": "3e322d15529451be153e97298873253e21af4082"
370
+ },
371
+ {
372
+ "author": "beachball",
373
+ "package": "@fluentui/react-card",
374
+ "comment": "Bump @fluentui/react-button to v9.1.13",
375
+ "commit": "3e322d15529451be153e97298873253e21af4082"
376
+ }
377
+ ]
378
+ }
379
+ },
380
+ {
381
+ "date": "Wed, 21 Dec 2022 10:20:33 GMT",
382
+ "tag": "@fluentui/react-card_v9.0.0-beta.36",
383
+ "version": "9.0.0-beta.36",
384
+ "comments": {
385
+ "prerelease": [
386
+ {
387
+ "author": "beachball",
388
+ "package": "@fluentui/react-card",
389
+ "comment": "Bump @fluentui/react-tabster to v9.3.4",
390
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
391
+ },
392
+ {
393
+ "author": "beachball",
394
+ "package": "@fluentui/react-card",
395
+ "comment": "Bump @fluentui/react-theme to v9.1.5",
396
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
397
+ },
398
+ {
399
+ "author": "beachball",
400
+ "package": "@fluentui/react-card",
401
+ "comment": "Bump @fluentui/react-button to v9.1.12",
402
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
403
+ }
404
+ ]
405
+ }
406
+ },
407
+ {
408
+ "date": "Tue, 20 Dec 2022 14:59:21 GMT",
409
+ "tag": "@fluentui/react-card_v9.0.0-beta.35",
410
+ "version": "9.0.0-beta.35",
411
+ "comments": {
412
+ "prerelease": [
413
+ {
414
+ "author": "marcosvmmoura@gmail.com",
415
+ "package": "@fluentui/react-card",
416
+ "commit": "5a613ed831254b8d8fbb8fd4648bfc034050a7eb",
417
+ "comment": "fix: remove unnecessary selectable ref and add support for aria-describedby on card preview"
418
+ },
419
+ {
420
+ "author": "marcosvmmoura@gmail.com",
421
+ "package": "@fluentui/react-card",
422
+ "commit": "5743aed3aa6b7048694111230c534008a59348ff",
423
+ "comment": "fix selectable card accessibility"
424
+ },
425
+ {
426
+ "author": "beachball",
427
+ "package": "@fluentui/react-card",
428
+ "comment": "Bump @fluentui/react-tabster to v9.3.3",
429
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
430
+ },
431
+ {
432
+ "author": "beachball",
433
+ "package": "@fluentui/react-card",
434
+ "comment": "Bump @fluentui/react-theme to v9.1.4",
435
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
436
+ },
437
+ {
438
+ "author": "beachball",
439
+ "package": "@fluentui/react-card",
440
+ "comment": "Bump @fluentui/react-utilities to v9.3.0",
441
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
442
+ },
443
+ {
444
+ "author": "beachball",
445
+ "package": "@fluentui/react-card",
446
+ "comment": "Bump @fluentui/react-button to v9.1.11",
447
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
448
+ }
449
+ ]
450
+ }
451
+ },
452
+ {
453
+ "date": "Mon, 05 Dec 2022 18:29:39 GMT",
454
+ "tag": "@fluentui/react-card_v9.0.0-beta.34",
455
+ "version": "9.0.0-beta.34",
456
+ "comments": {
457
+ "prerelease": [
458
+ {
459
+ "author": "beachball",
460
+ "package": "@fluentui/react-card",
461
+ "comment": "Bump @fluentui/react-tabster to v9.3.2",
462
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
463
+ },
464
+ {
465
+ "author": "beachball",
466
+ "package": "@fluentui/react-card",
467
+ "comment": "Bump @fluentui/react-theme to v9.1.3",
468
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
469
+ },
470
+ {
471
+ "author": "beachball",
472
+ "package": "@fluentui/react-card",
473
+ "comment": "Bump @fluentui/react-button to v9.1.10",
474
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
475
+ }
476
+ ]
477
+ }
478
+ },
479
+ {
480
+ "date": "Thu, 17 Nov 2022 23:05:35 GMT",
481
+ "tag": "@fluentui/react-card_v9.0.0-beta.33",
482
+ "version": "9.0.0-beta.33",
483
+ "comments": {
484
+ "none": [
485
+ {
486
+ "author": "martinhochel@microsoft.com",
487
+ "package": "@fluentui/react-card",
488
+ "commit": "ea768501802d65d63ddc63fff3816fb6b5008ae4",
489
+ "comment": "chore: update package scaffold"
490
+ }
491
+ ],
492
+ "prerelease": [
493
+ {
494
+ "author": "beachball",
495
+ "package": "@fluentui/react-card",
496
+ "comment": "Bump @fluentui/react-tabster to v9.3.1",
497
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
498
+ },
499
+ {
500
+ "author": "beachball",
501
+ "package": "@fluentui/react-card",
502
+ "comment": "Bump @fluentui/react-utilities to v9.2.2",
503
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
504
+ },
505
+ {
506
+ "author": "beachball",
507
+ "package": "@fluentui/react-card",
508
+ "comment": "Bump @fluentui/react-button to v9.1.9",
509
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
510
+ }
511
+ ]
512
+ }
513
+ },
514
+ {
515
+ "date": "Fri, 11 Nov 2022 14:57:56 GMT",
516
+ "tag": "@fluentui/react-card_v9.0.0-beta.32",
517
+ "version": "9.0.0-beta.32",
518
+ "comments": {
519
+ "prerelease": [
520
+ {
521
+ "author": "marcosvmmoura@gmail.com",
522
+ "package": "@fluentui/react-card",
523
+ "commit": "7c951efddfb820f51d6a52a8f994f1c1c712698a",
524
+ "comment": "feat: add selectable feature to card"
525
+ },
526
+ {
527
+ "author": "beachball",
528
+ "package": "@fluentui/react-card",
529
+ "comment": "Bump @fluentui/keyboard-keys to v9.0.1",
530
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
531
+ },
532
+ {
533
+ "author": "beachball",
534
+ "package": "@fluentui/react-card",
535
+ "comment": "Bump @fluentui/react-tabster to v9.3.0",
536
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
537
+ },
538
+ {
539
+ "author": "beachball",
540
+ "package": "@fluentui/react-card",
541
+ "comment": "Bump @fluentui/react-theme to v9.1.2",
542
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
543
+ },
544
+ {
545
+ "author": "beachball",
546
+ "package": "@fluentui/react-card",
547
+ "comment": "Bump @fluentui/react-utilities to v9.2.1",
548
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
549
+ },
550
+ {
551
+ "author": "beachball",
552
+ "package": "@fluentui/react-card",
553
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.18",
554
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
555
+ },
556
+ {
557
+ "author": "beachball",
558
+ "package": "@fluentui/react-card",
559
+ "comment": "Bump @fluentui/react-button to v9.1.8",
560
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
561
+ }
562
+ ],
563
+ "none": [
564
+ {
565
+ "author": "martinhochel@microsoft.com",
566
+ "package": "@fluentui/react-card",
567
+ "commit": "87859b052155ca206ef3540a2a9623803f6e2b93",
568
+ "comment": "test: replace deprecated module.parent with require.main within isConformance"
569
+ }
570
+ ]
571
+ }
572
+ },
573
+ {
574
+ "date": "Wed, 02 Nov 2022 11:57:49 GMT",
575
+ "tag": "@fluentui/react-card_v9.0.0-beta.31",
576
+ "version": "9.0.0-beta.31",
577
+ "comments": {
578
+ "prerelease": [
579
+ {
580
+ "author": "olfedias@microsoft.com",
581
+ "package": "@fluentui/react-card",
582
+ "commit": "c619ba066f11a8654e95375314824ba6b81b003e",
583
+ "comment": "chore: Update Griffel to latest version"
584
+ },
585
+ {
586
+ "author": "beachball",
587
+ "package": "@fluentui/react-card",
588
+ "comment": "Bump @fluentui/react-utilities to v9.2.0",
589
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
590
+ },
591
+ {
592
+ "author": "beachball",
593
+ "package": "@fluentui/react-card",
594
+ "comment": "Bump @fluentui/react-tabster to v9.2.1",
595
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
596
+ },
597
+ {
598
+ "author": "beachball",
599
+ "package": "@fluentui/react-card",
600
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.17",
601
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
602
+ },
603
+ {
604
+ "author": "beachball",
605
+ "package": "@fluentui/react-card",
606
+ "comment": "Bump @fluentui/react-text to v9.1.5",
607
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
608
+ },
609
+ {
610
+ "author": "beachball",
611
+ "package": "@fluentui/react-card",
612
+ "comment": "Bump @fluentui/react-button to v9.1.7",
613
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
614
+ }
615
+ ]
616
+ }
617
+ },
618
+ {
619
+ "date": "Tue, 25 Oct 2022 00:35:40 GMT",
620
+ "tag": "@fluentui/react-card_v9.0.0-beta.30",
621
+ "version": "9.0.0-beta.30",
622
+ "comments": {
623
+ "prerelease": [
624
+ {
625
+ "author": "beachball",
626
+ "package": "@fluentui/react-card",
627
+ "comment": "Bump @fluentui/react-text to v9.1.4",
628
+ "commit": "eef12b9ae58b64ff68576dc2d865b601e46c85b9"
629
+ },
630
+ {
631
+ "author": "beachball",
632
+ "package": "@fluentui/react-card",
633
+ "comment": "Bump @fluentui/react-button to v9.1.6",
634
+ "commit": "eef12b9ae58b64ff68576dc2d865b601e46c85b9"
635
+ }
636
+ ]
637
+ }
638
+ },
639
+ {
640
+ "date": "Thu, 20 Oct 2022 08:39:28 GMT",
641
+ "tag": "@fluentui/react-card_v9.0.0-beta.29",
642
+ "version": "9.0.0-beta.29",
643
+ "comments": {
644
+ "prerelease": [
645
+ {
646
+ "author": "tristan.watanabe@gmail.com",
647
+ "package": "@fluentui/react-card",
648
+ "commit": "ffad7cc2b7fd1da575db124105c4bc2dbb352cbb",
649
+ "comment": "chore: Migrate to new package structure."
650
+ },
651
+ {
652
+ "author": "mgodbolt@microsoft.com",
653
+ "package": "@fluentui/react-card",
654
+ "commit": "17096b3137d9d3e7c7443ddc3ce0738b2910a334",
655
+ "comment": "chore: Bump peer deps to support React 18"
656
+ },
657
+ {
658
+ "author": "olfedias@microsoft.com",
659
+ "package": "@fluentui/react-card",
660
+ "commit": "06865dada128321804646582f564ee86d835d174",
661
+ "comment": "chore: Update Griffel to latest version"
662
+ },
663
+ {
664
+ "author": "beachball",
665
+ "package": "@fluentui/react-card",
666
+ "comment": "Bump @fluentui/react-utilities to v9.1.2",
667
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
668
+ },
669
+ {
670
+ "author": "beachball",
671
+ "package": "@fluentui/react-card",
672
+ "comment": "Bump @fluentui/react-tabster to v9.2.0",
673
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
674
+ },
675
+ {
676
+ "author": "beachball",
677
+ "package": "@fluentui/react-card",
678
+ "comment": "Bump @fluentui/react-theme to v9.1.1",
679
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
680
+ },
681
+ {
682
+ "author": "beachball",
683
+ "package": "@fluentui/react-card",
684
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.16",
685
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
686
+ },
687
+ {
688
+ "author": "beachball",
689
+ "package": "@fluentui/react-card",
690
+ "comment": "Bump @fluentui/react-text to v9.1.3",
691
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
692
+ },
693
+ {
694
+ "author": "beachball",
695
+ "package": "@fluentui/react-card",
696
+ "comment": "Bump @fluentui/react-button to v9.1.5",
697
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
698
+ }
699
+ ]
700
+ }
701
+ },
702
+ {
703
+ "date": "Thu, 13 Oct 2022 11:02:44 GMT",
704
+ "tag": "@fluentui/react-card_v9.0.0-beta.28",
705
+ "version": "9.0.0-beta.28",
706
+ "comments": {
707
+ "prerelease": [
708
+ {
709
+ "author": "olfedias@microsoft.com",
710
+ "package": "@fluentui/react-card",
711
+ "commit": "1a527d440e0497ef8046b3ce240492241e7a04ac",
712
+ "comment": "chore: Update Griffel to latest version"
713
+ },
714
+ {
715
+ "author": "beachball",
716
+ "package": "@fluentui/react-card",
717
+ "comment": "Bump @fluentui/react-utilities to v9.1.1",
718
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
719
+ },
720
+ {
721
+ "author": "beachball",
722
+ "package": "@fluentui/react-card",
723
+ "comment": "Bump @fluentui/react-tabster to v9.1.3",
724
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
725
+ },
726
+ {
727
+ "author": "beachball",
728
+ "package": "@fluentui/react-card",
729
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.15",
730
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
731
+ },
732
+ {
733
+ "author": "beachball",
734
+ "package": "@fluentui/react-card",
735
+ "comment": "Bump @fluentui/react-text to v9.1.2",
736
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
737
+ },
738
+ {
739
+ "author": "beachball",
740
+ "package": "@fluentui/react-card",
741
+ "comment": "Bump @fluentui/react-button to v9.1.4",
742
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
743
+ }
744
+ ]
745
+ }
746
+ },
747
+ {
748
+ "date": "Mon, 03 Oct 2022 22:24:42 GMT",
749
+ "tag": "@fluentui/react-card_v9.0.0-beta.27",
750
+ "version": "9.0.0-beta.27",
751
+ "comments": {
752
+ "prerelease": [
753
+ {
754
+ "author": "beachball",
755
+ "package": "@fluentui/react-card",
756
+ "comment": "Bump @fluentui/react-tabster to v9.1.2",
757
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
758
+ },
759
+ {
760
+ "author": "beachball",
761
+ "package": "@fluentui/react-card",
762
+ "comment": "Bump @fluentui/react-button to v9.1.3",
763
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
764
+ }
765
+ ]
766
+ }
767
+ },
768
+ {
769
+ "date": "Tue, 20 Sep 2022 20:55:45 GMT",
770
+ "tag": "@fluentui/react-card_v9.0.0-beta.26",
771
+ "version": "9.0.0-beta.26",
772
+ "comments": {
773
+ "prerelease": [
774
+ {
775
+ "author": "beachball",
776
+ "package": "@fluentui/react-card",
777
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.14",
778
+ "commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
779
+ },
780
+ {
781
+ "author": "beachball",
782
+ "package": "@fluentui/react-card",
783
+ "comment": "Bump @fluentui/react-text to v9.1.1",
784
+ "commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
785
+ },
786
+ {
787
+ "author": "beachball",
788
+ "package": "@fluentui/react-card",
789
+ "comment": "Bump @fluentui/react-button to v9.1.2",
790
+ "commit": "4ceba844c804a2f49b0465389100e7a3dabf116e"
791
+ }
792
+ ]
793
+ }
794
+ },
795
+ {
796
+ "date": "Thu, 15 Sep 2022 09:49:58 GMT",
797
+ "tag": "@fluentui/react-card_v9.0.0-beta.25",
798
+ "version": "9.0.0-beta.25",
799
+ "comments": {
800
+ "none": [
801
+ {
802
+ "author": "martinhochel@microsoft.com",
803
+ "package": "@fluentui/react-card",
804
+ "commit": "e6cf183695d6d67a24e038c49a876224e5ed35e5",
805
+ "comment": "chore: update package scaffold"
806
+ },
807
+ {
808
+ "author": "martinhochel@microsoft.com",
809
+ "package": "@fluentui/react-card",
810
+ "commit": "ba9444d594f3a960cc590eae5237c08bf7c5a07f",
811
+ "comment": "chore: consume cypress.config from it's package boundary"
812
+ }
813
+ ],
814
+ "prerelease": [
815
+ {
816
+ "author": "olfedias@microsoft.com",
817
+ "package": "@fluentui/react-card",
818
+ "commit": "e610024474cfe5d45f61501a8b6a21daf4c794a2",
819
+ "comment": "chore: Update Griffel to latest version"
820
+ },
821
+ {
822
+ "author": "beachball",
823
+ "package": "@fluentui/react-card",
824
+ "comment": "Bump @fluentui/react-utilities to v9.1.0",
825
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
826
+ },
827
+ {
828
+ "author": "beachball",
829
+ "package": "@fluentui/react-card",
830
+ "comment": "Bump @fluentui/react-tabster to v9.1.1",
831
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
832
+ },
833
+ {
834
+ "author": "beachball",
835
+ "package": "@fluentui/react-card",
836
+ "comment": "Bump @fluentui/react-theme to v9.1.0",
837
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
838
+ },
839
+ {
840
+ "author": "beachball",
841
+ "package": "@fluentui/react-card",
842
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.13",
843
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
844
+ },
845
+ {
846
+ "author": "beachball",
847
+ "package": "@fluentui/react-card",
848
+ "comment": "Bump @fluentui/react-text to v9.1.0",
849
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
850
+ },
851
+ {
852
+ "author": "beachball",
853
+ "package": "@fluentui/react-card",
854
+ "comment": "Bump @fluentui/react-button to v9.1.1",
855
+ "commit": "a33448fe4a0f4117686c378f80b893d1406d95a8"
856
+ }
857
+ ]
858
+ }
859
+ },
860
+ {
861
+ "date": "Wed, 03 Aug 2022 16:03:40 GMT",
862
+ "tag": "@fluentui/react-card_v9.0.0-beta.24",
863
+ "version": "9.0.0-beta.24",
864
+ "comments": {
865
+ "none": [
866
+ {
867
+ "author": "marcosmoura@microsoft.com",
868
+ "package": "@fluentui/react-card",
869
+ "commit": "8d0180b3bbaad7459257fb8bf7f2235953d12eec",
870
+ "comment": "docs(react-card): create migration guide from v0 to v9"
871
+ },
872
+ {
873
+ "author": "popatudor@microsoft.com",
874
+ "package": "@fluentui/react-card",
875
+ "commit": "59610d4c795d76a580fbb9391e20cf1249408555",
876
+ "comment": {
877
+ "title": "",
878
+ "value": ""
879
+ }
880
+ },
881
+ {
882
+ "author": "39736248+andrefcdias@users.noreply.github.com",
883
+ "package": "@fluentui/react-card",
884
+ "commit": "770a741091a1f5d1f3b6d4bbfecdd29e333fef9c",
885
+ "comment": "chore: add missing Card components to Storybook"
886
+ }
887
+ ],
888
+ "prerelease": [
889
+ {
890
+ "author": "miroslav.stastny@microsoft.com",
891
+ "package": "@fluentui/react-card",
892
+ "commit": "08563664778fd80284561d3c9d254307a0a32362",
893
+ "comment": "chore: Bump Griffel dependencies"
894
+ },
895
+ {
896
+ "author": "beachball",
897
+ "package": "@fluentui/react-card",
898
+ "comment": "Bump @fluentui/react-tabster to v9.1.0",
899
+ "commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
900
+ },
901
+ {
902
+ "author": "beachball",
903
+ "package": "@fluentui/react-card",
904
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.12",
905
+ "commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
906
+ },
907
+ {
908
+ "author": "beachball",
909
+ "package": "@fluentui/react-card",
910
+ "comment": "Bump @fluentui/react-text to v9.0.4",
911
+ "commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
912
+ },
913
+ {
914
+ "author": "beachball",
915
+ "package": "@fluentui/react-card",
916
+ "comment": "Bump @fluentui/react-button to v9.1.0",
917
+ "commit": "ee4a8be0d0831a6615f878f98db6a97cc61a802d"
918
+ }
919
+ ]
920
+ }
921
+ },
922
+ {
923
+ "date": "Fri, 15 Jul 2022 18:27:26 GMT",
924
+ "tag": "@fluentui/react-card_v9.0.0-beta.23",
925
+ "version": "9.0.0-beta.23",
926
+ "comments": {
927
+ "none": [
928
+ {
929
+ "author": "39736248+andrefcdias@users.noreply.github.com",
930
+ "package": "@fluentui/react-card",
931
+ "commit": "447b211fec38e4320b13c5ee2f7449c188f8183c",
932
+ "comment": "docs: add missing info to README"
933
+ },
934
+ {
935
+ "author": "39736248+andrefcdias@users.noreply.github.com",
936
+ "package": "@fluentui/react-card",
937
+ "commit": "640408c5aef9c3037f5f6bc08069ff9d9141a7ee",
938
+ "comment": "chore: add templates to stories"
939
+ }
940
+ ]
941
+ }
942
+ },
943
+ {
944
+ "date": "Thu, 14 Jul 2022 21:21:09 GMT",
945
+ "tag": "@fluentui/react-card_v9.0.0-beta.23",
946
+ "version": "9.0.0-beta.23",
947
+ "comments": {
948
+ "prerelease": [
949
+ {
950
+ "author": "Humberto.Morimoto@microsoft.com",
951
+ "package": "@fluentui/react-card",
952
+ "commit": "802bc4e3730a88b0fc61b5bf42ef7fc6b6543fe2",
953
+ "comment": "fix: Fixing bad version bump of @fluentui/react-utilities."
954
+ },
955
+ {
956
+ "author": "beachball",
957
+ "package": "@fluentui/react-card",
958
+ "comment": "Bump @fluentui/react-utilities to v9.0.2",
959
+ "commit": "79b513146194367544160f364b0a7dd749ed93e4"
960
+ },
961
+ {
962
+ "author": "beachball",
963
+ "package": "@fluentui/react-card",
964
+ "comment": "Bump @fluentui/react-tabster to v9.0.3",
965
+ "commit": "79b513146194367544160f364b0a7dd749ed93e4"
966
+ },
967
+ {
968
+ "author": "beachball",
969
+ "package": "@fluentui/react-card",
970
+ "comment": "Bump @fluentui/react-text to v9.0.3",
971
+ "commit": "79b513146194367544160f364b0a7dd749ed93e4"
972
+ },
973
+ {
974
+ "author": "beachball",
975
+ "package": "@fluentui/react-card",
976
+ "comment": "Bump @fluentui/react-button to v9.0.3",
977
+ "commit": "79b513146194367544160f364b0a7dd749ed93e4"
978
+ }
979
+ ]
980
+ }
981
+ },
982
+ {
983
+ "date": "Thu, 14 Jul 2022 17:06:16 GMT",
984
+ "tag": "@fluentui/react-card_v9.0.0-beta.22",
985
+ "version": "9.0.0-beta.22",
986
+ "comments": {
987
+ "prerelease": [
988
+ {
989
+ "author": "39736248+andrefcdias@users.noreply.github.com",
990
+ "package": "@fluentui/react-card",
991
+ "commit": "317b411a60a53ab5c0ed6c8ea58302940e8e0158",
992
+ "comment": "BREAKING CHANGE: new structural and styling approach applied to CardHeader"
993
+ },
994
+ {
995
+ "author": "39736248+andrefcdias@users.noreply.github.com",
996
+ "package": "@fluentui/react-card",
997
+ "commit": "b61d5f07a11be23b322de7e6cc50f280fb31746d",
998
+ "comment": "feat: add `img` as allowed element for CardPreview's logo slot"
999
+ },
1000
+ {
1001
+ "author": "beachball",
1002
+ "package": "@fluentui/react-card",
1003
+ "comment": "Bump @fluentui/react-utilities to v9.0.1-0",
1004
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
1005
+ },
1006
+ {
1007
+ "author": "beachball",
1008
+ "package": "@fluentui/react-card",
1009
+ "comment": "Bump @fluentui/react-tabster to v9.0.2",
1010
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
1011
+ },
1012
+ {
1013
+ "author": "beachball",
1014
+ "package": "@fluentui/react-card",
1015
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.11",
1016
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
1017
+ },
1018
+ {
1019
+ "author": "beachball",
1020
+ "package": "@fluentui/react-card",
1021
+ "comment": "Bump @fluentui/react-text to v9.0.2",
1022
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
1023
+ },
1024
+ {
1025
+ "author": "beachball",
1026
+ "package": "@fluentui/react-card",
1027
+ "comment": "Bump @fluentui/react-button to v9.0.2",
1028
+ "commit": "35237381e941c8935b1892c9217096cea3e5601f"
1029
+ }
1030
+ ]
1031
+ }
1032
+ },
1033
+ {
1034
+ "date": "Tue, 28 Jun 2022 17:39:47 GMT",
1035
+ "tag": "@fluentui/react-card_v9.0.0-beta.21",
1036
+ "version": "9.0.0-beta.21",
1037
+ "comments": {
1038
+ "prerelease": [
1039
+ {
1040
+ "author": "lingfangao@hotmail.com",
1041
+ "package": "@fluentui/react-card",
1042
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b",
1043
+ "comment": "fix: Use caret dependency range for Griffel"
1044
+ },
1045
+ {
1046
+ "author": "beachball",
1047
+ "package": "@fluentui/react-card",
1048
+ "comment": "Bump @fluentui/react-tabster to v9.0.1",
1049
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
1050
+ },
1051
+ {
1052
+ "author": "beachball",
1053
+ "package": "@fluentui/react-card",
1054
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.10",
1055
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
1056
+ },
1057
+ {
1058
+ "author": "beachball",
1059
+ "package": "@fluentui/react-card",
1060
+ "comment": "Bump @fluentui/react-text to v9.0.1",
1061
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
1062
+ },
1063
+ {
1064
+ "author": "beachball",
1065
+ "package": "@fluentui/react-card",
1066
+ "comment": "Bump @fluentui/react-button to v9.0.1",
1067
+ "commit": "3deda1fbbfb6ac2b1ad150d4dc6343f1f7fda85b"
1068
+ }
1069
+ ]
1070
+ }
1071
+ },
1072
+ {
1073
+ "date": "Tue, 28 Jun 2022 15:13:27 GMT",
1074
+ "tag": "@fluentui/react-card_v9.0.0-beta.20",
1075
+ "version": "9.0.0-beta.20",
1076
+ "comments": {
1077
+ "none": [
1078
+ {
1079
+ "author": "mgodbolt@microsoft.com",
1080
+ "package": "@fluentui/react-card",
1081
+ "commit": "0bdd0010f448387293f6dc715c1749ccc3aa85d6",
1082
+ "comment": "Convert card to index based stories"
1083
+ },
1084
+ {
1085
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1086
+ "package": "@fluentui/react-card",
1087
+ "commit": "571209f9a7d3ecdaf08f1584dc094c51db3b7a9e",
1088
+ "comment": "chore: migrate to new DX"
1089
+ },
1090
+ {
1091
+ "author": "lingfangao@hotmail.com",
1092
+ "package": "@fluentui/react-card",
1093
+ "commit": "2da2d47e3dac6f8f4396ab112ab80b1dd34cc9ac",
1094
+ "comment": "Bump cypress to v10"
1095
+ }
1096
+ ],
1097
+ "prerelease": [
1098
+ {
1099
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1100
+ "package": "@fluentui/react-card",
1101
+ "commit": "06030b7cbf61b157df4b2a203a456aca6380ea6b",
1102
+ "comment": "feat: add `orientation` prop"
1103
+ },
1104
+ {
1105
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1106
+ "package": "@fluentui/react-card",
1107
+ "commit": "0a35ab4703e21e5f6763b17ed33a48ad3ae4409b",
1108
+ "comment": "chore: add basic API documentation"
1109
+ },
1110
+ {
1111
+ "author": "lingfangao@hotmail.com",
1112
+ "package": "@fluentui/react-card",
1113
+ "commit": "675acea49c97f10837ddee9b8c4350ca27750125",
1114
+ "comment": "Bump Griffel dependencies"
1115
+ },
1116
+ {
1117
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1118
+ "package": "@fluentui/react-card",
1119
+ "commit": "fbd2de31c257aa192dbc69d6eacda6388af06b30",
1120
+ "comment": "feat: Add focus indicators"
1121
+ },
1122
+ {
1123
+ "author": "lingfangao@hotmail.com",
1124
+ "package": "@fluentui/react-card",
1125
+ "commit": "e0aabd850b15adf9c151ebd4e332f7c50ad6cfdf",
1126
+ "comment": "Update 9.0.0-rc dependencies to use caret range"
1127
+ },
1128
+ {
1129
+ "author": "beachball",
1130
+ "package": "@fluentui/react-card",
1131
+ "comment": "Bump @fluentui/react-utilities to v9.0.0",
1132
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
1133
+ },
1134
+ {
1135
+ "author": "beachball",
1136
+ "package": "@fluentui/react-card",
1137
+ "comment": "Bump @fluentui/react-tabster to v9.0.0",
1138
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
1139
+ },
1140
+ {
1141
+ "author": "beachball",
1142
+ "package": "@fluentui/react-card",
1143
+ "comment": "Bump @fluentui/react-theme to v9.0.0",
1144
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
1145
+ },
1146
+ {
1147
+ "author": "beachball",
1148
+ "package": "@fluentui/react-card",
1149
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9",
1150
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
1151
+ },
1152
+ {
1153
+ "author": "beachball",
1154
+ "package": "@fluentui/react-card",
1155
+ "comment": "Bump @fluentui/react-text to v9.0.0",
1156
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
1157
+ },
1158
+ {
1159
+ "author": "beachball",
1160
+ "package": "@fluentui/react-card",
1161
+ "comment": "Bump @fluentui/react-button to v9.0.0",
1162
+ "commit": "ba6c5d651559b91c815429c9a9357c4d5a390f3e"
1163
+ }
1164
+ ]
1165
+ }
1166
+ },
1167
+ {
1168
+ "date": "Thu, 23 Jun 2022 14:25:31 GMT",
1169
+ "tag": "@fluentui/react-card_v9.0.0-beta.19",
1170
+ "version": "9.0.0-beta.19",
1171
+ "comments": {
1172
+ "prerelease": [
1173
+ {
1174
+ "author": "beachball",
1175
+ "package": "@fluentui/react-card",
1176
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.14",
1177
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
1178
+ },
1179
+ {
1180
+ "author": "beachball",
1181
+ "package": "@fluentui/react-card",
1182
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.10",
1183
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
1184
+ },
1185
+ {
1186
+ "author": "beachball",
1187
+ "package": "@fluentui/react-card",
1188
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.12",
1189
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
1190
+ },
1191
+ {
1192
+ "author": "beachball",
1193
+ "package": "@fluentui/react-card",
1194
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.14",
1195
+ "commit": "b00790b7a0ea1473d8c3cc49c7ca0088002957ed"
1196
+ }
1197
+ ]
1198
+ }
1199
+ },
1200
+ {
1201
+ "date": "Tue, 31 May 2022 21:28:36 GMT",
1202
+ "tag": "@fluentui/react-card_v9.0.0-beta.18",
1203
+ "version": "9.0.0-beta.18",
1204
+ "comments": {
1205
+ "prerelease": [
1206
+ {
1207
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1208
+ "package": "@fluentui/react-card",
1209
+ "commit": "8caa7bbfd4c5cb91324def7470a280ac9bf6dec8",
1210
+ "comment": "feat: Add `size` property to control card padding and border radius"
1211
+ },
1212
+ {
1213
+ "author": "olfedias@microsoft.com",
1214
+ "package": "@fluentui/react-card",
1215
+ "commit": "0a5e9fa77a72eecafdd07034ccdc0b95fd49877c",
1216
+ "comment": "chore: Update Griffel to latest version"
1217
+ },
1218
+ {
1219
+ "author": "beachball",
1220
+ "package": "@fluentui/react-card",
1221
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.10",
1222
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
1223
+ },
1224
+ {
1225
+ "author": "beachball",
1226
+ "package": "@fluentui/react-card",
1227
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.13",
1228
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
1229
+ },
1230
+ {
1231
+ "author": "beachball",
1232
+ "package": "@fluentui/react-card",
1233
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8",
1234
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
1235
+ },
1236
+ {
1237
+ "author": "beachball",
1238
+ "package": "@fluentui/react-card",
1239
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.11",
1240
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
1241
+ },
1242
+ {
1243
+ "author": "beachball",
1244
+ "package": "@fluentui/react-card",
1245
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.13",
1246
+ "commit": "335ebfcfd47005003901b5e319782bfe9ccd89fd"
1247
+ }
1248
+ ]
1249
+ }
1250
+ },
1251
+ {
1252
+ "date": "Thu, 26 May 2022 21:01:32 GMT",
1253
+ "tag": "@fluentui/react-card_v9.0.0-beta.17",
1254
+ "version": "9.0.0-beta.17",
1255
+ "comments": {
1256
+ "prerelease": [
1257
+ {
1258
+ "author": "beachball",
1259
+ "package": "@fluentui/react-card",
1260
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.12",
1261
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
1262
+ },
1263
+ {
1264
+ "author": "beachball",
1265
+ "package": "@fluentui/react-card",
1266
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.12",
1267
+ "commit": "3cf55ce998048554bf6a550de44403843ea8ede0"
1268
+ }
1269
+ ]
1270
+ }
1271
+ },
1272
+ {
1273
+ "date": "Mon, 23 May 2022 18:56:42 GMT",
1274
+ "tag": "@fluentui/react-card_v9.0.0-beta.16",
1275
+ "version": "9.0.0-beta.16",
1276
+ "comments": {
1277
+ "prerelease": [
1278
+ {
1279
+ "author": "esteban.230@hotmail.com",
1280
+ "package": "@fluentui/react-card",
1281
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
1282
+ "comment": "Removing <componentName>ClassName exports."
1283
+ },
1284
+ {
1285
+ "author": "seanmonahan@microsoft.com",
1286
+ "package": "@fluentui/react-card",
1287
+ "commit": "5ed22515a7542b432ed694f22606ac3718d501cb",
1288
+ "comment": "update tabster tab behaviors"
1289
+ },
1290
+ {
1291
+ "author": "beachball",
1292
+ "package": "@fluentui/react-card",
1293
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.11",
1294
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
1295
+ },
1296
+ {
1297
+ "author": "beachball",
1298
+ "package": "@fluentui/react-card",
1299
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.9",
1300
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
1301
+ },
1302
+ {
1303
+ "author": "beachball",
1304
+ "package": "@fluentui/react-card",
1305
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7",
1306
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
1307
+ },
1308
+ {
1309
+ "author": "beachball",
1310
+ "package": "@fluentui/react-card",
1311
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.10",
1312
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
1313
+ },
1314
+ {
1315
+ "author": "beachball",
1316
+ "package": "@fluentui/react-card",
1317
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.11",
1318
+ "commit": "d4f80b17690e962d6a24e68959608d1ffe84aef6"
1319
+ }
1320
+ ]
1321
+ }
1322
+ },
1323
+ {
1324
+ "date": "Mon, 23 May 2022 12:14:05 GMT",
1325
+ "tag": "@fluentui/react-card_v9.0.0-beta.15",
1326
+ "version": "9.0.0-beta.15",
1327
+ "comments": {
1328
+ "prerelease": [
1329
+ {
1330
+ "author": "olfedias@microsoft.com",
1331
+ "package": "@fluentui/react-card",
1332
+ "commit": "f120fe9160ad7311a87af0cfacd8d2fb26275e34",
1333
+ "comment": "chore: Update Griffel to latest version"
1334
+ },
1335
+ {
1336
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1337
+ "package": "@fluentui/react-card",
1338
+ "commit": "a42bebb19d1403bfbde96cfb4b09e3ce32490ec6",
1339
+ "comment": "CardPreview now expands properly, all the way to the Card's edges"
1340
+ },
1341
+ {
1342
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1343
+ "package": "@fluentui/react-card",
1344
+ "commit": "d24b84d3239563973ed1dff9145998a4403c531e",
1345
+ "comment": "fix: focus no longer being managed when using `focusMode=\"off\"`"
1346
+ },
1347
+ {
1348
+ "author": "sarah.higley@microsoft.com",
1349
+ "package": "@fluentui/react-card",
1350
+ "commit": "a31441fdf2fa55f706983653febf5c318d76693d",
1351
+ "comment": "remove commons from Card"
1352
+ },
1353
+ {
1354
+ "author": "olfedias@microsoft.com",
1355
+ "package": "@fluentui/react-card",
1356
+ "commit": "60804cec07a495b8a5d1fc66338bf0443b212144",
1357
+ "comment": "chore: Update Griffel to latest version"
1358
+ },
1359
+ {
1360
+ "author": "beachball",
1361
+ "package": "@fluentui/react-card",
1362
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.9",
1363
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
1364
+ },
1365
+ {
1366
+ "author": "beachball",
1367
+ "package": "@fluentui/react-card",
1368
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.10",
1369
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
1370
+ },
1371
+ {
1372
+ "author": "beachball",
1373
+ "package": "@fluentui/react-card",
1374
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.8",
1375
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
1376
+ },
1377
+ {
1378
+ "author": "beachball",
1379
+ "package": "@fluentui/react-card",
1380
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6",
1381
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
1382
+ },
1383
+ {
1384
+ "author": "beachball",
1385
+ "package": "@fluentui/react-card",
1386
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.9",
1387
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
1388
+ },
1389
+ {
1390
+ "author": "beachball",
1391
+ "package": "@fluentui/react-card",
1392
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.10",
1393
+ "commit": "8d58f08997acf595e3eb7f628123e7fa7830c394"
1394
+ }
1395
+ ]
1396
+ }
1397
+ },
1398
+ {
1399
+ "date": "Thu, 05 May 2022 18:26:29 GMT",
1400
+ "tag": "@fluentui/react-card_v9.0.0-beta.14",
1401
+ "version": "9.0.0-beta.14",
1402
+ "comments": {
1403
+ "prerelease": [
1404
+ {
1405
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1406
+ "package": "@fluentui/react-card",
1407
+ "commit": "6f5126ab390def986bda1c95c1540c20e8b0ddd9",
1408
+ "comment": "Added new `focusMode` property to control the focus behavior inside of the component"
1409
+ },
1410
+ {
1411
+ "author": "beachball",
1412
+ "package": "@fluentui/react-card",
1413
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.8",
1414
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
1415
+ },
1416
+ {
1417
+ "author": "beachball",
1418
+ "package": "@fluentui/react-card",
1419
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.9",
1420
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
1421
+ },
1422
+ {
1423
+ "author": "beachball",
1424
+ "package": "@fluentui/react-card",
1425
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.7",
1426
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
1427
+ },
1428
+ {
1429
+ "author": "beachball",
1430
+ "package": "@fluentui/react-card",
1431
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5",
1432
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
1433
+ },
1434
+ {
1435
+ "author": "beachball",
1436
+ "package": "@fluentui/react-card",
1437
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.8",
1438
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
1439
+ },
1440
+ {
1441
+ "author": "beachball",
1442
+ "package": "@fluentui/react-card",
1443
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.9",
1444
+ "commit": "c5abb9c480ac94d12aa644d68d30773d77f2a159"
1445
+ }
1446
+ ]
1447
+ }
1448
+ },
1449
+ {
1450
+ "date": "Wed, 04 May 2022 13:26:38 GMT",
1451
+ "tag": "@fluentui/react-card_v9.0.0-beta.13",
1452
+ "version": "9.0.0-beta.13",
1453
+ "comments": {
1454
+ "none": [
1455
+ {
1456
+ "author": "tristan.watanabe@gmail.com",
1457
+ "package": "@fluentui/react-card",
1458
+ "commit": "b8dde556ff82051c140074a3140e83bfdd56f4dc",
1459
+ "comment": "react-card: Move to new common folder."
1460
+ }
1461
+ ],
1462
+ "prerelease": [
1463
+ {
1464
+ "author": "martinhochel@microsoft.com",
1465
+ "package": "@fluentui/react-card",
1466
+ "commit": "fd41e5b15e3a2f08245cd4e4bbcc0f07a367ce3b",
1467
+ "comment": "feat: ship rolluped only dts"
1468
+ },
1469
+ {
1470
+ "author": "beachball",
1471
+ "package": "@fluentui/react-card",
1472
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.7",
1473
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
1474
+ },
1475
+ {
1476
+ "author": "beachball",
1477
+ "package": "@fluentui/react-card",
1478
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.8",
1479
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
1480
+ },
1481
+ {
1482
+ "author": "beachball",
1483
+ "package": "@fluentui/react-card",
1484
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.6",
1485
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
1486
+ },
1487
+ {
1488
+ "author": "beachball",
1489
+ "package": "@fluentui/react-card",
1490
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.7",
1491
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
1492
+ },
1493
+ {
1494
+ "author": "beachball",
1495
+ "package": "@fluentui/react-card",
1496
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.8",
1497
+ "commit": "65f94192ed3b2cde7e52b9c7e12d6f38b81965dd"
1498
+ }
1499
+ ]
1500
+ }
1501
+ },
1502
+ {
1503
+ "date": "Mon, 25 Apr 2022 09:32:19 GMT",
1504
+ "tag": "@fluentui/react-card_v9.0.0-beta.12",
1505
+ "version": "9.0.0-beta.12",
1506
+ "comments": {
1507
+ "prerelease": [
1508
+ {
1509
+ "author": "beachball",
1510
+ "package": "@fluentui/react-card",
1511
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.7",
1512
+ "commit": "02ca1d3c198452c1693067f5f18bd01b2ed5d6e6"
1513
+ },
1514
+ {
1515
+ "author": "beachball",
1516
+ "package": "@fluentui/react-card",
1517
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.7",
1518
+ "commit": "02ca1d3c198452c1693067f5f18bd01b2ed5d6e6"
1519
+ }
1520
+ ]
1521
+ }
1522
+ },
1523
+ {
1524
+ "date": "Tue, 19 Apr 2022 19:17:14 GMT",
1525
+ "tag": "@fluentui/react-card_v9.0.0-beta.11",
1526
+ "version": "9.0.0-beta.11",
1527
+ "comments": {
1528
+ "none": [
1529
+ {
1530
+ "author": "mgodbolt@microsoft.com",
1531
+ "package": "@fluentui/react-card",
1532
+ "commit": "905e46db07ada986fd7885531f72a71b7bbaabdc",
1533
+ "comment": {
1534
+ "title": "",
1535
+ "value": ""
1536
+ }
1537
+ },
1538
+ {
1539
+ "author": "elcraig@microsoft.com",
1540
+ "package": "@fluentui/react-card",
1541
+ "commit": "b7f17e976f9e058f39c9fce4f0f9bb6eb4dfa577",
1542
+ "comment": "Update React dev deps and hoist them to the repo root"
1543
+ },
1544
+ {
1545
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1546
+ "package": "@fluentui/react-card",
1547
+ "commit": "d07a94aa25cf00c471a17883bd53f71fc1dc4d25",
1548
+ "comment": "Cleanup of Card storybook"
1549
+ },
1550
+ {
1551
+ "author": "martinhochel@microsoft.com",
1552
+ "package": "@fluentui/react-card",
1553
+ "commit": "320b8bbba1e498c65d011f3fae09dee98e7a11bb",
1554
+ "comment": "refactor: autofix no export star at index file for cxe-prg packages"
1555
+ }
1556
+ ],
1557
+ "prerelease": [
1558
+ {
1559
+ "author": "olfedias@microsoft.com",
1560
+ "package": "@fluentui/react-card",
1561
+ "commit": "e569d6e04d83cbcc6225e61db52ff81d2addd363",
1562
+ "comment": "chore: Update Griffel to latest version"
1563
+ },
1564
+ {
1565
+ "author": "seanmonahan@microsoft.com",
1566
+ "package": "@fluentui/react-card",
1567
+ "commit": "086a675fd0c648944ff4048450190a0a13467de3",
1568
+ "comment": "Add static classnames to Card"
1569
+ },
1570
+ {
1571
+ "author": "beachball",
1572
+ "package": "@fluentui/react-card",
1573
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.6",
1574
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1575
+ },
1576
+ {
1577
+ "author": "beachball",
1578
+ "package": "@fluentui/react-card",
1579
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.6",
1580
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1581
+ },
1582
+ {
1583
+ "author": "beachball",
1584
+ "package": "@fluentui/react-card",
1585
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.5",
1586
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1587
+ },
1588
+ {
1589
+ "author": "beachball",
1590
+ "package": "@fluentui/react-card",
1591
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4",
1592
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1593
+ },
1594
+ {
1595
+ "author": "beachball",
1596
+ "package": "@fluentui/react-card",
1597
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.6",
1598
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1599
+ },
1600
+ {
1601
+ "author": "beachball",
1602
+ "package": "@fluentui/react-card",
1603
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.6",
1604
+ "commit": "f94b48c825ca8c8b2e3b6755bdd29fe15c7d435d"
1605
+ }
1606
+ ]
1607
+ }
1608
+ },
1609
+ {
1610
+ "date": "Fri, 04 Mar 2022 05:17:35 GMT",
1611
+ "tag": "@fluentui/react-card_v9.0.0-beta.10",
1612
+ "version": "9.0.0-beta.10",
1613
+ "comments": {
1614
+ "prerelease": [
1615
+ {
1616
+ "author": "dzearing@microsoft.com",
1617
+ "package": "@fluentui/react-card",
1618
+ "commit": "f2f1c0ea948cc3517eeb442c05433eb0918def29",
1619
+ "comment": "Adding explicit export maps on all consumer packages for FUIR 8 and 9."
1620
+ },
1621
+ {
1622
+ "author": "beachball",
1623
+ "package": "@fluentui/react-card",
1624
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.5",
1625
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1626
+ },
1627
+ {
1628
+ "author": "beachball",
1629
+ "package": "@fluentui/react-card",
1630
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.5",
1631
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1632
+ },
1633
+ {
1634
+ "author": "beachball",
1635
+ "package": "@fluentui/react-card",
1636
+ "comment": "Bump @fluentui/react-theme to v9.0.0-rc.4",
1637
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1638
+ },
1639
+ {
1640
+ "author": "beachball",
1641
+ "package": "@fluentui/react-card",
1642
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.5",
1643
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1644
+ },
1645
+ {
1646
+ "author": "beachball",
1647
+ "package": "@fluentui/react-card",
1648
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.5",
1649
+ "commit": "1494f0b620f6d5aae7f0aef33fc9e8f6eb7f8749"
1650
+ }
1651
+ ]
1652
+ }
1653
+ },
1654
+ {
1655
+ "date": "Tue, 01 Mar 2022 02:17:35 GMT",
1656
+ "tag": "@fluentui/react-card_v9.0.0-beta.9",
1657
+ "version": "9.0.0-beta.9",
1658
+ "comments": {
1659
+ "prerelease": [
1660
+ {
1661
+ "author": "olfedias@microsoft.com",
1662
+ "package": "@fluentui/react-card",
1663
+ "commit": "084d7408855f3e52b67cbca172da1acef9dcb98f",
1664
+ "comment": "fix: Add react-theme as dependency"
1665
+ },
1666
+ {
1667
+ "author": "beachball",
1668
+ "package": "@fluentui/react-card",
1669
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
1670
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
1671
+ },
1672
+ {
1673
+ "author": "beachball",
1674
+ "package": "@fluentui/react-card",
1675
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.4",
1676
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
1677
+ },
1678
+ {
1679
+ "author": "beachball",
1680
+ "package": "@fluentui/react-card",
1681
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.4",
1682
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
1683
+ },
1684
+ {
1685
+ "author": "beachball",
1686
+ "package": "@fluentui/react-card",
1687
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.4",
1688
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
1689
+ }
1690
+ ]
1691
+ }
1692
+ },
1693
+ {
1694
+ "date": "Fri, 18 Feb 2022 13:35:29 GMT",
1695
+ "tag": "@fluentui/react-card_v9.0.0-beta.8",
1696
+ "version": "9.0.0-beta.8",
1697
+ "comments": {
1698
+ "prerelease": [
1699
+ {
1700
+ "author": "lingfangao@hotmail.com",
1701
+ "package": "@fluentui/react-card",
1702
+ "commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
1703
+ "comment": "fix: Source maps contain original source code"
1704
+ },
1705
+ {
1706
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1707
+ "package": "@fluentui/react-card",
1708
+ "commit": "6f39f6ae5bd33c8aa46dbb5cc1e46eded1fc2967",
1709
+ "comment": "Add new appearance property to allow for different card styles"
1710
+ },
1711
+ {
1712
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1713
+ "package": "@fluentui/react-card",
1714
+ "commit": "4a28b5a69d0e6cf53c19c5e93bc93465f9b8a132",
1715
+ "comment": "fix: top padding issues with CardPreview"
1716
+ },
1717
+ {
1718
+ "author": "beachball",
1719
+ "package": "@fluentui/react-card",
1720
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
1721
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1722
+ },
1723
+ {
1724
+ "author": "beachball",
1725
+ "package": "@fluentui/react-card",
1726
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.3",
1727
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1728
+ },
1729
+ {
1730
+ "author": "beachball",
1731
+ "package": "@fluentui/react-card",
1732
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
1733
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1734
+ },
1735
+ {
1736
+ "author": "beachball",
1737
+ "package": "@fluentui/react-card",
1738
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.3",
1739
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1740
+ },
1741
+ {
1742
+ "author": "beachball",
1743
+ "package": "@fluentui/react-card",
1744
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.3",
1745
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
1746
+ }
1747
+ ]
1748
+ }
1749
+ },
1750
+ {
1751
+ "date": "Thu, 10 Feb 2022 08:51:52 GMT",
1752
+ "tag": "@fluentui/react-card_v9.0.0-beta.6",
1753
+ "version": "9.0.0-beta.6",
1754
+ "comments": {
1755
+ "prerelease": [
1756
+ {
1757
+ "author": "ololubek@microsoft.com",
1758
+ "package": "@fluentui/react-card",
1759
+ "commit": "63cbefe55e5db10eedbde19392aa8b6376d6a7f7",
1760
+ "comment": "Update react-icons usage to resizable icons"
1761
+ },
1762
+ {
1763
+ "author": "lingfangao@hotmail.com",
1764
+ "package": "@fluentui/react-card",
1765
+ "commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
1766
+ "comment": "Bump Fluent UI dependencies to 9.0.0-rc"
1767
+ },
1768
+ {
1769
+ "author": "Humberto.Morimoto@microsoft.com",
1770
+ "package": "@fluentui/react-card",
1771
+ "commit": "37772e1ef0b587bf08984dd053ebb356c57c5247",
1772
+ "comment": "react-card: Replacing use of functions in makeStyles with direct use of tokens."
1773
+ },
1774
+ {
1775
+ "author": "Humberto.Morimoto@microsoft.com",
1776
+ "package": "@fluentui/react-card",
1777
+ "commit": "e0b8e1fa6980077e7b311fd1c72c28d3e4305db0",
1778
+ "comment": "Updating based on changes to composition types."
1779
+ },
1780
+ {
1781
+ "author": "elcraig@microsoft.com",
1782
+ "package": "@fluentui/react-card",
1783
+ "commit": "d892c7f79c543b6008634ecd669b75b5108cad46",
1784
+ "comment": "Remove empty CardCommons type and outdated boilerplate comments"
1785
+ },
1786
+ {
1787
+ "author": "behowell@microsoft.com",
1788
+ "package": "@fluentui/react-card",
1789
+ "commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
1790
+ "comment": "BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
1791
+ },
1792
+ {
1793
+ "author": "olfedias@microsoft.com",
1794
+ "package": "@fluentui/react-card",
1795
+ "commit": "1249d2ee042780865e877fc2ed48f56e0eff25d1",
1796
+ "comment": "use Griffel packages"
1797
+ },
1798
+ {
1799
+ "author": "behowell@microsoft.com",
1800
+ "package": "@fluentui/react-card",
1801
+ "commit": "53b01d71e335715fda91b33e3d7bbd9d471d5ed3",
1802
+ "comment": "Refactor component Slot typings"
1803
+ },
1804
+ {
1805
+ "author": "olfedias@microsoft.com",
1806
+ "package": "@fluentui/react-card",
1807
+ "commit": "158d89b5d98e3544e06f4f09967d2af8ab43e249",
1808
+ "comment": "update styles no not use CSS shorthands"
1809
+ },
1810
+ {
1811
+ "author": "behowell@microsoft.com",
1812
+ "package": "@fluentui/react-card",
1813
+ "commit": "7cc28ed8320b00f42d91c63882f10316db2205c5",
1814
+ "comment": "Remove component's shorthandProps array"
1815
+ },
1816
+ {
1817
+ "author": "beachball",
1818
+ "package": "@fluentui/react-card",
1819
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
1820
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1821
+ },
1822
+ {
1823
+ "author": "beachball",
1824
+ "package": "@fluentui/react-card",
1825
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.1",
1826
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1827
+ },
1828
+ {
1829
+ "author": "beachball",
1830
+ "package": "@fluentui/react-card",
1831
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
1832
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1833
+ },
1834
+ {
1835
+ "author": "beachball",
1836
+ "package": "@fluentui/react-card",
1837
+ "comment": "Bump @fluentui/react-text to v9.0.0-rc.1",
1838
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1839
+ },
1840
+ {
1841
+ "author": "beachball",
1842
+ "package": "@fluentui/react-card",
1843
+ "comment": "Bump @fluentui/react-button to v9.0.0-rc.1",
1844
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
1845
+ }
1846
+ ],
1847
+ "none": [
1848
+ {
1849
+ "author": "39736248+andrefcdias@users.noreply.github.com",
1850
+ "package": "@fluentui/react-card",
1851
+ "commit": "8e04b14546f264bb197ffce70bdff8ec83762c49",
1852
+ "comment": "Add Alpha notice"
1853
+ },
1854
+ {
1855
+ "author": "martinhochel@microsoft.com",
1856
+ "package": "@fluentui/react-card",
1857
+ "commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
1858
+ "comment": "chore: use storybook runner for all vNext packages"
1859
+ },
1860
+ {
1861
+ "author": "andredias@microsoft.com",
1862
+ "package": "@fluentui/react-card",
1863
+ "commit": "c6c745b664df52f5cbdd5a190cc08cae971216e0",
1864
+ "comment": "Add component spec"
1865
+ },
1866
+ {
1867
+ "author": "olfedias@microsoft.com",
1868
+ "package": "@fluentui/react-card",
1869
+ "commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
1870
+ "comment": "remove inline-style-expand-shorthand from tsconfigs"
1871
+ },
1872
+ {
1873
+ "author": "me@levithomason.com",
1874
+ "package": "@fluentui/react-card",
1875
+ "commit": "4bd15194a66379b165043141c266faa0c1ea1502",
1876
+ "comment": "document how to import preview components"
1877
+ },
1878
+ {
1879
+ "author": "bsunderhus@microsoft.com",
1880
+ "package": "@fluentui/react-card",
1881
+ "commit": "c0d4e63ee58e60e2c6674efbacc0783cd520984e",
1882
+ "comment": "Updates components with nullRender changes"
1883
+ },
1884
+ {
1885
+ "author": "me@levithomason.com",
1886
+ "package": "@fluentui/react-card",
1887
+ "commit": "a15d363937fad523e90350458ec3e44fe7199dc0",
1888
+ "comment": "Move Storybook stories to Preview Components section"
1889
+ }
1890
+ ]
1891
+ }
1892
+ },
1893
+ {
1894
+ "date": "Thu, 25 Nov 2021 08:34:12 GMT",
1895
+ "tag": "@fluentui/react-card_v9.0.0-beta.5",
1896
+ "version": "9.0.0-beta.5",
1897
+ "comments": {
1898
+ "prerelease": [
1899
+ {
1900
+ "author": "andredias@microsoft.com",
1901
+ "package": "@fluentui/react-card",
1902
+ "commit": "5f5fb9fe289f45c7f9afe9f052c51f19cfd41160",
1903
+ "comment": "Migrate Card"
1904
+ },
1905
+ {
1906
+ "author": "beachball",
1907
+ "package": "@fluentui/react-card",
1908
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
1909
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1910
+ },
1911
+ {
1912
+ "author": "beachball",
1913
+ "package": "@fluentui/react-card",
1914
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
1915
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1916
+ },
1917
+ {
1918
+ "author": "beachball",
1919
+ "package": "@fluentui/react-card",
1920
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
1921
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1922
+ },
1923
+ {
1924
+ "author": "beachball",
1925
+ "package": "@fluentui/react-card",
1926
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
1927
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1928
+ },
1929
+ {
1930
+ "author": "beachball",
1931
+ "package": "@fluentui/react-card",
1932
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
1933
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1934
+ },
1935
+ {
1936
+ "author": "beachball",
1937
+ "package": "@fluentui/react-card",
1938
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
1939
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1940
+ },
1941
+ {
1942
+ "author": "beachball",
1943
+ "package": "@fluentui/react-card",
1944
+ "comment": "Bump @fluentui/react-text to v9.0.0-beta.4",
1945
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1946
+ },
1947
+ {
1948
+ "author": "beachball",
1949
+ "package": "@fluentui/react-card",
1950
+ "comment": "Bump @fluentui/react-button to v9.0.0-beta.5",
1951
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
1952
+ }
1953
+ ]
1954
+ }
1955
+ },
1956
+ {
1957
+ "date": "Fri, 12 Nov 2021 13:25:17 GMT",
1958
+ "tag": "@fluentui/react-card_v9.0.0-beta.4",
1959
+ "version": "9.0.0-beta.4",
1960
+ "comments": {
1961
+ "none": [
1962
+ {
1963
+ "author": "mgodbolt@microsoft.com",
1964
+ "package": "@fluentui/react-card",
1965
+ "commit": "7fafe76eb2c09f9d17a03c11ba73729d91ef411e",
1966
+ "comment": "update docs descriptions"
1967
+ },
1968
+ {
1969
+ "author": "lingfangao@hotmail.com",
1970
+ "package": "@fluentui/react-card",
1971
+ "commit": "00f70581480b536e723fb69edf0ae617beac4807",
1972
+ "comment": "Remove beta release tag"
1973
+ },
1974
+ {
1975
+ "author": "mgodbolt@microsoft.com",
1976
+ "package": "@fluentui/react-card",
1977
+ "commit": "114b089957bcbf547bb8713f2bfb4811239fb5a2",
1978
+ "comment": "add default and move assets to github urls"
1979
+ }
1980
+ ],
9
1981
  "prerelease": [
10
1982
  {
11
- "author": "email not defined",
1983
+ "author": "olfedias@microsoft.com",
1984
+ "package": "@fluentui/react-card",
1985
+ "commit": "22460e1421c0f3b2bdf9c76d80a2cb202fa30079",
1986
+ "comment": "export static classes for components"
1987
+ },
1988
+ {
1989
+ "author": "andredias@microsoft.com",
1990
+ "package": "@fluentui/react-card",
1991
+ "commit": "70e81a56249d55dae418217ddcef5d16e030862a",
1992
+ "comment": "Migrate to new useFocusableGroup usage"
1993
+ },
1994
+ {
1995
+ "author": "beachball",
1996
+ "package": "@fluentui/react-card",
1997
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
1998
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
1999
+ },
2000
+ {
2001
+ "author": "beachball",
2002
+ "package": "@fluentui/react-card",
2003
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
2004
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
2005
+ },
2006
+ {
2007
+ "author": "beachball",
2008
+ "package": "@fluentui/react-card",
2009
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.4",
2010
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
2011
+ },
2012
+ {
2013
+ "author": "beachball",
2014
+ "package": "@fluentui/react-card",
2015
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
2016
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
2017
+ },
2018
+ {
2019
+ "author": "beachball",
2020
+ "package": "@fluentui/react-card",
2021
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
2022
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
2023
+ },
2024
+ {
2025
+ "author": "beachball",
2026
+ "package": "@fluentui/react-card",
2027
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
2028
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
2029
+ },
2030
+ {
2031
+ "author": "beachball",
12
2032
  "package": "@fluentui/react-card",
13
- "comment": "Release nightly v9",
14
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2033
+ "comment": "Bump @fluentui/react-text to v9.0.0-beta.3",
2034
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
15
2035
  },
2036
+ {
2037
+ "author": "beachball",
2038
+ "package": "@fluentui/react-card",
2039
+ "comment": "Bump @fluentui/react-button to v9.0.0-beta.4",
2040
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
2041
+ }
2042
+ ]
2043
+ }
2044
+ },
2045
+ {
2046
+ "date": "Wed, 27 Oct 2021 12:14:15 GMT",
2047
+ "tag": "@fluentui/react-card_v9.0.0-beta.3",
2048
+ "version": "9.0.0-beta.3",
2049
+ "comments": {
2050
+ "prerelease": [
16
2051
  {
17
2052
  "author": "peter@draxler.ml",
18
2053
  "package": "@fluentui/react-card",
19
- "comment": "added styling of documentation",
20
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2054
+ "commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
2055
+ "comment": "added styling of documentation"
21
2056
  },
22
2057
  {
23
2058
  "author": "beachball",
24
2059
  "package": "@fluentui/react-card",
25
- "comment": "Bump @fluentui/react-make-styles to v9.0.0-nightly.d730088d7f.0",
26
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2060
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.2",
2061
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
27
2062
  },
28
2063
  {
29
2064
  "author": "beachball",
30
2065
  "package": "@fluentui/react-card",
31
- "comment": "Bump @fluentui/react-utilities to v9.0.0-nightly.d730088d7f.0",
32
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2066
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
2067
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
33
2068
  },
34
2069
  {
35
2070
  "author": "beachball",
36
2071
  "package": "@fluentui/react-card",
37
- "comment": "Bump @fluentui/react-tabster to v9.0.0-nightly.d730088d7f.0",
38
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2072
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-beta.3",
2073
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
39
2074
  },
40
2075
  {
41
2076
  "author": "beachball",
42
2077
  "package": "@fluentui/react-card",
43
- "comment": "Bump @fluentui/babel-make-styles to v9.0.0-nightly.d730088d7f.0",
44
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2078
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.2",
2079
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
45
2080
  },
46
2081
  {
47
2082
  "author": "beachball",
48
2083
  "package": "@fluentui/react-card",
49
- "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-nightly.d730088d7f.0",
50
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2084
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2",
2085
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
51
2086
  },
52
2087
  {
53
2088
  "author": "beachball",
54
2089
  "package": "@fluentui/react-card",
55
- "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-nightly.d730088d7f.0",
56
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2090
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2",
2091
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
57
2092
  },
58
2093
  {
59
2094
  "author": "beachball",
60
2095
  "package": "@fluentui/react-card",
61
- "comment": "Bump @fluentui/react-text to v9.0.0-nightly.d730088d7f.0",
62
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2096
+ "comment": "Bump @fluentui/react-text to v9.0.0-beta.2",
2097
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
63
2098
  },
64
2099
  {
65
2100
  "author": "beachball",
66
2101
  "package": "@fluentui/react-card",
67
- "comment": "Bump @fluentui/react-button to v9.0.0-nightly.d730088d7f.0",
68
- "commit": "ec40cc4bf5af48d100161d7fc692fa8624507dee"
2102
+ "comment": "Bump @fluentui/react-button to v9.0.0-beta.3",
2103
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
69
2104
  }
70
2105
  ]
71
2106
  }