@akinon/pz-b2b 2.0.0-beta.2 → 2.0.0-beta.20

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,18 +1,114 @@
1
1
  # @akinon/pz-b2b
2
2
 
3
- ## 2.0.0-beta.2
3
+ ## 2.0.0-beta.20
4
4
 
5
- ## 2.0.0-beta.1
5
+ ## 1.125.0
6
+
7
+ ## 1.124.0
8
+
9
+ ## 1.123.0
10
+
11
+ ## 1.122.0
12
+
13
+ ## 1.121.0
14
+
15
+ ## 1.120.0
16
+
17
+ ## 1.119.0
18
+
19
+ ## 1.118.0
20
+
21
+ ## 1.117.0
22
+
23
+ ## 1.116.0
24
+
25
+ ## 1.115.0
26
+
27
+ ## 1.114.0
28
+
29
+ ## 1.113.0
30
+
31
+ ## 1.112.0
32
+
33
+ ## 1.111.0
34
+
35
+ ## 1.110.0
36
+
37
+ ## 1.109.0
38
+
39
+ ## 1.108.0
40
+
41
+ ## 1.107.0
42
+
43
+ ## 1.106.0
44
+
45
+ ## 1.105.0
46
+
47
+ ## 1.104.0
48
+
49
+ ## 1.103.0
50
+
51
+ ## 1.102.0
52
+
53
+ ## 1.101.0
54
+
55
+ ## 1.100.0
56
+
57
+ ## 1.99.0
58
+
59
+ ### Minor Changes
60
+
61
+ - d58538b: ZERO-3638: Enhance RC pipeline: add fetch, merge, and pre-release setup with conditional commit
62
+
63
+ ## 1.98.0
64
+
65
+ ## 1.97.0
66
+
67
+ ## 1.96.0
68
+
69
+ ## 1.95.0
70
+
71
+ ## 1.94.0
72
+
73
+ ## 1.93.0
74
+
75
+ ## 1.92.0
76
+
77
+ ## 1.91.0
78
+
79
+ ## 1.90.0
80
+
81
+ ## 1.89.0
82
+
83
+ ## 1.88.0
84
+
85
+ ## 1.87.0
86
+
87
+ ## 1.86.0
88
+
89
+ ## 1.85.0
90
+
91
+ ## 1.84.0
6
92
 
7
93
  ### Minor Changes
8
94
 
9
- - ZERO-3091: Upgrade Next.js to v15 and React to v19
95
+ - 624a4eb: ZERO-3276: Update installation instructions across multiple README files to standardize format and improve clarity
96
+
97
+ ## 1.83.0
98
+
99
+ ## 1.82.0
100
+
101
+ ## 1.81.0
102
+
103
+ ## 1.80.0
104
+
105
+ ## 1.79.0
10
106
 
11
- ## 2.0.0-beta.0
107
+ ## 1.78.0
12
108
 
13
- ### Major Changes
109
+ ## 1.77.0
14
110
 
15
- - be6c09d: ZERO-3114: Create beta version.
111
+ ## 1.76.0
16
112
 
17
113
  ## 1.75.0
18
114
 
package/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # @akinon/pz-b2b
2
2
 
3
- ### Install the npm package
3
+ ## Installation
4
+
5
+ You can use the following command to install the extension with the latest plugins:
4
6
 
5
7
  ```bash
6
- # For latest version
7
- yarn add @akinon/pz-b2b
8
8
 
9
- # Preferred installation method
10
9
  npx @akinon/projectzero@latest --plugins
10
+
11
11
  ```
12
12
 
13
13
  ### Installation
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@akinon/pz-b2b",
3
- "version": "2.0.0-beta.2",
3
+ "version": "2.0.0-beta.20",
4
4
  "license": "MIT",
5
5
  "main": "src/index.ts",
6
6
  "peerDependencies": {
7
- "react": "^19.0.0",
8
- "react-dom": "^19.0.0"
7
+ "react": "^18.0.0 || ^19.0.0",
8
+ "react-dom": "^18.0.0 || ^19.0.0"
9
9
  },
10
10
  "devDependencies": {
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"
11
+ "@types/node": "^18.7.8",
12
+ "@types/react": "^18.0.17",
13
+ "@types/react-dom": "^18.0.6",
14
+ "react": "^19.2.4",
15
+ "react-dom": "^19.2.4",
16
+ "typescript": "^4.7.4"
17
17
  }
18
18
  }
@@ -164,9 +164,7 @@ 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) => {
168
- inputRefs[store.id] = ref;
169
- }}
167
+ ref={(ref) => { inputRefs[store.id] = ref; }}
170
168
  />
171
169
  </td>
172
170
  </tr>