@fluentui/react-card 0.0.0-nightly-20220302-0405.1
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.
- package/CHANGELOG.json +1477 -0
- package/CHANGELOG.md +463 -0
- package/LICENSE +15 -0
- package/README.md +13 -0
- package/Spec.md +523 -0
- package/assets/Card.png +0 -0
- package/assets/CardHeader.png +0 -0
- package/assets/CardPreview.png +0 -0
- package/assets/ai_deck_template.png +0 -0
- package/assets/avatar_elvia.svg +9 -0
- package/assets/avatar_mauricio.svg +9 -0
- package/assets/context-interaction-keyboard.png +0 -0
- package/assets/context-interaction-mouse.png +0 -0
- package/assets/context-narrator.png +0 -0
- package/assets/disabled-narrator.png +0 -0
- package/assets/disabled.png +0 -0
- package/assets/doc_template.png +0 -0
- package/assets/interactive-interaction-keyboard.png +0 -0
- package/assets/interactive-interaction-mouse.png +0 -0
- package/assets/interactive-narrator.png +0 -0
- package/assets/non-interactive-interaction-keyboard.png +0 -0
- package/assets/non-interactive-interaction-mouse.png +0 -0
- package/assets/non-interactive-narrator.png +0 -0
- package/assets/non-interactive-selectable-interaction-keyboard.png +0 -0
- package/assets/non-interactive-selectable-interaction-mouse.png +0 -0
- package/assets/powerpoint_logo.svg +9 -0
- package/assets/sales_template.png +0 -0
- package/assets/selectable-interaction-keyboard.png +0 -0
- package/assets/selectable-interaction-mouse.png +0 -0
- package/assets/selectable-narrator.png +0 -0
- package/assets/word_logo.svg +9 -0
- package/dist/react-card.d.ts +186 -0
- package/lib/Card.d.ts +1 -0
- package/lib/Card.js +2 -0
- package/lib/Card.js.map +1 -0
- package/lib/CardFooter.d.ts +1 -0
- package/lib/CardFooter.js +2 -0
- package/lib/CardFooter.js.map +1 -0
- package/lib/CardHeader.d.ts +1 -0
- package/lib/CardHeader.js +2 -0
- package/lib/CardHeader.js.map +1 -0
- package/lib/CardPreview.d.ts +1 -0
- package/lib/CardPreview.js +2 -0
- package/lib/CardPreview.js.map +1 -0
- package/lib/components/Card/Card.d.ts +6 -0
- package/lib/components/Card/Card.js +15 -0
- package/lib/components/Card/Card.js.map +1 -0
- package/lib/components/Card/Card.types.d.ts +15 -0
- package/lib/components/Card/Card.types.js +2 -0
- package/lib/components/Card/Card.types.js.map +1 -0
- package/lib/components/Card/index.d.ts +5 -0
- package/lib/components/Card/index.js +6 -0
- package/lib/components/Card/index.js.map +1 -0
- package/lib/components/Card/renderCard.d.ts +5 -0
- package/lib/components/Card/renderCard.js +15 -0
- package/lib/components/Card/renderCard.js.map +1 -0
- package/lib/components/Card/useCard.d.ts +12 -0
- package/lib/components/Card/useCard.js +33 -0
- package/lib/components/Card/useCard.js.map +1 -0
- package/lib/components/Card/useCardStyles.d.ts +6 -0
- package/lib/components/Card/useCardStyles.js +150 -0
- package/lib/components/Card/useCardStyles.js.map +1 -0
- package/lib/components/CardFooter/CardFooter.d.ts +6 -0
- package/lib/components/CardFooter/CardFooter.js +15 -0
- package/lib/components/CardFooter/CardFooter.js.map +1 -0
- package/lib/components/CardFooter/CardFooter.types.d.ts +13 -0
- package/lib/components/CardFooter/CardFooter.types.js +2 -0
- package/lib/components/CardFooter/CardFooter.types.js.map +1 -0
- package/lib/components/CardFooter/index.d.ts +5 -0
- package/lib/components/CardFooter/index.js +6 -0
- package/lib/components/CardFooter/index.js.map +1 -0
- package/lib/components/CardFooter/renderCardFooter.d.ts +5 -0
- package/lib/components/CardFooter/renderCardFooter.js +16 -0
- package/lib/components/CardFooter/renderCardFooter.js.map +1 -0
- package/lib/components/CardFooter/useCardFooter.d.ts +12 -0
- package/lib/components/CardFooter/useCardFooter.js +28 -0
- package/lib/components/CardFooter/useCardFooter.js.map +1 -0
- package/lib/components/CardFooter/useCardFooterStyles.d.ts +6 -0
- package/lib/components/CardFooter/useCardFooterStyles.js +35 -0
- package/lib/components/CardFooter/useCardFooterStyles.js.map +1 -0
- package/lib/components/CardHeader/CardHeader.d.ts +6 -0
- package/lib/components/CardHeader/CardHeader.js +15 -0
- package/lib/components/CardHeader/CardHeader.js.map +1 -0
- package/lib/components/CardHeader/CardHeader.types.d.ts +17 -0
- package/lib/components/CardHeader/CardHeader.types.js +2 -0
- package/lib/components/CardHeader/CardHeader.types.js.map +1 -0
- package/lib/components/CardHeader/index.d.ts +5 -0
- package/lib/components/CardHeader/index.js +6 -0
- package/lib/components/CardHeader/index.js.map +1 -0
- package/lib/components/CardHeader/renderCardHeader.d.ts +5 -0
- package/lib/components/CardHeader/renderCardHeader.js +20 -0
- package/lib/components/CardHeader/renderCardHeader.js.map +1 -0
- package/lib/components/CardHeader/useCardHeader.d.ts +12 -0
- package/lib/components/CardHeader/useCardHeader.js +47 -0
- package/lib/components/CardHeader/useCardHeader.js.map +1 -0
- package/lib/components/CardHeader/useCardHeaderStyles.d.ts +6 -0
- package/lib/components/CardHeader/useCardHeaderStyles.js +57 -0
- package/lib/components/CardHeader/useCardHeaderStyles.js.map +1 -0
- package/lib/components/CardPreview/CardPreview.d.ts +6 -0
- package/lib/components/CardPreview/CardPreview.js +15 -0
- package/lib/components/CardPreview/CardPreview.js.map +1 -0
- package/lib/components/CardPreview/CardPreview.types.d.ts +13 -0
- package/lib/components/CardPreview/CardPreview.types.js +2 -0
- package/lib/components/CardPreview/CardPreview.types.js.map +1 -0
- package/lib/components/CardPreview/index.d.ts +5 -0
- package/lib/components/CardPreview/index.js +6 -0
- package/lib/components/CardPreview/index.js.map +1 -0
- package/lib/components/CardPreview/renderCardPreview.d.ts +5 -0
- package/lib/components/CardPreview/renderCardPreview.js +16 -0
- package/lib/components/CardPreview/renderCardPreview.js.map +1 -0
- package/lib/components/CardPreview/useCardPreview.d.ts +12 -0
- package/lib/components/CardPreview/useCardPreview.js +28 -0
- package/lib/components/CardPreview/useCardPreview.js.map +1 -0
- package/lib/components/CardPreview/useCardPreviewStyles.d.ts +6 -0
- package/lib/components/CardPreview/useCardPreviewStyles.js +38 -0
- package/lib/components/CardPreview/useCardPreviewStyles.js.map +1 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +5 -0
- package/lib/index.js.map +1 -0
- package/lib/tsdoc-metadata.json +11 -0
- package/lib-commonjs/Card.d.ts +1 -0
- package/lib-commonjs/Card.js +10 -0
- package/lib-commonjs/Card.js.map +1 -0
- package/lib-commonjs/CardFooter.d.ts +1 -0
- package/lib-commonjs/CardFooter.js +10 -0
- package/lib-commonjs/CardFooter.js.map +1 -0
- package/lib-commonjs/CardHeader.d.ts +1 -0
- package/lib-commonjs/CardHeader.js +10 -0
- package/lib-commonjs/CardHeader.js.map +1 -0
- package/lib-commonjs/CardPreview.d.ts +1 -0
- package/lib-commonjs/CardPreview.js +10 -0
- package/lib-commonjs/CardPreview.js.map +1 -0
- package/lib-commonjs/components/Card/Card.d.ts +6 -0
- package/lib-commonjs/components/Card/Card.js +26 -0
- package/lib-commonjs/components/Card/Card.js.map +1 -0
- package/lib-commonjs/components/Card/Card.types.d.ts +15 -0
- package/lib-commonjs/components/Card/Card.types.js +6 -0
- package/lib-commonjs/components/Card/Card.types.js.map +1 -0
- package/lib-commonjs/components/Card/index.d.ts +5 -0
- package/lib-commonjs/components/Card/index.js +18 -0
- package/lib-commonjs/components/Card/index.js.map +1 -0
- package/lib-commonjs/components/Card/renderCard.d.ts +5 -0
- package/lib-commonjs/components/Card/renderCard.js +26 -0
- package/lib-commonjs/components/Card/renderCard.js.map +1 -0
- package/lib-commonjs/components/Card/useCard.d.ts +12 -0
- package/lib-commonjs/components/Card/useCard.js +44 -0
- package/lib-commonjs/components/Card/useCard.js.map +1 -0
- package/lib-commonjs/components/Card/useCardStyles.d.ts +6 -0
- package/lib-commonjs/components/Card/useCardStyles.js +162 -0
- package/lib-commonjs/components/Card/useCardStyles.js.map +1 -0
- package/lib-commonjs/components/CardFooter/CardFooter.d.ts +6 -0
- package/lib-commonjs/components/CardFooter/CardFooter.js +26 -0
- package/lib-commonjs/components/CardFooter/CardFooter.js.map +1 -0
- package/lib-commonjs/components/CardFooter/CardFooter.types.d.ts +13 -0
- package/lib-commonjs/components/CardFooter/CardFooter.types.js +6 -0
- package/lib-commonjs/components/CardFooter/CardFooter.types.js.map +1 -0
- package/lib-commonjs/components/CardFooter/index.d.ts +5 -0
- package/lib-commonjs/components/CardFooter/index.js +18 -0
- package/lib-commonjs/components/CardFooter/index.js.map +1 -0
- package/lib-commonjs/components/CardFooter/renderCardFooter.d.ts +5 -0
- package/lib-commonjs/components/CardFooter/renderCardFooter.js +27 -0
- package/lib-commonjs/components/CardFooter/renderCardFooter.js.map +1 -0
- package/lib-commonjs/components/CardFooter/useCardFooter.d.ts +12 -0
- package/lib-commonjs/components/CardFooter/useCardFooter.js +38 -0
- package/lib-commonjs/components/CardFooter/useCardFooter.js.map +1 -0
- package/lib-commonjs/components/CardFooter/useCardFooterStyles.d.ts +6 -0
- package/lib-commonjs/components/CardFooter/useCardFooterStyles.js +45 -0
- package/lib-commonjs/components/CardFooter/useCardFooterStyles.js.map +1 -0
- package/lib-commonjs/components/CardHeader/CardHeader.d.ts +6 -0
- package/lib-commonjs/components/CardHeader/CardHeader.js +26 -0
- package/lib-commonjs/components/CardHeader/CardHeader.js.map +1 -0
- package/lib-commonjs/components/CardHeader/CardHeader.types.d.ts +17 -0
- package/lib-commonjs/components/CardHeader/CardHeader.types.js +6 -0
- package/lib-commonjs/components/CardHeader/CardHeader.types.js.map +1 -0
- package/lib-commonjs/components/CardHeader/index.d.ts +5 -0
- package/lib-commonjs/components/CardHeader/index.js +18 -0
- package/lib-commonjs/components/CardHeader/index.js.map +1 -0
- package/lib-commonjs/components/CardHeader/renderCardHeader.d.ts +5 -0
- package/lib-commonjs/components/CardHeader/renderCardHeader.js +31 -0
- package/lib-commonjs/components/CardHeader/renderCardHeader.js.map +1 -0
- package/lib-commonjs/components/CardHeader/useCardHeader.d.ts +12 -0
- package/lib-commonjs/components/CardHeader/useCardHeader.js +58 -0
- package/lib-commonjs/components/CardHeader/useCardHeader.js.map +1 -0
- package/lib-commonjs/components/CardHeader/useCardHeaderStyles.d.ts +6 -0
- package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js +67 -0
- package/lib-commonjs/components/CardHeader/useCardHeaderStyles.js.map +1 -0
- package/lib-commonjs/components/CardPreview/CardPreview.d.ts +6 -0
- package/lib-commonjs/components/CardPreview/CardPreview.js +26 -0
- package/lib-commonjs/components/CardPreview/CardPreview.js.map +1 -0
- package/lib-commonjs/components/CardPreview/CardPreview.types.d.ts +13 -0
- package/lib-commonjs/components/CardPreview/CardPreview.types.js +6 -0
- package/lib-commonjs/components/CardPreview/CardPreview.types.js.map +1 -0
- package/lib-commonjs/components/CardPreview/index.d.ts +5 -0
- package/lib-commonjs/components/CardPreview/index.js +18 -0
- package/lib-commonjs/components/CardPreview/index.js.map +1 -0
- package/lib-commonjs/components/CardPreview/renderCardPreview.d.ts +5 -0
- package/lib-commonjs/components/CardPreview/renderCardPreview.js +27 -0
- package/lib-commonjs/components/CardPreview/renderCardPreview.js.map +1 -0
- package/lib-commonjs/components/CardPreview/useCardPreview.d.ts +12 -0
- package/lib-commonjs/components/CardPreview/useCardPreview.js +38 -0
- package/lib-commonjs/components/CardPreview/useCardPreview.js.map +1 -0
- package/lib-commonjs/components/CardPreview/useCardPreviewStyles.d.ts +6 -0
- package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js +48 -0
- package/lib-commonjs/components/CardPreview/useCardPreviewStyles.js.map +1 -0
- package/lib-commonjs/index.d.ts +4 -0
- package/lib-commonjs/index.js +16 -0
- package/lib-commonjs/index.js.map +1 -0
- package/package.json +67 -0
package/CHANGELOG.md
ADDED
@@ -0,0 +1,463 @@
|
|
1
|
+
# Change Log - @fluentui/react-card
|
2
|
+
|
3
|
+
This log was last generated on Wed, 02 Mar 2022 04:14:52 GMT and should not be manually modified.
|
4
|
+
|
5
|
+
<!-- Start content -->
|
6
|
+
|
7
|
+
## [0.0.0-nightly-20220302-0405.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v0.0.0-nightly-20220302-0405.1)
|
8
|
+
|
9
|
+
Wed, 02 Mar 2022 04:14:52 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.9..@fluentui/react-card_v0.0.0-nightly-20220302-0405.1)
|
11
|
+
|
12
|
+
### Changes
|
13
|
+
|
14
|
+
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by email not defined)
|
15
|
+
- Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
|
16
|
+
- Bump @fluentui/react-tabster to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
|
17
|
+
- Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
|
18
|
+
- Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
|
19
|
+
- Bump @fluentui/react-text to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
|
20
|
+
- Bump @fluentui/react-button to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
|
21
|
+
|
22
|
+
## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.9)
|
23
|
+
|
24
|
+
Tue, 01 Mar 2022 02:17:35 GMT
|
25
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.8..@fluentui/react-card_v9.0.0-beta.9)
|
26
|
+
|
27
|
+
### Changes
|
28
|
+
|
29
|
+
- fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
|
30
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
|
31
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
|
32
|
+
- Bump @fluentui/react-text to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
|
33
|
+
- Bump @fluentui/react-button to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
|
34
|
+
|
35
|
+
## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.8)
|
36
|
+
|
37
|
+
Fri, 18 Feb 2022 13:35:29 GMT
|
38
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.6..@fluentui/react-card_v9.0.0-beta.8)
|
39
|
+
|
40
|
+
### Changes
|
41
|
+
|
42
|
+
- fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
|
43
|
+
- 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)
|
44
|
+
- fix: top padding issues with CardPreview ([PR #21685](https://github.com/microsoft/fluentui/pull/21685) by 39736248+andrefcdias@users.noreply.github.com)
|
45
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
46
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
47
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
48
|
+
- Bump @fluentui/react-text to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
49
|
+
- Bump @fluentui/react-button to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
50
|
+
|
51
|
+
## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.6)
|
52
|
+
|
53
|
+
Thu, 10 Feb 2022 08:51:52 GMT
|
54
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.5..@fluentui/react-card_v9.0.0-beta.6)
|
55
|
+
|
56
|
+
### Changes
|
57
|
+
|
58
|
+
- Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
|
59
|
+
- Bump Fluent UI dependencies to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
|
60
|
+
- 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)
|
61
|
+
- Updating based on changes to composition types. ([PR #20891](https://github.com/microsoft/fluentui/pull/20891) by Humberto.Morimoto@microsoft.com)
|
62
|
+
- Remove empty CardCommons type and outdated boilerplate comments ([PR #21150](https://github.com/microsoft/fluentui/pull/21150) by elcraig@microsoft.com)
|
63
|
+
- 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)
|
64
|
+
- use Griffel packages ([PR #21417](https://github.com/microsoft/fluentui/pull/21417) by olfedias@microsoft.com)
|
65
|
+
- Refactor component Slot typings ([PR #21518](https://github.com/microsoft/fluentui/pull/21518) by behowell@microsoft.com)
|
66
|
+
- update styles no not use CSS shorthands ([PR #20794](https://github.com/microsoft/fluentui/pull/20794) by olfedias@microsoft.com)
|
67
|
+
- Remove component's shorthandProps array ([PR #21134](https://github.com/microsoft/fluentui/pull/21134) by behowell@microsoft.com)
|
68
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
|
69
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
|
70
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
|
71
|
+
- Bump @fluentui/react-text to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
|
72
|
+
- Bump @fluentui/react-button to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
|
73
|
+
|
74
|
+
## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.5)
|
75
|
+
|
76
|
+
Thu, 25 Nov 2021 08:34:12 GMT
|
77
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.4..@fluentui/react-card_v9.0.0-beta.5)
|
78
|
+
|
79
|
+
### Changes
|
80
|
+
|
81
|
+
- Migrate Card ([PR #20599](https://github.com/microsoft/fluentui/pull/20599) by andredias@microsoft.com)
|
82
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
83
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
84
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
85
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
86
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
87
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
88
|
+
- Bump @fluentui/react-text to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
89
|
+
- Bump @fluentui/react-button to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
90
|
+
|
91
|
+
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.4)
|
92
|
+
|
93
|
+
Fri, 12 Nov 2021 13:25:17 GMT
|
94
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.3..@fluentui/react-card_v9.0.0-beta.4)
|
95
|
+
|
96
|
+
### Changes
|
97
|
+
|
98
|
+
- export static classes for components ([PR #20447](https://github.com/microsoft/fluentui/pull/20447) by olfedias@microsoft.com)
|
99
|
+
- Migrate to new useFocusableGroup usage ([PR #20131](https://github.com/microsoft/fluentui/pull/20131) by andredias@microsoft.com)
|
100
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
101
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
102
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
103
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
104
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
105
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
106
|
+
- Bump @fluentui/react-text to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
107
|
+
- Bump @fluentui/react-button to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
108
|
+
|
109
|
+
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.3)
|
110
|
+
|
111
|
+
Wed, 27 Oct 2021 12:14:15 GMT
|
112
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.2..@fluentui/react-card_v9.0.0-beta.3)
|
113
|
+
|
114
|
+
### Changes
|
115
|
+
|
116
|
+
- added styling of documentation ([PR #20193](https://github.com/microsoft/fluentui/pull/20193) by peter@draxler.ml)
|
117
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
118
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
119
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
120
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
121
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
122
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
123
|
+
- Bump @fluentui/react-text to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
124
|
+
- Bump @fluentui/react-button to v9.0.0-beta.3 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
|
125
|
+
|
126
|
+
## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.2)
|
127
|
+
|
128
|
+
Tue, 12 Oct 2021 19:45:58 GMT
|
129
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-beta.1..@fluentui/react-card_v9.0.0-beta.2)
|
130
|
+
|
131
|
+
### Changes
|
132
|
+
|
133
|
+
- Migrate Card to new prop merging ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by andredias@microsoft.com)
|
134
|
+
- Add keyboard focus interactions ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by andredias@microsoft.com)
|
135
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
|
136
|
+
- Bump @fluentui/react-button to v9.0.0-beta.2 ([PR #20132](https://github.com/microsoft/fluentui/pull/20132) by beachball)
|
137
|
+
|
138
|
+
## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-beta.1)
|
139
|
+
|
140
|
+
Wed, 06 Oct 2021 10:37:22 GMT
|
141
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.18..@fluentui/react-card_v9.0.0-beta.1)
|
142
|
+
|
143
|
+
### Changes
|
144
|
+
|
145
|
+
- Bump all v9 components to beta prerelease tag ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by lingfangao@hotmail.com)
|
146
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
|
147
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
|
148
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
|
149
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
|
150
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
|
151
|
+
- Bump @fluentui/react-text to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
|
152
|
+
- Bump @fluentui/react-button to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
|
153
|
+
|
154
|
+
## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.18)
|
155
|
+
|
156
|
+
Tue, 05 Oct 2021 12:47:58 GMT
|
157
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.17..@fluentui/react-card_v9.0.0-alpha.18)
|
158
|
+
|
159
|
+
### Changes
|
160
|
+
|
161
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.78 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
|
162
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.60 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
|
163
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.53 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
|
164
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.22 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
|
165
|
+
- Bump @fluentui/react-text to v9.0.0-alpha.27 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
|
166
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.101 ([PR #20108](https://github.com/microsoft/fluentui/pull/20108) by beachball)
|
167
|
+
|
168
|
+
## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.17)
|
169
|
+
|
170
|
+
Tue, 05 Oct 2021 09:28:07 GMT
|
171
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.16..@fluentui/react-card_v9.0.0-alpha.17)
|
172
|
+
|
173
|
+
### Changes
|
174
|
+
|
175
|
+
- Adds ForwardRefComponent to react-card components declaration ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by bsunderhus@microsoft.com)
|
176
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.77 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
|
177
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.56 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
|
178
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.59 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
|
179
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.52 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
|
180
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.21 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
|
181
|
+
- Bump @fluentui/react-text to v9.0.0-alpha.26 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
|
182
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.100 ([PR #20081](https://github.com/microsoft/fluentui/pull/20081) by beachball)
|
183
|
+
|
184
|
+
## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.16)
|
185
|
+
|
186
|
+
Mon, 04 Oct 2021 08:03:04 GMT
|
187
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.15..@fluentui/react-card_v9.0.0-alpha.16)
|
188
|
+
|
189
|
+
### Changes
|
190
|
+
|
191
|
+
- CardPreview removes own top margin when the first element in a Card ([commit](https://github.com/microsoft/fluentui/commit/97f5974a08246bd0475e8cb6650e7339f457c456) by andredias@microsoft.com)
|
192
|
+
|
193
|
+
## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.15)
|
194
|
+
|
195
|
+
Fri, 01 Oct 2021 14:13:08 GMT
|
196
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.13..@fluentui/react-card_v9.0.0-alpha.15)
|
197
|
+
|
198
|
+
### Changes
|
199
|
+
|
200
|
+
- Bump v9 prerelease versions to rerelease ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by lingfangao@hotmail.com)
|
201
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.76 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
|
202
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.55 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
|
203
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.58 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
|
204
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.51 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
|
205
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.20 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
|
206
|
+
- Bump @fluentui/react-text to v9.0.0-alpha.25 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
|
207
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.99 ([PR #20069](https://github.com/microsoft/fluentui/pull/20069) by beachball)
|
208
|
+
|
209
|
+
## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.13)
|
210
|
+
|
211
|
+
Fri, 01 Oct 2021 12:30:46 GMT
|
212
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.12..@fluentui/react-card_v9.0.0-alpha.13)
|
213
|
+
|
214
|
+
### Changes
|
215
|
+
|
216
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.97 ([PR #18814](https://github.com/microsoft/fluentui/pull/18814) by beachball)
|
217
|
+
|
218
|
+
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.12)
|
219
|
+
|
220
|
+
Fri, 01 Oct 2021 09:44:56 GMT
|
221
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.11..@fluentui/react-card_v9.0.0-alpha.12)
|
222
|
+
|
223
|
+
### Changes
|
224
|
+
|
225
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.96 ([PR #19990](https://github.com/microsoft/fluentui/pull/19990) by beachball)
|
226
|
+
|
227
|
+
## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.11)
|
228
|
+
|
229
|
+
Thu, 30 Sep 2021 09:18:15 GMT
|
230
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.10..@fluentui/react-card_v9.0.0-alpha.11)
|
231
|
+
|
232
|
+
### Changes
|
233
|
+
|
234
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.95 ([PR #19802](https://github.com/microsoft/fluentui/pull/19802) by beachball)
|
235
|
+
|
236
|
+
## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.10)
|
237
|
+
|
238
|
+
Wed, 29 Sep 2021 08:06:11 GMT
|
239
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.9..@fluentui/react-card_v9.0.0-alpha.10)
|
240
|
+
|
241
|
+
### Changes
|
242
|
+
|
243
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.74 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
|
244
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.56 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
|
245
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.49 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
|
246
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.18 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
|
247
|
+
- Bump @fluentui/react-text to v9.0.0-alpha.23 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
|
248
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.94 ([PR #19660](https://github.com/microsoft/fluentui/pull/19660) by beachball)
|
249
|
+
|
250
|
+
## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.9)
|
251
|
+
|
252
|
+
Mon, 27 Sep 2021 08:06:00 GMT
|
253
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.8..@fluentui/react-card_v9.0.0-alpha.9)
|
254
|
+
|
255
|
+
### Changes
|
256
|
+
|
257
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.73 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
|
258
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.53 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
|
259
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.55 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
|
260
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.48 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
|
261
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.17 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
|
262
|
+
- Bump @fluentui/react-text to v9.0.0-alpha.22 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
|
263
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.93 ([PR #19981](https://github.com/microsoft/fluentui/pull/19981) by beachball)
|
264
|
+
|
265
|
+
## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.8)
|
266
|
+
|
267
|
+
Fri, 24 Sep 2021 09:17:17 GMT
|
268
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.7..@fluentui/react-card_v9.0.0-alpha.8)
|
269
|
+
|
270
|
+
### Changes
|
271
|
+
|
272
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.72 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
273
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.52 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
274
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.54 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
275
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.47 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
276
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.16 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
277
|
+
- Bump @fluentui/react-text to v9.0.0-alpha.21 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
278
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.92 ([PR #19950](https://github.com/microsoft/fluentui/pull/19950) by beachball)
|
279
|
+
|
280
|
+
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.7)
|
281
|
+
|
282
|
+
Thu, 23 Sep 2021 08:21:34 GMT
|
283
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.6..@fluentui/react-card_v9.0.0-alpha.7)
|
284
|
+
|
285
|
+
### Changes
|
286
|
+
|
287
|
+
- Fix dependencies ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by andredias@microsoft.com)
|
288
|
+
- Updated ButtonProps for consistency ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by gcox@microsoft.com)
|
289
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.71 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
290
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.51 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
291
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.53 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
292
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.46 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
293
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.15 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
294
|
+
- Bump @fluentui/react-text to v9.0.0-alpha.20 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
295
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.91 ([commit](https://github.com/microsoft/fluentui/commit/95682da34c48813f7658032ae490d21d2f363b90) by beachball)
|
296
|
+
|
297
|
+
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.6)
|
298
|
+
|
299
|
+
Wed, 22 Sep 2021 10:10:07 GMT
|
300
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.5..@fluentui/react-card_v9.0.0-alpha.6)
|
301
|
+
|
302
|
+
### Changes
|
303
|
+
|
304
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.70 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
305
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.50 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
306
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.52 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
307
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.45 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
308
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.14 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
309
|
+
- Bump @fluentui/react-text to v9.0.0-alpha.19 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
310
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.90 ([commit](https://github.com/microsoft/fluentui/commit/bc3f1ec72fc7784a558b0dd6598ee0662f4649c1) by beachball)
|
311
|
+
|
312
|
+
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.5)
|
313
|
+
|
314
|
+
Tue, 21 Sep 2021 07:42:34 GMT
|
315
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.4..@fluentui/react-card_v9.0.0-alpha.5)
|
316
|
+
|
317
|
+
### Changes
|
318
|
+
|
319
|
+
- Bump @fluentui/react-make-styles to v9.0.0-alpha.69 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
320
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.51 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
321
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.44 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
322
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-alpha.13 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
323
|
+
- Bump @fluentui/react-text to v9.0.0-alpha.18 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
324
|
+
- Bump @fluentui/react-button to v9.0.0-alpha.89 ([PR #19865](https://github.com/microsoft/fluentui/pull/19865) by beachball)
|
325
|
+
|
326
|
+
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.4)
|
327
|
+
|
328
|
+
Mon, 20 Sep 2021 07:36:26 GMT
|
329
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.3..@fluentui/react-card_v9.0.0-alpha.4)
|
330
|
+
|
331
|
+
### Changes
|
332
|
+
|
333
|
+
- Bump @fluentui/react-card to v9.0.0-alpha.4 ([PR #19844](https://github.com/microsoft/fluentui/pull/19844) by lingfangao@hotmail.com)
|
334
|
+
|
335
|
+
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.3)
|
336
|
+
|
337
|
+
Fri, 17 Sep 2021 07:35:26 GMT
|
338
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.2..@fluentui/react-card_v9.0.0-alpha.3)
|
339
|
+
|
340
|
+
### Changes
|
341
|
+
|
342
|
+
- Bump @fluentui/react-card to v9.0.0-alpha.3 ([PR #19840](https://github.com/microsoft/fluentui/pull/19840) by Humberto.Morimoto@microsoft.com)
|
343
|
+
|
344
|
+
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.2)
|
345
|
+
|
346
|
+
Thu, 16 Sep 2021 07:38:39 GMT
|
347
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.1..@fluentui/react-card_v9.0.0-alpha.2)
|
348
|
+
|
349
|
+
### Changes
|
350
|
+
|
351
|
+
- Bump @fluentui/react-card to v9.0.0-alpha.2 ([PR #19815](https://github.com/microsoft/fluentui/pull/19815) by behowell@microsoft.com)
|
352
|
+
|
353
|
+
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.1)
|
354
|
+
|
355
|
+
Tue, 14 Sep 2021 20:09:02 GMT
|
356
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.1)
|
357
|
+
|
358
|
+
### Changes
|
359
|
+
|
360
|
+
- Phase 1 release ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by andredias@microsoft.com)
|
361
|
+
- Bump @fluentui/react-card to v9.0.0-alpha.1 ([PR #19155](https://github.com/microsoft/fluentui/pull/19155) by bsunderhus@microsoft.com)
|
362
|
+
|
363
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
364
|
+
|
365
|
+
Fri, 10 Sep 2021 16:31:53 GMT
|
366
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
367
|
+
|
368
|
+
### Changes
|
369
|
+
|
370
|
+
- Bump @fluentui/react-card to v9.0.0-alpha.0 ([PR #19748](https://github.com/microsoft/fluentui/pull/19748) by lingfangao@hotmail.com)
|
371
|
+
|
372
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
373
|
+
|
374
|
+
Fri, 10 Sep 2021 07:39:51 GMT
|
375
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
376
|
+
|
377
|
+
### Changes
|
378
|
+
|
379
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.45 ([PR #19642](https://github.com/microsoft/fluentui/pull/19642) by behowell@microsoft.com)
|
380
|
+
|
381
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
382
|
+
|
383
|
+
Mon, 06 Sep 2021 07:34:53 GMT
|
384
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
385
|
+
|
386
|
+
### Changes
|
387
|
+
|
388
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.44 ([PR #19640](https://github.com/microsoft/fluentui/pull/19640) by lingfangao@hotmail.com)
|
389
|
+
|
390
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
391
|
+
|
392
|
+
Thu, 02 Sep 2021 07:36:46 GMT
|
393
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
394
|
+
|
395
|
+
### Patches
|
396
|
+
|
397
|
+
- Bump @fluentui/react-conformance to v0.4.5 ([PR #19590](https://github.com/microsoft/fluentui/pull/19590) by olfedias@microsoft.com)
|
398
|
+
|
399
|
+
### Changes
|
400
|
+
|
401
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.43 ([PR #19065](https://github.com/microsoft/fluentui/pull/19065) by olfedias@microsoft.com)
|
402
|
+
|
403
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
404
|
+
|
405
|
+
Wed, 01 Sep 2021 07:39:56 GMT
|
406
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
407
|
+
|
408
|
+
### Changes
|
409
|
+
|
410
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.43 ([PR #19483](https://github.com/microsoft/fluentui/pull/19483) by bsunderhus@microsoft.com)
|
411
|
+
|
412
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
413
|
+
|
414
|
+
Tue, 31 Aug 2021 07:37:47 GMT
|
415
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
416
|
+
|
417
|
+
### Changes
|
418
|
+
|
419
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.42 ([PR #19556](https://github.com/microsoft/fluentui/pull/19556) by lingfan.gao@microsoft.com)
|
420
|
+
|
421
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
422
|
+
|
423
|
+
Fri, 27 Aug 2021 07:33:32 GMT
|
424
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
425
|
+
|
426
|
+
### Changes
|
427
|
+
|
428
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.40 ([PR #19462](https://github.com/microsoft/fluentui/pull/19462) by olfedias@microsoft.com)
|
429
|
+
|
430
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
431
|
+
|
432
|
+
Thu, 26 Aug 2021 07:35:43 GMT
|
433
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
434
|
+
|
435
|
+
### Changes
|
436
|
+
|
437
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.39 ([PR #19486](https://github.com/microsoft/fluentui/pull/19486) by martinhochel@microsoft.com)
|
438
|
+
|
439
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
440
|
+
|
441
|
+
Fri, 20 Aug 2021 07:37:28 GMT
|
442
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
443
|
+
|
444
|
+
### Changes
|
445
|
+
|
446
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-alpha.38 ([PR #19441](https://github.com/microsoft/fluentui/pull/19441) by elcraig@microsoft.com)
|
447
|
+
|
448
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
449
|
+
|
450
|
+
Thu, 19 Aug 2021 07:41:35 GMT
|
451
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-card_v9.0.0-alpha.0..@fluentui/react-card_v9.0.0-alpha.0)
|
452
|
+
|
453
|
+
### Changes
|
454
|
+
|
455
|
+
- Bump @fluentui/react-utilities to v9.0.0-alpha.39 ([PR #19273](https://github.com/microsoft/fluentui/pull/19273) by bsunderhus@microsoft.com)
|
456
|
+
|
457
|
+
## [9.0.0-alpha.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-card_v9.0.0-alpha.0)
|
458
|
+
|
459
|
+
Fri, 13 Aug 2021 07:36:34 GMT
|
460
|
+
|
461
|
+
### Changes
|
462
|
+
|
463
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-alpha.32 ([PR #19341](https://github.com/microsoft/fluentui/pull/19341) by olfedias@microsoft.com)
|
package/LICENSE
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
@fluentui/react-card
|
2
|
+
|
3
|
+
Copyright (c) Microsoft Corporation
|
4
|
+
|
5
|
+
All rights reserved.
|
6
|
+
|
7
|
+
MIT License
|
8
|
+
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
14
|
+
|
15
|
+
Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
|
package/README.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# @fluentui/react-card [ALPHA]
|
2
|
+
|
3
|
+
**React Card components for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)**
|
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
|
+
|
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.
|
8
|
+
|
9
|
+
To import React Card components:
|
10
|
+
|
11
|
+
```js
|
12
|
+
import { ComponentName } from '@fluentui/react-card';
|
13
|
+
```
|