@fluentui/react-card 9.0.0-alpha.8 → 9.0.0-beta.10

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