@akinon/projectzero 1.32.0-rc.0 → 1.32.0-rc.2

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,13 @@
1
1
  # @akinon/projectzero
2
2
 
3
+ ## 1.32.0-rc.2
4
+
5
+ ## 1.32.0-rc.1
6
+
7
+ ### Minor Changes
8
+
9
+ - 495d155: ZERO-2563: The create command cli now doesnt get it from bitbucket but clones the repository from a localized clone version
10
+
3
11
  ## 1.32.0-rc.0
4
12
 
5
13
  ## 1.31.0
@@ -1,5 +1,53 @@
1
1
  # projectzeronext
2
2
 
3
+ ## 1.32.0-rc.2
4
+
5
+ ### Minor Changes
6
+
7
+ - 567e4c1: ZERO-2580:Add checked attribute from props to checkbox
8
+
9
+ ### Patch Changes
10
+
11
+ - @akinon/next@1.32.0-rc.2
12
+ - @akinon/pz-b2b@1.32.0-rc.2
13
+ - @akinon/pz-gpay@1.32.0-rc.2
14
+ - @akinon/pz-masterpass@1.32.0-rc.2
15
+ - @akinon/pz-one-click-checkout@1.32.0-rc.2
16
+ - @akinon/pz-otp@1.32.0-rc.2
17
+ - @akinon/pz-pay-on-delivery@1.32.0-rc.2
18
+
19
+ ## 1.32.0-rc.1
20
+
21
+ ### Minor Changes
22
+
23
+ - d09b677: ZERO-2577: Fix pagination bug and update usePagination hook and ensure pagination controls rendering correctly
24
+ - f0c23bc: ZERO-2135: add custom not found page
25
+ - 495d155: ZERO-2563: The create command cli now doesnt get it from bitbucket but clones the repository from a localized clone version
26
+ - f046f8e: ZERO-2575: update version for react-number-format
27
+ - 12c10a4: ZERO-2570: Category filters routes to absolute url
28
+
29
+ ### Patch Changes
30
+
31
+ - 28a6a17: ZERO-2581: fix slider button styles
32
+ - Updated dependencies [d09b677]
33
+ - Updated dependencies [6d4aadb]
34
+ - Updated dependencies [7cebe87]
35
+ - Updated dependencies [f3b595e]
36
+ - Updated dependencies [f0c23bc]
37
+ - Updated dependencies [495d155]
38
+ - Updated dependencies [40ad73e]
39
+ - Updated dependencies [495d155]
40
+ - Updated dependencies [f046f8e]
41
+ - Updated dependencies [6b2972b]
42
+ - Updated dependencies [3e68768]
43
+ - @akinon/next@1.32.0-rc.1
44
+ - @akinon/pz-masterpass@1.32.0-rc.1
45
+ - @akinon/pz-b2b@1.32.0-rc.1
46
+ - @akinon/pz-gpay@1.32.0-rc.1
47
+ - @akinon/pz-one-click-checkout@1.32.0-rc.1
48
+ - @akinon/pz-otp@1.32.0-rc.1
49
+ - @akinon/pz-pay-on-delivery@1.32.0-rc.1
50
+
3
51
  ## 1.32.0-rc.0
4
52
 
5
53
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projectzeronext",
3
- "version": "1.32.0-rc.0",
3
+ "version": "1.32.0-rc.2",
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.32.0-rc.0",
26
- "@akinon/pz-b2b": "1.32.0-rc.0",
27
- "@akinon/pz-gpay": "1.32.0-rc.0",
28
- "@akinon/pz-masterpass": "1.32.0-rc.0",
29
- "@akinon/pz-one-click-checkout": "1.32.0-rc.0",
30
- "@akinon/pz-otp": "1.32.0-rc.0",
31
- "@akinon/pz-pay-on-delivery": "1.32.0-rc.0",
25
+ "@akinon/next": "1.32.0-rc.2",
26
+ "@akinon/pz-b2b": "1.32.0-rc.2",
27
+ "@akinon/pz-gpay": "1.32.0-rc.2",
28
+ "@akinon/pz-masterpass": "1.32.0-rc.2",
29
+ "@akinon/pz-one-click-checkout": "1.32.0-rc.2",
30
+ "@akinon/pz-otp": "1.32.0-rc.2",
31
+ "@akinon/pz-pay-on-delivery": "1.32.0-rc.2",
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.32.0-rc.0",
55
+ "@akinon/eslint-plugin-projectzero": "1.32.0-rc.2",
56
56
  "@semantic-release/changelog": "6.0.2",
57
57
  "@semantic-release/exec": "6.0.3",
58
58
  "@semantic-release/git": "10.0.1",
@@ -3,7 +3,7 @@ import { CheckboxProps } from '@theme/components/types';
3
3
  import { twMerge } from 'tailwind-merge';
4
4
 
5
5
  const Checkbox = forwardRef<HTMLInputElement, CheckboxProps>((props, ref) => {
6
- const { children, error, ...rest } = props;
6
+ const { children, checked, error, ...rest } = props;
7
7
 
8
8
  return (
9
9
  <label className={twMerge('flex flex-col text-xs', props.className)}>
@@ -12,6 +12,7 @@ const Checkbox = forwardRef<HTMLInputElement, CheckboxProps>((props, ref) => {
12
12
  type="checkbox"
13
13
  {...rest}
14
14
  ref={ref}
15
+ checked={checked ?? false}
15
16
  className="w-4 h-4 shrink-0"
16
17
  />
17
18
  {children && <span className="ml-2">{children}</span>}
@@ -48,7 +48,7 @@ export default function ProductInfoSlider({ product }: ProductSliderItem) {
48
48
  onClick={goToPrev}
49
49
  className={twMerge(
50
50
  'hidden justify-center p-2 mb-3 border border-gray-100 rounded-full cursor-pointer lg:block',
51
- [activeIndex === 0 && 'lg:hidden']
51
+ [activeIndex === 0 && 'cursor-not-allowed opacity-45']
52
52
  )}
53
53
  disabled={activeIndex === 0}
54
54
  >
@@ -75,7 +75,7 @@ export default function ProductInfoSlider({ product }: ProductSliderItem) {
75
75
  'hidden justify-center p-2 mt-3 border border-gray-100 rounded-full cursor-pointer lg:block',
76
76
  [
77
77
  activeIndex === product.productimage_set.length - 1 &&
78
- 'lg:hidden'
78
+ 'cursor-not-allowed opacity-45'
79
79
  ]
80
80
  )}
81
81
  disabled={activeIndex === product.productimage_set.length - 1}
@@ -85,7 +85,7 @@ export default function ProductInfoSlider({ product }: ProductSliderItem) {
85
85
  </div>
86
86
  </div>
87
87
 
88
- <div className="lg:col-span-5">
88
+ <div className="relative lg:col-span-5">
89
89
  <FavButton className="absolute right-8 top-6 z-[20] sm:hidden" />
90
90
 
91
91
  <CarouselCore
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akinon/projectzero",
3
- "version": "1.32.0-rc.0",
3
+ "version": "1.32.0-rc.2",
4
4
  "private": false,
5
5
  "description": "CLI tool to manage your Project Zero Next project",
6
6
  "bin": {