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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (178) hide show
  1. package/CHANGELOG.json +1473 -1
  2. package/CHANGELOG.md +422 -31
  3. package/README.md +68 -4
  4. package/dist/index.d.ts +286 -0
  5. package/lib/Card.js.map +1 -1
  6. package/lib/CardFooter.js.map +1 -1
  7. package/lib/CardHeader.js.map +1 -1
  8. package/lib/CardPreview.js.map +1 -1
  9. package/lib/components/Card/Card.js +8 -8
  10. package/lib/components/Card/Card.js.map +1 -1
  11. package/lib/components/Card/Card.types.js.map +1 -1
  12. package/lib/components/Card/index.js.map +1 -1
  13. package/lib/components/Card/renderCard.js +8 -8
  14. package/lib/components/Card/renderCard.js.map +1 -1
  15. package/lib/components/Card/useCard.js +31 -11
  16. package/lib/components/Card/useCard.js.map +1 -1
  17. package/lib/components/Card/useCardStyles.js +221 -25
  18. package/lib/components/Card/useCardStyles.js.map +1 -1
  19. package/lib/components/CardFooter/CardFooter.js +7 -7
  20. package/lib/components/CardFooter/CardFooter.js.map +1 -1
  21. package/lib/components/CardFooter/CardFooter.types.js.map +1 -1
  22. package/lib/components/CardFooter/index.js.map +1 -1
  23. package/lib/components/CardFooter/renderCardFooter.js +9 -9
  24. package/lib/components/CardFooter/renderCardFooter.js.map +1 -1
  25. package/lib/components/CardFooter/useCardFooter.js +10 -13
  26. package/lib/components/CardFooter/useCardFooter.js.map +1 -1
  27. package/lib/components/CardFooter/useCardFooterStyles.js +16 -10
  28. package/lib/components/CardFooter/useCardFooterStyles.js.map +1 -1
  29. package/lib/components/CardHeader/CardHeader.js +7 -7
  30. package/lib/components/CardHeader/CardHeader.js.map +1 -1
  31. package/lib/components/CardHeader/CardHeader.types.js.map +1 -1
  32. package/lib/components/CardHeader/index.js.map +1 -1
  33. package/lib/components/CardHeader/renderCardHeader.js +12 -9
  34. package/lib/components/CardHeader/renderCardHeader.js.map +1 -1
  35. package/lib/components/CardHeader/useCardHeader.js +16 -23
  36. package/lib/components/CardHeader/useCardHeader.js.map +1 -1
  37. package/lib/components/CardHeader/useCardHeaderStyles.js +54 -32
  38. package/lib/components/CardHeader/useCardHeaderStyles.js.map +1 -1
  39. package/lib/components/CardPreview/CardPreview.js +7 -7
  40. package/lib/components/CardPreview/CardPreview.js.map +1 -1
  41. package/lib/components/CardPreview/CardPreview.types.js.map +1 -1
  42. package/lib/components/CardPreview/index.js.map +1 -1
  43. package/lib/components/CardPreview/renderCardPreview.js +9 -9
  44. package/lib/components/CardPreview/renderCardPreview.js.map +1 -1
  45. package/lib/components/CardPreview/useCardPreview.js +10 -13
  46. package/lib/components/CardPreview/useCardPreview.js.map +1 -1
  47. package/lib/components/CardPreview/useCardPreviewStyles.js +17 -15
  48. package/lib/components/CardPreview/useCardPreviewStyles.js.map +1 -1
  49. package/lib/index.js +4 -4
  50. package/lib/index.js.map +1 -1
  51. package/lib-commonjs/Card.js +1 -1
  52. package/lib-commonjs/Card.js.map +1 -1
  53. package/lib-commonjs/CardFooter.js +1 -1
  54. package/lib-commonjs/CardFooter.js.map +1 -1
  55. package/lib-commonjs/CardHeader.js +1 -1
  56. package/lib-commonjs/CardHeader.js.map +1 -1
  57. package/lib-commonjs/CardPreview.js +1 -1
  58. package/lib-commonjs/CardPreview.js.map +1 -1
  59. package/lib-commonjs/components/Card/Card.js +9 -9
  60. package/lib-commonjs/components/Card/Card.js.map +1 -1
  61. package/lib-commonjs/components/Card/Card.types.js.map +1 -1
  62. package/lib-commonjs/components/Card/index.js +1 -1
  63. package/lib-commonjs/components/Card/index.js.map +1 -1
  64. package/lib-commonjs/components/Card/renderCard.js +12 -13
  65. package/lib-commonjs/components/Card/renderCard.js.map +1 -1
  66. package/lib-commonjs/components/Card/useCard.js +34 -15
  67. package/lib-commonjs/components/Card/useCard.js.map +1 -1
  68. package/lib-commonjs/components/Card/useCardStyles.js +228 -27
  69. package/lib-commonjs/components/Card/useCardStyles.js.map +1 -1
  70. package/lib-commonjs/components/CardFooter/CardFooter.js +8 -8
  71. package/lib-commonjs/components/CardFooter/CardFooter.js.map +1 -1
  72. package/lib-commonjs/components/CardFooter/CardFooter.types.js.map +1 -1
  73. package/lib-commonjs/components/CardFooter/index.js +1 -1
  74. package/lib-commonjs/components/CardFooter/index.js.map +1 -1
  75. package/lib-commonjs/components/CardFooter/renderCardFooter.js +13 -15
  76. package/lib-commonjs/components/CardFooter/renderCardFooter.js.map +1 -1
  77. package/lib-commonjs/components/CardFooter/useCardFooter.js +14 -18
  78. package/lib-commonjs/components/CardFooter/useCardFooter.js.map +1 -1
  79. package/lib-commonjs/components/CardFooter/useCardFooterStyles.js +18 -12
  80. package/lib-commonjs/components/CardFooter/useCardFooterStyles.js.map +1 -1
  81. package/lib-commonjs/components/CardHeader/CardHeader.js +8 -8
  82. package/lib-commonjs/components/CardHeader/CardHeader.js.map +1 -1
  83. package/lib-commonjs/components/CardHeader/CardHeader.types.js.map +1 -1
  84. package/lib-commonjs/components/CardHeader/index.js +1 -1
  85. package/lib-commonjs/components/CardHeader/index.js.map +1 -1
  86. package/lib-commonjs/components/CardHeader/renderCardHeader.js +16 -15
  87. package/lib-commonjs/components/CardHeader/renderCardHeader.js.map +1 -1
  88. package/lib-commonjs/components/CardHeader/useCardHeader.js +20 -29
  89. package/lib-commonjs/components/CardHeader/useCardHeader.js.map +1 -1
  90. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js +56 -34
  91. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js.map +1 -1
  92. package/lib-commonjs/components/CardPreview/CardPreview.js +8 -8
  93. package/lib-commonjs/components/CardPreview/CardPreview.js.map +1 -1
  94. package/lib-commonjs/components/CardPreview/CardPreview.types.js.map +1 -1
  95. package/lib-commonjs/components/CardPreview/index.js +1 -1
  96. package/lib-commonjs/components/CardPreview/index.js.map +1 -1
  97. package/lib-commonjs/components/CardPreview/renderCardPreview.js +13 -15
  98. package/lib-commonjs/components/CardPreview/renderCardPreview.js.map +1 -1
  99. package/lib-commonjs/components/CardPreview/useCardPreview.js +14 -18
  100. package/lib-commonjs/components/CardPreview/useCardPreview.js.map +1 -1
  101. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js +19 -17
  102. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js.map +1 -1
  103. package/lib-commonjs/index.js +140 -5
  104. package/lib-commonjs/index.js.map +1 -1
  105. package/package.json +27 -29
  106. package/assets/ai_deck_template.png +0 -0
  107. package/assets/avatar_elvia.svg +0 -9
  108. package/assets/avatar_mauricio.svg +0 -9
  109. package/assets/doc_template.png +0 -0
  110. package/assets/powerpoint_logo.svg +0 -9
  111. package/assets/sales_template.png +0 -0
  112. package/assets/word_logo.svg +0 -9
  113. package/dist/react-card.d.ts +0 -188
  114. package/lib/Card.d.ts +0 -1
  115. package/lib/CardFooter.d.ts +0 -1
  116. package/lib/CardHeader.d.ts +0 -1
  117. package/lib/CardPreview.d.ts +0 -1
  118. package/lib/common/isConformant.d.ts +0 -4
  119. package/lib/common/isConformant.js +0 -11
  120. package/lib/common/isConformant.js.map +0 -1
  121. package/lib/components/Card/Card.d.ts +0 -6
  122. package/lib/components/Card/Card.types.d.ts +0 -13
  123. package/lib/components/Card/index.d.ts +0 -5
  124. package/lib/components/Card/renderCard.d.ts +0 -5
  125. package/lib/components/Card/useCard.d.ts +0 -12
  126. package/lib/components/Card/useCardStyles.d.ts +0 -5
  127. package/lib/components/CardFooter/CardFooter.d.ts +0 -6
  128. package/lib/components/CardFooter/CardFooter.types.d.ts +0 -13
  129. package/lib/components/CardFooter/index.d.ts +0 -5
  130. package/lib/components/CardFooter/renderCardFooter.d.ts +0 -5
  131. package/lib/components/CardFooter/useCardFooter.d.ts +0 -16
  132. package/lib/components/CardFooter/useCardFooterStyles.d.ts +0 -5
  133. package/lib/components/CardHeader/CardHeader.d.ts +0 -6
  134. package/lib/components/CardHeader/CardHeader.types.d.ts +0 -17
  135. package/lib/components/CardHeader/index.d.ts +0 -5
  136. package/lib/components/CardHeader/renderCardHeader.d.ts +0 -5
  137. package/lib/components/CardHeader/useCardHeader.d.ts +0 -13
  138. package/lib/components/CardHeader/useCardHeaderStyles.d.ts +0 -5
  139. package/lib/components/CardPreview/CardPreview.d.ts +0 -6
  140. package/lib/components/CardPreview/CardPreview.types.d.ts +0 -13
  141. package/lib/components/CardPreview/index.d.ts +0 -5
  142. package/lib/components/CardPreview/renderCardPreview.d.ts +0 -5
  143. package/lib/components/CardPreview/useCardPreview.d.ts +0 -16
  144. package/lib/components/CardPreview/useCardPreviewStyles.d.ts +0 -5
  145. package/lib/index.d.ts +0 -4
  146. package/lib/tsdoc-metadata.json +0 -11
  147. package/lib-commonjs/Card.d.ts +0 -1
  148. package/lib-commonjs/CardFooter.d.ts +0 -1
  149. package/lib-commonjs/CardHeader.d.ts +0 -1
  150. package/lib-commonjs/CardPreview.d.ts +0 -1
  151. package/lib-commonjs/common/isConformant.d.ts +0 -4
  152. package/lib-commonjs/common/isConformant.js +0 -22
  153. package/lib-commonjs/common/isConformant.js.map +0 -1
  154. package/lib-commonjs/components/Card/Card.d.ts +0 -6
  155. package/lib-commonjs/components/Card/Card.types.d.ts +0 -13
  156. package/lib-commonjs/components/Card/index.d.ts +0 -5
  157. package/lib-commonjs/components/Card/renderCard.d.ts +0 -5
  158. package/lib-commonjs/components/Card/useCard.d.ts +0 -12
  159. package/lib-commonjs/components/Card/useCardStyles.d.ts +0 -5
  160. package/lib-commonjs/components/CardFooter/CardFooter.d.ts +0 -6
  161. package/lib-commonjs/components/CardFooter/CardFooter.types.d.ts +0 -13
  162. package/lib-commonjs/components/CardFooter/index.d.ts +0 -5
  163. package/lib-commonjs/components/CardFooter/renderCardFooter.d.ts +0 -5
  164. package/lib-commonjs/components/CardFooter/useCardFooter.d.ts +0 -16
  165. package/lib-commonjs/components/CardFooter/useCardFooterStyles.d.ts +0 -5
  166. package/lib-commonjs/components/CardHeader/CardHeader.d.ts +0 -6
  167. package/lib-commonjs/components/CardHeader/CardHeader.types.d.ts +0 -17
  168. package/lib-commonjs/components/CardHeader/index.d.ts +0 -5
  169. package/lib-commonjs/components/CardHeader/renderCardHeader.d.ts +0 -5
  170. package/lib-commonjs/components/CardHeader/useCardHeader.d.ts +0 -13
  171. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.d.ts +0 -5
  172. package/lib-commonjs/components/CardPreview/CardPreview.d.ts +0 -6
  173. package/lib-commonjs/components/CardPreview/CardPreview.types.d.ts +0 -13
  174. package/lib-commonjs/components/CardPreview/index.d.ts +0 -5
  175. package/lib-commonjs/components/CardPreview/renderCardPreview.d.ts +0 -5
  176. package/lib-commonjs/components/CardPreview/useCardPreview.d.ts +0 -16
  177. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.d.ts +0 -5
  178. package/lib-commonjs/index.d.ts +0 -4
package/CHANGELOG.md CHANGED
@@ -1,12 +1,403 @@
1
1
  # Change Log - @fluentui/react-card
2
2
 
3
- This log was last generated on Wed, 27 Oct 2021 12:12:23 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 02 Nov 2022 11:54:50 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.31)
8
+
9
+ Wed, 02 Nov 2022 11:54:50 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.30..@fluentui/react-card_v9.0.0-beta.31)
11
+
12
+ ### Changes
13
+
14
+ - chore: Update Griffel to latest version ([PR #25412](https://github.com/microsoft/fluentui/pull/25412) by olfedias@microsoft.com)
15
+ - Bump @fluentui/react-utilities to v9.2.0 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
16
+ - Bump @fluentui/react-tabster to v9.2.1 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
17
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.17 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
18
+ - Bump @fluentui/react-text to v9.1.5 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
19
+ - Bump @fluentui/react-button to v9.1.7 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
20
+
21
+ ## [9.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.30)
22
+
23
+ Tue, 25 Oct 2022 00:35:40 GMT
24
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.29..@fluentui/react-card_v9.0.0-beta.30)
25
+
26
+ ### Changes
27
+
28
+ - Bump @fluentui/react-text to v9.1.4 ([PR #25363](https://github.com/microsoft/fluentui/pull/25363) by beachball)
29
+ - Bump @fluentui/react-button to v9.1.6 ([PR #25363](https://github.com/microsoft/fluentui/pull/25363) by beachball)
30
+
31
+ ## [9.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.29)
32
+
33
+ Thu, 20 Oct 2022 08:39:28 GMT
34
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.28..@fluentui/react-card_v9.0.0-beta.29)
35
+
36
+ ### Changes
37
+
38
+ - chore: Migrate to new package structure. ([PR #25229](https://github.com/microsoft/fluentui/pull/25229) by tristan.watanabe@gmail.com)
39
+ - chore: Bump peer deps to support React 18 ([PR #24972](https://github.com/microsoft/fluentui/pull/24972) by mgodbolt@microsoft.com)
40
+ - chore: Update Griffel to latest version ([PR #25212](https://github.com/microsoft/fluentui/pull/25212) by olfedias@microsoft.com)
41
+ - Bump @fluentui/react-utilities to v9.1.2 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
42
+ - Bump @fluentui/react-tabster to v9.2.0 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
43
+ - Bump @fluentui/react-theme to v9.1.1 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
44
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.16 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
45
+ - Bump @fluentui/react-text to v9.1.3 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
46
+ - Bump @fluentui/react-button to v9.1.5 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
47
+
48
+ ## [9.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.28)
49
+
50
+ Thu, 13 Oct 2022 11:02:44 GMT
51
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.27..@fluentui/react-card_v9.0.0-beta.28)
52
+
53
+ ### Changes
54
+
55
+ - chore: Update Griffel to latest version ([PR #25075](https://github.com/microsoft/fluentui/pull/25075) by olfedias@microsoft.com)
56
+ - Bump @fluentui/react-utilities to v9.1.1 ([PR #25181](https://github.com/microsoft/fluentui/pull/25181) by beachball)
57
+ - Bump @fluentui/react-tabster to v9.1.3 ([PR #25181](https://github.com/microsoft/fluentui/pull/25181) by beachball)
58
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.15 ([PR #25181](https://github.com/microsoft/fluentui/pull/25181) by beachball)
59
+ - Bump @fluentui/react-text to v9.1.2 ([PR #25181](https://github.com/microsoft/fluentui/pull/25181) by beachball)
60
+ - Bump @fluentui/react-button to v9.1.4 ([PR #25181](https://github.com/microsoft/fluentui/pull/25181) by beachball)
61
+
62
+ ## [9.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.27)
63
+
64
+ Mon, 03 Oct 2022 22:24:42 GMT
65
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.26..@fluentui/react-card_v9.0.0-beta.27)
66
+
67
+ ### Changes
68
+
69
+ - Bump @fluentui/react-tabster to v9.1.2 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
70
+ - Bump @fluentui/react-button to v9.1.3 ([PR #25055](https://github.com/microsoft/fluentui/pull/25055) by beachball)
71
+
72
+ ## [9.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.26)
73
+
74
+ Tue, 20 Sep 2022 20:55:45 GMT
75
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.25..@fluentui/react-card_v9.0.0-beta.26)
76
+
77
+ ### Changes
78
+
79
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.14 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
80
+ - Bump @fluentui/react-text to v9.1.1 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
81
+ - Bump @fluentui/react-button to v9.1.2 ([PR #24869](https://github.com/microsoft/fluentui/pull/24869) by beachball)
82
+
83
+ ## [9.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.25)
84
+
85
+ Thu, 15 Sep 2022 09:49:58 GMT
86
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.24..@fluentui/react-card_v9.0.0-beta.25)
87
+
88
+ ### Changes
89
+
90
+ - chore: Update Griffel to latest version ([PR #24221](https://github.com/microsoft/fluentui/pull/24221) by olfedias@microsoft.com)
91
+ - Bump @fluentui/react-utilities to v9.1.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
92
+ - Bump @fluentui/react-tabster to v9.1.1 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
93
+ - Bump @fluentui/react-theme to v9.1.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
94
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.13 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
95
+ - Bump @fluentui/react-text to v9.1.0 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
96
+ - Bump @fluentui/react-button to v9.1.1 ([PR #24808](https://github.com/microsoft/fluentui/pull/24808) by beachball)
97
+
98
+ ## [9.0.0-beta.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.24)
99
+
100
+ Wed, 03 Aug 2022 16:03:40 GMT
101
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.23..@fluentui/react-card_v9.0.0-beta.24)
102
+
103
+ ### Changes
104
+
105
+ - chore: Bump Griffel dependencies ([PR #24114](https://github.com/microsoft/fluentui/pull/24114) by miroslav.stastny@microsoft.com)
106
+ - Bump @fluentui/react-tabster to v9.1.0 ([PR #24131](https://github.com/microsoft/fluentui/pull/24131) by beachball)
107
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.12 ([PR #24131](https://github.com/microsoft/fluentui/pull/24131) by beachball)
108
+ - Bump @fluentui/react-text to v9.0.4 ([PR #24131](https://github.com/microsoft/fluentui/pull/24131) by beachball)
109
+ - Bump @fluentui/react-button to v9.1.0 ([PR #24131](https://github.com/microsoft/fluentui/pull/24131) by beachball)
110
+
111
+ ## [9.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.23)
112
+
113
+ Thu, 14 Jul 2022 21:21:09 GMT
114
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.22..@fluentui/react-card_v9.0.0-beta.23)
115
+
116
+ ### Changes
117
+
118
+ - fix: Fixing bad version bump of @fluentui/react-utilities. ([PR #23920](https://github.com/microsoft/fluentui/pull/23920) by Humberto.Morimoto@microsoft.com)
119
+ - Bump @fluentui/react-utilities to v9.0.2 ([PR #23918](https://github.com/microsoft/fluentui/pull/23918) by beachball)
120
+ - Bump @fluentui/react-tabster to v9.0.3 ([PR #23918](https://github.com/microsoft/fluentui/pull/23918) by beachball)
121
+ - Bump @fluentui/react-text to v9.0.3 ([PR #23918](https://github.com/microsoft/fluentui/pull/23918) by beachball)
122
+ - Bump @fluentui/react-button to v9.0.3 ([PR #23918](https://github.com/microsoft/fluentui/pull/23918) by beachball)
123
+
124
+ ## [9.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.22)
125
+
126
+ Thu, 14 Jul 2022 17:06:16 GMT
127
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.21..@fluentui/react-card_v9.0.0-beta.22)
128
+
129
+ ### Changes
130
+
131
+ - BREAKING CHANGE: new structural and styling approach applied to CardHeader ([PR #23449](https://github.com/microsoft/fluentui/pull/23449) by 39736248+andrefcdias@users.noreply.github.com)
132
+ - feat: add `img` as allowed element for CardPreview's logo slot ([PR #23902](https://github.com/microsoft/fluentui/pull/23902) by 39736248+andrefcdias@users.noreply.github.com)
133
+ - Bump @fluentui/react-utilities to v9.0.1-0 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball)
134
+ - Bump @fluentui/react-tabster to v9.0.2 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball)
135
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.11 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball)
136
+ - Bump @fluentui/react-text to v9.0.2 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball)
137
+ - Bump @fluentui/react-button to v9.0.2 ([PR #23897](https://github.com/microsoft/fluentui/pull/23897) by beachball)
138
+
139
+ ## [9.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.21)
140
+
141
+ Tue, 28 Jun 2022 17:39:47 GMT
142
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.20..@fluentui/react-card_v9.0.0-beta.21)
143
+
144
+ ### Changes
145
+
146
+ - fix: Use caret dependency range for Griffel ([PR #23754](https://github.com/microsoft/fluentui/pull/23754) by lingfangao@hotmail.com)
147
+ - Bump @fluentui/react-tabster to v9.0.1 ([PR #23754](https://github.com/microsoft/fluentui/pull/23754) by beachball)
148
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.10 ([PR #23754](https://github.com/microsoft/fluentui/pull/23754) by beachball)
149
+ - Bump @fluentui/react-text to v9.0.1 ([PR #23754](https://github.com/microsoft/fluentui/pull/23754) by beachball)
150
+ - Bump @fluentui/react-button to v9.0.1 ([PR #23754](https://github.com/microsoft/fluentui/pull/23754) by beachball)
151
+
152
+ ## [9.0.0-beta.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.20)
153
+
154
+ Tue, 28 Jun 2022 15:13:27 GMT
155
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.19..@fluentui/react-card_v9.0.0-beta.20)
156
+
157
+ ### Changes
158
+
159
+ - feat: add `orientation` prop ([PR #23037](https://github.com/microsoft/fluentui/pull/23037) by 39736248+andrefcdias@users.noreply.github.com)
160
+ - chore: add basic API documentation ([PR #23410](https://github.com/microsoft/fluentui/pull/23410) by 39736248+andrefcdias@users.noreply.github.com)
161
+ - Bump Griffel dependencies ([PR #23688](https://github.com/microsoft/fluentui/pull/23688) by lingfangao@hotmail.com)
162
+ - feat: Add focus indicators ([PR #23456](https://github.com/microsoft/fluentui/pull/23456) by 39736248+andrefcdias@users.noreply.github.com)
163
+ - Update 9.0.0-rc dependencies to use caret range ([PR #23732](https://github.com/microsoft/fluentui/pull/23732) by lingfangao@hotmail.com)
164
+ - Bump @fluentui/react-utilities to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
165
+ - Bump @fluentui/react-tabster to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
166
+ - Bump @fluentui/react-theme to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
167
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.9 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
168
+ - Bump @fluentui/react-text to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
169
+ - Bump @fluentui/react-button to v9.0.0 ([commit](https://github.com/microsoft/fluentui/commit/ba6c5d651559b91c815429c9a9357c4d5a390f3e) by beachball)
170
+
171
+ ## [9.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.19)
172
+
173
+ Thu, 23 Jun 2022 14:25:31 GMT
174
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.18..@fluentui/react-card_v9.0.0-beta.19)
175
+
176
+ ### Changes
177
+
178
+ - Bump @fluentui/react-tabster to v9.0.0-rc.14 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
179
+ - Bump @fluentui/react-theme to v9.0.0-rc.10 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
180
+ - Bump @fluentui/react-text to v9.0.0-rc.12 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
181
+ - Bump @fluentui/react-button to v9.0.0-rc.14 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
182
+
183
+ ## [9.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.18)
184
+
185
+ Tue, 31 May 2022 21:28:36 GMT
186
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.17..@fluentui/react-card_v9.0.0-beta.18)
187
+
188
+ ### Changes
189
+
190
+ - feat: Add `size` property to control card padding and border radius ([PR #22915](https://github.com/microsoft/fluentui/pull/22915) by 39736248+andrefcdias@users.noreply.github.com)
191
+ - chore: Update Griffel to latest version ([PR #23275](https://github.com/microsoft/fluentui/pull/23275) by olfedias@microsoft.com)
192
+ - Bump @fluentui/react-utilities to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
193
+ - Bump @fluentui/react-tabster to v9.0.0-rc.13 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
194
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
195
+ - Bump @fluentui/react-text to v9.0.0-rc.11 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
196
+ - Bump @fluentui/react-button to v9.0.0-rc.13 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
197
+
198
+ ## [9.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.17)
199
+
200
+ Thu, 26 May 2022 21:01:32 GMT
201
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.16..@fluentui/react-card_v9.0.0-beta.17)
202
+
203
+ ### Changes
204
+
205
+ - Bump @fluentui/react-tabster to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
206
+ - Bump @fluentui/react-button to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
207
+
208
+ ## [9.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.16)
209
+
210
+ Mon, 23 May 2022 18:56:42 GMT
211
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.15..@fluentui/react-card_v9.0.0-beta.16)
212
+
213
+ ### Changes
214
+
215
+ - Removing <componentName>ClassName exports. ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by esteban.230@hotmail.com)
216
+ - update tabster tab behaviors ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by seanmonahan@microsoft.com)
217
+ - Bump @fluentui/react-tabster to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
218
+ - Bump @fluentui/react-theme to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
219
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
220
+ - Bump @fluentui/react-text to v9.0.0-rc.10 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
221
+ - Bump @fluentui/react-button to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
222
+
223
+ ## [9.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.15)
224
+
225
+ Mon, 23 May 2022 12:14:05 GMT
226
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.14..@fluentui/react-card_v9.0.0-beta.15)
227
+
228
+ ### Changes
229
+
230
+ - chore: Update Griffel to latest version ([PR #22894](https://github.com/microsoft/fluentui/pull/22894) by olfedias@microsoft.com)
231
+ - CardPreview now expands properly, all the way to the Card's edges ([PR #22761](https://github.com/microsoft/fluentui/pull/22761) by 39736248+andrefcdias@users.noreply.github.com)
232
+ - fix: focus no longer being managed when using `focusMode="off"` ([PR #23011](https://github.com/microsoft/fluentui/pull/23011) by 39736248+andrefcdias@users.noreply.github.com)
233
+ - remove commons from Card ([PR #22872](https://github.com/microsoft/fluentui/pull/22872) by sarah.higley@microsoft.com)
234
+ - chore: Update Griffel to latest version ([PR #23029](https://github.com/microsoft/fluentui/pull/23029) by olfedias@microsoft.com)
235
+ - Bump @fluentui/react-utilities to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
236
+ - Bump @fluentui/react-tabster to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
237
+ - Bump @fluentui/react-theme to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
238
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
239
+ - Bump @fluentui/react-text to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
240
+ - Bump @fluentui/react-button to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
241
+
242
+ ## [9.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.14)
243
+
244
+ Thu, 05 May 2022 18:26:29 GMT
245
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.13..@fluentui/react-card_v9.0.0-beta.14)
246
+
247
+ ### Changes
248
+
249
+ - Added new `focusMode` property to control the focus behavior inside of the component ([PR #22312](https://github.com/microsoft/fluentui/pull/22312) by 39736248+andrefcdias@users.noreply.github.com)
250
+ - Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
251
+ - Bump @fluentui/react-tabster to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
252
+ - Bump @fluentui/react-theme to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
253
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
254
+ - Bump @fluentui/react-text to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
255
+ - Bump @fluentui/react-button to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
256
+
257
+ ## [9.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.13)
258
+
259
+ Wed, 04 May 2022 13:26:38 GMT
260
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.12..@fluentui/react-card_v9.0.0-beta.13)
261
+
262
+ ### Changes
263
+
264
+ - feat: ship rolluped only dts ([PR #22708](https://github.com/microsoft/fluentui/pull/22708) by martinhochel@microsoft.com)
265
+ - Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
266
+ - Bump @fluentui/react-tabster to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
267
+ - Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
268
+ - Bump @fluentui/react-text to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
269
+ - Bump @fluentui/react-button to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
270
+
271
+ ## [9.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.12)
272
+
273
+ Mon, 25 Apr 2022 09:32:19 GMT
274
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.11..@fluentui/react-card_v9.0.0-beta.12)
275
+
276
+ ### Changes
277
+
278
+ - Bump @fluentui/react-tabster to v9.0.0-rc.7 ([PR #22601](https://github.com/microsoft/fluentui/pull/22601) by beachball)
279
+ - Bump @fluentui/react-button to v9.0.0-rc.7 ([PR #22601](https://github.com/microsoft/fluentui/pull/22601) by beachball)
280
+
281
+ ## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.11)
282
+
283
+ Tue, 19 Apr 2022 19:17:14 GMT
284
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.10..@fluentui/react-card_v9.0.0-beta.11)
285
+
286
+ ### Changes
287
+
288
+ - chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
289
+ - Add static classnames to Card ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
290
+ - Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
291
+ - Bump @fluentui/react-tabster to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
292
+ - Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
293
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
294
+ - Bump @fluentui/react-text to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
295
+ - Bump @fluentui/react-button to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
296
+
297
+ ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.10)
298
+
299
+ Fri, 04 Mar 2022 05:17:35 GMT
300
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.9..@fluentui/react-card_v9.0.0-beta.10)
301
+
302
+ ### Changes
303
+
304
+ - Adding explicit export maps on all consumer packages for FUIR 8 and 9. ([PR #21508](https://github.com/microsoft/fluentui/pull/21508) by dzearing@microsoft.com)
305
+ - Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
306
+ - Bump @fluentui/react-tabster to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
307
+ - Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
308
+ - Bump @fluentui/react-text to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
309
+ - Bump @fluentui/react-button to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
310
+
311
+ ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.9)
312
+
313
+ Tue, 01 Mar 2022 02:17:35 GMT
314
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.8..@fluentui/react-card_v9.0.0-beta.9)
315
+
316
+ ### Changes
317
+
318
+ - fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
319
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
320
+ - Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
321
+ - Bump @fluentui/react-text to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
322
+ - Bump @fluentui/react-button to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
323
+
324
+ ## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.8)
325
+
326
+ Fri, 18 Feb 2022 13:35:29 GMT
327
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.6..@fluentui/react-card_v9.0.0-beta.8)
328
+
329
+ ### Changes
330
+
331
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
332
+ - Add new appearance property to allow for different card styles ([PR #21264](https://github.com/microsoft/fluentui/pull/21264) by 39736248+andrefcdias@users.noreply.github.com)
333
+ - fix: top padding issues with CardPreview ([PR #21685](https://github.com/microsoft/fluentui/pull/21685) by 39736248+andrefcdias@users.noreply.github.com)
334
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
335
+ - Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
336
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
337
+ - Bump @fluentui/react-text to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
338
+ - Bump @fluentui/react-button to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
339
+
340
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.6)
341
+
342
+ Thu, 10 Feb 2022 08:51:52 GMT
343
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.5..@fluentui/react-card_v9.0.0-beta.6)
344
+
345
+ ### Changes
346
+
347
+ - Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
348
+ - Bump Fluent UI dependencies to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
349
+ - react-card: Replacing use of functions in makeStyles with direct use of tokens. ([PR #21040](https://github.com/microsoft/fluentui/pull/21040) by Humberto.Morimoto@microsoft.com)
350
+ - Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
351
+ - Remove empty CardCommons type and outdated boilerplate comments ([PR #21150](https://github.com/microsoft/fluentui/pull/21150) by elcraig@microsoft.com)
352
+ - BREAKING: Rename component hooks add the suffix \_unstable, as their API has not been finalized yet ([PR #21365](https://github.com/microsoft/fluentui/pull/21365) by behowell@microsoft.com)
353
+ - use Griffel packages ([PR #21417](https://github.com/microsoft/fluentui/pull/21417) by olfedias@microsoft.com)
354
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
355
+ - update styles no not use CSS shorthands ([PR #20794](https://github.com/microsoft/fluentui/pull/20794) by olfedias@microsoft.com)
356
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
357
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
358
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
359
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
360
+ - Bump @fluentui/react-text to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
361
+ - Bump @fluentui/react-button to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
362
+
363
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.5)
364
+
365
+ Thu, 25 Nov 2021 08:34:12 GMT
366
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.4..@fluentui/react-card_v9.0.0-beta.5)
367
+
368
+ ### Changes
369
+
370
+ - Migrate Card ([PR #20599](https://github.com/microsoft/fluentui/pull/20599) by andredias@microsoft.com)
371
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
372
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
373
+ - Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
374
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
375
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
376
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
377
+ - Bump @fluentui/react-text to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
378
+ - Bump @fluentui/react-button to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
379
+
380
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.4)
381
+
382
+ Fri, 12 Nov 2021 13:25:17 GMT
383
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.3..@fluentui/react-card_v9.0.0-beta.4)
384
+
385
+ ### Changes
386
+
387
+ - export static classes for components ([PR #20447](https://github.com/microsoft/fluentui/pull/20447) by olfedias@microsoft.com)
388
+ - Migrate to new useFocusableGroup usage ([PR #20131](https://github.com/microsoft/fluentui/pull/20131) by andredias@microsoft.com)
389
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
390
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
391
+ - Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
392
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
393
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
394
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
395
+ - Bump @fluentui/react-text to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
396
+ - Bump @fluentui/react-button to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
397
+
7
398
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.3)
8
399
 
9
- Wed, 27 Oct 2021 12:12:23 GMT
400
+ Wed, 27 Oct 2021 12:14:15 GMT
10
401
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.2..@fluentui/react-card_v9.0.0-beta.3)
11
402
 
12
403
  ### Changes
@@ -23,7 +414,7 @@ Wed, 27 Oct 2021 12:12:23 GMT
23
414
 
24
415
  ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.2)
25
416
 
26
- Tue, 12 Oct 2021 19:45:58 GMT
417
+ Tue, 12 Oct 2021 19:45:58 GMT
27
418
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.1..@fluentui/react-card_v9.0.0-beta.2)
28
419
 
29
420
  ### Changes
@@ -35,7 +426,7 @@ Tue, 12 Oct 2021 19:45:58 GMT
35
426
 
36
427
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.1)
37
428
 
38
- Wed, 06 Oct 2021 10:37:22 GMT
429
+ Wed, 06 Oct 2021 10:37:22 GMT
39
430
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.18..@fluentui/react-card_v9.0.0-beta.1)
40
431
 
41
432
  ### Changes
@@ -51,7 +442,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
51
442
 
52
443
  ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.18)
53
444
 
54
- Tue, 05 Oct 2021 12:47:58 GMT
445
+ Tue, 05 Oct 2021 12:47:58 GMT
55
446
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.17..@fluentui/react-card_v9.0.0-alpha.18)
56
447
 
57
448
  ### Changes
@@ -65,7 +456,7 @@ Tue, 05 Oct 2021 12:47:58 GMT
65
456
 
66
457
  ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.17)
67
458
 
68
- Tue, 05 Oct 2021 09:28:07 GMT
459
+ Tue, 05 Oct 2021 09:28:07 GMT
69
460
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.16..@fluentui/react-card_v9.0.0-alpha.17)
70
461
 
71
462
  ### Changes
@@ -81,7 +472,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
81
472
 
82
473
  ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.16)
83
474
 
84
- Mon, 04 Oct 2021 08:03:04 GMT
475
+ Mon, 04 Oct 2021 08:03:04 GMT
85
476
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.15..@fluentui/react-card_v9.0.0-alpha.16)
86
477
 
87
478
  ### Changes
@@ -90,7 +481,7 @@ Mon, 04 Oct 2021 08:03:04 GMT
90
481
 
91
482
  ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.15)
92
483
 
93
- Fri, 01 Oct 2021 14:13:08 GMT
484
+ Fri, 01 Oct 2021 14:13:08 GMT
94
485
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.13..@fluentui/react-card_v9.0.0-alpha.15)
95
486
 
96
487
  ### Changes
@@ -106,7 +497,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
106
497
 
107
498
  ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.13)
108
499
 
109
- Fri, 01 Oct 2021 12:30:46 GMT
500
+ Fri, 01 Oct 2021 12:30:46 GMT
110
501
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.12..@fluentui/react-card_v9.0.0-alpha.13)
111
502
 
112
503
  ### Changes
@@ -115,7 +506,7 @@ Fri, 01 Oct 2021 12:30:46 GMT
115
506
 
116
507
  ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.12)
117
508
 
118
- Fri, 01 Oct 2021 09:44:56 GMT
509
+ Fri, 01 Oct 2021 09:44:56 GMT
119
510
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.11..@fluentui/react-card_v9.0.0-alpha.12)
120
511
 
121
512
  ### Changes
@@ -124,7 +515,7 @@ Fri, 01 Oct 2021 09:44:56 GMT
124
515
 
125
516
  ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.11)
126
517
 
127
- Thu, 30 Sep 2021 09:18:15 GMT
518
+ Thu, 30 Sep 2021 09:18:15 GMT
128
519
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.10..@fluentui/react-card_v9.0.0-alpha.11)
129
520
 
130
521
  ### Changes
@@ -133,7 +524,7 @@ Thu, 30 Sep 2021 09:18:15 GMT
133
524
 
134
525
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.10)
135
526
 
136
- Wed, 29 Sep 2021 08:06:11 GMT
527
+ Wed, 29 Sep 2021 08:06:11 GMT
137
528
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.9..@fluentui/react-card_v9.0.0-alpha.10)
138
529
 
139
530
  ### Changes
@@ -147,7 +538,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
147
538
 
148
539
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.9)
149
540
 
150
- Mon, 27 Sep 2021 08:06:00 GMT
541
+ Mon, 27 Sep 2021 08:06:00 GMT
151
542
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.8..@fluentui/react-card_v9.0.0-alpha.9)
152
543
 
153
544
  ### Changes
@@ -162,7 +553,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
162
553
 
163
554
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.8)
164
555
 
165
- Fri, 24 Sep 2021 09:17:17 GMT
556
+ Fri, 24 Sep 2021 09:17:17 GMT
166
557
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.7..@fluentui/react-card_v9.0.0-alpha.8)
167
558
 
168
559
  ### Changes
@@ -177,7 +568,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
177
568
 
178
569
  ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.7)
179
570
 
180
- Thu, 23 Sep 2021 08:21:34 GMT
571
+ Thu, 23 Sep 2021 08:21:34 GMT
181
572
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.6..@fluentui/react-card_v9.0.0-alpha.7)
182
573
 
183
574
  ### Changes
@@ -194,7 +585,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
194
585
 
195
586
  ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.6)
196
587
 
197
- Wed, 22 Sep 2021 10:10:07 GMT
588
+ Wed, 22 Sep 2021 10:10:07 GMT
198
589
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.5..@fluentui/react-card_v9.0.0-alpha.6)
199
590
 
200
591
  ### Changes
@@ -209,7 +600,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
209
600
 
210
601
  ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.5)
211
602
 
212
- Tue, 21 Sep 2021 07:42:34 GMT
603
+ Tue, 21 Sep 2021 07:42:34 GMT
213
604
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.4..@fluentui/react-card_v9.0.0-alpha.5)
214
605
 
215
606
  ### Changes
@@ -223,7 +614,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
223
614
 
224
615
  ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.4)
225
616
 
226
- Mon, 20 Sep 2021 07:36:26 GMT
617
+ Mon, 20 Sep 2021 07:36:26 GMT
227
618
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.3..@fluentui/react-card_v9.0.0-alpha.4)
228
619
 
229
620
  ### Changes
@@ -232,7 +623,7 @@ Mon, 20 Sep 2021 07:36:26 GMT
232
623
 
233
624
  ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.3)
234
625
 
235
- Fri, 17 Sep 2021 07:35:26 GMT
626
+ Fri, 17 Sep 2021 07:35:26 GMT
236
627
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.2..@fluentui/react-card_v9.0.0-alpha.3)
237
628
 
238
629
  ### Changes
@@ -241,7 +632,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
241
632
 
242
633
  ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.2)
243
634
 
244
- Thu, 16 Sep 2021 07:38:39 GMT
635
+ Thu, 16 Sep 2021 07:38:39 GMT
245
636
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.1..@fluentui/react-card_v9.0.0-alpha.2)
246
637
 
247
638
  ### Changes
@@ -250,7 +641,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
250
641
 
251
642
  ## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.1)
252
643
 
253
- Tue, 14 Sep 2021 20:09:02 GMT
644
+ Tue, 14 Sep 2021 20:09:02 GMT
254
645
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.1)
255
646
 
256
647
  ### Changes
@@ -260,7 +651,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
260
651
 
261
652
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
262
653
 
263
- Fri, 10 Sep 2021 16:31:53 GMT
654
+ Fri, 10 Sep 2021 16:31:53 GMT
264
655
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
265
656
 
266
657
  ### Changes
@@ -269,7 +660,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
269
660
 
270
661
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
271
662
 
272
- Fri, 10 Sep 2021 07:39:51 GMT
663
+ Fri, 10 Sep 2021 07:39:51 GMT
273
664
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
274
665
 
275
666
  ### Changes
@@ -278,7 +669,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
278
669
 
279
670
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
280
671
 
281
- Mon, 06 Sep 2021 07:34:53 GMT
672
+ Mon, 06 Sep 2021 07:34:53 GMT
282
673
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
283
674
 
284
675
  ### Changes
@@ -287,7 +678,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
287
678
 
288
679
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
289
680
 
290
- Thu, 02 Sep 2021 07:36:46 GMT
681
+ Thu, 02 Sep 2021 07:36:46 GMT
291
682
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
292
683
 
293
684
  ### Patches
@@ -300,7 +691,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
300
691
 
301
692
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
302
693
 
303
- Wed, 01 Sep 2021 07:39:56 GMT
694
+ Wed, 01 Sep 2021 07:39:56 GMT
304
695
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
305
696
 
306
697
  ### Changes
@@ -309,7 +700,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
309
700
 
310
701
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
311
702
 
312
- Tue, 31 Aug 2021 07:37:47 GMT
703
+ Tue, 31 Aug 2021 07:37:47 GMT
313
704
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
314
705
 
315
706
  ### Changes
@@ -318,7 +709,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
318
709
 
319
710
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
320
711
 
321
- Fri, 27 Aug 2021 07:33:32 GMT
712
+ Fri, 27 Aug 2021 07:33:32 GMT
322
713
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
323
714
 
324
715
  ### Changes
@@ -327,7 +718,7 @@ Fri, 27 Aug 2021 07:33:32 GMT
327
718
 
328
719
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
329
720
 
330
- Thu, 26 Aug 2021 07:35:43 GMT
721
+ Thu, 26 Aug 2021 07:35:43 GMT
331
722
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
332
723
 
333
724
  ### Changes
@@ -336,7 +727,7 @@ Thu, 26 Aug 2021 07:35:43 GMT
336
727
 
337
728
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
338
729
 
339
- Fri, 20 Aug 2021 07:37:28 GMT
730
+ Fri, 20 Aug 2021 07:37:28 GMT
340
731
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
341
732
 
342
733
  ### Changes
@@ -345,7 +736,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
345
736
 
346
737
  ## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
347
738
 
348
- Thu, 19 Aug 2021 07:41:35 GMT
739
+ Thu, 19 Aug 2021 07:41:35 GMT
349
740
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
350
741
 
351
742
  ### Changes