@khanacademy/wonder-blocks-form 4.11.0 → 5.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,21 @@
1
1
  # @khanacademy/wonder-blocks-form
2
2
 
3
+ ## 5.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - e6abdd17: Upgrade to React 18
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [e6abdd17]
12
+ - @khanacademy/wonder-blocks-core@8.0.0
13
+ - @khanacademy/wonder-blocks-clickable@5.0.0
14
+ - @khanacademy/wonder-blocks-icon@5.0.0
15
+ - @khanacademy/wonder-blocks-layout@3.0.0
16
+ - @khanacademy/wonder-blocks-tokens@3.0.0
17
+ - @khanacademy/wonder-blocks-typography@3.0.0
18
+
3
19
  ## 4.11.0
4
20
 
5
21
  ### 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": "4.11.0",
3
+ "version": "5.0.0",
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": "^4.2.9",
20
- "@khanacademy/wonder-blocks-core": "^7.0.1",
21
- "@khanacademy/wonder-blocks-icon": "^4.2.0",
22
- "@khanacademy/wonder-blocks-layout": "^2.2.2",
23
- "@khanacademy/wonder-blocks-tokens": "^2.1.0",
24
- "@khanacademy/wonder-blocks-typography": "^2.1.16"
19
+ "@khanacademy/wonder-blocks-clickable": "^5.0.0",
20
+ "@khanacademy/wonder-blocks-core": "^8.0.0",
21
+ "@khanacademy/wonder-blocks-icon": "^5.0.0",
22
+ "@khanacademy/wonder-blocks-layout": "^3.0.0",
23
+ "@khanacademy/wonder-blocks-tokens": "^3.0.0",
24
+ "@khanacademy/wonder-blocks-typography": "^3.0.0"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "aphrodite": "^1.2.5",
28
- "react": "16.14.0"
28
+ "react": "18.2.0"
29
29
  },
30
30
  "devDependencies": {
31
- "@khanacademy/wb-dev-build-settings": "^1.0.1"
31
+ "@khanacademy/wb-dev-build-settings": "^2.0.0"
32
32
  }
33
33
  }