@fluentui/react-card 9.0.0-beta.4 → 9.0.0-beta.40

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