@akinon/projectzero 1.34.0-rc.12 → 1.34.0-rc.14

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,9 @@
1
1
  # @akinon/projectzero
2
2
 
3
+ ## 1.34.0-rc.14
4
+
5
+ ## 1.34.0-rc.13
6
+
3
7
  ## 1.34.0-rc.12
4
8
 
5
9
  ## 1.34.0-rc.11
@@ -1,5 +1,37 @@
1
1
  # projectzeronext
2
2
 
3
+ ## 1.34.0-rc.14
4
+
5
+ ### Minor Changes
6
+
7
+ - 4614eee: ZERO-2602: The script that checks the build for standalone projects
8
+
9
+ ### Patch Changes
10
+
11
+ - @akinon/next@1.34.0-rc.14
12
+ - @akinon/pz-b2b@1.34.0-rc.14
13
+ - @akinon/pz-gpay@1.34.0-rc.14
14
+ - @akinon/pz-masterpass@1.34.0-rc.14
15
+ - @akinon/pz-one-click-checkout@1.34.0-rc.14
16
+ - @akinon/pz-otp@1.34.0-rc.14
17
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.14
18
+
19
+ ## 1.34.0-rc.13
20
+
21
+ ### Minor Changes
22
+
23
+ - 74a1269: ZERO-2658:Edit product name clickability on completed order page
24
+
25
+ ### Patch Changes
26
+
27
+ - @akinon/next@1.34.0-rc.13
28
+ - @akinon/pz-b2b@1.34.0-rc.13
29
+ - @akinon/pz-gpay@1.34.0-rc.13
30
+ - @akinon/pz-masterpass@1.34.0-rc.13
31
+ - @akinon/pz-one-click-checkout@1.34.0-rc.13
32
+ - @akinon/pz-otp@1.34.0-rc.13
33
+ - @akinon/pz-pay-on-delivery@1.34.0-rc.13
34
+
3
35
  ## 1.34.0-rc.12
4
36
 
5
37
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projectzeronext",
3
- "version": "1.34.0-rc.12",
3
+ "version": "1.34.0-rc.14",
4
4
  "private": true,
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -22,13 +22,13 @@
22
22
  "prestart": "pz-prestart"
23
23
  },
24
24
  "dependencies": {
25
- "@akinon/next": "1.34.0-rc.12",
26
- "@akinon/pz-b2b": "1.34.0-rc.12",
27
- "@akinon/pz-gpay": "1.34.0-rc.12",
28
- "@akinon/pz-masterpass": "1.34.0-rc.12",
29
- "@akinon/pz-one-click-checkout": "1.34.0-rc.12",
30
- "@akinon/pz-otp": "1.34.0-rc.12",
31
- "@akinon/pz-pay-on-delivery": "1.34.0-rc.12",
25
+ "@akinon/next": "1.34.0-rc.14",
26
+ "@akinon/pz-b2b": "1.34.0-rc.14",
27
+ "@akinon/pz-gpay": "1.34.0-rc.14",
28
+ "@akinon/pz-masterpass": "1.34.0-rc.14",
29
+ "@akinon/pz-one-click-checkout": "1.34.0-rc.14",
30
+ "@akinon/pz-otp": "1.34.0-rc.14",
31
+ "@akinon/pz-pay-on-delivery": "1.34.0-rc.14",
32
32
  "@hookform/resolvers": "2.9.0",
33
33
  "@next/third-parties": "14.1.0",
34
34
  "@react-google-maps/api": "2.17.1",
@@ -52,7 +52,7 @@
52
52
  "yup": "0.32.11"
53
53
  },
54
54
  "devDependencies": {
55
- "@akinon/eslint-plugin-projectzero": "1.34.0-rc.12",
55
+ "@akinon/eslint-plugin-projectzero": "1.34.0-rc.14",
56
56
  "@semantic-release/changelog": "6.0.2",
57
57
  "@semantic-release/exec": "6.0.3",
58
58
  "@semantic-release/git": "10.0.1",
@@ -182,21 +182,25 @@ const CheckoutCompleted = ({
182
182
  }}
183
183
  >
184
184
  {data.order.orderitem_set.map((item) => (
185
- <div key={`order-item-${item.id}`} className="flex">
186
- <Link href={item.product.absolute_url} passHref>
185
+ <div
186
+ key={`order-item-${item.id}`}
187
+ className="flex justify-between gap-x-4 w-full"
188
+ >
189
+ <Link
190
+ className="flex justify-between gap-x-4 flex-1 items-center transition-all text-xs text-black-800 hover:text-secondary"
191
+ href={item.product.absolute_url}
192
+ passHref
193
+ >
187
194
  <Image
188
195
  src={item.product.image}
189
196
  alt={item.product.name}
190
197
  width={64}
191
198
  height={96}
192
199
  />
200
+
201
+ <span>{item.product.name}</span>
193
202
  </Link>
194
- <div className="flex justify-between flex-1 items-center ml-4">
195
- <>
196
- <div className="text-xs text-black-800 transition-all w-full hover:text-secondary">
197
- {item.product.name}
198
- </div>
199
- </>
203
+ <div className="flex justify-end items-center">
200
204
  <div>
201
205
  {item.retail_price !== item.price && (
202
206
  <div className="text-black-800 line-through text-xs min-w-max sm:text-sm">
@@ -66,15 +66,6 @@ export const Filters = (props: Props) => {
66
66
  dispatch(resetSelectedFacets());
67
67
  };
68
68
 
69
- useEffect(() => {
70
- const url = new URL(window.location.href);
71
- if (url.searchParams.has('category_ids')) {
72
- url.searchParams.delete('category_ids');
73
- const newHref = url.pathname + url.search;
74
- window.history.replaceState({}, '', newHref);
75
- }
76
- }, [router]);
77
-
78
69
  const sizeKey = commonProductAttributes.find(
79
70
  (item) => item.translationKey === 'size'
80
71
  ).key;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/projectzero",
3
- "version": "1.34.0-rc.12",
3
+ "version": "1.34.0-rc.14",
4
4
  "private": false,
5
5
  "description": "CLI tool to manage your Project Zero Next project",
6
6
  "bin": {