@khanacademy/wonder-blocks-banner 4.1.7 → 4.1.9
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 +24 -0
- package/dist/es/index.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-banner
|
|
2
2
|
|
|
3
|
+
## 4.1.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e8ccf60: Update `borderRadius` styles to use new `border.radius` tokens
|
|
8
|
+
- Updated dependencies [e8ccf60]
|
|
9
|
+
- Updated dependencies [e8ccf60]
|
|
10
|
+
- Updated dependencies [e8ccf60]
|
|
11
|
+
- Updated dependencies [e8ccf60]
|
|
12
|
+
- @khanacademy/wonder-blocks-icon-button@9.0.1
|
|
13
|
+
- @khanacademy/wonder-blocks-link@9.0.1
|
|
14
|
+
- @khanacademy/wonder-blocks-tokens@7.0.0
|
|
15
|
+
- @khanacademy/wonder-blocks-button@8.0.1
|
|
16
|
+
|
|
17
|
+
## 4.1.8
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [38c926c]
|
|
22
|
+
- @khanacademy/wonder-blocks-icon-button@9.0.0
|
|
23
|
+
- @khanacademy/wonder-blocks-button@8.0.0
|
|
24
|
+
- @khanacademy/wonder-blocks-link@9.0.0
|
|
25
|
+
- @khanacademy/wonder-blocks-core@12.2.1
|
|
26
|
+
|
|
3
27
|
## 4.1.7
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/es/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { View } from '@khanacademy/wonder-blocks-core';
|
|
|
6
6
|
import { PhosphorIcon } from '@khanacademy/wonder-blocks-icon';
|
|
7
7
|
import IconButton from '@khanacademy/wonder-blocks-icon-button';
|
|
8
8
|
import Link from '@khanacademy/wonder-blocks-link';
|
|
9
|
-
import { spacing, semanticColor, font } from '@khanacademy/wonder-blocks-tokens';
|
|
9
|
+
import { spacing, semanticColor, font, border } from '@khanacademy/wonder-blocks-tokens';
|
|
10
10
|
import { LabelSmall } from '@khanacademy/wonder-blocks-typography';
|
|
11
11
|
import infoIcon from '@phosphor-icons/core/regular/info.svg';
|
|
12
12
|
import successIcon from '@phosphor-icons/core/regular/smiley.svg';
|
|
@@ -195,7 +195,7 @@ const styles = StyleSheet.create({
|
|
|
195
195
|
marginRight: spacing.xSmall_8
|
|
196
196
|
},
|
|
197
197
|
floatingBorder: {
|
|
198
|
-
borderRadius:
|
|
198
|
+
borderRadius: border.radius.radius_040,
|
|
199
199
|
overflow: "hidden"
|
|
200
200
|
}
|
|
201
201
|
});
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-banner",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.9",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"description": "Banner components for Wonder Blocks.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@babel/runtime": "^7.24.5",
|
|
16
|
-
"@khanacademy/wonder-blocks-button": "
|
|
16
|
+
"@khanacademy/wonder-blocks-button": "8.0.1",
|
|
17
17
|
"@khanacademy/wonder-blocks-core": "12.2.1",
|
|
18
18
|
"@khanacademy/wonder-blocks-icon": "5.1.3",
|
|
19
|
-
"@khanacademy/wonder-blocks-icon-button": "
|
|
20
|
-
"@khanacademy/wonder-blocks-link": "
|
|
21
|
-
"@khanacademy/wonder-blocks-tokens": "
|
|
19
|
+
"@khanacademy/wonder-blocks-icon-button": "9.0.1",
|
|
20
|
+
"@khanacademy/wonder-blocks-link": "9.0.1",
|
|
21
|
+
"@khanacademy/wonder-blocks-tokens": "7.0.0",
|
|
22
22
|
"@khanacademy/wonder-blocks-typography": "3.1.3"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|