@khanacademy/wonder-blocks-testing 8.0.1 → 8.0.3
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
|
@@ -20,10 +20,10 @@ import type { FixtureFn } from "./types";
|
|
|
20
20
|
* @returns {(
|
|
21
21
|
description: string,
|
|
22
22
|
props: FixtureProps<TProps>,
|
|
23
|
-
wrapper?: React.
|
|
23
|
+
wrapper?: React.ComponentType<TProps>) => mixed} A function to create a CSF compatible story.
|
|
24
24
|
*/
|
|
25
25
|
declare export var fixtures: <
|
|
26
|
-
TComponent: React.
|
|
26
|
+
TComponent: React.ComponentType<any>,
|
|
27
27
|
TProps: JSX.LibraryManagedAttributes<
|
|
28
28
|
TComponent,
|
|
29
29
|
React.ElementProps<TComponent>
|
|
@@ -32,7 +32,7 @@ declare export var makeTestHarness: <TAdapters: TestHarnessAdapters>(
|
|
|
32
32
|
) => TConfig | null | void
|
|
33
33
|
>
|
|
34
34
|
) => <TProps: { [key: string]: any }>(
|
|
35
|
-
Component: React.
|
|
35
|
+
Component: React.ComponentType<TProps>,
|
|
36
36
|
configs?: $Rest<
|
|
37
37
|
ObjMap<
|
|
38
38
|
TAdapters,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-testing",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.3",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@babel/runtime": "^7.18.6",
|
|
17
|
-
"@khanacademy/wonder-blocks-data": "^11.0.
|
|
17
|
+
"@khanacademy/wonder-blocks-data": "^11.0.3"
|
|
18
18
|
},
|
|
19
19
|
"peerDependencies": {
|
|
20
20
|
"@khanacademy/wonder-stuff-core": "^1.2.2",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"react-router-dom": "5.3.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"wb-dev-build-settings": "^0.9.
|
|
29
|
+
"wb-dev-build-settings": "^0.9.2"
|
|
30
30
|
},
|
|
31
31
|
"author": "",
|
|
32
32
|
"license": "MIT"
|