@akinon/pz-b2b 1.76.0-rc.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,11 +1,16 @@
1
1
  # @akinon/pz-b2b
2
2
 
3
- ## 1.76.0-rc.0
3
+ ## 2.0.0-beta.1
4
4
 
5
5
  ### Minor Changes
6
6
 
7
- - 64699d3f: ZERO-2761: Fix invalid import for plugin module
8
- - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
7
+ - ZERO-3091: Upgrade Next.js to v15 and React to v19
8
+
9
+ ## 2.0.0-beta.0
10
+
11
+ ### Major Changes
12
+
13
+ - be6c09d: ZERO-3114: Create beta version.
9
14
 
10
15
  ## 1.75.0
11
16
 
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@akinon/pz-b2b",
3
- "version": "1.76.0-rc.0",
3
+ "version": "2.0.0-beta.1",
4
4
  "license": "MIT",
5
5
  "main": "src/index.ts",
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": "^4.7.4"
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
  }
@@ -164,7 +164,9 @@ export function StoreModal({
164
164
  type="number"
165
165
  className="w-[64px] md:w-[84px] h-[31px] border border-[#d7d7d7] outline-none text-xs text-right pr-1 appearance-none"
166
166
  onChange={(e) => handleQuantityChange(store.id, e)}
167
- ref={(ref) => (inputRefs[store.id] = ref)}
167
+ ref={(ref) => {
168
+ inputRefs[store.id] = ref;
169
+ }}
168
170
  />
169
171
  </td>
170
172
  </tr>