@akinon/pz-akifast 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/README.md +12 -11
  3. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # @akinon/pz-akifast
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,16 +1,17 @@
1
1
  # @akinon/pz-akifast
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-akifast
8
8
 
9
- # Preferred installation method
10
9
  npx @akinon/projectzero@latest --plugins
10
+
11
11
  ```
12
12
 
13
13
  ### Setting the Visibility of Buttons
14
+
14
15
  (all buttons are visible by default)
15
16
 
16
17
  ```javascript
@@ -23,9 +24,9 @@ module.exports = {
23
24
  'pz-akifast': {
24
25
  quickLogin: false,
25
26
  pdp: false,
26
- basket: false,
27
- },
28
- },
27
+ basket: false
28
+ }
29
+ }
29
30
  };
30
31
  ```
31
32
 
@@ -42,7 +43,7 @@ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
42
43
  ...checkoutProviderProps, // same with one click checkout props
43
44
  isPdp: true
44
45
  }}
45
- />
46
+ />;
46
47
  ```
47
48
 
48
49
  ## Quick Login Button
@@ -56,7 +57,7 @@ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
56
57
  isCaptchaVisible,
57
58
  captchaValidated
58
59
  }}
59
- />
60
+ />;
60
61
  ```
61
62
 
62
63
  ## Checkout Button Props
@@ -64,13 +65,13 @@ import PluginModule, { Component } from '@akinon/next/components/plugin-module';
64
65
  You can see other props for the button in the `pz-one-click-checkout` package.
65
66
 
66
67
  | Property | Type | Description |
67
- |----------|-----------|----------------------------------------|
68
+ | -------- | --------- | -------------------------------------- |
68
69
  | isPdp | `boolean` | Indicates if it's a product info page. |
69
70
 
70
71
  ## Quick Login Props
71
72
 
72
73
  | Property | Type | Description |
73
- |------------------|-----------|------------------------------------|
74
+ | ---------------- | --------- | ---------------------------------- |
74
75
  | buttonText | `string` | Text displayed on the button. |
75
76
  | isCaptchaVisible | `boolean` | Indicates if captcha is visible. |
76
77
  | captchaValidated | `boolean` | Indicates if captcha is validated. |
package/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "@akinon/pz-akifast",
3
- "version": "2.0.0-beta.0",
3
+ "version": "2.0.0-beta.10",
4
4
  "main": "./src/index.ts",
5
5
  "module": "./src/index.ts",
6
6
  "license": "MIT",
7
7
  "peerDependencies": {
8
- "react": "^18.0.0",
9
- "react-dom": "^18.0.0",
8
+ "react": "^19.0.0",
9
+ "react-dom": "^19.0.0",
10
10
  "@reduxjs/toolkit": "^1.8.3",
11
11
  "pz-one-click-checkout": "^1.40.0"
12
12
  },
13
13
  "devDependencies": {
14
- "@types/node": "^18.7.8",
15
- "@types/react": "^18.0.17",
16
- "@types/react-dom": "^18.0.6",
17
- "react": "^18.2.0",
18
- "react-dom": "^18.2.0",
19
- "typescript": "^5.2.2",
14
+ "@types/node": "^22.10.2",
15
+ "@types/react": "^19.0.2",
16
+ "@types/react-dom": "^19.0.2",
17
+ "react": "^19.0.0",
18
+ "react-dom": "^19.0.0",
19
+ "typescript": "^5.7.2",
20
20
  "@reduxjs/toolkit": "^1.8.3"
21
21
  }
22
22
  }