@khanacademy/wonder-blocks-card 0.0.0-PR2816-20251007220407 → 0.0.0-PR2816-20251007223425
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.md +1 -1
- package/package.json +3 -3
- package/src/components/card.tsx +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-card",
|
|
3
|
-
"version": "0.0.0-PR2816-
|
|
3
|
+
"version": "0.0.0-PR2816-20251007223425",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"description": "Card component for Wonder Blocks.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@khanacademy/wonder-blocks-core": "12.4.0",
|
|
17
|
-
"@khanacademy/wonder-blocks-
|
|
18
|
-
"@khanacademy/wonder-blocks-
|
|
17
|
+
"@khanacademy/wonder-blocks-tokens": "14.0.0",
|
|
18
|
+
"@khanacademy/wonder-blocks-icon-button": "10.5.2"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"aphrodite": "^1.2.5",
|
package/src/components/card.tsx
CHANGED
|
@@ -144,7 +144,7 @@ type Props = BaseCardProps & TagProps & DismissProps;
|
|
|
144
144
|
*
|
|
145
145
|
* When the `onDismiss` prop is provided, a dismiss button will be rendered. In this case, the `labels.dismissButtonAriaLabel` prop is required to provide an accessible label for the dismiss button.
|
|
146
146
|
*
|
|
147
|
-
* See additional
|
|
147
|
+
* See additional Accessibility docs.
|
|
148
148
|
*/
|
|
149
149
|
|
|
150
150
|
const Card = React.forwardRef(function Card(
|