@khanacademy/wonder-blocks-popover 6.0.2 → 6.0.4
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 +23 -0
- package/dist/es/index.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-popover
|
|
2
2
|
|
|
3
|
+
## 6.0.4
|
|
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
|
+
- @khanacademy/wonder-blocks-icon-button@9.0.1
|
|
11
|
+
- @khanacademy/wonder-blocks-tooltip@4.1.9
|
|
12
|
+
- @khanacademy/wonder-blocks-styles@0.2.3
|
|
13
|
+
- @khanacademy/wonder-blocks-modal@7.1.9
|
|
14
|
+
- @khanacademy/wonder-blocks-tokens@7.0.0
|
|
15
|
+
|
|
16
|
+
## 6.0.3
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [38c926c]
|
|
21
|
+
- @khanacademy/wonder-blocks-icon-button@9.0.0
|
|
22
|
+
- @khanacademy/wonder-blocks-core@12.2.1
|
|
23
|
+
- @khanacademy/wonder-blocks-modal@7.1.8
|
|
24
|
+
- @khanacademy/wonder-blocks-tooltip@4.1.8
|
|
25
|
+
|
|
3
26
|
## 6.0.2
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/dist/es/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import { View, Id, addStyle } from '@khanacademy/wonder-blocks-core';
|
|
|
5
5
|
import { TooltipTail, TooltipPopper } from '@khanacademy/wonder-blocks-tooltip';
|
|
6
6
|
import { maybeGetPortalMountedModalHostElement } from '@khanacademy/wonder-blocks-modal';
|
|
7
7
|
import { StyleSheet } from 'aphrodite';
|
|
8
|
-
import {
|
|
8
|
+
import { border, semanticColor, spacing, color } from '@khanacademy/wonder-blocks-tokens';
|
|
9
9
|
import { HeadingSmall, Body } from '@khanacademy/wonder-blocks-typography';
|
|
10
10
|
import { actionStyles } from '@khanacademy/wonder-blocks-styles';
|
|
11
11
|
import xIcon from '@phosphor-icons/core/regular/x.svg';
|
|
@@ -592,7 +592,7 @@ PopoverContentCore.defaultProps = {
|
|
|
592
592
|
};
|
|
593
593
|
const styles$1 = StyleSheet.create({
|
|
594
594
|
content: {
|
|
595
|
-
borderRadius:
|
|
595
|
+
borderRadius: border.radius.radius_040,
|
|
596
596
|
border: `solid 1px ${semanticColor.border.primary}`,
|
|
597
597
|
backgroundColor: semanticColor.surface.primary,
|
|
598
598
|
boxShadow: `0 ${spacing.xSmall_8}px ${spacing.xSmall_8}px 0 ${color.offBlack8}`,
|
package/dist/index.js
CHANGED
|
@@ -622,7 +622,7 @@ PopoverContentCore.defaultProps = {
|
|
|
622
622
|
};
|
|
623
623
|
const styles$1 = aphrodite.StyleSheet.create({
|
|
624
624
|
content: {
|
|
625
|
-
borderRadius: wonderBlocksTokens.
|
|
625
|
+
borderRadius: wonderBlocksTokens.border.radius.radius_040,
|
|
626
626
|
border: `solid 1px ${wonderBlocksTokens.semanticColor.border.primary}`,
|
|
627
627
|
backgroundColor: wonderBlocksTokens.semanticColor.surface.primary,
|
|
628
628
|
boxShadow: `0 ${wonderBlocksTokens.spacing.xSmall_8}px ${wonderBlocksTokens.spacing.xSmall_8}px 0 ${wonderBlocksTokens.color.offBlack8}`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-popover",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@babel/runtime": "^7.24.5",
|
|
16
16
|
"@khanacademy/wonder-blocks-core": "12.2.1",
|
|
17
|
-
"@khanacademy/wonder-blocks-icon-button": "
|
|
18
|
-
"@khanacademy/wonder-blocks-modal": "7.1.
|
|
19
|
-
"@khanacademy/wonder-blocks-styles": "0.2.
|
|
20
|
-
"@khanacademy/wonder-blocks-tokens": "
|
|
21
|
-
"@khanacademy/wonder-blocks-tooltip": "4.1.
|
|
17
|
+
"@khanacademy/wonder-blocks-icon-button": "9.0.1",
|
|
18
|
+
"@khanacademy/wonder-blocks-modal": "7.1.9",
|
|
19
|
+
"@khanacademy/wonder-blocks-styles": "0.2.3",
|
|
20
|
+
"@khanacademy/wonder-blocks-tokens": "7.0.0",
|
|
21
|
+
"@khanacademy/wonder-blocks-tooltip": "4.1.9",
|
|
22
22
|
"@khanacademy/wonder-blocks-typography": "3.1.3"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|