@fluentui/react-card 9.0.0-alpha.9 → 9.0.0-beta.11

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 (173) hide show
  1. package/CHANGELOG.json +961 -8
  2. package/CHANGELOG.md +267 -9
  3. package/README.md +3 -1
  4. package/Spec.md +523 -0
  5. package/assets/Card.png +0 -0
  6. package/assets/CardHeader.png +0 -0
  7. package/assets/CardPreview.png +0 -0
  8. package/assets/context-interaction-keyboard.png +0 -0
  9. package/assets/context-interaction-mouse.png +0 -0
  10. package/assets/context-narrator.png +0 -0
  11. package/assets/disabled-narrator.png +0 -0
  12. package/assets/disabled.png +0 -0
  13. package/assets/interactive-interaction-keyboard.png +0 -0
  14. package/assets/interactive-interaction-mouse.png +0 -0
  15. package/assets/interactive-narrator.png +0 -0
  16. package/assets/non-interactive-interaction-keyboard.png +0 -0
  17. package/assets/non-interactive-interaction-mouse.png +0 -0
  18. package/assets/non-interactive-narrator.png +0 -0
  19. package/assets/non-interactive-selectable-interaction-keyboard.png +0 -0
  20. package/assets/non-interactive-selectable-interaction-mouse.png +0 -0
  21. package/assets/selectable-interaction-keyboard.png +0 -0
  22. package/assets/selectable-interaction-mouse.png +0 -0
  23. package/assets/selectable-narrator.png +0 -0
  24. package/dist/react-card.d.ts +77 -131
  25. package/lib/Card.js.map +1 -1
  26. package/lib/CardFooter.js.map +1 -1
  27. package/lib/CardHeader.js.map +1 -1
  28. package/lib/CardPreview.js.map +1 -1
  29. package/lib/components/Card/Card.d.ts +3 -3
  30. package/lib/components/Card/Card.js +8 -8
  31. package/lib/components/Card/Card.js.map +1 -1
  32. package/lib/components/Card/Card.types.d.ts +9 -18
  33. package/lib/components/Card/Card.types.js.map +1 -1
  34. package/lib/components/Card/index.js.map +1 -1
  35. package/lib/components/Card/renderCard.d.ts +1 -1
  36. package/lib/components/Card/renderCard.js +8 -8
  37. package/lib/components/Card/renderCard.js.map +1 -1
  38. package/lib/components/Card/useCard.d.ts +3 -4
  39. package/lib/components/Card/useCard.js +23 -11
  40. package/lib/components/Card/useCard.js.map +1 -1
  41. package/lib/components/Card/useCardStyles.d.ts +8 -2
  42. package/lib/components/Card/useCardStyles.js +140 -24
  43. package/lib/components/Card/useCardStyles.js.map +1 -1
  44. package/lib/components/CardFooter/CardFooter.d.ts +2 -2
  45. package/lib/components/CardFooter/CardFooter.js +7 -7
  46. package/lib/components/CardFooter/CardFooter.js.map +1 -1
  47. package/lib/components/CardFooter/CardFooter.types.d.ts +8 -23
  48. package/lib/components/CardFooter/CardFooter.types.js.map +1 -1
  49. package/lib/components/CardFooter/index.js.map +1 -1
  50. package/lib/components/CardFooter/renderCardFooter.d.ts +1 -1
  51. package/lib/components/CardFooter/renderCardFooter.js +9 -9
  52. package/lib/components/CardFooter/renderCardFooter.js.map +1 -1
  53. package/lib/components/CardFooter/useCardFooter.d.ts +4 -9
  54. package/lib/components/CardFooter/useCardFooter.js +18 -17
  55. package/lib/components/CardFooter/useCardFooter.js.map +1 -1
  56. package/lib/components/CardFooter/useCardFooterStyles.d.ts +8 -2
  57. package/lib/components/CardFooter/useCardFooterStyles.js +18 -8
  58. package/lib/components/CardFooter/useCardFooterStyles.js.map +1 -1
  59. package/lib/components/CardHeader/CardHeader.d.ts +2 -2
  60. package/lib/components/CardHeader/CardHeader.js +7 -7
  61. package/lib/components/CardHeader/CardHeader.js.map +1 -1
  62. package/lib/components/CardHeader/CardHeader.types.d.ts +12 -39
  63. package/lib/components/CardHeader/CardHeader.types.js.map +1 -1
  64. package/lib/components/CardHeader/index.js.map +1 -1
  65. package/lib/components/CardHeader/renderCardHeader.d.ts +1 -1
  66. package/lib/components/CardHeader/renderCardHeader.js +13 -9
  67. package/lib/components/CardHeader/renderCardHeader.js.map +1 -1
  68. package/lib/components/CardHeader/useCardHeader.d.ts +4 -9
  69. package/lib/components/CardHeader/useCardHeader.js +35 -33
  70. package/lib/components/CardHeader/useCardHeader.js.map +1 -1
  71. package/lib/components/CardHeader/useCardHeaderStyles.d.ts +8 -2
  72. package/lib/components/CardHeader/useCardHeaderStyles.js +35 -9
  73. package/lib/components/CardHeader/useCardHeaderStyles.js.map +1 -1
  74. package/lib/components/CardPreview/CardPreview.d.ts +2 -2
  75. package/lib/components/CardPreview/CardPreview.js +7 -7
  76. package/lib/components/CardPreview/CardPreview.js.map +1 -1
  77. package/lib/components/CardPreview/CardPreview.types.d.ts +8 -23
  78. package/lib/components/CardPreview/CardPreview.types.js.map +1 -1
  79. package/lib/components/CardPreview/index.js.map +1 -1
  80. package/lib/components/CardPreview/renderCardPreview.d.ts +1 -1
  81. package/lib/components/CardPreview/renderCardPreview.js +9 -9
  82. package/lib/components/CardPreview/renderCardPreview.js.map +1 -1
  83. package/lib/components/CardPreview/useCardPreview.d.ts +4 -9
  84. package/lib/components/CardPreview/useCardPreview.js +18 -20
  85. package/lib/components/CardPreview/useCardPreview.js.map +1 -1
  86. package/lib/components/CardPreview/useCardPreviewStyles.d.ts +8 -2
  87. package/lib/components/CardPreview/useCardPreviewStyles.js +16 -11
  88. package/lib/components/CardPreview/useCardPreviewStyles.js.map +1 -1
  89. package/lib/index.d.ts +8 -4
  90. package/lib/index.js +5 -4
  91. package/lib/index.js.map +1 -1
  92. package/lib-commonjs/Card.js +1 -1
  93. package/lib-commonjs/Card.js.map +1 -1
  94. package/lib-commonjs/CardFooter.js +1 -1
  95. package/lib-commonjs/CardFooter.js.map +1 -1
  96. package/lib-commonjs/CardHeader.js +1 -1
  97. package/lib-commonjs/CardHeader.js.map +1 -1
  98. package/lib-commonjs/CardPreview.js +1 -1
  99. package/lib-commonjs/CardPreview.js.map +1 -1
  100. package/lib-commonjs/components/Card/Card.d.ts +3 -3
  101. package/lib-commonjs/components/Card/Card.js +9 -9
  102. package/lib-commonjs/components/Card/Card.js.map +1 -1
  103. package/lib-commonjs/components/Card/Card.types.d.ts +9 -18
  104. package/lib-commonjs/components/Card/Card.types.js.map +1 -1
  105. package/lib-commonjs/components/Card/index.js +1 -1
  106. package/lib-commonjs/components/Card/index.js.map +1 -1
  107. package/lib-commonjs/components/Card/renderCard.d.ts +1 -1
  108. package/lib-commonjs/components/Card/renderCard.js +11 -12
  109. package/lib-commonjs/components/Card/renderCard.js.map +1 -1
  110. package/lib-commonjs/components/Card/useCard.d.ts +3 -4
  111. package/lib-commonjs/components/Card/useCard.js +26 -13
  112. package/lib-commonjs/components/Card/useCard.js.map +1 -1
  113. package/lib-commonjs/components/Card/useCardStyles.d.ts +8 -2
  114. package/lib-commonjs/components/Card/useCardStyles.js +145 -27
  115. package/lib-commonjs/components/Card/useCardStyles.js.map +1 -1
  116. package/lib-commonjs/components/CardFooter/CardFooter.d.ts +2 -2
  117. package/lib-commonjs/components/CardFooter/CardFooter.js +8 -8
  118. package/lib-commonjs/components/CardFooter/CardFooter.js.map +1 -1
  119. package/lib-commonjs/components/CardFooter/CardFooter.types.d.ts +8 -23
  120. package/lib-commonjs/components/CardFooter/CardFooter.types.js.map +1 -1
  121. package/lib-commonjs/components/CardFooter/index.js +1 -1
  122. package/lib-commonjs/components/CardFooter/index.js.map +1 -1
  123. package/lib-commonjs/components/CardFooter/renderCardFooter.d.ts +1 -1
  124. package/lib-commonjs/components/CardFooter/renderCardFooter.js +12 -14
  125. package/lib-commonjs/components/CardFooter/renderCardFooter.js.map +1 -1
  126. package/lib-commonjs/components/CardFooter/useCardFooter.d.ts +4 -9
  127. package/lib-commonjs/components/CardFooter/useCardFooter.js +21 -20
  128. package/lib-commonjs/components/CardFooter/useCardFooter.js.map +1 -1
  129. package/lib-commonjs/components/CardFooter/useCardFooterStyles.d.ts +8 -2
  130. package/lib-commonjs/components/CardFooter/useCardFooterStyles.js +21 -11
  131. package/lib-commonjs/components/CardFooter/useCardFooterStyles.js.map +1 -1
  132. package/lib-commonjs/components/CardHeader/CardHeader.d.ts +2 -2
  133. package/lib-commonjs/components/CardHeader/CardHeader.js +8 -8
  134. package/lib-commonjs/components/CardHeader/CardHeader.js.map +1 -1
  135. package/lib-commonjs/components/CardHeader/CardHeader.types.d.ts +12 -39
  136. package/lib-commonjs/components/CardHeader/CardHeader.types.js.map +1 -1
  137. package/lib-commonjs/components/CardHeader/index.js +1 -1
  138. package/lib-commonjs/components/CardHeader/index.js.map +1 -1
  139. package/lib-commonjs/components/CardHeader/renderCardHeader.d.ts +1 -1
  140. package/lib-commonjs/components/CardHeader/renderCardHeader.js +16 -14
  141. package/lib-commonjs/components/CardHeader/renderCardHeader.js.map +1 -1
  142. package/lib-commonjs/components/CardHeader/useCardHeader.d.ts +4 -9
  143. package/lib-commonjs/components/CardHeader/useCardHeader.js +38 -37
  144. package/lib-commonjs/components/CardHeader/useCardHeader.js.map +1 -1
  145. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.d.ts +8 -2
  146. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js +38 -12
  147. package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js.map +1 -1
  148. package/lib-commonjs/components/CardPreview/CardPreview.d.ts +2 -2
  149. package/lib-commonjs/components/CardPreview/CardPreview.js +8 -8
  150. package/lib-commonjs/components/CardPreview/CardPreview.js.map +1 -1
  151. package/lib-commonjs/components/CardPreview/CardPreview.types.d.ts +8 -23
  152. package/lib-commonjs/components/CardPreview/CardPreview.types.js.map +1 -1
  153. package/lib-commonjs/components/CardPreview/index.js +1 -1
  154. package/lib-commonjs/components/CardPreview/index.js.map +1 -1
  155. package/lib-commonjs/components/CardPreview/renderCardPreview.d.ts +1 -1
  156. package/lib-commonjs/components/CardPreview/renderCardPreview.js +12 -14
  157. package/lib-commonjs/components/CardPreview/renderCardPreview.js.map +1 -1
  158. package/lib-commonjs/components/CardPreview/useCardPreview.d.ts +4 -9
  159. package/lib-commonjs/components/CardPreview/useCardPreview.js +21 -23
  160. package/lib-commonjs/components/CardPreview/useCardPreview.js.map +1 -1
  161. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.d.ts +8 -2
  162. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js +19 -14
  163. package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js.map +1 -1
  164. package/lib-commonjs/index.d.ts +8 -4
  165. package/lib-commonjs/index.js +153 -5
  166. package/lib-commonjs/index.js.map +1 -1
  167. package/package.json +20 -22
  168. package/lib/common/isConformant.d.ts +0 -4
  169. package/lib/common/isConformant.js +0 -11
  170. package/lib/common/isConformant.js.map +0 -1
  171. package/lib-commonjs/common/isConformant.d.ts +0 -4
  172. package/lib-commonjs/common/isConformant.js +0 -22
  173. package/lib-commonjs/common/isConformant.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,23 +1,281 @@
1
1
  # Change Log - @fluentui/react-card
2
2
 
3
- This log was last generated on Mon, 27 Sep 2021 08:04:28 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 19 Apr 2022 19:14:24 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.11)
8
+
9
+ Tue, 19 Apr 2022 19:14:24 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.10..@fluentui/react-card_v9.0.0-beta.11)
11
+
12
+ ### Changes
13
+
14
+ - chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
15
+ - Add static classnames to Card ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
16
+ - Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #22367](https://github.com/microsoft/fluentui/pull/22367) by beachball)
17
+ - Bump @fluentui/react-tabster to v9.0.0-rc.6 ([PR #22367](https://github.com/microsoft/fluentui/pull/22367) by beachball)
18
+ - Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #22367](https://github.com/microsoft/fluentui/pull/22367) by beachball)
19
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #22367](https://github.com/microsoft/fluentui/pull/22367) by beachball)
20
+ - Bump @fluentui/react-text to v9.0.0-rc.6 ([PR #22367](https://github.com/microsoft/fluentui/pull/22367) by beachball)
21
+ - Bump @fluentui/react-button to v9.0.0-rc.6 ([PR #22367](https://github.com/microsoft/fluentui/pull/22367) by beachball)
22
+
23
+ ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.10)
24
+
25
+ Fri, 04 Mar 2022 05:17:35 GMT
26
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.9..@fluentui/react-card_v9.0.0-beta.10)
27
+
28
+ ### Changes
29
+
30
+ - 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)
31
+ - Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
32
+ - Bump @fluentui/react-tabster to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
33
+ - Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
34
+ - Bump @fluentui/react-text to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
35
+ - Bump @fluentui/react-button to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
36
+
37
+ ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.9)
38
+
39
+ Tue, 01 Mar 2022 02:17:35 GMT
40
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.8..@fluentui/react-card_v9.0.0-beta.9)
41
+
42
+ ### Changes
43
+
44
+ - fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
45
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
46
+ - Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
47
+ - Bump @fluentui/react-text to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
48
+ - Bump @fluentui/react-button to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
49
+
50
+ ## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.8)
51
+
52
+ Fri, 18 Feb 2022 13:35:29 GMT
53
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.6..@fluentui/react-card_v9.0.0-beta.8)
54
+
55
+ ### Changes
56
+
57
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
58
+ - 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)
59
+ - fix: top padding issues with CardPreview ([PR #21685](https://github.com/microsoft/fluentui/pull/21685) by 39736248+andrefcdias@users.noreply.github.com)
60
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
61
+ - Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
62
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
63
+ - Bump @fluentui/react-text to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
64
+ - Bump @fluentui/react-button to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
65
+
66
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.6)
67
+
68
+ Thu, 10 Feb 2022 08:51:52 GMT
69
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.5..@fluentui/react-card_v9.0.0-beta.6)
70
+
71
+ ### Changes
72
+
73
+ - Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
74
+ - Bump Fluent UI dependencies to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
75
+ - 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)
76
+ - Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
77
+ - Remove empty CardCommons type and outdated boilerplate comments ([PR #21150](https://github.com/microsoft/fluentui/pull/21150) by elcraig@microsoft.com)
78
+ - 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)
79
+ - use Griffel packages ([PR #21417](https://github.com/microsoft/fluentui/pull/21417) by olfedias@microsoft.com)
80
+ - Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
81
+ - update styles no not use CSS shorthands ([PR #20794](https://github.com/microsoft/fluentui/pull/20794) by olfedias@microsoft.com)
82
+ - Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
83
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
84
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
85
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
86
+ - Bump @fluentui/react-text to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
87
+ - Bump @fluentui/react-button to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
88
+
89
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.5)
90
+
91
+ Thu, 25 Nov 2021 08:34:12 GMT
92
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.4..@fluentui/react-card_v9.0.0-beta.5)
93
+
94
+ ### Changes
95
+
96
+ - Migrate Card ([PR #20599](https://github.com/microsoft/fluentui/pull/20599) by andredias@microsoft.com)
97
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
98
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
99
+ - Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
100
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
101
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
102
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
103
+ - Bump @fluentui/react-text to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
104
+ - Bump @fluentui/react-button to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
105
+
106
+ ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.4)
107
+
108
+ Fri, 12 Nov 2021 13:25:17 GMT
109
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.3..@fluentui/react-card_v9.0.0-beta.4)
110
+
111
+ ### Changes
112
+
113
+ - export static classes for components ([PR #20447](https://github.com/microsoft/fluentui/pull/20447) by olfedias@microsoft.com)
114
+ - Migrate to new useFocusableGroup usage ([PR #20131](https://github.com/microsoft/fluentui/pull/20131) by andredias@microsoft.com)
115
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
116
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
117
+ - Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
118
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
119
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
120
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
121
+ - Bump @fluentui/react-text to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
122
+ - Bump @fluentui/react-button to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
123
+
124
+ ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.3)
125
+
126
+ Wed, 27 Oct 2021 12:14:15 GMT
127
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.2..@fluentui/react-card_v9.0.0-beta.3)
128
+
129
+ ### Changes
130
+
131
+ - added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
132
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
133
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
134
+ - Bump @fluentui/react-tabster to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
135
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
136
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
137
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
138
+ - Bump @fluentui/react-text to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
139
+ - Bump @fluentui/react-button to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
140
+
141
+ ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.2)
142
+
143
+ Tue, 12 Oct 2021 19:45:58 GMT
144
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.1..@fluentui/react-card_v9.0.0-beta.2)
145
+
146
+ ### Changes
147
+
148
+ - Migrate Card to new prop merging ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by andredias@microsoft.com)
149
+ - Add keyboard focus interactions ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by andredias@microsoft.com)
150
+ - Bump @fluentui/react-tabster to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
151
+ - Bump @fluentui/react-button to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
152
+
153
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.1)
154
+
155
+ Wed, 06 Oct 2021 10:37:22 GMT
156
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.18..@fluentui/react-card_v9.0.0-beta.1)
157
+
158
+ ### Changes
159
+
160
+ - Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
161
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
162
+ - Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
163
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
164
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
165
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
166
+ - Bump @fluentui/react-text to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
167
+ - Bump @fluentui/react-button to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
168
+
169
+ ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.18)
170
+
171
+ Tue, 05 Oct 2021 12:47:58 GMT
172
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.17..@fluentui/react-card_v9.0.0-alpha.18)
173
+
174
+ ### Changes
175
+
176
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.78 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
177
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.60 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
178
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
179
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.22 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
180
+ - Bump @fluentui/react-text to v9.0.0-alpha.27 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
181
+ - Bump @fluentui/react-button to v9.0.0-alpha.101 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
182
+
183
+ ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.17)
184
+
185
+ Tue, 05 Oct 2021 09:28:07 GMT
186
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.16..@fluentui/react-card_v9.0.0-alpha.17)
187
+
188
+ ### Changes
189
+
190
+ - Adds ForwardRefComponent to react-card components declaration ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
191
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
192
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
193
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.59 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
194
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
195
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
196
+ - Bump @fluentui/react-text to v9.0.0-alpha.26 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
197
+ - Bump @fluentui/react-button to v9.0.0-alpha.100 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
198
+
199
+ ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.16)
200
+
201
+ Mon, 04 Oct 2021 08:03:04 GMT
202
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.15..@fluentui/react-card_v9.0.0-alpha.16)
203
+
204
+ ### Changes
205
+
206
+ - CardPreview removes own top margin when the first element in a Card ([commit](https://github.com/microsoft/fluentui/commit/97f5974a08246bd0475e8cb6650e7339f457c456) by andredias@microsoft.com)
207
+
208
+ ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.15)
209
+
210
+ Fri, 01 Oct 2021 14:13:08 GMT
211
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.13..@fluentui/react-card_v9.0.0-alpha.15)
212
+
213
+ ### Changes
214
+
215
+ - Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
216
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.76 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
217
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.55 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
218
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.58 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
219
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
220
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
221
+ - Bump @fluentui/react-text to v9.0.0-alpha.25 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
222
+ - Bump @fluentui/react-button to v9.0.0-alpha.99 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
223
+
224
+ ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.13)
225
+
226
+ Fri, 01 Oct 2021 12:30:46 GMT
227
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.12..@fluentui/react-card_v9.0.0-alpha.13)
228
+
229
+ ### Changes
230
+
231
+ - Bump @fluentui/react-button to v9.0.0-alpha.97 ([PR #18814](https://github.com/microsoft/fluentui/pull/18814) by beachball)
232
+
233
+ ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.12)
234
+
235
+ Fri, 01 Oct 2021 09:44:56 GMT
236
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.11..@fluentui/react-card_v9.0.0-alpha.12)
237
+
238
+ ### Changes
239
+
240
+ - Bump @fluentui/react-button to v9.0.0-alpha.96 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball)
241
+
242
+ ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.11)
243
+
244
+ Thu, 30 Sep 2021 09:18:15 GMT
245
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.10..@fluentui/react-card_v9.0.0-alpha.11)
246
+
247
+ ### Changes
248
+
249
+ - Bump @fluentui/react-button to v9.0.0-alpha.95 ([PR #19802](https://github.com/microsoft/fluentui/pull/19802) by beachball)
250
+
251
+ ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.10)
252
+
253
+ Wed, 29 Sep 2021 08:06:11 GMT
254
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.9..@fluentui/react-card_v9.0.0-alpha.10)
255
+
256
+ ### Changes
257
+
258
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.74 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
259
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.56 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
260
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
261
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
262
+ - Bump @fluentui/react-text to v9.0.0-alpha.23 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
263
+ - Bump @fluentui/react-button to v9.0.0-alpha.94 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
264
+
7
265
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.9)
8
266
 
9
- Mon, 27 Sep 2021 08:04:28 GMT
267
+ Mon, 27 Sep 2021 08:06:00 GMT
10
268
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.8..@fluentui/react-card_v9.0.0-alpha.9)
11
269
 
12
270
  ### Changes
13
271
 
14
- - Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
15
- - Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
16
- - Bump @fluentui/babel-make-styles to v9.0.0-alpha.55 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
17
- - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
18
- - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
19
- - Bump @fluentui/react-text to v9.0.0-alpha.22 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
20
- - Bump @fluentui/react-button to v9.0.0-alpha.93 ([commit](https://github.com/microsoft/fluentui/commit/7a6d4d03fc1157272a6641fd05fc27f51ba1cc0e) by beachball)
272
+ - Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
273
+ - Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
274
+ - Bump @fluentui/babel-make-styles to v9.0.0-alpha.55 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
275
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
276
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
277
+ - Bump @fluentui/react-text to v9.0.0-alpha.22 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
278
+ - Bump @fluentui/react-button to v9.0.0-alpha.93 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
21
279
 
22
280
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.8)
23
281
 
package/README.md CHANGED
@@ -1,7 +1,9 @@
1
- # @fluentui/react-card
1
+ # @fluentui/react-card [ALPHA]
2
2
 
3
3
  **React Card components for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)**
4
4
 
5
+ **⚠️ Please note that functionality is still being added to this package. Due to lockstep versioning, the version of this package is aligned with the others in _react-components_.**
6
+
5
7
  These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.
6
8
 
7
9
  To import React Card components: