@khanacademy/wonder-blocks-tooltip 4.1.8 → 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 +11 -0
- package/dist/es/index.js +2 -2
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-tooltip
|
|
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
|
+
- @khanacademy/wonder-blocks-modal@7.1.9
|
|
11
|
+
- @khanacademy/wonder-blocks-tokens@7.0.0
|
|
12
|
+
- @khanacademy/wonder-blocks-layout@3.1.7
|
|
13
|
+
|
|
3
14
|
## 4.1.8
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/dist/es/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import * as ReactDOM from 'react-dom';
|
|
|
3
3
|
import { Text as Text$1, View, Id } from '@khanacademy/wonder-blocks-core';
|
|
4
4
|
import { maybeGetPortalMountedModalHostElement } from '@khanacademy/wonder-blocks-modal';
|
|
5
5
|
import { StyleSheet, css } from 'aphrodite';
|
|
6
|
-
import { spacing, color, semanticColor } from '@khanacademy/wonder-blocks-tokens';
|
|
6
|
+
import { spacing, color, border, semanticColor } from '@khanacademy/wonder-blocks-tokens';
|
|
7
7
|
import _extends from '@babel/runtime/helpers/extends';
|
|
8
8
|
import { Strut } from '@khanacademy/wonder-blocks-layout';
|
|
9
9
|
import { HeadingSmall, LabelMedium } from '@khanacademy/wonder-blocks-typography';
|
|
@@ -532,7 +532,7 @@ const styles$1 = StyleSheet.create({
|
|
|
532
532
|
},
|
|
533
533
|
content: {
|
|
534
534
|
maxWidth: 472,
|
|
535
|
-
borderRadius:
|
|
535
|
+
borderRadius: border.radius.radius_040,
|
|
536
536
|
border: `solid 1px ${semanticColor.border.primary}`,
|
|
537
537
|
backgroundColor: semanticColor.surface.primary,
|
|
538
538
|
boxShadow: `0 ${spacing.xSmall_8}px ${spacing.xSmall_8}px 0 ${color.offBlack8}`,
|
package/dist/index.js
CHANGED
|
@@ -560,7 +560,7 @@ const styles$1 = aphrodite.StyleSheet.create({
|
|
|
560
560
|
},
|
|
561
561
|
content: {
|
|
562
562
|
maxWidth: 472,
|
|
563
|
-
borderRadius: wonderBlocksTokens.
|
|
563
|
+
borderRadius: wonderBlocksTokens.border.radius.radius_040,
|
|
564
564
|
border: `solid 1px ${wonderBlocksTokens.semanticColor.border.primary}`,
|
|
565
565
|
backgroundColor: wonderBlocksTokens.semanticColor.surface.primary,
|
|
566
566
|
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-tooltip",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.9",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@babel/runtime": "^7.24.5",
|
|
16
16
|
"@khanacademy/wonder-blocks-core": "12.2.1",
|
|
17
|
-
"@khanacademy/wonder-blocks-layout": "3.1.
|
|
18
|
-
"@khanacademy/wonder-blocks-
|
|
19
|
-
"@khanacademy/wonder-blocks-
|
|
17
|
+
"@khanacademy/wonder-blocks-layout": "3.1.7",
|
|
18
|
+
"@khanacademy/wonder-blocks-modal": "7.1.9",
|
|
19
|
+
"@khanacademy/wonder-blocks-tokens": "7.0.0",
|
|
20
20
|
"@khanacademy/wonder-blocks-typography": "3.1.3"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|