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

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,122 @@
1
1
  # @akinon/pz-b2b
2
2
 
3
- ## 2.0.0-beta.2
3
+ ## 2.0.0-beta.21
4
4
 
5
- ## 2.0.0-beta.1
5
+ ## 2.0.0-beta.20
6
+
7
+ ## 1.126.0
8
+
9
+ ## 1.125.2
10
+
11
+ ## 1.125.1
12
+
13
+ ## 1.125.0
14
+
15
+ ## 1.124.0
16
+
17
+ ## 1.123.0
18
+
19
+ ## 1.122.0
20
+
21
+ ## 1.121.0
22
+
23
+ ## 1.120.0
24
+
25
+ ## 1.119.0
26
+
27
+ ## 1.118.0
28
+
29
+ ## 1.117.0
30
+
31
+ ## 1.116.0
32
+
33
+ ## 1.115.0
34
+
35
+ ## 1.114.0
36
+
37
+ ## 1.113.0
38
+
39
+ ## 1.112.0
40
+
41
+ ## 1.111.0
42
+
43
+ ## 1.110.0
44
+
45
+ ## 1.109.0
46
+
47
+ ## 1.108.0
48
+
49
+ ## 1.107.0
50
+
51
+ ## 1.106.0
52
+
53
+ ## 1.105.0
54
+
55
+ ## 1.104.0
56
+
57
+ ## 1.103.0
58
+
59
+ ## 1.102.0
60
+
61
+ ## 1.101.0
62
+
63
+ ## 1.100.0
64
+
65
+ ## 1.99.0
66
+
67
+ ### Minor Changes
68
+
69
+ - d58538b: ZERO-3638: Enhance RC pipeline: add fetch, merge, and pre-release setup with conditional commit
70
+
71
+ ## 1.98.0
72
+
73
+ ## 1.97.0
74
+
75
+ ## 1.96.0
76
+
77
+ ## 1.95.0
78
+
79
+ ## 1.94.0
80
+
81
+ ## 1.93.0
82
+
83
+ ## 1.92.0
84
+
85
+ ## 1.91.0
86
+
87
+ ## 1.90.0
88
+
89
+ ## 1.89.0
90
+
91
+ ## 1.88.0
92
+
93
+ ## 1.87.0
94
+
95
+ ## 1.86.0
96
+
97
+ ## 1.85.0
98
+
99
+ ## 1.84.0
6
100
 
7
101
  ### Minor Changes
8
102
 
9
- - ZERO-3091: Upgrade Next.js to v15 and React to v19
103
+ - 624a4eb: ZERO-3276: Update installation instructions across multiple README files to standardize format and improve clarity
104
+
105
+ ## 1.83.0
106
+
107
+ ## 1.82.0
108
+
109
+ ## 1.81.0
110
+
111
+ ## 1.80.0
112
+
113
+ ## 1.79.0
10
114
 
11
- ## 2.0.0-beta.0
115
+ ## 1.78.0
12
116
 
13
- ### Major Changes
117
+ ## 1.77.0
14
118
 
15
- - be6c09d: ZERO-3114: Create beta version.
119
+ ## 1.76.0
16
120
 
17
121
  ## 1.75.0
18
122
 
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.21",
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.5",
15
+ "react-dom": "19.2.5",
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>