@akinon/pz-bkm 2.0.0-beta.0 → 2.0.0-beta.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,11 @@
1
1
  # @akinon/pz-bkm
2
2
 
3
+ ## 2.0.0-beta.1
4
+
5
+ ### Minor Changes
6
+
7
+ - ZERO-3091: Upgrade Next.js to v15 and React to v19
8
+
3
9
  ## 2.0.0-beta.0
4
10
 
5
11
  ### Major Changes
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@akinon/pz-bkm",
3
- "version": "2.0.0-beta.0",
3
+ "version": "2.0.0-beta.1",
4
4
  "license": "MIT",
5
5
  "main": "src/index.tsx",
6
6
  "peerDependencies": {
7
- "react": "^18.0.0",
8
- "react-dom": "^18.0.0"
7
+ "react": "^19.0.0",
8
+ "react-dom": "^19.0.0"
9
9
  },
10
10
  "devDependencies": {
11
- "@types/node": "^18.7.8",
12
- "@types/react": "^18.0.17",
13
- "@types/react-dom": "^18.0.6",
14
- "react": "^18.2.0",
15
- "react-dom": "^18.2.0",
16
- "typescript": "5.2.2"
11
+ "@types/node": "^22.10.2",
12
+ "@types/react": "^19.0.2",
13
+ "@types/react-dom": "^19.0.2",
14
+ "react": "^19.0.0",
15
+ "react-dom": "^19.0.0",
16
+ "typescript": "^5.7.2"
17
17
  },
18
18
  "dependencies": {
19
19
  "@hookform/resolvers": "2.9.0",
@@ -118,6 +118,7 @@ const BKMOption = ({
118
118
  <div className="flex items-start flex-col border-t border-solid border-gray-400 py-4 space-y-4">
119
119
  {agreementCheckbox &&
120
120
  React.cloneElement(agreementCheckbox, {
121
+ // @ts-ignore
121
122
  control: control,
122
123
  error: errors.agreement,
123
124
  fieldId: 'agreement'