@akinon/pz-b2b 2.0.0-beta.0 → 2.0.0-beta.2
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
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akinon/pz-b2b",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"react": "^
|
|
8
|
-
"react-dom": "^
|
|
7
|
+
"react": "^19.0.0",
|
|
8
|
+
"react-dom": "^19.0.0"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@types/node": "^
|
|
12
|
-
"@types/react": "^
|
|
13
|
-
"@types/react-dom": "^
|
|
14
|
-
"react": "^
|
|
15
|
-
"react-dom": "^
|
|
16
|
-
"typescript": "^
|
|
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) =>
|
|
167
|
+
ref={(ref) => {
|
|
168
|
+
inputRefs[store.id] = ref;
|
|
169
|
+
}}
|
|
168
170
|
/>
|
|
169
171
|
</td>
|
|
170
172
|
</tr>
|