@khanacademy/wonder-blocks-button 6.3.2 → 6.3.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 +13 -0
- package/dist/es/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
- package/src/__tests__/__snapshots__/custom-snapshot.test.tsx.snap +2865 -11931
- package/src/__tests__/custom-snapshot.test.tsx +37 -42
- package/src/components/button-core.tsx +1 -1
- package/tsconfig-build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-button
|
|
2
2
|
|
|
3
|
+
## 6.3.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 04a25ff7: Fix inconsistent underline height in the active state of the tertiary button.
|
|
8
|
+
|
|
9
|
+
## 6.3.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [f099cf87]
|
|
14
|
+
- @khanacademy/wonder-blocks-clickable@4.2.3
|
|
15
|
+
|
|
3
16
|
## 6.3.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/es/index.js
CHANGED
|
@@ -515,7 +515,7 @@ const _generateStyles = (buttonColor = "default", kind, light, size, theme, them
|
|
|
515
515
|
active: {
|
|
516
516
|
color: light ? fadedColor : activeColor,
|
|
517
517
|
":after": {
|
|
518
|
-
height:
|
|
518
|
+
height: theme.size.height.tertiaryHover,
|
|
519
519
|
background: light ? fadedColor : activeColor
|
|
520
520
|
}
|
|
521
521
|
},
|
package/dist/index.js
CHANGED
|
@@ -538,7 +538,7 @@ const _generateStyles = (buttonColor = "default", kind, light, size, theme, them
|
|
|
538
538
|
active: {
|
|
539
539
|
color: light ? fadedColor : activeColor,
|
|
540
540
|
":after": {
|
|
541
|
-
height:
|
|
541
|
+
height: theme.size.height.tertiaryHover,
|
|
542
542
|
background: light ? fadedColor : activeColor
|
|
543
543
|
}
|
|
544
544
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-button",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.4",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime": "^7.18.6",
|
|
19
|
-
"@khanacademy/wonder-blocks-clickable": "^4.2.
|
|
19
|
+
"@khanacademy/wonder-blocks-clickable": "^4.2.3",
|
|
20
20
|
"@khanacademy/wonder-blocks-core": "^6.4.1",
|
|
21
21
|
"@khanacademy/wonder-blocks-icon": "^4.1.1",
|
|
22
22
|
"@khanacademy/wonder-blocks-progress-spinner": "^2.1.2",
|