@khanacademy/wonder-blocks-timing 5.0.2 → 6.0.1
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,17 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-timing
|
|
2
2
|
|
|
3
|
+
## 6.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 11a0f5c6: No functional changes. Adding prepublishOnly script.
|
|
8
|
+
|
|
9
|
+
## 6.0.0
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- e6abdd17: Upgrade to React 18
|
|
14
|
+
|
|
3
15
|
## 5.0.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -11,7 +11,7 @@ type WithoutActionScheduler<T> = Omit<T, "schedule">;
|
|
|
11
11
|
* these props use the `WithActionScheduler` type.
|
|
12
12
|
*/
|
|
13
13
|
export default function withActionScheduler<Props extends WithActionSchedulerProps>(WrappedComponent: React.ComponentType<Props>): {
|
|
14
|
-
(props: WithoutActionScheduler<Props>): JSX.Element;
|
|
14
|
+
(props: WithoutActionScheduler<Props>): React.JSX.Element;
|
|
15
15
|
displayName: string;
|
|
16
16
|
};
|
|
17
17
|
export {};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-timing",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "6.0.1",
|
|
5
5
|
"design": "v1",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -11,13 +11,15 @@
|
|
|
11
11
|
"module": "dist/es/index.js",
|
|
12
12
|
"types": "dist/index.d.ts",
|
|
13
13
|
"scripts": {
|
|
14
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
14
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
15
|
+
"prepublishOnly": "../../utils/publish/package-pre-publish-check.sh"
|
|
15
16
|
},
|
|
16
17
|
"peerDependencies": {
|
|
17
|
-
"react": "
|
|
18
|
+
"react": "18.2.0"
|
|
18
19
|
},
|
|
19
20
|
"devDependencies": {
|
|
20
|
-
"@khanacademy/wb-dev-build-settings": "^
|
|
21
|
+
"@khanacademy/wb-dev-build-settings": "^2.0.0",
|
|
22
|
+
"@khanacademy/wonder-blocks-testing-core": "^2.0.1"
|
|
21
23
|
},
|
|
22
24
|
"author": "",
|
|
23
25
|
"license": "MIT"
|