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

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