@khanacademy/wonder-blocks-cell 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 +21 -0
- package/dist/es/index.js +3 -3
- package/dist/index.js +3 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-cell
|
|
2
2
|
|
|
3
|
+
## 4.1.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e63adea: Update `border.width` tokens to use new naming conventions.
|
|
8
|
+
- Updated dependencies [e63adea]
|
|
9
|
+
- Updated dependencies [e63adea]
|
|
10
|
+
- @khanacademy/wonder-blocks-tokens@8.0.0
|
|
11
|
+
- @khanacademy/wonder-blocks-clickable@7.0.2
|
|
12
|
+
- @khanacademy/wonder-blocks-layout@3.1.8
|
|
13
|
+
|
|
14
|
+
## 4.1.8
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- e8ccf60: Update `borderRadius` styles to use new `border.radius` tokens
|
|
19
|
+
- Updated dependencies [e8ccf60]
|
|
20
|
+
- @khanacademy/wonder-blocks-tokens@7.0.0
|
|
21
|
+
- @khanacademy/wonder-blocks-clickable@7.0.1
|
|
22
|
+
- @khanacademy/wonder-blocks-layout@3.1.7
|
|
23
|
+
|
|
3
24
|
## 4.1.7
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
package/dist/es/index.js
CHANGED
|
@@ -237,7 +237,7 @@ const styles$1 = StyleSheet.create({
|
|
|
237
237
|
cursor: "not-allowed"
|
|
238
238
|
},
|
|
239
239
|
":focus-visible": {
|
|
240
|
-
borderRadius:
|
|
240
|
+
borderRadius: border.radius.radius_040,
|
|
241
241
|
overflow: "hidden",
|
|
242
242
|
position: "relative"
|
|
243
243
|
},
|
|
@@ -250,7 +250,7 @@ const styles$1 = StyleSheet.create({
|
|
|
250
250
|
width: `calc(100% - ${spacing.xxxSmall_4}px)`,
|
|
251
251
|
height: `calc(100% - ${spacing.xxxSmall_4}px)`,
|
|
252
252
|
border: `${spacing.xxxxSmall_2}px solid ${cellTokens.root.focus.border}`,
|
|
253
|
-
borderRadius:
|
|
253
|
+
borderRadius: border.radius.radius_040
|
|
254
254
|
},
|
|
255
255
|
[":focus-visible[aria-disabled=true]:after"]: {
|
|
256
256
|
borderColor: cellTokens.root.disabled.border
|
|
@@ -269,7 +269,7 @@ const styles$1 = StyleSheet.create({
|
|
|
269
269
|
top: 0,
|
|
270
270
|
left: 0,
|
|
271
271
|
bottom: 0,
|
|
272
|
-
width: border.width.
|
|
272
|
+
width: border.width.medium,
|
|
273
273
|
backgroundColor: semanticColor.surface.emphasis
|
|
274
274
|
}
|
|
275
275
|
}
|
package/dist/index.js
CHANGED
|
@@ -266,7 +266,7 @@ const styles$1 = aphrodite.StyleSheet.create({
|
|
|
266
266
|
cursor: "not-allowed"
|
|
267
267
|
},
|
|
268
268
|
":focus-visible": {
|
|
269
|
-
borderRadius: wonderBlocksTokens.
|
|
269
|
+
borderRadius: wonderBlocksTokens.border.radius.radius_040,
|
|
270
270
|
overflow: "hidden",
|
|
271
271
|
position: "relative"
|
|
272
272
|
},
|
|
@@ -279,7 +279,7 @@ const styles$1 = aphrodite.StyleSheet.create({
|
|
|
279
279
|
width: `calc(100% - ${wonderBlocksTokens.spacing.xxxSmall_4}px)`,
|
|
280
280
|
height: `calc(100% - ${wonderBlocksTokens.spacing.xxxSmall_4}px)`,
|
|
281
281
|
border: `${wonderBlocksTokens.spacing.xxxxSmall_2}px solid ${cellTokens.root.focus.border}`,
|
|
282
|
-
borderRadius: wonderBlocksTokens.
|
|
282
|
+
borderRadius: wonderBlocksTokens.border.radius.radius_040
|
|
283
283
|
},
|
|
284
284
|
[":focus-visible[aria-disabled=true]:after"]: {
|
|
285
285
|
borderColor: cellTokens.root.disabled.border
|
|
@@ -298,7 +298,7 @@ const styles$1 = aphrodite.StyleSheet.create({
|
|
|
298
298
|
top: 0,
|
|
299
299
|
left: 0,
|
|
300
300
|
bottom: 0,
|
|
301
|
-
width: wonderBlocksTokens.border.width.
|
|
301
|
+
width: wonderBlocksTokens.border.width.medium,
|
|
302
302
|
backgroundColor: wonderBlocksTokens.semanticColor.surface.emphasis
|
|
303
303
|
}
|
|
304
304
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-cell",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.9",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"types": "dist/index.d.ts",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@babel/runtime": "^7.24.5",
|
|
14
|
-
"@khanacademy/wonder-blocks-clickable": "7.0.
|
|
14
|
+
"@khanacademy/wonder-blocks-clickable": "7.0.2",
|
|
15
15
|
"@khanacademy/wonder-blocks-core": "12.2.1",
|
|
16
|
-
"@khanacademy/wonder-blocks-layout": "3.1.
|
|
17
|
-
"@khanacademy/wonder-blocks-tokens": "
|
|
16
|
+
"@khanacademy/wonder-blocks-layout": "3.1.8",
|
|
17
|
+
"@khanacademy/wonder-blocks-tokens": "8.0.0",
|
|
18
18
|
"@khanacademy/wonder-blocks-typography": "3.1.3"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|