@akinon/pz-click-collect 2.0.0-beta.0 → 2.0.0-beta.10

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,46 @@
1
1
  # @akinon/pz-click-collect
2
2
 
3
+ ## 2.0.0-beta.10
4
+
5
+ ### Minor Changes
6
+
7
+ - 2806320: ZERO-3390: Update version tailwindcss, autoprefixer, tailwind-merge, postcss
8
+
9
+ ## 2.0.0-beta.9
10
+
11
+ ### Minor Changes
12
+
13
+ - 0fe7711: ZERO-3387: Upgrade nextjs, eslint-config-next
14
+
15
+ ## 2.0.0-beta.8
16
+
17
+ ## 2.0.0-beta.7
18
+
19
+ ## 2.0.0-beta.6
20
+
21
+ ### Minor Changes
22
+
23
+ - 8f05f9b: ZERO-3250: Beta branch synchronized with Main branch
24
+
25
+ ## 2.0.0-beta.5
26
+
27
+ ## 2.0.0-beta.4
28
+
29
+ ## 2.0.0-beta.3
30
+
31
+ ## 2.0.0-beta.2
32
+
33
+ ### Minor Changes
34
+
35
+ - a006015: ZERO-3116: Add not-found page and update default middleware.
36
+ - 1eeb3d8: ZERO-3116: Add not found page
37
+
38
+ ## 2.0.0-beta.1
39
+
40
+ ### Minor Changes
41
+
42
+ - ZERO-3091: Upgrade Next.js to v15 and React to v19
43
+
3
44
  ## 2.0.0-beta.0
4
45
 
5
46
  ### Major Changes
package/README.md CHANGED
@@ -1,17 +1,21 @@
1
1
  # @akinon/pz-click-collect
2
2
 
3
- ### Install the npm package
3
+ ## Installation method
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-click-collect
8
8
 
9
- # Preferred installation method
10
9
  npx @akinon/projectzero@latest --plugins
10
+
11
11
  ```
12
12
 
13
13
  ### Props
14
14
 
15
- | Properties | Type | Description |
16
- | ---------- | -------- | -------------------- |
17
- | addressTypeParam | `string` | Address Type Request Param |
15
+ | Properties | Type | Description |
16
+ | ---------------- | -------- | -------------------------- |
17
+ | addressTypeParam | `string` | Address Type Request Param |
18
+
19
+ ```
20
+
21
+ ```
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@akinon/pz-click-collect",
3
- "version": "2.0.0-beta.0",
3
+ "version": "2.0.0-beta.10",
4
4
  "main": "./src/index.tsx",
5
5
  "module": "./src/index.tsx",
6
6
  "license": "MIT",
7
7
  "devDependencies": {
8
- "@types/react": "^18.0.15",
9
- "@types/react-dom": "^18.0.6",
10
- "react": "^18.2.0",
11
- "react-dom": "^18.2.0",
12
- "typescript": "^4.7.4"
8
+ "@types/react": "^19.0.2",
9
+ "@types/react-dom": "^19.0.2",
10
+ "react": "^19.0.0",
11
+ "react-dom": "^19.0.0",
12
+ "typescript": "^5.7.2"
13
13
  },
14
14
  "peerDependencies": {
15
- "react": "^18.0.0",
16
- "react-dom": "^18.0.0"
15
+ "react": "^19.0.0",
16
+ "react-dom": "^19.0.0"
17
17
  }
18
18
  }
package/src/index.tsx CHANGED
@@ -247,7 +247,7 @@ export function ClickCollect({
247
247
  !isActive && handleActive();
248
248
  }}
249
249
  className={clsx(
250
- 'relative w-full min-h-[8rem] border shadow p-4',
250
+ 'relative w-full min-h-[8rem] border border-gray-200 shadow-sm p-4',
251
251
  "hover:after:content-[''] hover:after:border-4 hover:after:opacity-30 hover:after:transition-opacity",
252
252
  'after:border-secondary-400 after:absolute after:inset-0 after:opacity-0 after:duration-150 after:-z-10'
253
253
  )}