@akinon/projectzero 1.56.0-rc.7 → 1.57.0
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 +2 -58
- package/app-template/.gitignore +0 -2
- package/app-template/CHANGELOG.md +91 -2067
- package/app-template/package.json +18 -18
- package/app-template/public/locales/en/account.json +4 -4
- package/app-template/public/locales/tr/account.json +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +0 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +2 -5
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +8 -12
- package/app-template/src/components/checkbox.tsx +2 -2
- package/app-template/src/components/input.tsx +7 -19
- package/app-template/src/components/pagination.tsx +18 -13
- package/app-template/src/components/price.tsx +4 -9
- package/app-template/src/plugins.js +1 -2
- package/app-template/src/redux/reducers/category.ts +1 -7
- package/app-template/src/settings.js +1 -6
- package/app-template/src/views/account/address-form.tsx +2 -12
- package/app-template/src/views/account/contact-form.tsx +3 -2
- package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +1 -5
- package/app-template/src/views/breadcrumb.tsx +1 -4
- package/app-template/src/views/category/category-active-filters.tsx +6 -16
- package/app-template/src/views/category/category-info.tsx +17 -31
- package/app-template/src/views/category/filters/index.tsx +108 -16
- package/app-template/src/views/category/layout.tsx +3 -5
- package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +37 -43
- package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +3 -19
- package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +34 -230
- package/app-template/src/views/header/mobile-menu.tsx +8 -25
- package/app-template/tsconfig.json +4 -14
- package/commands/plugins.ts +0 -4
- package/package.json +2 -2
- package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +0 -8
- package/app-template/src/views/category/filters/filter-item.tsx +0 -163
package/CHANGELOG.md
CHANGED
|
@@ -1,34 +1,8 @@
|
|
|
1
1
|
# @akinon/projectzero
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.57.0
|
|
4
4
|
|
|
5
|
-
## 1.56.0
|
|
6
|
-
|
|
7
|
-
### Minor Changes
|
|
8
|
-
|
|
9
|
-
- f3d076b: ZERO-2864: create tabby extension plugin
|
|
10
|
-
|
|
11
|
-
## 1.56.0-rc.5
|
|
12
|
-
|
|
13
|
-
## 1.56.0-rc.4
|
|
14
|
-
|
|
15
|
-
### Minor Changes
|
|
16
|
-
|
|
17
|
-
- 64699d3: ZERO-2761: Fix invalid import for plugin module
|
|
18
|
-
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
19
|
-
|
|
20
|
-
## 1.56.0-rc.3
|
|
21
|
-
|
|
22
|
-
## 1.56.0-rc.2
|
|
23
|
-
|
|
24
|
-
## 1.56.0-rc.1
|
|
25
|
-
|
|
26
|
-
## 1.56.0-rc.0
|
|
27
|
-
|
|
28
|
-
### Minor Changes
|
|
29
|
-
|
|
30
|
-
- 64699d3f: ZERO-2761: Fix invalid import for plugin module
|
|
31
|
-
- 9b6bf91e: ZERO-2660: Change campaings to campaigns
|
|
5
|
+
## 1.56.0
|
|
32
6
|
|
|
33
7
|
## 1.55.0
|
|
34
8
|
|
|
@@ -104,36 +78,6 @@
|
|
|
104
78
|
- cd78ddc: ZERO-2661: rename .npmignore to .gitignore during project creation
|
|
105
79
|
- 735f4f0: ZERO-2661: create .npmignore in app-template
|
|
106
80
|
|
|
107
|
-
## 1.34.0-rc.16
|
|
108
|
-
|
|
109
|
-
### Minor Changes
|
|
110
|
-
|
|
111
|
-
- cd78ddc: ZERO-2661: rename .npmignore to .gitignore during project creation
|
|
112
|
-
|
|
113
|
-
## 1.34.0-rc.15
|
|
114
|
-
|
|
115
|
-
### Minor Changes
|
|
116
|
-
|
|
117
|
-
- 735f4f0: ZERO-2661: create .npmignore in app-template
|
|
118
|
-
|
|
119
|
-
## 1.34.0-rc.14
|
|
120
|
-
|
|
121
|
-
## 1.34.0-rc.13
|
|
122
|
-
|
|
123
|
-
## 1.34.0-rc.12
|
|
124
|
-
|
|
125
|
-
## 1.34.0-rc.11
|
|
126
|
-
|
|
127
|
-
## 1.34.0-rc.10
|
|
128
|
-
|
|
129
|
-
## 1.34.0-rc.9
|
|
130
|
-
|
|
131
|
-
## 1.34.0-rc.8
|
|
132
|
-
|
|
133
|
-
## 1.34.0-rc.7
|
|
134
|
-
|
|
135
|
-
## 1.34.0-rc.6
|
|
136
|
-
|
|
137
81
|
## 1.33.2
|
|
138
82
|
|
|
139
83
|
### Patch Changes
|