@khanacademy/wonder-blocks-link 3.9.4 → 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,18 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-link
|
|
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
|
+
|
|
3
16
|
## 3.9.4
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -173,5 +173,5 @@ declare type DefaultProps = {
|
|
|
173
173
|
declare export default class Link extends React.Component<SharedProps> {
|
|
174
174
|
static defaultProps: DefaultProps;
|
|
175
175
|
renderClickableBehavior(router: any): React.Node;
|
|
176
|
-
render(): React.Element
|
|
176
|
+
render(): React.Element<any>;
|
|
177
177
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-link",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -16,9 +16,9 @@
|
|
|
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": "^
|
|
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
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"aphrodite": "^1.2.5",
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"react-router-dom": "5.3.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"wb-dev-build-settings": "^0.
|
|
30
|
+
"wb-dev-build-settings": "^0.8.0"
|
|
31
31
|
}
|
|
32
32
|
}
|