@khanacademy/wonder-blocks-icon-button 3.4.24 → 4.0.0
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
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-icon-button
|
|
2
2
|
|
|
3
|
+
## 4.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 1ca4d7e3: Fix minor issue with generate Flow types (this is a major bump b/c I forgot to do one after doing the TS conversion)
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [1ca4d7e3]
|
|
12
|
+
- @khanacademy/wonder-blocks-clickable@3.0.0
|
|
13
|
+
- @khanacademy/wonder-blocks-color@2.0.0
|
|
14
|
+
- @khanacademy/wonder-blocks-core@5.0.0
|
|
15
|
+
- @khanacademy/wonder-blocks-icon@2.0.0
|
|
16
|
+
|
|
3
17
|
## 3.4.24
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -161,5 +161,5 @@ declare type DefaultProps = {
|
|
|
161
161
|
declare export default class IconButton extends React.Component<SharedProps> {
|
|
162
162
|
static defaultProps: DefaultProps;
|
|
163
163
|
renderClickableBehavior(router: any): React.Node;
|
|
164
|
-
render(): React.Element
|
|
164
|
+
render(): React.Element<any>;
|
|
165
165
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-icon-button",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime": "^7.18.6",
|
|
19
|
-
"@khanacademy/wonder-blocks-clickable": "^
|
|
20
|
-
"@khanacademy/wonder-blocks-color": "^
|
|
21
|
-
"@khanacademy/wonder-blocks-core": "^
|
|
22
|
-
"@khanacademy/wonder-blocks-icon": "^
|
|
19
|
+
"@khanacademy/wonder-blocks-clickable": "^3.0.0",
|
|
20
|
+
"@khanacademy/wonder-blocks-color": "^2.0.0",
|
|
21
|
+
"@khanacademy/wonder-blocks-core": "^5.0.0",
|
|
22
|
+
"@khanacademy/wonder-blocks-icon": "^2.0.0"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"aphrodite": "^1.2.5",
|
|
@@ -28,6 +28,6 @@
|
|
|
28
28
|
"react-router-dom": "5.3.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"wb-dev-build-settings": "^0.
|
|
31
|
+
"wb-dev-build-settings": "^0.8.0"
|
|
32
32
|
}
|
|
33
33
|
}
|