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