@khanacademy/wonder-blocks-button 3.0.17 → 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,22 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-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
|
+
- @khanacademy/wonder-blocks-progress-spinner@2.0.0
|
|
17
|
+
- @khanacademy/wonder-blocks-spacing@4.0.0
|
|
18
|
+
- @khanacademy/wonder-blocks-typography@2.0.0
|
|
19
|
+
|
|
3
20
|
## 3.0.17
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -14,5 +14,5 @@ import type { SharedProps } from "./button";
|
|
|
14
14
|
declare type Props = { ...SharedProps, ...ChildrenProps, ...ClickableState };
|
|
15
15
|
declare export default class ButtonCore extends React.Component<Props> {
|
|
16
16
|
renderInner(router: any): React.Node;
|
|
17
|
-
render(): React.Element
|
|
17
|
+
render(): React.Element<any>;
|
|
18
18
|
}
|
|
@@ -199,5 +199,5 @@ declare type DefaultProps = {
|
|
|
199
199
|
declare export default class Button extends React.Component<Props> {
|
|
200
200
|
static defaultProps: DefaultProps;
|
|
201
201
|
renderClickableBehavior(router: any): React.Node;
|
|
202
|
-
render(): React.Element
|
|
202
|
+
render(): React.Element<any>;
|
|
203
203
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-button",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -16,13 +16,13 @@
|
|
|
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": "^
|
|
23
|
-
"@khanacademy/wonder-blocks-progress-spinner": "^
|
|
24
|
-
"@khanacademy/wonder-blocks-spacing": "^
|
|
25
|
-
"@khanacademy/wonder-blocks-typography": "^
|
|
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
|
+
"@khanacademy/wonder-blocks-progress-spinner": "^2.0.0",
|
|
24
|
+
"@khanacademy/wonder-blocks-spacing": "^4.0.0",
|
|
25
|
+
"@khanacademy/wonder-blocks-typography": "^2.0.0"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"aphrodite": "^1.2.5",
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"react-router-dom": "5.3.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"wb-dev-build-settings": "^0.
|
|
34
|
+
"wb-dev-build-settings": "^0.8.0"
|
|
35
35
|
}
|
|
36
36
|
}
|