@khanacademy/wonder-blocks-form 4.11.0 → 5.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 +27 -0
- package/dist/components/text-field.d.ts +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-form
|
|
2
2
|
|
|
3
|
+
## 5.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f4abd572]
|
|
8
|
+
- @khanacademy/wonder-blocks-core@9.0.0
|
|
9
|
+
- @khanacademy/wonder-blocks-clickable@5.0.1
|
|
10
|
+
- @khanacademy/wonder-blocks-icon@5.0.1
|
|
11
|
+
- @khanacademy/wonder-blocks-layout@3.0.1
|
|
12
|
+
- @khanacademy/wonder-blocks-typography@3.0.1
|
|
13
|
+
|
|
14
|
+
## 5.0.0
|
|
15
|
+
|
|
16
|
+
### Major Changes
|
|
17
|
+
|
|
18
|
+
- e6abdd17: Upgrade to React 18
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [e6abdd17]
|
|
23
|
+
- @khanacademy/wonder-blocks-core@8.0.0
|
|
24
|
+
- @khanacademy/wonder-blocks-clickable@5.0.0
|
|
25
|
+
- @khanacademy/wonder-blocks-icon@5.0.0
|
|
26
|
+
- @khanacademy/wonder-blocks-layout@3.0.0
|
|
27
|
+
- @khanacademy/wonder-blocks-tokens@3.0.0
|
|
28
|
+
- @khanacademy/wonder-blocks-typography@3.0.0
|
|
29
|
+
|
|
3
30
|
## 4.11.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
|
@@ -151,7 +151,7 @@ type PropsWithForwardRef = Props & WithForwardRef;
|
|
|
151
151
|
/**
|
|
152
152
|
* A TextField is an element used to accept a single line of text from the user.
|
|
153
153
|
*/
|
|
154
|
-
declare const TextField: (props: PropsWithForwardRef) => JSX.Element;
|
|
154
|
+
declare const TextField: (props: PropsWithForwardRef) => React.JSX.Element;
|
|
155
155
|
type ExportProps = OmitConstrained<JSX.LibraryManagedAttributes<typeof TextField, React.ComponentProps<typeof TextField>>, "forwardedRef">;
|
|
156
156
|
/**
|
|
157
157
|
* A TextField is an element used to accept a single line of text from the user.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-form",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"description": "Form components for Wonder Blocks.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,18 +16,18 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@babel/runtime": "^7.18.6",
|
|
19
|
-
"@khanacademy/wonder-blocks-clickable": "^
|
|
20
|
-
"@khanacademy/wonder-blocks-core": "^
|
|
21
|
-
"@khanacademy/wonder-blocks-icon": "^
|
|
22
|
-
"@khanacademy/wonder-blocks-layout": "^
|
|
23
|
-
"@khanacademy/wonder-blocks-tokens": "^
|
|
24
|
-
"@khanacademy/wonder-blocks-typography": "^
|
|
19
|
+
"@khanacademy/wonder-blocks-clickable": "^5.0.1",
|
|
20
|
+
"@khanacademy/wonder-blocks-core": "^9.0.0",
|
|
21
|
+
"@khanacademy/wonder-blocks-icon": "^5.0.1",
|
|
22
|
+
"@khanacademy/wonder-blocks-layout": "^3.0.1",
|
|
23
|
+
"@khanacademy/wonder-blocks-tokens": "^3.0.0",
|
|
24
|
+
"@khanacademy/wonder-blocks-typography": "^3.0.1"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"aphrodite": "^1.2.5",
|
|
28
|
-
"react": "
|
|
28
|
+
"react": "18.2.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@khanacademy/wb-dev-build-settings": "^
|
|
31
|
+
"@khanacademy/wb-dev-build-settings": "^2.0.0"
|
|
32
32
|
}
|
|
33
33
|
}
|