@khanacademy/wonder-blocks-search-field 1.0.13 → 1.0.15
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 +18 -0
- package/package.json +6 -6
- package/src/components/__tests__/search-field.test.js +2 -2
- package/dist/index.js +0 -8419
- package/dist/index.js.flow +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-search-field
|
|
2
2
|
|
|
3
|
+
## 1.0.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b561425a]
|
|
8
|
+
- Updated dependencies [a566e232]
|
|
9
|
+
- Updated dependencies [d2b21a6e]
|
|
10
|
+
- @khanacademy/wonder-blocks-core@4.6.0
|
|
11
|
+
- @khanacademy/wonder-blocks-icon@1.2.33
|
|
12
|
+
- @khanacademy/wonder-blocks-icon-button@3.4.17
|
|
13
|
+
- @khanacademy/wonder-blocks-typography@1.1.35
|
|
14
|
+
|
|
15
|
+
## 1.0.14
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- @khanacademy/wonder-blocks-icon-button@3.4.16
|
|
20
|
+
|
|
3
21
|
## 1.0.13
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-search-field",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"description": "Search Field components for Wonder Blocks.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,17 +17,17 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime": "^7.18.6",
|
|
19
19
|
"@khanacademy/wonder-blocks-color": "^1.2.0",
|
|
20
|
-
"@khanacademy/wonder-blocks-core": "^4.
|
|
21
|
-
"@khanacademy/wonder-blocks-icon": "^1.2.
|
|
22
|
-
"@khanacademy/wonder-blocks-icon-button": "^3.4.
|
|
20
|
+
"@khanacademy/wonder-blocks-core": "^4.6.0",
|
|
21
|
+
"@khanacademy/wonder-blocks-icon": "^1.2.33",
|
|
22
|
+
"@khanacademy/wonder-blocks-icon-button": "^3.4.17",
|
|
23
23
|
"@khanacademy/wonder-blocks-spacing": "^3.0.5",
|
|
24
|
-
"@khanacademy/wonder-blocks-typography": "^1.1.
|
|
24
|
+
"@khanacademy/wonder-blocks-typography": "^1.1.35"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"aphrodite": "^1.2.5",
|
|
28
28
|
"react": "16.14.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"wb-dev-build-settings": "^0.
|
|
31
|
+
"wb-dev-build-settings": "^0.5.0"
|
|
32
32
|
}
|
|
33
33
|
}
|
|
@@ -290,7 +290,7 @@ describe("SearchField", () => {
|
|
|
290
290
|
);
|
|
291
291
|
|
|
292
292
|
// Assert
|
|
293
|
-
waitFor(() => {
|
|
293
|
+
await waitFor(() => {
|
|
294
294
|
expect(ref.current).toBeInstanceOf(HTMLInputElement);
|
|
295
295
|
});
|
|
296
296
|
});
|
|
@@ -310,7 +310,7 @@ describe("SearchField", () => {
|
|
|
310
310
|
);
|
|
311
311
|
|
|
312
312
|
// Assert
|
|
313
|
-
waitFor(() => {
|
|
313
|
+
await waitFor(() => {
|
|
314
314
|
expect(ref.current?.value).toBe("some-value");
|
|
315
315
|
});
|
|
316
316
|
});
|