@ecomplus/storefront-components 1.0.0-beta.17 → 1.0.0-beta.170
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 +1218 -131
- package/README.md +9 -4
- package/all.js +3 -1
- package/dist/1.storefront-components.min.js +2 -0
- package/dist/1.storefront-components.min.js.map +1 -0
- package/dist/2.storefront-components.min.js +5 -0
- package/dist/2.storefront-components.min.js.map +1 -0
- package/dist/3.storefront-components.min.js +5 -0
- package/dist/3.storefront-components.min.js.map +1 -0
- package/dist/storefront-components.min.js +33 -12
- package/dist/storefront-components.min.js.map +1 -1
- package/package.json +18 -14
- package/src/APagination.vue +2 -0
- package/src/AShare.vue +2 -0
- package/src/AccountAddresses.vue +3 -0
- package/src/AccountForm.vue +3 -0
- package/src/AccountPoints.vue +3 -0
- package/src/BuyTogether.vue +3 -0
- package/src/EarnPointsProgress.vue +3 -0
- package/src/ItemCustomizations.vue +2 -0
- package/src/KitProductVariations.vue +3 -0
- package/src/PointsApplier.vue +2 -0
- package/src/ProductQuickview.vue +3 -0
- package/src/QuantitySelector.vue +3 -0
- package/src/RecommendedItems.vue +3 -0
- package/src/ShippingLine.vue +1 -0
- package/src/TheCart.vue +3 -0
- package/src/html/APagination.html +90 -0
- package/src/html/APrices.html +24 -4
- package/src/html/AShare.html +31 -0
- package/src/html/AccountAddresses.html +90 -0
- package/src/html/AccountForm.html +269 -0
- package/src/html/AccountPoints.html +39 -0
- package/src/html/AddressForm.html +9 -7
- package/src/html/BuyTogether.html +60 -0
- package/src/html/CartItem.html +86 -38
- package/src/html/CartQuickview.html +28 -5
- package/src/html/DiscountApplier.html +2 -2
- package/src/html/EarnPointsProgress.html +28 -0
- package/src/html/InputDate.html +1 -1
- package/src/html/InputDocNumber.html +1 -0
- package/src/html/InputPhone.html +1 -1
- package/src/html/InstantSearch.html +3 -3
- package/src/html/ItemCustomizations.html +14 -0
- package/src/html/KitProductVariations.html +92 -0
- package/src/html/LoginBlock.html +34 -32
- package/src/html/LoginModal.html +9 -4
- package/src/html/PaymentOption.html +7 -5
- package/src/html/PointsApplier.html +26 -0
- package/src/html/ProductCard.html +56 -8
- package/src/html/ProductGallery.html +21 -3
- package/src/html/ProductQuickview.html +64 -0
- package/src/html/ProductVariations.html +30 -3
- package/src/html/QuantitySelector.html +85 -0
- package/src/html/RecommendedItems.html +48 -0
- package/src/html/SearchEngine.html +100 -24
- package/src/html/ShippingCalculator.html +53 -3
- package/src/html/ShippingLine.html +5 -2
- package/src/html/TheAccount.html +43 -9
- package/src/html/TheCart.html +156 -0
- package/src/html/TheProduct.html +416 -138
- package/src/js/APagination.js +74 -0
- package/src/js/APicture.js +27 -7
- package/src/js/APrices.js +80 -41
- package/src/js/AShare.js +83 -0
- package/src/js/AccountAddresses.js +192 -0
- package/src/js/AccountForm.js +312 -0
- package/src/js/AccountPoints.js +63 -0
- package/src/js/AddressForm.js +80 -35
- package/src/js/BuyTogether.js +246 -0
- package/src/js/CartItem.js +67 -14
- package/src/js/CartQuickview.js +21 -2
- package/src/js/DiscountApplier.js +132 -42
- package/src/js/EarnPointsProgress.js +77 -0
- package/src/js/InputDate.js +8 -8
- package/src/js/InputDocNumber.js +20 -0
- package/src/js/ItemCustomizations.js +10 -0
- package/src/js/KitProductVariations.js +218 -0
- package/src/js/LoginBlock.js +14 -2
- package/src/js/LoginModal.js +17 -4
- package/src/js/PaymentOption.js +28 -1
- package/src/js/PointsApplier.js +110 -0
- package/src/js/ProductCard.js +97 -11
- package/src/js/ProductGallery.js +32 -12
- package/src/js/ProductQuickview.js +72 -0
- package/src/js/ProductVariations.js +76 -19
- package/src/js/QuantitySelector.js +175 -0
- package/src/js/RecommendedItems.js +178 -0
- package/src/js/SearchEngine.js +185 -55
- package/src/js/ShippingCalculator.js +157 -33
- package/src/js/ShippingLine.js +21 -5
- package/src/js/TheAccount.js +87 -6
- package/src/js/TheCart.js +146 -0
- package/src/js/TheProduct.js +387 -43
- package/src/js/helpers/add-idle-callback.js +7 -0
- package/src/js/helpers/check-form-validity.js +3 -0
- package/src/js/helpers/favorite-products.js +24 -0
- package/src/js/helpers/scroll-to-element.js +10 -0
- package/src/js/helpers/sort-apps.js +14 -0
- package/src/js/helpers/wait-storefront-info.js +21 -0
- package/src/scss/APicture.scss +2 -0
- package/src/scss/APrices.scss +13 -1
- package/src/scss/AccountAddresses.scss +27 -0
- package/src/scss/AccountForm.scss +5 -0
- package/src/scss/AccountPoints.scss +17 -0
- package/src/scss/BuyTogether.scss +38 -0
- package/src/scss/CartItem.scss +17 -1
- package/src/scss/EarnPointsProgress.scss +6 -0
- package/src/scss/InstantSearch.scss +1 -0
- package/src/scss/KitProductVariations.scss +72 -0
- package/src/scss/LoginBlock.scss +5 -0
- package/src/scss/PaymentOption.scss +10 -1
- package/src/scss/ProductCard.scss +66 -28
- package/src/scss/ProductGallery.scss +4 -2
- package/src/scss/ProductQuickview.scss +36 -0
- package/src/scss/ProductVariations.scss +20 -4
- package/src/scss/QuantitySelector.scss +39 -0
- package/src/scss/RecommendedItems.scss +28 -0
- package/src/scss/SearchEngine.scss +9 -5
- package/src/scss/ShippingCalculator.scss +30 -1
- package/src/scss/ShippingLine.scss +20 -0
- package/src/scss/TheAccount.scss +4 -0
- package/src/scss/TheCart.scss +54 -0
- package/src/scss/TheProduct.scss +146 -1
- package/webpack.config.js +20 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,354 +3,1441 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# [1.0.0-beta.
|
|
6
|
+
# [1.0.0-beta.170](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.169...@ecomplus/storefront-components@1.0.0-beta.170) (2024-03-22)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **deps:** update `@ecomplus/client` to v2.3.1 ([97fd92d](https://github.com/ecomplus/storefront/commit/97fd92d466fa380785fb1e78729bb4b4f0734b87))
|
|
11
|
+
|
|
12
|
+
# [1.0.0-beta.169](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.168...@ecomplus/storefront-components@1.0.0-beta.169) (2024-03-21)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- **components/account:** addapting account form and addresses list/form for hidden fields (\*\*\*) ([28b361c](https://github.com/ecomplus/storefront/commit/28b361c36bb12dd06f3026f93d62e98afcb60260))
|
|
17
|
+
- **components/discount-applier:** clear previous freebie in cart when no valid freebie option ([#1006](https://github.com/ecomplus/storefront/issues/1006)) ([63e9d64](https://github.com/ecomplus/storefront/commit/63e9d646fc9386216b5cc93f92392684ebc4c43c))
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
- **the-product:** set new component to variation kit ([8268a33](https://github.com/ecomplus/storefront/commit/8268a33f9c3a3d8f1ab5653d2c9e83e2924fa138))
|
|
22
|
+
- variation kit component ([53764db](https://github.com/ecomplus/storefront/commit/53764dbfd3ee0bd20cf7889c4aa77281dff96bb6))
|
|
23
|
+
|
|
24
|
+
# [1.0.0-beta.168](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.167...@ecomplus/storefront-components@1.0.0-beta.168) (2023-11-29)
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
- **deps:** update all non-major dependencies ([#974](https://github.com/ecomplus/storefront/issues/974)) ([bd92f9e](https://github.com/ecomplus/storefront/commit/bd92f9e9494827dc428d7e86bed2c59614947dab))
|
|
29
|
+
|
|
30
|
+
# [1.0.0-beta.167](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.166...@ecomplus/storefront-components@1.0.0-beta.167) (2023-11-17)
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
- **components/picture:** ensure fallback webp srcset for \*.avif pictures ([fb85283](https://github.com/ecomplus/storefront/commit/fb852835fa519c10439b0b88c43f73121508d7c9))
|
|
35
|
+
|
|
36
|
+
# [1.0.0-beta.166](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.165...@ecomplus/storefront-components@1.0.0-beta.166) (2023-11-07)
|
|
37
|
+
|
|
38
|
+
### Bug Fixes
|
|
39
|
+
|
|
40
|
+
- **components/discount-applier:** do not accumulate discount apps by default ([a638149](https://github.com/ecomplus/storefront/commit/a638149bc37f8f88bd6a693bc3745e67c450d5bd))
|
|
41
|
+
|
|
42
|
+
# [1.0.0-beta.165](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.164...@ecomplus/storefront-components@1.0.0-beta.165) (2023-11-06)
|
|
43
|
+
|
|
44
|
+
### Bug Fixes
|
|
45
|
+
|
|
46
|
+
- **deps:** update `@ecomplus/passport-client` to v1.2.1 ([23181c8](https://github.com/ecomplus/storefront/commit/23181c85c136e9dd8d54add7cf43186f6811dab2))
|
|
47
|
+
|
|
48
|
+
# [1.0.0-beta.164](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.163...@ecomplus/storefront-components@1.0.0-beta.164) (2023-11-02)
|
|
49
|
+
|
|
50
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
51
|
+
|
|
52
|
+
# [1.0.0-beta.163](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.162...@ecomplus/storefront-components@1.0.0-beta.163) (2023-11-02)
|
|
53
|
+
|
|
54
|
+
### Bug Fixes
|
|
55
|
+
|
|
56
|
+
- **components:** fixing generic input components regex patterns ([1ed8278](https://github.com/ecomplus/storefront/commit/1ed8278592cf8ca828d2d3f4ae35b9c02c1d5785))
|
|
57
|
+
|
|
58
|
+
# [1.0.0-beta.162](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.161...@ecomplus/storefront-components@1.0.0-beta.162) (2023-10-09)
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
- **components/shipping-calculator:** avoid skipping all shipping methods ([#953](https://github.com/ecomplus/storefront/issues/953)) ([313d121](https://github.com/ecomplus/storefront/commit/313d12102a7843805a5687217cc4b8e9f402289f))
|
|
63
|
+
|
|
64
|
+
# [1.0.0-beta.161](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.160...@ecomplus/storefront-components@1.0.0-beta.161) (2023-09-06)
|
|
65
|
+
|
|
66
|
+
### Bug Fixes
|
|
67
|
+
|
|
68
|
+
- **components/discount-applier:** ensure invalid coupon msg is shown when returned ([3fe2cd6](https://github.com/ecomplus/storefront/commit/3fe2cd648422c0c6757a925294e8bbb0f691f4e6))
|
|
69
|
+
- **components/discount-applier:** handle discount applied by other rule and invalid coupon ([5b4083d](https://github.com/ecomplus/storefront/commit/5b4083d303d05d7d9709ecca852ac39bc1e5b8fc))
|
|
70
|
+
- **components/discount-applier:** remove old freebies previously added and no more valid ([cf5d6fd](https://github.com/ecomplus/storefront/commit/cf5d6fd157b38747f13f2b6c4ce46aee757bc80f))
|
|
71
|
+
|
|
72
|
+
### Features
|
|
73
|
+
|
|
74
|
+
- **components/discount-applier:** supporting multiple disount apps ([f7513b7](https://github.com/ecomplus/storefront/commit/f7513b73b7d96655cef1a456331d2be716a50597))
|
|
75
|
+
|
|
76
|
+
# [1.0.0-beta.160](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.159...@ecomplus/storefront-components@1.0.0-beta.160) (2023-08-24)
|
|
77
|
+
|
|
78
|
+
### Bug Fixes
|
|
79
|
+
|
|
80
|
+
- **components/product-card:** minor a11y fix ([4ba68cc](https://github.com/ecomplus/storefront/commit/4ba68cc7326c6c74d3678fd405c6fc69a012be27))
|
|
81
|
+
- **components/product:** parse url params to string on history state ([#942](https://github.com/ecomplus/storefront/issues/942)) ([89a1ece](https://github.com/ecomplus/storefront/commit/89a1ece2ad1ea557ed07fc6b58b9c55fff26f7f7))
|
|
82
|
+
|
|
83
|
+
### Performance Improvements
|
|
84
|
+
|
|
85
|
+
- **components/product-gallery:** lazy loading product video iframes ([#937](https://github.com/ecomplus/storefront/issues/937)) ([5226040](https://github.com/ecomplus/storefront/commit/5226040b7616806148c81a45fdfdde89450369da))
|
|
86
|
+
|
|
87
|
+
# [1.0.0-beta.159](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.158...@ecomplus/storefront-components@1.0.0-beta.159) (2023-07-21)
|
|
88
|
+
|
|
89
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
90
|
+
|
|
91
|
+
# [1.0.0-beta.158](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.157...@ecomplus/storefront-components@1.0.0-beta.158) (2023-06-15)
|
|
92
|
+
|
|
93
|
+
### Features
|
|
94
|
+
|
|
95
|
+
- **components/minicart:** optionally (prop) show shipping calculator ([#914](https://github.com/ecomplus/storefront/issues/914)) ([a799672](https://github.com/ecomplus/storefront/commit/a799672b1502a44a32203666412cfdae90bb1a33))
|
|
96
|
+
|
|
97
|
+
# [1.0.0-beta.157](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.156...@ecomplus/storefront-components@1.0.0-beta.157) (2023-06-02)
|
|
98
|
+
|
|
99
|
+
### Bug Fixes
|
|
100
|
+
|
|
101
|
+
- **components/discount-applier:** pass customer doc number event when id not set ([217be13](https://github.com/ecomplus/storefront/commit/217be131f35ce0966eda6930857ffe1b4c2f5f4a))
|
|
102
|
+
- **components/product:** pass selected variation data to calculate shipping ([#907](https://github.com/ecomplus/storefront/issues/907)) ([7f37484](https://github.com/ecomplus/storefront/commit/7f3748474777716f23975c9ca8285c704c32f1ef))
|
|
103
|
+
|
|
104
|
+
# [1.0.0-beta.156](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.155...@ecomplus/storefront-components@1.0.0-beta.156) (2023-05-31)
|
|
105
|
+
|
|
106
|
+
### Bug Fixes
|
|
107
|
+
|
|
108
|
+
- **components/account-form:** properly saving customer fields not edited on this form ([54bdc81](https://github.com/ecomplus/storefront/commit/54bdc81e55ef39dc07ed33baccbf73a32610100f))
|
|
109
|
+
|
|
110
|
+
# [1.0.0-beta.155](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.154...@ecomplus/storefront-components@1.0.0-beta.155) (2023-05-20)
|
|
111
|
+
|
|
112
|
+
### Features
|
|
113
|
+
|
|
114
|
+
- **components/discount-applier:** improve message for coupons with min amount ([468d958](https://github.com/ecomplus/storefront/commit/468d95898b5bcc18bdcfaa1794782ad17d2388c7))
|
|
115
|
+
|
|
116
|
+
# [1.0.0-beta.154](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.153...@ecomplus/storefront-components@1.0.0-beta.154) (2023-05-16)
|
|
117
|
+
|
|
118
|
+
### Bug Fixes
|
|
119
|
+
|
|
120
|
+
- **components/product:** properly add href to sticky buy link (seo) ([7a75041](https://github.com/ecomplus/storefront/commit/7a7504142317435829e0de009cb943bd7a9efc64))
|
|
121
|
+
|
|
122
|
+
# [1.0.0-beta.153](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.152...@ecomplus/storefront-components@1.0.0-beta.153) (2023-05-12)
|
|
123
|
+
|
|
124
|
+
### Bug Fixes
|
|
125
|
+
|
|
126
|
+
- **components/product-variations:** syntax fixes on auto-select by url handler ([9a23ee6](https://github.com/ecomplus/storefront/commit/9a23ee6bd5cd313be8556b21d8f0982725de0f81))
|
|
127
|
+
|
|
128
|
+
### Features
|
|
129
|
+
|
|
130
|
+
- **components/product-variations:** get variation from url `variation_id` and auto select ([#901](https://github.com/ecomplus/storefront/issues/901)) ([e1de62a](https://github.com/ecomplus/storefront/commit/e1de62a71b8b24bdc2e5325167d3c051693810a2))
|
|
131
|
+
|
|
132
|
+
# [1.0.0-beta.152](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.151...@ecomplus/storefront-components@1.0.0-beta.152) (2023-05-03)
|
|
133
|
+
|
|
134
|
+
### Bug Fixes
|
|
135
|
+
|
|
136
|
+
- **components/buy-together:** fallback with recommended items instead of related by default ([c9180d7](https://github.com/ecomplus/storefront/commit/c9180d734953b68d2ab21230f0066b38a49a2b72))
|
|
137
|
+
|
|
138
|
+
# [1.0.0-beta.151](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.150...@ecomplus/storefront-components@1.0.0-beta.151) (2023-04-24)
|
|
139
|
+
|
|
140
|
+
### Bug Fixes
|
|
141
|
+
|
|
142
|
+
- **components/recommended-items:** fix default match type `recommended` ([1a255b6](https://github.com/ecomplus/storefront/commit/1a255b6a4a4950d284eedfae0cfdd4edb630f1e6))
|
|
143
|
+
|
|
144
|
+
# [1.0.0-beta.150](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.149...@ecomplus/storefront-components@1.0.0-beta.150) (2023-04-22)
|
|
145
|
+
|
|
146
|
+
### Features
|
|
147
|
+
|
|
148
|
+
- **template/cms:** config stamps for product card and gallery ([#893](https://github.com/ecomplus/storefront/issues/893)) ([13b1401](https://github.com/ecomplus/storefront/commit/13b1401cfd737d674b24d14e6a95bd72d89a880c))
|
|
149
|
+
|
|
150
|
+
# [1.0.0-beta.149](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.148...@ecomplus/storefront-components@1.0.0-beta.149) (2023-04-20)
|
|
151
|
+
|
|
152
|
+
### Features
|
|
153
|
+
|
|
154
|
+
- **components/recomended-items:** add new `defaultMatchType` to configure related/recommended fetch ([9adaaa1](https://github.com/ecomplus/storefront/commit/9adaaa1f6cb9ea2fca77937da56d7bafa24dbdb1))
|
|
155
|
+
|
|
156
|
+
# [1.0.0-beta.148](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.147...@ecomplus/storefront-components@1.0.0-beta.148) (2023-04-17)
|
|
157
|
+
|
|
158
|
+
### Features
|
|
159
|
+
|
|
160
|
+
- **components/login:** oauth signup with `referral` if set on user session ([e5aba9a](https://github.com/ecomplus/storefront/commit/e5aba9ac184d01ec36c37eea9a9ae96bfa18a458))
|
|
161
|
+
|
|
162
|
+
# [1.0.0-beta.147](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.146...@ecomplus/storefront-components@1.0.0-beta.147) (2023-04-11)
|
|
163
|
+
|
|
164
|
+
### Features
|
|
165
|
+
|
|
166
|
+
- **components/cart:** add data-[field] to each cart summary row/value ([78f06b7](https://github.com/ecomplus/storefront/commit/78f06b77fbd2cbb73661bfdf77019c121db3ed6d))
|
|
167
|
+
|
|
168
|
+
# [1.0.0-beta.146](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.145...@ecomplus/storefront-components@1.0.0-beta.146) (2023-04-11)
|
|
169
|
+
|
|
170
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
171
|
+
|
|
172
|
+
# [1.0.0-beta.145](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.144...@ecomplus/storefront-components@1.0.0-beta.145) (2023-03-24)
|
|
173
|
+
|
|
174
|
+
### Features
|
|
175
|
+
|
|
176
|
+
- **components/buy-together:** improving component ui ([#881](https://github.com/ecomplus/storefront/issues/881)) ([50c3765](https://github.com/ecomplus/storefront/commit/50c376502f73d39c0fbd75909cabda68103c0013))
|
|
177
|
+
|
|
178
|
+
# [1.0.0-beta.144](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.143...@ecomplus/storefront-components@1.0.0-beta.144) (2023-02-23)
|
|
179
|
+
|
|
180
|
+
### Bug Fixes
|
|
181
|
+
|
|
182
|
+
- **components/account:** remove vertical scroll and watch login to setup subscription tab ([#873](https://github.com/ecomplus/storefront/issues/873)) ([4217874](https://github.com/ecomplus/storefront/commit/4217874aa013dc546045cf570516af6d98694ad9))
|
|
183
|
+
|
|
184
|
+
### Features
|
|
185
|
+
|
|
186
|
+
- **components/buy-together:** use related products when no discount campaign found ([#870](https://github.com/ecomplus/storefront/issues/870)) ([f53eeb3](https://github.com/ecomplus/storefront/commit/f53eeb3f80e4e9c46a2c131b49c30ad9b79aa0f4))
|
|
187
|
+
|
|
188
|
+
# [1.0.0-beta.143](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.142...@ecomplus/storefront-components@1.0.0-beta.143) (2023-02-09)
|
|
189
|
+
|
|
190
|
+
### Features
|
|
191
|
+
|
|
192
|
+
- **components/account-points:** additional cashback info, render as account page tab ([#864](https://github.com/ecomplus/storefront/issues/864)) ([9835ec2](https://github.com/ecomplus/storefront/commit/9835ec2547aeba4fa193d8502afcda6a480fff0d))
|
|
193
|
+
|
|
194
|
+
# [1.0.0-beta.142](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.141...@ecomplus/storefront-components@1.0.0-beta.142) (2023-01-25)
|
|
195
|
+
|
|
196
|
+
### Features
|
|
197
|
+
|
|
198
|
+
- **components/product:** handle no price (upon request) products ([#857](https://github.com/ecomplus/storefront/issues/857)) ([b5eb947](https://github.com/ecomplus/storefront/commit/b5eb9478917336fc23b40ce714f0293e046e2272))
|
|
199
|
+
|
|
200
|
+
# [1.0.0-beta.141](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.140...@ecomplus/storefront-components@1.0.0-beta.141) (2023-01-20)
|
|
201
|
+
|
|
202
|
+
### Bug Fixes
|
|
203
|
+
|
|
204
|
+
- **components/buy-together:** update discount on subtotal changes ([#854](https://github.com/ecomplus/storefront/issues/854)) ([358d767](https://github.com/ecomplus/storefront/commit/358d7678068fd01d9442e66e2f6b8d27decdcb4b))
|
|
205
|
+
|
|
206
|
+
### Features
|
|
207
|
+
|
|
208
|
+
- **widget-addi:** insert new Addi widget and payment slot by method ([#849](https://github.com/ecomplus/storefront/issues/849)) ([42fee84](https://github.com/ecomplus/storefront/commit/42fee8446490954a8c7a37f9207bb19f70119b5e))
|
|
209
|
+
|
|
210
|
+
# [1.0.0-beta.140](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.139...@ecomplus/storefront-components@1.0.0-beta.140) (2023-01-09)
|
|
211
|
+
|
|
212
|
+
### Bug Fixes
|
|
213
|
+
|
|
214
|
+
- **deps:** bump @ecomplus/passport-client and @ecomplus/shopping-cart ([3b60f09](https://github.com/ecomplus/storefront/commit/3b60f098f3fef0621fd045afea47ded663c69967))
|
|
215
|
+
|
|
216
|
+
# [1.0.0-beta.139](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.138...@ecomplus/storefront-components@1.0.0-beta.139) (2022-12-29)
|
|
217
|
+
|
|
218
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
219
|
+
|
|
220
|
+
# [1.0.0-beta.138](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.137...@ecomplus/storefront-components@1.0.0-beta.138) (2022-11-10)
|
|
221
|
+
|
|
222
|
+
### Bug Fixes
|
|
223
|
+
|
|
224
|
+
- **components/recommended-items:** properly fetch cart related/recommended items by product id ([b7f5553](https://github.com/ecomplus/storefront/commit/b7f555371b81a9fc7e6aaba5592d433cbe718024))
|
|
225
|
+
|
|
226
|
+
# [1.0.0-beta.137](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.136...@ecomplus/storefront-components@1.0.0-beta.137) (2022-11-04)
|
|
227
|
+
|
|
228
|
+
### Bug Fixes
|
|
229
|
+
|
|
230
|
+
- **components/buy-together:** show nothing when no items to recommend ([f884157](https://github.com/ecomplus/storefront/commit/f884157aef726d2042ed97d839ce591adfdba85b))
|
|
231
|
+
|
|
232
|
+
# [1.0.0-beta.136](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.135...@ecomplus/storefront-components@1.0.0-beta.136) (2022-11-01)
|
|
233
|
+
|
|
234
|
+
### Bug Fixes
|
|
235
|
+
|
|
236
|
+
- **components/cart-item:** prevet quantity edit if `keep_item_quantity` ([1c33936](https://github.com/ecomplus/storefront/commit/1c33936db98ec962bb18ccb2d384a6264fca226a))
|
|
237
|
+
- **components/payment-methos:** pass item currency on list payments ([#802](https://github.com/ecomplus/storefront/issues/802)) ([37e9f2a](https://github.com/ecomplus/storefront/commit/37e9f2a0c981cbbf9d4fac38a883bd8fdbaa08cd))
|
|
238
|
+
- **deps:** update @ecomplus/shopping-cart to v2.5.8 ([e86a2b0](https://github.com/ecomplus/storefront/commit/e86a2b0259adbba56a1b7fc75099d7afcf5b9490))
|
|
239
|
+
|
|
240
|
+
### Features
|
|
241
|
+
|
|
242
|
+
- **components/buy-together:** new `BuyTogether` component :tada: ([c3f32f9](https://github.com/ecomplus/storefront/commit/c3f32f9ccafb9a6a7c4770efcd03b7ff9db917fe))
|
|
243
|
+
|
|
244
|
+
# [1.0.0-beta.135](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.134...@ecomplus/storefront-components@1.0.0-beta.135) (2022-10-25)
|
|
245
|
+
|
|
246
|
+
### Bug Fixes
|
|
247
|
+
|
|
248
|
+
- **deps:** update all non-major dependencies ([#763](https://github.com/ecomplus/storefront/issues/763)) ([8d2d68d](https://github.com/ecomplus/storefront/commit/8d2d68de44c2323ec6e542333346b29cd1238ea9))
|
|
249
|
+
|
|
250
|
+
# [1.0.0-beta.134](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.133...@ecomplus/storefront-components@1.0.0-beta.134) (2022-09-15)
|
|
251
|
+
|
|
252
|
+
### Bug Fixes
|
|
253
|
+
|
|
254
|
+
- **components/product:** Avoid mix text in customization ([#785](https://github.com/ecomplus/storefront/issues/785)) ([d534cf2](https://github.com/ecomplus/storefront/commit/d534cf2913100777318697fa6abcbe5e40f8e0fd))
|
|
255
|
+
|
|
256
|
+
# [1.0.0-beta.133](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.132...@ecomplus/storefront-components@1.0.0-beta.133) (2022-09-01)
|
|
257
|
+
|
|
258
|
+
### Bug Fixes
|
|
259
|
+
|
|
260
|
+
- **components/product:** use min quantity for shipping calculation and quantity selector ([#781](https://github.com/ecomplus/storefront/issues/781)) ([d52e994](https://github.com/ecomplus/storefront/commit/d52e9943af92dca6ca5f9aaf7dff8173798e1d22))
|
|
261
|
+
|
|
262
|
+
# [1.0.0-beta.132](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.131...@ecomplus/storefront-components@1.0.0-beta.132) (2022-08-26)
|
|
263
|
+
|
|
264
|
+
### Reverts
|
|
265
|
+
|
|
266
|
+
- **components:** removing login/signup by email code ([662db3f](https://github.com/ecomplus/storefront/commit/662db3ff110d746b7222f5a6fd6c9ea647963f02))
|
|
267
|
+
|
|
268
|
+
# [1.0.0-beta.131](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.130...@ecomplus/storefront-components@1.0.0-beta.131) (2022-08-17)
|
|
269
|
+
|
|
270
|
+
### Bug Fixes
|
|
271
|
+
|
|
272
|
+
- **components/product:** must pass kit items with proper quantity to calculate shipping [[#739](https://github.com/ecomplus/storefront/issues/739)] ([c78e11e](https://github.com/ecomplus/storefront/commit/c78e11ea1e4994192006d7607dcceddf739ddb1f))
|
|
273
|
+
- **components/product:** wait kit items fetch to render shipping calculator [[#739](https://github.com/ecomplus/storefront/issues/739)] ([db28ae5](https://github.com/ecomplus/storefront/commit/db28ae59fa26616d2fde9988e3a7279248d19f8c))
|
|
274
|
+
|
|
275
|
+
# [1.0.0-beta.130](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.129...@ecomplus/storefront-components@1.0.0-beta.130) (2022-08-04)
|
|
276
|
+
|
|
277
|
+
### Bug Fixes
|
|
278
|
+
|
|
279
|
+
- **components/discount-applier:** allowed insert freebie, if freebie is equal to a product from cart ([#762](https://github.com/ecomplus/storefront/issues/762)) ([ce8e675](https://github.com/ecomplus/storefront/commit/ce8e6759bc3b0448a25cc47f7acd8190111b1fd1))
|
|
280
|
+
- **deps:** update @ecomplus/shopping-cart to v2.5.7 ([b60fb00](https://github.com/ecomplus/storefront/commit/b60fb00e2408864d40f3c46d861eaa0c6080496e))
|
|
281
|
+
|
|
282
|
+
# [1.0.0-beta.129](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.128...@ecomplus/storefront-components@1.0.0-beta.129) (2022-07-28)
|
|
283
|
+
|
|
284
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
285
|
+
|
|
286
|
+
# [1.0.0-beta.128](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.127...@ecomplus/storefront-components@1.0.0-beta.128) (2022-07-26)
|
|
287
|
+
|
|
288
|
+
### Bug Fixes
|
|
289
|
+
|
|
290
|
+
- **template/themes:** repair quantity selector broken styles on ecom-beauty theme ([#753](https://github.com/ecomplus/storefront/issues/753)) ([fa3c78d](https://github.com/ecomplus/storefront/commit/fa3c78d1fdb49a11bf05c767140a61fe1ca5ff18))
|
|
291
|
+
|
|
292
|
+
# [1.0.0-beta.127](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.126...@ecomplus/storefront-components@1.0.0-beta.127) (2022-07-16)
|
|
293
|
+
|
|
294
|
+
### Features
|
|
295
|
+
|
|
296
|
+
- **template/pages:** extending `ecom-beauty` theme with custom ejs ([#746](https://github.com/ecomplus/storefront/issues/746)) ([e728267](https://github.com/ecomplus/storefront/commit/e72826710b0a3c9b95c92a20bdc73171dc27fac3))
|
|
297
|
+
|
|
298
|
+
# [1.0.0-beta.126](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.125...@ecomplus/storefront-components@1.0.0-beta.126) (2022-07-06)
|
|
299
|
+
|
|
300
|
+
### Bug Fixes
|
|
301
|
+
|
|
302
|
+
- **deps:** revert vue to 2.6.x ([555d642](https://github.com/ecomplus/storefront/commit/555d6421e977b2263bb446dba389a2ec20677594))
|
|
303
|
+
|
|
304
|
+
# [1.0.0-beta.125](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.124...@ecomplus/storefront-components@1.0.0-beta.125) (2022-07-04)
|
|
305
|
+
|
|
306
|
+
### Features
|
|
307
|
+
|
|
308
|
+
- **components/product:** also show discount tag on extra discount applied ([#716](https://github.com/ecomplus/storefront/issues/716)) ([5c9a09c](https://github.com/ecomplus/storefront/commit/5c9a09c4b9b3f4e85cdcf3c9df1872ed071cf331))
|
|
309
|
+
|
|
310
|
+
# [1.0.0-beta.124](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.123...@ecomplus/storefront-components@1.0.0-beta.124) (2022-06-03)
|
|
311
|
+
|
|
312
|
+
### Bug Fixes
|
|
313
|
+
|
|
314
|
+
- **components/product-gallery:** prevent horizontal scroll whith slide dots on mobile ([#718](https://github.com/ecomplus/storefront/issues/718)) ([9df07c6](https://github.com/ecomplus/storefront/commit/9df07c616e908eff783a31010aa5bb6a4a4276bd))
|
|
315
|
+
- **components/product:** fix handling promo countdown with mocked deadline [[#772](https://github.com/ecomplus/storefront/issues/772)] ([4b079d4](https://github.com/ecomplus/storefront/commit/4b079d42024e51a4fd433b47ec1357c0da42351c)), closes [#issuecomment-1141367914](https://github.com/ecomplus/storefront/issues/issuecomment-1141367914)
|
|
316
|
+
|
|
317
|
+
# [1.0.0-beta.123](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.122...@ecomplus/storefront-components@1.0.0-beta.123) (2022-05-18)
|
|
318
|
+
|
|
319
|
+
### Bug Fixes
|
|
320
|
+
|
|
321
|
+
- **components/search-engine:** edit auto load page anchor to keep showing last item [[#707](https://github.com/ecomplus/storefront/issues/707)] ([702494b](https://github.com/ecomplus/storefront/commit/702494b15f8b527f54bb912f931ef1b0cfcdda9b))
|
|
322
|
+
|
|
323
|
+
# [1.0.0-beta.122](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.121...@ecomplus/storefront-components@1.0.0-beta.122) (2022-05-17)
|
|
324
|
+
|
|
325
|
+
### Bug Fixes
|
|
326
|
+
|
|
327
|
+
- **components/search-engine:** fix handling load more with scroll to page anchor [[#707](https://github.com/ecomplus/storefront/issues/707)] ([41530b9](https://github.com/ecomplus/storefront/commit/41530b98bddde542f27532c01b42cc8fe29a0a59))
|
|
328
|
+
|
|
329
|
+
# [1.0.0-beta.121](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.120...@ecomplus/storefront-components@1.0.0-beta.121) (2022-05-14)
|
|
330
|
+
|
|
331
|
+
### Bug Fixes
|
|
332
|
+
|
|
333
|
+
- **components/search-engine:** fix selectors for icon styles ([d9d603a](https://github.com/ecomplus/storefront/commit/d9d603abf943eafe24ad4dc3c36bc2a39d30c52f))
|
|
334
|
+
|
|
335
|
+
# [1.0.0-beta.120](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.119...@ecomplus/storefront-components@1.0.0-beta.120) (2022-05-06)
|
|
336
|
+
|
|
337
|
+
### Bug Fixes
|
|
338
|
+
|
|
339
|
+
- **components/search-engine:** prevent consecutive load more ([cd0559a](https://github.com/ecomplus/storefront/commit/cd0559a40d18e7e819991ce20bb65f86e5fcafc6))
|
|
340
|
+
|
|
341
|
+
# [1.0.0-beta.119](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.118...@ecomplus/storefront-components@1.0.0-beta.119) (2022-04-21)
|
|
342
|
+
|
|
343
|
+
### Bug Fixes
|
|
344
|
+
|
|
345
|
+
- **components/address-form:** set inputs maxlength to prevent api error ([#690](https://github.com/ecomplus/storefront/issues/690)) ([82ea8ff](https://github.com/ecomplus/storefront/commit/82ea8fff36d3309d35a4b7332669f33a81a1a03b)), closes [#689](https://github.com/ecomplus/storefront/issues/689)
|
|
346
|
+
|
|
347
|
+
# [1.0.0-beta.118](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.117...@ecomplus/storefront-components@1.0.0-beta.118) (2022-04-01)
|
|
348
|
+
|
|
349
|
+
### Bug Fixes
|
|
350
|
+
|
|
351
|
+
- **app/components:** pass query to ecOrdersList filter api request results ([666f9eb](https://github.com/ecomplus/storefront/commit/666f9eb974cd4225aa0f71c3ba2fee416a001c92))
|
|
352
|
+
- **components/account:** hide subscriptions tab when customer has no subscriptions ([#680](https://github.com/ecomplus/storefront/issues/680)) ([ca8821a](https://github.com/ecomplus/storefront/commit/ca8821aa3df7a647a9b01a382d14f4766fe4d07b))
|
|
353
|
+
- **components:** fix typo on component TheAccount ([f401e39](https://github.com/ecomplus/storefront/commit/f401e39440fe9d7d25db39d7cb9e8ffa15ee3a03))
|
|
354
|
+
- **deps:** update @ecomplus/shopping-cart to v2.5.6 and @ecomplus/i18n to v1.29.0 ([2c111ea](https://github.com/ecomplus/storefront/commit/2c111ea49757044cb54393bd331e616edda5169f))
|
|
355
|
+
- minor fixes ([70b43e3](https://github.com/ecomplus/storefront/commit/70b43e377bf52065589caa12a20076e4da3d98d9))
|
|
356
|
+
- rename subscriptions slot ([b149b52](https://github.com/ecomplus/storefront/commit/b149b52a0059e75ee5f2796eecc0753477fa4359))
|
|
357
|
+
|
|
358
|
+
### Features
|
|
359
|
+
|
|
360
|
+
- **account:** add tab o account to show recurrent orders ([2aeca12](https://github.com/ecomplus/storefront/commit/2aeca121eb538c991282bebd412bcb1726b8f233))
|
|
361
|
+
- **app/components:** new slot for recurrent orders on Account ([ad36760](https://github.com/ecomplus/storefront/commit/ad3676050428d6148110526769b22763d4c7d458))
|
|
362
|
+
- **components/product:** added optional promo timer by prop `hasPromotionTimer` ([#664](https://github.com/ecomplus/storefront/issues/664)) ([6aae7e2](https://github.com/ecomplus/storefront/commit/6aae7e216bfc668013fa6dab8c97c4ce6d792a26))
|
|
363
|
+
|
|
364
|
+
# [1.0.0-beta.117](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.116...@ecomplus/storefront-components@1.0.0-beta.117) (2022-03-05)
|
|
365
|
+
|
|
366
|
+
### Bug Fixes
|
|
367
|
+
|
|
368
|
+
- **components/product:** compare with fixed price for discount value ([#658](https://github.com/ecomplus/storefront/issues/658)) ([c36e257](https://github.com/ecomplus/storefront/commit/c36e257453d6f40fbae7ecfdfcd72a572c182c85))
|
|
369
|
+
|
|
370
|
+
### Features
|
|
371
|
+
|
|
372
|
+
- **components/product:** add new `hasQuantitySelector` [[#592](https://github.com/ecomplus/storefront/issues/592)] ([174ef58](https://github.com/ecomplus/storefront/commit/174ef58b047fd6a069ca793250b0fac381b8db75))
|
|
373
|
+
- **components/quantity-selector:** add default slot for items label and `hasBuyButton` prop ([f651d05](https://github.com/ecomplus/storefront/commit/f651d05121ccbf6c4322bed43a4e4a758b71515b)), closes [#592](https://github.com/ecomplus/storefront/issues/592)
|
|
374
|
+
|
|
375
|
+
# [1.0.0-beta.116](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.115...@ecomplus/storefront-components@1.0.0-beta.116) (2022-02-16)
|
|
376
|
+
|
|
377
|
+
### Bug Fixes
|
|
378
|
+
|
|
379
|
+
- **components/account:** prevent error with undefined customer `favorites` ([62e7c4e](https://github.com/ecomplus/storefront/commit/62e7c4e1ce572601784ba0b6c0bd0ba27a5b20a3))
|
|
380
|
+
- **components/product:** better showing "add to favorites" state ([eb6e5b7](https://github.com/ecomplus/storefront/commit/eb6e5b793b6198b1faf600c2671d545422ea8676))
|
|
381
|
+
|
|
382
|
+
### Features
|
|
383
|
+
|
|
384
|
+
- **components/account:** add tab on account to show favorite products ([#628](https://github.com/ecomplus/storefront/issues/628)) ([9dc76d5](https://github.com/ecomplus/storefront/commit/9dc76d5e71ae462a7131d2f48c9fb240066005bd))
|
|
385
|
+
|
|
386
|
+
# [1.0.0-beta.115](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.114...@ecomplus/storefront-components@1.0.0-beta.115) (2022-02-06)
|
|
387
|
+
|
|
388
|
+
### Bug Fixes
|
|
389
|
+
|
|
390
|
+
- **components/login:** check email with lowercase ([#623](https://github.com/ecomplus/storefront/issues/623)) ([d3eb9b5](https://github.com/ecomplus/storefront/commit/d3eb9b511104bdfcf87f995845c9ca5eeb5ba777))
|
|
391
|
+
- **components/product:** check customer logged to handle favorites ([#624](https://github.com/ecomplus/storefront/issues/624)) ([6a3fe02](https://github.com/ecomplus/storefront/commit/6a3fe02d2c1fab45ebb946ce490b870d4a2bf0bf))
|
|
392
|
+
- **components/shipping-calculator:** insert aria label on button with icon ([#622](https://github.com/ecomplus/storefront/issues/622)) ([969ed21](https://github.com/ecomplus/storefront/commit/969ed21023d2720fa8900bb4579cf059c4ea295f))
|
|
393
|
+
- **deps:** update @ecomplus/i18n to v1.27.0 ([d83db09](https://github.com/ecomplus/storefront/commit/d83db098e43520fbf8cc2eaaf3b69de839eedc64))
|
|
394
|
+
|
|
395
|
+
### Features
|
|
396
|
+
|
|
397
|
+
- **components/product:** add favotite option on product and card ([#621](https://github.com/ecomplus/storefront/issues/621)) ([fb63ddf](https://github.com/ecomplus/storefront/commit/fb63ddfe7d6d6ea36a79748f13faf9d255ad4c88))
|
|
398
|
+
|
|
399
|
+
# [1.0.0-beta.114](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.113...@ecomplus/storefront-components@1.0.0-beta.114) (2022-01-24)
|
|
400
|
+
|
|
401
|
+
### Bug Fixes
|
|
402
|
+
|
|
403
|
+
- **components/cart-item:** show item out of stock when unavailable ([b435958](https://github.com/ecomplus/storefront/commit/b435958d588f17d1cea95107f5e4a68d1544ebac))
|
|
404
|
+
|
|
405
|
+
# [1.0.0-beta.113](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.112...@ecomplus/storefront-components@1.0.0-beta.113) (2022-01-18)
|
|
406
|
+
|
|
407
|
+
### Bug Fixes
|
|
408
|
+
|
|
409
|
+
- **components/payment-option:** minor fix discount value styles to not be transformed to lowercase ([e218844](https://github.com/ecomplus/storefront/commit/e218844f2d4e3f93b2e4a3b3236aa93680ced738))
|
|
410
|
+
|
|
411
|
+
# [1.0.0-beta.112](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.111...@ecomplus/storefront-components@1.0.0-beta.112) (2022-01-11)
|
|
412
|
+
|
|
413
|
+
### Bug Fixes
|
|
414
|
+
|
|
415
|
+
- **deps:** update @ecomplus/i18n to v1.26.0 ([8df8b66](https://github.com/ecomplus/storefront/commit/8df8b662386a40f9ea7e3ecc1a34516409a53c2a))
|
|
416
|
+
- **icons:** update icon class names to `.i-*` ([0254be3](https://github.com/ecomplus/storefront/commit/0254be314abfe62627135480089b7788ced43d34))
|
|
417
|
+
- **icons:** update icon class names without `-alt` suffix ([0416133](https://github.com/ecomplus/storefront/commit/04161338d04562332a47ee64917624b3c6137fb1))
|
|
418
|
+
|
|
419
|
+
# [1.0.0-beta.111](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.110...@ecomplus/storefront-components@1.0.0-beta.111) (2022-01-04)
|
|
420
|
+
|
|
421
|
+
### Bug Fixes
|
|
422
|
+
|
|
423
|
+
- **deps:** update @ecomplus/i18n to v1.25.0 ([ffe7a27](https://github.com/ecomplus/storefront/commit/ffe7a27a0d0ef5a5ce166c66062002c56d9f3068))
|
|
424
|
+
|
|
425
|
+
# [1.0.0-beta.110](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.109...@ecomplus/storefront-components@1.0.0-beta.110) (2021-12-31)
|
|
426
|
+
|
|
427
|
+
### Features
|
|
428
|
+
|
|
429
|
+
- **components/login-block:** handle signup/login by email code [[#593](https://github.com/ecomplus/storefront/issues/593)] ([9fe600a](https://github.com/ecomplus/storefront/commit/9fe600afdfd874e95ded22a5573dd92a9d2f24c3))
|
|
430
|
+
|
|
431
|
+
# [1.0.0-beta.109](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.108...@ecomplus/storefront-components@1.0.0-beta.109) (2021-12-29)
|
|
432
|
+
|
|
433
|
+
### Bug Fixes
|
|
434
|
+
|
|
435
|
+
- **APrices:** check min amount from extra discount on price ([#588](https://github.com/ecomplus/storefront/issues/588)) ([7250bda](https://github.com/ecomplus/storefront/commit/7250bdad80c8c409e05b4d6654425101444cfc95))
|
|
436
|
+
- **components/discount-applier:** check `localAmountTotal` (without current discount) instead of `amount.total` [[#578](https://github.com/ecomplus/storefront/issues/578)] ([f60cfe0](https://github.com/ecomplus/storefront/commit/f60cfe07aff2956065ebc81b6ba091089aaa59ed))
|
|
437
|
+
|
|
438
|
+
# [1.0.0-beta.108](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.107...@ecomplus/storefront-components@1.0.0-beta.108) (2021-12-06)
|
|
439
|
+
|
|
440
|
+
### Bug Fixes
|
|
441
|
+
|
|
442
|
+
- **components/payment-option:** fix price with fixed payment option discount ([#569](https://github.com/ecomplus/storefront/issues/569)) ([3c0cded](https://github.com/ecomplus/storefront/commit/3c0cded99ebf190863845d259f25a1fde4bc6e58))
|
|
443
|
+
|
|
444
|
+
### Features
|
|
445
|
+
|
|
446
|
+
- **components/product:** handle out of stock slot also for variations ([#575](https://github.com/ecomplus/storefront/issues/575)) ([8186c12](https://github.com/ecomplus/storefront/commit/8186c1236f2075ade32b7b3ad8e6506ef465452a))
|
|
447
|
+
|
|
448
|
+
# [1.0.0-beta.107](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.106...@ecomplus/storefront-components@1.0.0-beta.107) (2021-11-17)
|
|
449
|
+
|
|
450
|
+
### Bug Fixes
|
|
451
|
+
|
|
452
|
+
- **components/cart:** reset freebies on cart items (paid) changes ([#565](https://github.com/ecomplus/storefront/issues/565)) ([43a175a](https://github.com/ecomplus/storefront/commit/43a175a34ad2a3fd8d8cc8b40a9fbff9eb64e556))
|
|
453
|
+
|
|
454
|
+
# [1.0.0-beta.106](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.105...@ecomplus/storefront-components@1.0.0-beta.106) (2021-11-09)
|
|
455
|
+
|
|
456
|
+
### Bug Fixes
|
|
457
|
+
|
|
458
|
+
- **components/product:** sticky bar style fixes (image and product name) ([07169e6](https://github.com/ecomplus/storefront/commit/07169e6006b746716bdb915db7ca6ab7488c1bde))
|
|
459
|
+
|
|
460
|
+
# [1.0.0-beta.105](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.104...@ecomplus/storefront-components@1.0.0-beta.105) (2021-11-09)
|
|
461
|
+
|
|
462
|
+
### Bug Fixes
|
|
463
|
+
|
|
464
|
+
- **components/picture:** prevent alt text while image being lazy loaded ([2d6c3d8](https://github.com/ecomplus/storefront/commit/2d6c3d8e26ca0c7222dc08a892ce0aa40a468bae))
|
|
465
|
+
- **components/product:** general fixes and better ux for sticky buy bar [[#331](https://github.com/ecomplus/storefront/issues/331)] ([f2d4095](https://github.com/ecomplus/storefront/commit/f2d40956367ec88065323541ef4a91c7bd997baf))
|
|
466
|
+
|
|
467
|
+
### Features
|
|
468
|
+
|
|
469
|
+
- **components/product:** sticky quick buy bar on scroll ([#549](https://github.com/ecomplus/storefront/issues/549)) ([c354b97](https://github.com/ecomplus/storefront/commit/c354b97391a8cf5b677a1a967510939f94c4ec93))
|
|
470
|
+
|
|
471
|
+
# [1.0.0-beta.104](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.103...@ecomplus/storefront-components@1.0.0-beta.104) (2021-10-25)
|
|
472
|
+
|
|
473
|
+
### Bug Fixes
|
|
474
|
+
|
|
475
|
+
- **components/address-form:** update correios cep finder url ([#546](https://github.com/ecomplus/storefront/issues/546)) ([3e425ed](https://github.com/ecomplus/storefront/commit/3e425ed06dc4c292cf7ffb55fa83b8ebd686b0e1))
|
|
476
|
+
- **deps:** update all non-major dependencies ([#550](https://github.com/ecomplus/storefront/issues/550)) ([433f9c5](https://github.com/ecomplus/storefront/commit/433f9c51d5bbc2701351be74e1b9289a1cb1a28c))
|
|
477
|
+
|
|
478
|
+
# [1.0.0-beta.103](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.102...@ecomplus/storefront-components@1.0.0-beta.103) (2021-10-05)
|
|
479
|
+
|
|
480
|
+
### Bug Fixes
|
|
481
|
+
|
|
482
|
+
- **components/picture:** remove <img> to prevent preload ([1f4a02d](https://github.com/ecomplus/storefront/commit/1f4a02dc778c47b7f4bd29fb76375453ddc5c71a))
|
|
483
|
+
|
|
484
|
+
# [1.0.0-beta.102](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.101...@ecomplus/storefront-components@1.0.0-beta.102) (2021-10-05)
|
|
485
|
+
|
|
486
|
+
### Performance Improvements
|
|
487
|
+
|
|
488
|
+
- **components/picture:** explicitly show first picture <img> width/height when available ([4392360](https://github.com/ecomplus/storefront/commit/4392360ba212bba041d6193a08392aa414814f75))
|
|
489
|
+
|
|
490
|
+
# [1.0.0-beta.101](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.100...@ecomplus/storefront-components@1.0.0-beta.101) (2021-09-21)
|
|
491
|
+
|
|
492
|
+
### Bug Fixes
|
|
493
|
+
|
|
494
|
+
- **components/search-engine:** minor style fixes for filter btn and buttons (truncate) ([1768faf](https://github.com/ecomplus/storefront/commit/1768fafcd6b047e5b8763fb0e836c65faaf24f81))
|
|
495
|
+
|
|
496
|
+
### Features
|
|
497
|
+
|
|
498
|
+
- **components/search-engine:** add price range filters [[#512](https://github.com/ecomplus/storefront/issues/512)] ([97121b6](https://github.com/ecomplus/storefront/commit/97121b683c77b033f7d58356d37762f6c0857d41))
|
|
499
|
+
|
|
500
|
+
# [1.0.0-beta.100](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.99...@ecomplus/storefront-components@1.0.0-beta.100) (2021-09-17)
|
|
501
|
+
|
|
502
|
+
### Bug Fixes
|
|
503
|
+
|
|
504
|
+
- **components/shipping-calculator:** reset free shipping from value on shipping options parse [[#530](https://github.com/ecomplus/storefront/issues/530)] ([28f17aa](https://github.com/ecomplus/storefront/commit/28f17aa593b3216643edeb0ecbc837876fafa3f1))
|
|
505
|
+
- **deps:** update @ecomplus/passport-client to v1.1.0 ([e43a2c0](https://github.com/ecomplus/storefront/commit/e43a2c09cb059ecb1a14b532ab5251be86739008))
|
|
506
|
+
- **deps:** update @ecomplus/passport-client to v1.1.1 ([b713159](https://github.com/ecomplus/storefront/commit/b7131596a14556ca53c4608a234ace3b12b39943))
|
|
507
|
+
|
|
508
|
+
### Features
|
|
509
|
+
|
|
510
|
+
- **components/login-modal:** handle signup by email code verification ([0a4626d](https://github.com/ecomplus/storefront/commit/0a4626d0e2de3fd9dc87930d2e109adb55008e00))
|
|
511
|
+
|
|
512
|
+
# [1.0.0-beta.99](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.98...@ecomplus/storefront-components@1.0.0-beta.99) (2021-09-02)
|
|
513
|
+
|
|
514
|
+
### Features
|
|
515
|
+
|
|
516
|
+
- **components/account-addresses:** handle new `canShowForm` prop and emit `show-form` event ([8961136](https://github.com/ecomplus/storefront/commit/896113678f2e53fa54b03e2c6a36ebb8e17089cf))
|
|
517
|
+
|
|
518
|
+
# [1.0.0-beta.98](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.97...@ecomplus/storefront-components@1.0.0-beta.98) (2021-08-19)
|
|
519
|
+
|
|
520
|
+
### Bug Fixes
|
|
521
|
+
|
|
522
|
+
- **components/cart-item:** prevent reseting quantity while input focused [[#521](https://github.com/ecomplus/storefront/issues/521)] ([0e1f049](https://github.com/ecomplus/storefront/commit/0e1f0493ea3f6a6c8b46e6bb734cb03a544a03ab))
|
|
523
|
+
|
|
524
|
+
# [1.0.0-beta.97](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.96...@ecomplus/storefront-components@1.0.0-beta.97) (2021-08-17)
|
|
525
|
+
|
|
526
|
+
### Bug Fixes
|
|
527
|
+
|
|
528
|
+
- **components/cart-item:** properly use `item.picture` when set instead of product pictures list ([047871d](https://github.com/ecomplus/storefront/commit/047871d3991072dc85fe91972f5d1246ceb066ed))
|
|
529
|
+
- **components/product-gallery:** change `videoAspectRatio` prop default value ([#517](https://github.com/ecomplus/storefront/issues/517)) ([232af01](https://github.com/ecomplus/storefront/commit/232af018ec3806e080db4109f4cb20f0e4829baf))
|
|
530
|
+
- **components/shipping-calculator:** handle production time from shipped items [[#273](https://github.com/ecomplus/storefront/issues/273)] ([73c489c](https://github.com/ecomplus/storefront/commit/73c489cea14494ae4bd919e425155619b632214a))
|
|
531
|
+
|
|
532
|
+
### Features
|
|
533
|
+
|
|
534
|
+
- **components/shipping-line:** add new optional prop `productionDeadline` [[#273](https://github.com/ecomplus/storefront/issues/273)] ([bc38eea](https://github.com/ecomplus/storefront/commit/bc38eea7fb21a9131bb3611ef0bffc21f36f13e3))
|
|
535
|
+
|
|
536
|
+
# [1.0.0-beta.96](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.95...@ecomplus/storefront-components@1.0.0-beta.96) (2021-08-02)
|
|
537
|
+
|
|
538
|
+
### Features
|
|
539
|
+
|
|
540
|
+
- **components/scroll-to-element:** add new `scrollToElement` helper function ([a8aa476](https://github.com/ecomplus/storefront/commit/a8aa476a47120011575820d24ad7b83be1e6b39d))
|
|
541
|
+
|
|
542
|
+
# [1.0.0-beta.95](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.94...@ecomplus/storefront-components@1.0.0-beta.95) (2021-07-30)
|
|
543
|
+
|
|
544
|
+
### Features
|
|
545
|
+
|
|
546
|
+
- **components/account-addresses:** new `formBtnText` prop passed to nested `AddressForm` component ([c46abfb](https://github.com/ecomplus/storefront/commit/c46abfba5f069a0c888639ba4ed0fc48086fae03))
|
|
547
|
+
- **components/account-form:** handle new `hasSubmitBtn` and `btnText` props ([96d00bb](https://github.com/ecomplus/storefront/commit/96d00bbddc55ed15960cc6a09811851aeb383aa9))
|
|
548
|
+
- **components/address-form:** handle new `btnText` prop ([9295907](https://github.com/ecomplus/storefront/commit/929590788b065d98b2243445b1dcbe4c1be5d9c3))
|
|
549
|
+
|
|
550
|
+
# [1.0.0-beta.94](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.93...@ecomplus/storefront-components@1.0.0-beta.94) (2021-07-24)
|
|
551
|
+
|
|
552
|
+
### Bug Fixes
|
|
553
|
+
|
|
554
|
+
- **components/account-addresses:** prevent unseting form when address list has no length ([c2b2326](https://github.com/ecomplus/storefront/commit/c2b23264b815af94efe0d89582ef26367721c677))
|
|
555
|
+
- **components/discount-applier:** simple checking freebie items before adding to cart ([1de8b07](https://github.com/ecomplus/storefront/commit/1de8b07b757315bcb56d594b1293232062a28c08))
|
|
556
|
+
- **components/login-block:** minor style fix for email input group ([b4b732a](https://github.com/ecomplus/storefront/commit/b4b732a6b1b674b2852eba31e4a00a3ef617e7c7))
|
|
557
|
+
- **components/search-engine:** filter buttons minor style fix (alignment) ([8e2b226](https://github.com/ecomplus/storefront/commit/8e2b226a4d8b718226929db56fff44ca56966815))
|
|
558
|
+
|
|
559
|
+
### Features
|
|
560
|
+
|
|
561
|
+
- **components/account-form:** handle guest checkout with new \`isGuestAccess\` prop ([3cceed2](https://github.com/ecomplus/storefront/commit/3cceed235831889b18d827e5261ce7012e275f79))
|
|
562
|
+
- **components/product:** add new \`galleryColClassName\` and \`hasBuyButton\` props ([acb8d6c](https://github.com/ecomplus/storefront/commit/acb8d6cbace752ed8149c7a736e83cd2f44ccb9f))
|
|
563
|
+
- **components/shipping-calculator:** handle items inventory for multi cd ([fd4c9f8](https://github.com/ecomplus/storefront/commit/fd4c9f8ce0891b260bfc4bcded5caf3497609741))
|
|
564
|
+
|
|
565
|
+
# [1.0.0-beta.93](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.92...@ecomplus/storefront-components@1.0.0-beta.93) (2021-07-08)
|
|
566
|
+
|
|
567
|
+
### Bug Fixes
|
|
568
|
+
|
|
569
|
+
- **components/account-points:** format points number shown ([c1ecd6c](https://github.com/ecomplus/storefront/commit/c1ecd6cad1ef16c39b2849f7e38e43e2a22e2a29))
|
|
570
|
+
|
|
571
|
+
# [1.0.0-beta.92](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.91...@ecomplus/storefront-components@1.0.0-beta.92) (2021-07-02)
|
|
572
|
+
|
|
573
|
+
### Bug Fixes
|
|
574
|
+
|
|
575
|
+
- **components/product:** fix rendering product prices when variation selected ([fe230a7](https://github.com/ecomplus/storefront/commit/fe230a7d235c722952cfe882c5efd39fa6c30567))
|
|
576
|
+
- **components/product:** remove `v-once` to make payment options properly reactive with price ([49af585](https://github.com/ecomplus/storefront/commit/49af58521909297401951bd53b6a65339091efcf))
|
|
577
|
+
- **components/product-card:** fix card items vertical alignment (same height) in row ([e657d22](https://github.com/ecomplus/storefront/commit/e657d22cf57002e71d147490f6a5fdc0258c3e3e))
|
|
578
|
+
|
|
579
|
+
### Features
|
|
580
|
+
|
|
581
|
+
- **components/pagination:** new `APagination` component :tada: ([d7c94d4](https://github.com/ecomplus/storefront/commit/d7c94d42834547940be5e836c3bd064a64e2b35a))
|
|
582
|
+
- **components/search-engine:** emit fetch event with `isPopularItems` on payload ([f4221d6](https://github.com/ecomplus/storefront/commit/f4221d6763586a31fa7867800dfccf2115b9f69c))
|
|
583
|
+
|
|
584
|
+
# [1.0.0-beta.91](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.90...@ecomplus/storefront-components@1.0.0-beta.91) (2021-06-21)
|
|
585
|
+
|
|
586
|
+
### Bug Fixes
|
|
587
|
+
|
|
588
|
+
- **components/product:** disable add to cart on gallery when product not available ([d4b948f](https://github.com/ecomplus/storefront/commit/d4b948ff151edd15b94a450b09fe16a3eba14540))
|
|
589
|
+
|
|
590
|
+
### Features
|
|
591
|
+
|
|
592
|
+
- **components/price:** add new `canShowPriceOptions` boolean prop ([162ec4a](https://github.com/ecomplus/storefront/commit/162ec4adbf1e0ef0622e50771dc218e177b99f22))
|
|
593
|
+
- **components/product:** new `maxVariationOptionsBtns` prop ([e6b1ca5](https://github.com/ecomplus/storefront/commit/e6b1ca5f470661bd02573b9e97a448013044473f))
|
|
594
|
+
|
|
595
|
+
### Performance Improvements
|
|
596
|
+
|
|
597
|
+
- **components/product-gallery:** delay (dynamic) importing photoswipe on zoom click only ([0260440](https://github.com/ecomplus/storefront/commit/0260440aa4a89e630b281a75b79bc8ea152e71f2))
|
|
598
|
+
|
|
599
|
+
# [1.0.0-beta.90](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.89...@ecomplus/storefront-components@1.0.0-beta.90) (2021-06-17)
|
|
600
|
+
|
|
601
|
+
### Bug Fixes
|
|
602
|
+
|
|
603
|
+
- **components/prices:** import `i19youEarn` from i18n ([049b04a](https://github.com/ecomplus/storefront/commit/049b04abecba4fbb19a99861f31dce18c97e6fb5))
|
|
604
|
+
- **deps:** update @ecomplus/search-engine to v2.6.1 ([20214c5](https://github.com/ecomplus/storefront/commit/20214c5cc27c75a2ba597da9557b6352b84a92a8))
|
|
605
|
+
|
|
606
|
+
### Features
|
|
607
|
+
|
|
608
|
+
- **components/item-customizations:** new `ItemCustomizations` component :tada: ([6ab2fd9](https://github.com/ecomplus/storefront/commit/6ab2fd9d7906ae94b63e0321f7c4c72e8ce4ff85))
|
|
609
|
+
- **components/shipping-line:** better notes for same and next day delivery ([#474](https://github.com/ecomplus/storefront/issues/474)) ([b9bd5fd](https://github.com/ecomplus/storefront/commit/b9bd5fd7129dc40d18326b3de92ca00e55831a12))
|
|
610
|
+
|
|
611
|
+
# [1.0.0-beta.89](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.88...@ecomplus/storefront-components@1.0.0-beta.89) (2021-06-11)
|
|
612
|
+
|
|
613
|
+
### Bug Fixes
|
|
614
|
+
|
|
615
|
+
- **components/points-applier:** check min available points to show and format number ([2842bfb](https://github.com/ecomplus/storefront/commit/2842bfbd7ed03ef549ab8d9a4b25abe03911e474))
|
|
616
|
+
- **components/prices:** show points to earn when no min price ([f03cdf6](https://github.com/ecomplus/storefront/commit/f03cdf6b6655e23ebd6afbee85173f247e2af0b8))
|
|
617
|
+
- **deps:** update all non-major dependencies ([#478](https://github.com/ecomplus/storefront/issues/478)) ([f3b5f96](https://github.com/ecomplus/storefront/commit/f3b5f96c6d863d446d806668c4fbab92e785cce2))
|
|
618
|
+
|
|
619
|
+
# [1.0.0-beta.88](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.87...@ecomplus/storefront-components@1.0.0-beta.88) (2021-05-27)
|
|
620
|
+
|
|
621
|
+
### Bug Fixes
|
|
622
|
+
|
|
623
|
+
- **cart-quickview:** minicart subtotal el should not be strong (contains APrice) ([9e04410](https://github.com/ecomplus/storefront/commit/9e04410b5444a9840d24c82fb2475731adcd4c94))
|
|
624
|
+
|
|
625
|
+
### Features
|
|
626
|
+
|
|
627
|
+
- **prices:** handle loyalty poiints programs (if any) when showing literal price ([fda4d51](https://github.com/ecomplus/storefront/commit/fda4d5172d98b6c0436e98620b8bcd1ad43f70c7))
|
|
628
|
+
|
|
629
|
+
# [1.0.0-beta.87](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.86...@ecomplus/storefront-components@1.0.0-beta.87) (2021-05-18)
|
|
630
|
+
|
|
631
|
+
### Bug Fixes
|
|
632
|
+
|
|
633
|
+
- **components/account-form:** properly import new i18n words ([8c0ab53](https://github.com/ecomplus/storefront/commit/8c0ab53b9c1e379ed8058251b24bf333447a0f34))
|
|
634
|
+
- **deps:** update @ecomplus/i18n to v1.21.0 ([a235058](https://github.com/ecomplus/storefront/commit/a2350580c50480e9caf74ac64dde14e4b618a057))
|
|
635
|
+
|
|
636
|
+
### Features
|
|
637
|
+
|
|
638
|
+
- **components/account:** new slot `account-points` for active loyalty points ([28aea7c](https://github.com/ecomplus/storefront/commit/28aea7cd339bb6304d2322848eafdff47b1d222b))
|
|
639
|
+
- **components/account-points:** new AccountPoints component :tada: ([a5d186a](https://github.com/ecomplus/storefront/commit/a5d186a98f9b9d89e52a99161d68c6294f601dd2))
|
|
640
|
+
- **components/cart:** add loyalty points earn progress bar on shopping cart ([306d2e6](https://github.com/ecomplus/storefront/commit/306d2e64a15a02b9a6ade3009f0f7a0144483803))
|
|
641
|
+
- **components/earn-points-progress:** add new EarnPointsProgress component :tada: ([7e50cf7](https://github.com/ecomplus/storefront/commit/7e50cf7dd80afb84297ef4aa44d5df4a85a61463))
|
|
642
|
+
- **components/points-applier:** handle new `maxPointsAmount` prop ([1478fcc](https://github.com/ecomplus/storefront/commit/1478fcc2b4c229766f98c250fae97b72c218a103))
|
|
643
|
+
|
|
644
|
+
# [1.0.0-beta.86](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.85...@ecomplus/storefront-components@1.0.0-beta.86) (2021-05-14)
|
|
645
|
+
|
|
646
|
+
### Bug Fixes
|
|
647
|
+
|
|
648
|
+
- **components/account-form:** birth date field cannot be required anymore according to google ([#463](https://github.com/ecomplus/storefront/issues/463)) ([aa53af0](https://github.com/ecomplus/storefront/commit/aa53af0d003540169ebe51bad4b490ba68aeefcd))
|
|
649
|
+
|
|
650
|
+
### Features
|
|
7
651
|
|
|
652
|
+
- **components/points-applier:** new PointsApplier component to enable loyalty points usage :tada: ([558d0b7](https://github.com/ecomplus/storefront/commit/558d0b79e32a03a379bc7dbdc7f7ed6609e501b4))
|
|
653
|
+
|
|
654
|
+
# [1.0.0-beta.85](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.84...@ecomplus/storefront-components@1.0.0-beta.85) (2021-04-28)
|
|
655
|
+
|
|
656
|
+
### Bug Fixes
|
|
657
|
+
|
|
658
|
+
- **components/product:** bypass (emit) quantity selector buy event ([#437](https://github.com/ecomplus/storefront/issues/437)) ([9fe42d6](https://github.com/ecomplus/storefront/commit/9fe42d6bb90f3ddc7c38632d462e844904e075f5))
|
|
659
|
+
|
|
660
|
+
# [1.0.0-beta.84](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.83...@ecomplus/storefront-components@1.0.0-beta.84) (2021-03-29)
|
|
661
|
+
|
|
662
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
663
|
+
|
|
664
|
+
# [1.0.0-beta.83](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.82...@ecomplus/storefront-components@1.0.0-beta.83) (2021-03-12)
|
|
8
665
|
|
|
9
666
|
### Bug Fixes
|
|
10
667
|
|
|
11
|
-
|
|
12
|
-
* **search-engine:** fix handling fixed categories filters ([f1fc397](https://github.com/ecomplus/storefront/commit/f1fc3977593b32509bd5634ee670a663639174be))
|
|
668
|
+
- **deps:** update @ecomplus/client to v2.2.1 ([574f93f](https://github.com/ecomplus/storefront/commit/574f93fd027220bb64cad19443e38ce559c69e62))
|
|
13
669
|
|
|
670
|
+
# [1.0.0-beta.82](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.81...@ecomplus/storefront-components@1.0.0-beta.82) (2021-02-24)
|
|
671
|
+
|
|
672
|
+
### Bug Fixes
|
|
673
|
+
|
|
674
|
+
- **prices:** ensure spaces on compared price strings ([5c96f3a](https://github.com/ecomplus/storefront/commit/5c96f3a082f5273257344d83ad87a1eea66ce9ac))
|
|
675
|
+
|
|
676
|
+
# [1.0.0-beta.81](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.80...@ecomplus/storefront-components@1.0.0-beta.81) (2021-02-15)
|
|
14
677
|
|
|
15
678
|
### Features
|
|
16
679
|
|
|
17
|
-
|
|
680
|
+
- **account-form:** add email marketing and privacy policy opt ins ([#402](https://github.com/ecomplus/storefront/issues/402)) ([b7a7eb8](https://github.com/ecomplus/storefront/commit/b7a7eb872e3b67e9535bcb6e748c0ee62d43661f))
|
|
681
|
+
- **prices:** check variations prices to render "as of" message ([#419](https://github.com/ecomplus/storefront/issues/419)) ([c7f649b](https://github.com/ecomplus/storefront/commit/c7f649b1877dee2cec66346ddb2af54b6f63975f))
|
|
18
682
|
|
|
683
|
+
# [1.0.0-beta.80](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.79...@ecomplus/storefront-components@1.0.0-beta.80) (2021-01-25)
|
|
19
684
|
|
|
685
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
20
686
|
|
|
687
|
+
# [1.0.0-beta.79](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.78...@ecomplus/storefront-components@1.0.0-beta.79) (2021-01-15)
|
|
21
688
|
|
|
689
|
+
### Bug Fixes
|
|
22
690
|
|
|
23
|
-
|
|
691
|
+
- **product-card:** minor style fixes for product name on card ([ac5f5a5](https://github.com/ecomplus/storefront/commit/ac5f5a5c7d7934b9e1134f953e814bedd6509b26))
|
|
24
692
|
|
|
693
|
+
# [1.0.0-beta.78](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.77...@ecomplus/storefront-components@1.0.0-beta.78) (2021-01-14)
|
|
25
694
|
|
|
26
695
|
### Bug Fixes
|
|
27
696
|
|
|
28
|
-
|
|
29
|
-
|
|
697
|
+
- **product:** start kit composition with 0 selected qnts by default ([67c580a](https://github.com/ecomplus/storefront/commit/67c580aad64272d21bf1ad8b1b910d5f0fbd0462))
|
|
698
|
+
- **quantity-selector:** properly checking cart item (not product) stock ([dbc7d57](https://github.com/ecomplus/storefront/commit/dbc7d57fd8aafedfcc4ee9b1052ab8d6a74d5cc3))
|
|
699
|
+
- **shipping-calculator:** also show free shipping progress when free option available ([#401](https://github.com/ecomplus/storefront/issues/401)) ([0b0952e](https://github.com/ecomplus/storefront/commit/0b0952e14e949863678954b38f585921b6bd77bf))
|
|
700
|
+
|
|
701
|
+
### Performance Improvements
|
|
30
702
|
|
|
703
|
+
- **product:** fetch search api (one request only) to hydrate kit composition ([ce60918](https://github.com/ecomplus/storefront/commit/ce60918a08fb4838dc6a7acd6c377251bdd1f925))
|
|
704
|
+
|
|
705
|
+
# [1.0.0-beta.77](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.76...@ecomplus/storefront-components@1.0.0-beta.77) (2020-12-24)
|
|
706
|
+
|
|
707
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
708
|
+
|
|
709
|
+
# [1.0.0-beta.76](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.75...@ecomplus/storefront-components@1.0.0-beta.76) (2020-12-17)
|
|
710
|
+
|
|
711
|
+
### Bug Fixes
|
|
712
|
+
|
|
713
|
+
- **product-variations:** unset selected options if no more available on each filter grids ([#390](https://github.com/ecomplus/storefront/issues/390)) ([6aaf56b](https://github.com/ecomplus/storefront/commit/6aaf56b9d5e27b942fe5bb39081be335ab477bdc))
|
|
31
714
|
|
|
32
715
|
### Features
|
|
33
716
|
|
|
34
|
-
|
|
35
|
-
|
|
717
|
+
- **product-card:** support window scope functions for html append ([ca60125](https://github.com/ecomplus/storefront/commit/ca60125c3dcdde4e4caa429d8ef306443dc7ebe8))
|
|
718
|
+
|
|
719
|
+
# [1.0.0-beta.75](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.74...@ecomplus/storefront-components@1.0.0-beta.75) (2020-12-16)
|
|
36
720
|
|
|
721
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
37
722
|
|
|
723
|
+
# [1.0.0-beta.74](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.73...@ecomplus/storefront-components@1.0.0-beta.74) (2020-12-15)
|
|
38
724
|
|
|
725
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
39
726
|
|
|
727
|
+
# [1.0.0-beta.73](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.72...@ecomplus/storefront-components@1.0.0-beta.73) (2020-12-15)
|
|
40
728
|
|
|
41
|
-
|
|
729
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
42
730
|
|
|
731
|
+
# [1.0.0-beta.72](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.71...@ecomplus/storefront-components@1.0.0-beta.72) (2020-12-15)
|
|
732
|
+
|
|
733
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
734
|
+
|
|
735
|
+
# [1.0.0-beta.71](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.70...@ecomplus/storefront-components@1.0.0-beta.71) (2020-12-07)
|
|
43
736
|
|
|
44
737
|
### Bug Fixes
|
|
45
738
|
|
|
46
|
-
|
|
739
|
+
- **cart-item:** explicitly watch item 'final_price' ([0d2f009](https://github.com/ecomplus/storefront/commit/0d2f009022c175782a1a7853670212b78327e697))
|
|
740
|
+
- **product:** ensure setting kit items quantities ([#369](https://github.com/ecomplus/storefront/issues/369)) ([f55780f](https://github.com/ecomplus/storefront/commit/f55780f2a813274172c22e25762d6b06d98b367c))
|
|
47
741
|
|
|
742
|
+
# [1.0.0-beta.70](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.69...@ecomplus/storefront-components@1.0.0-beta.70) (2020-12-04)
|
|
48
743
|
|
|
744
|
+
### Features
|
|
49
745
|
|
|
746
|
+
- **product-variations:** add class name for each option btn ([#373](https://github.com/ecomplus/storefront/issues/373)) ([2d2771f](https://github.com/ecomplus/storefront/commit/2d2771f011fec2e6696036505dd6deda753dc21f))
|
|
50
747
|
|
|
748
|
+
# [1.0.0-beta.69](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.68...@ecomplus/storefront-components@1.0.0-beta.69) (2020-12-01)
|
|
51
749
|
|
|
52
|
-
|
|
750
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
53
751
|
|
|
752
|
+
# [1.0.0-beta.68](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.67...@ecomplus/storefront-components@1.0.0-beta.68) (2020-11-27)
|
|
54
753
|
|
|
55
754
|
### Bug Fixes
|
|
56
755
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
756
|
+
- **cart:** set 'isAmountTotal' on prices ([bb2522a](https://github.com/ecomplus/storefront/commit/bb2522a627307e57ab7fbca6e167c253b245ad93))
|
|
757
|
+
- **deps:** update @ecomplus/search-engine to v2.5.0 ([012ae01](https://github.com/ecomplus/storefront/commit/012ae01702f4d3077ed11bc7f8993bdc66c032d5))
|
|
758
|
+
- **product-variations:** must watch prop product.variations to update grids ([61258a3](https://github.com/ecomplus/storefront/commit/61258a34a638f7f4ff9759509e56fce3ad9b12b2))
|
|
759
|
+
- **product-variations:** prevent error with no variations with stock ([d0b3573](https://github.com/ecomplus/storefront/commit/d0b3573ea689388600f0df857fa61771d7e2f2d3))
|
|
760
|
+
- **shipping-calculator:** schedule retry on calculation general fail ([a4bbad0](https://github.com/ecomplus/storefront/commit/a4bbad02b184ced715c587f15103b82bfad9aec7))
|
|
60
761
|
|
|
762
|
+
### Features
|
|
61
763
|
|
|
764
|
+
- **prices:** add 'isAmountTotal' prop to check discount apply at ([#366](https://github.com/ecomplus/storefront/issues/366)) ([d873630](https://github.com/ecomplus/storefront/commit/d873630f6ca313fe4646dfa9bd59ecf6f19a22a2))
|
|
765
|
+
- **search-engine:** add 'defaultFilters' object prop ([#362](https://github.com/ecomplus/storefront/issues/362)) ([8dce394](https://github.com/ecomplus/storefront/commit/8dce394b6cf328df408dff2db94975e417c69ddb))
|
|
766
|
+
- **search-engine:** sort option by slug (alphabetical) ([e7ac1db](https://github.com/ecomplus/storefront/commit/e7ac1dbb1afe88fe528c84cf395d1248b441f015))
|
|
62
767
|
|
|
768
|
+
### Performance Improvements
|
|
63
769
|
|
|
770
|
+
- **product:** accepting product preset with ssr (and update) ([f8ae21b](https://github.com/ecomplus/storefront/commit/f8ae21b259937774d7f4ddf680dac4b50e2b4fee))
|
|
64
771
|
|
|
65
|
-
# [1.0.0-beta.
|
|
772
|
+
# [1.0.0-beta.67](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.66...@ecomplus/storefront-components@1.0.0-beta.67) (2020-11-18)
|
|
66
773
|
|
|
774
|
+
### Features
|
|
775
|
+
|
|
776
|
+
- **product:** set product id and sku on root el data ([f1e2f24](https://github.com/ecomplus/storefront/commit/f1e2f2487e542566890b57f7e3af3804d9fbdbde))
|
|
777
|
+
- **product-card:** set product id and sku on root el data ([54b87b4](https://github.com/ecomplus/storefront/commit/54b87b4f45d48ba67957ffe4c7ddecce80660453))
|
|
778
|
+
|
|
779
|
+
# [1.0.0-beta.66](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.65...@ecomplus/storefront-components@1.0.0-beta.66) (2020-11-18)
|
|
67
780
|
|
|
68
781
|
### Bug Fixes
|
|
69
782
|
|
|
70
|
-
|
|
783
|
+
- **account-form:** check year range for birth date ([#350](https://github.com/ecomplus/storefront/issues/350)) ([5d1c8af](https://github.com/ecomplus/storefront/commit/5d1c8af8c16b77fbbf91b688f4c98211eb5ca606))
|
|
784
|
+
|
|
785
|
+
### Features
|
|
786
|
+
|
|
787
|
+
- **product:** update prices when customizations set with additional price ([#351](https://github.com/ecomplus/storefront/issues/351)) ([7cfd302](https://github.com/ecomplus/storefront/commit/7cfd30254aaaaf7af1113a44f5e9f6e1cdea2ab9))
|
|
71
788
|
|
|
789
|
+
# [1.0.0-beta.65](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.64...@ecomplus/storefront-components@1.0.0-beta.65) (2020-11-17)
|
|
72
790
|
|
|
791
|
+
### Bug Fixes
|
|
73
792
|
|
|
793
|
+
- **cart-item:** fix handling float quantity ([3ffd1dc](https://github.com/ecomplus/storefront/commit/3ffd1dcdba816603cd2d431605b8bd9a8ee9f17d))
|
|
794
|
+
- **deps:** update @ecomplus/shopping-cart to v2.5.5 ([b2cf490](https://github.com/ecomplus/storefront/commit/b2cf490ee6fed76aa50a03a58680fa2ba6f912b0))
|
|
74
795
|
|
|
796
|
+
### Performance Improvements
|
|
75
797
|
|
|
76
|
-
|
|
798
|
+
- **shipping-calculator:** prevent duplicating calculate retry timers ([3a4abab](https://github.com/ecomplus/storefront/commit/3a4ababb3bcd84aea84ab4587457789dce4a7952))
|
|
77
799
|
|
|
800
|
+
# [1.0.0-beta.64](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.63...@ecomplus/storefront-components@1.0.0-beta.64) (2020-11-17)
|
|
78
801
|
|
|
79
802
|
### Bug Fixes
|
|
80
803
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
804
|
+
- **deps:** update @ecomplus/shopping-cart to v2.5.1 ([85259ac](https://github.com/ecomplus/storefront/commit/85259ac0e3e2d379b8dc5ab3c9ba712ba262d9ff))
|
|
805
|
+
- **deps:** update @ecomplus/shopping-cart to v2.5.4 ([36a58b1](https://github.com/ecomplus/storefront/commit/36a58b1d83f99f2367904b9101d3404f36e28203))
|
|
806
|
+
- **product:** fetch each kit product to get variations properly ([611ecbb](https://github.com/ecomplus/storefront/commit/611ecbb56442471473e48164bd77829a3e16edcf))
|
|
807
|
+
- **product:** show variation picture on first grid option set ([192382c](https://github.com/ecomplus/storefront/commit/192382c6f14241298e2afaa721148e37e8246dde))
|
|
808
|
+
- **quantity-selector:** delete item customizations (not supperted) ([ed786b9](https://github.com/ecomplus/storefront/commit/ed786b9bb145a8fd98cc72bc86deb60d1d93aa31))
|
|
809
|
+
- **quantity-selector:** setting kit composition when adding to cart ([d9dc8d8](https://github.com/ecomplus/storefront/commit/d9dc8d85aa41d1a6f8ffc84f01578ae540ce33f6))
|
|
810
|
+
|
|
811
|
+
### Features
|
|
812
|
+
|
|
813
|
+
- **product-variations:** emit 'select-option' event before updating variation id ([66fa54c](https://github.com/ecomplus/storefront/commit/66fa54c912012ea6cf25893dff8b003d70451d8e))
|
|
814
|
+
|
|
815
|
+
# [1.0.0-beta.63](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.62...@ecomplus/storefront-components@1.0.0-beta.63) (2020-11-12)
|
|
85
816
|
|
|
817
|
+
### Bug Fixes
|
|
818
|
+
|
|
819
|
+
- **cart-item:** prevent edit qnt on items from kit ([a2906f7](https://github.com/ecomplus/storefront/commit/a2906f7a4bede32942b261dc7368a58bacd50336))
|
|
820
|
+
- **deps:** update @ecomplus/shopping-cart to v2.4.0 ([1d1585f](https://github.com/ecomplus/storefront/commit/1d1585f1c0af11f9f06c72697bd8ed68e3449beb))
|
|
821
|
+
- **deps:** update @ecomplus/shopping-cart to v2.4.1 ([1ecbec0](https://github.com/ecomplus/storefront/commit/1ecbec0160acb81882e2ce96c06245c9601f7f58))
|
|
822
|
+
- **deps:** update @ecomplus/shopping-cart to v2.5.0 ([c851a30](https://github.com/ecomplus/storefront/commit/c851a306aaf54ec60a66453f11576ce70ee17b9c))
|
|
823
|
+
- **product:** fix preseting kit items and quantity selector props ([d5bbd6f](https://github.com/ecomplus/storefront/commit/d5bbd6fb156479375249b00af5a7fb338c19ddb7))
|
|
824
|
+
- **product-card:** fix checking if product if able to quick buy ([5830d83](https://github.com/ecomplus/storefront/commit/5830d83bd2a5d5e692e22a9d63360866a3bf2f3a))
|
|
86
825
|
|
|
87
826
|
### Features
|
|
88
827
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
828
|
+
- **product:** handle kit composition and render quantity selector ([8095fc9](https://github.com/ecomplus/storefront/commit/8095fc9c39a98a00514999bc7c703376b78817f4))
|
|
829
|
+
- **proquet-quickview:** optionally accepting product object prop ([1e97cc4](https://github.com/ecomplus/storefront/commit/1e97cc48189115bb49a65f2ecd8f721d5da31c61))
|
|
830
|
+
- **quantity-selector:** add 'kitProductId', 'kitName' and 'kitPrice' props ([221d835](https://github.com/ecomplus/storefront/commit/221d835c3a1a51e024c201b642e0b7f358a2ae6b))
|
|
831
|
+
- **quantity-selector:** add 'slug' prop and set on final cart item ([d9f4d77](https://github.com/ecomplus/storefront/commit/d9f4d776d6ff534aec66e141438380266358bd68))
|
|
92
832
|
|
|
833
|
+
# [1.0.0-beta.62](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.61...@ecomplus/storefront-components@1.0.0-beta.62) (2020-11-09)
|
|
93
834
|
|
|
835
|
+
### Bug Fixes
|
|
94
836
|
|
|
837
|
+
- **deps:** update all non-major dependencies ([#357](https://github.com/ecomplus/storefront/issues/357)) ([63ed559](https://github.com/ecomplus/storefront/commit/63ed559c2d93c1aa133a786bb67bbc46358afd7c))
|
|
95
838
|
|
|
839
|
+
# [1.0.0-beta.61](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.60...@ecomplus/storefront-components@1.0.0-beta.61) (2020-11-03)
|
|
96
840
|
|
|
97
|
-
|
|
841
|
+
### Bug Fixes
|
|
842
|
+
|
|
843
|
+
- **deps:** update all non-major dependencies ([#344](https://github.com/ecomplus/storefront/issues/344)) ([ae49403](https://github.com/ecomplus/storefront/commit/ae4940343a6c656efef8f7536e16b5f88e3f48dd))
|
|
844
|
+
- **search-engine:** must reset page number (1) on sort change ([a448302](https://github.com/ecomplus/storefront/commit/a448302a300f7004f910e6124d05b1b62209cba2))
|
|
98
845
|
|
|
846
|
+
# [1.0.0-beta.60](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.59...@ecomplus/storefront-components@1.0.0-beta.60) (2020-10-26)
|
|
99
847
|
|
|
100
848
|
### Bug Fixes
|
|
101
849
|
|
|
102
|
-
|
|
850
|
+
- **deps:** update @ecomplus/shopping-cart to v2.3.0 ([a4e3066](https://github.com/ecomplus/storefront/commit/a4e3066a5d89869a1632b6e564eaef4a9198915f))
|
|
851
|
+
- **deps:** update @ecomplus/shopping-cart to v2.3.1 ([c13312d](https://github.com/ecomplus/storefront/commit/c13312da1e7d675e3ad3b79dd4c5f38c899373ba))
|
|
852
|
+
- **product-card:** do not add directly to cart when has customization fields ([1d87cb8](https://github.com/ecomplus/storefront/commit/1d87cb83f45e4c9b9a8d58ac19adff923abd66b2))
|
|
853
|
+
|
|
854
|
+
### Features
|
|
855
|
+
|
|
856
|
+
- **cart-item:** show item customizations when exists ([bbdd195](https://github.com/ecomplus/storefront/commit/bbdd19588ca3efcf8ed0bce29f9d0c2c102b4fb5))
|
|
857
|
+
- **product:** handling product customization fields ([90ea59f](https://github.com/ecomplus/storefront/commit/90ea59f069578abaa341d31e7e7af9f283d0b358))
|
|
103
858
|
|
|
859
|
+
# [1.0.0-beta.59](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.58...@ecomplus/storefront-components@1.0.0-beta.59) (2020-10-14)
|
|
104
860
|
|
|
861
|
+
### Bug Fixes
|
|
105
862
|
|
|
863
|
+
- **deps:** update all non-major dependencies ([#332](https://github.com/ecomplus/storefront/issues/332)) ([b8c0abc](https://github.com/ecomplus/storefront/commit/b8c0abc6937636157df27287ea2478374fa842ad))
|
|
106
864
|
|
|
865
|
+
# [1.0.0-beta.58](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.57...@ecomplus/storefront-components@1.0.0-beta.58) (2020-10-06)
|
|
107
866
|
|
|
108
|
-
|
|
867
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
109
868
|
|
|
869
|
+
# [1.0.0-beta.57](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.56...@ecomplus/storefront-components@1.0.0-beta.57) (2020-10-02)
|
|
110
870
|
|
|
111
871
|
### Bug Fixes
|
|
112
872
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
873
|
+
- **deps:** update @ecomplus/shopping-cart to v2.2.0 ([920c4b6](https://github.com/ecomplus/storefront/commit/920c4b6664b53036af34337a103be2e10c7909ff))
|
|
874
|
+
- **quantity-selector:** fix handling max quantity and alerts ([80b34e6](https://github.com/ecomplus/storefront/commit/80b34e62c4f5f995467fc7a3cec6d0ef718ecc16))
|
|
875
|
+
|
|
876
|
+
### Features
|
|
877
|
+
|
|
878
|
+
- **quantity-selector:** add new component QuantitySelector :tada: [#287](https://github.com/ecomplus/storefront/issues/287) ([#302](https://github.com/ecomplus/storefront/issues/302)) ([92797b3](https://github.com/ecomplus/storefront/commit/92797b3fe86532b2146557ed239b6ddc8ce3a0d0))
|
|
879
|
+
|
|
880
|
+
# [1.0.0-beta.56](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.55...@ecomplus/storefront-components@1.0.0-beta.56) (2020-09-14)
|
|
117
881
|
|
|
882
|
+
### Bug Fixes
|
|
883
|
+
|
|
884
|
+
- **deps:** update @ecomplus/i18n to v1.16.1 ([71b8a37](https://github.com/ecomplus/storefront/commit/71b8a37d146b17dce9a8337ac376cb08a73c4bac))
|
|
885
|
+
- **scss:** preventing Safari double-tap link issue ([20b1de8](https://github.com/ecomplus/storefront/commit/20b1de84d6bbbdc0a90e048a8097b7801dc0c040))
|
|
118
886
|
|
|
119
887
|
### Features
|
|
120
888
|
|
|
121
|
-
|
|
122
|
-
* **product-variations:** handle 'maxOptionsBtns' prop ([73ec095](https://github.com/ecomplus/storefront/commit/73ec0953bd03fe2f23382fa084c7e0b208293be7))
|
|
889
|
+
- **account-form:** add optional inscription number/type inputs ([7c64d10](https://github.com/ecomplus/storefront/commit/7c64d1030b1889062c8356a39029e19995b72dfa))
|
|
123
890
|
|
|
891
|
+
# [1.0.0-beta.55](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.54...@ecomplus/storefront-components@1.0.0-beta.55) (2020-09-11)
|
|
124
892
|
|
|
893
|
+
### Bug Fixes
|
|
125
894
|
|
|
895
|
+
- **account-form:** prevent customer typos with trim ([3d52223](https://github.com/ecomplus/storefront/commit/3d5222388f86684e08f2db76f1612d7d7158037f))
|
|
896
|
+
- **deps:** update @ecomplus/i18n to v1.16.0 ([89b42f2](https://github.com/ecomplus/storefront/commit/89b42f26b8cda4ab40bbd2762d5329f95deb970d))
|
|
126
897
|
|
|
898
|
+
# [1.0.0-beta.54](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.53...@ecomplus/storefront-components@1.0.0-beta.54) (2020-09-11)
|
|
127
899
|
|
|
128
|
-
|
|
900
|
+
### Bug Fixes
|
|
901
|
+
|
|
902
|
+
- **deps:** update @ecomplus/search-engine to v2.4.1 ([c51be6e](https://github.com/ecomplus/storefront/commit/c51be6e5843cf0c1824eb883401e0134bd7837fd))
|
|
129
903
|
|
|
904
|
+
# [1.0.0-beta.53](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.52...@ecomplus/storefront-components@1.0.0-beta.53) (2020-09-10)
|
|
130
905
|
|
|
131
906
|
### Bug Fixes
|
|
132
907
|
|
|
133
|
-
|
|
908
|
+
- **deps:** update @ecomplus/search-engine to v2.4.0 ([353fe7b](https://github.com/ecomplus/storefront/commit/353fe7b700af38fdbc1fba8a9e8a533e772a6ba2))
|
|
909
|
+
|
|
910
|
+
# [1.0.0-beta.52](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.51...@ecomplus/storefront-components@1.0.0-beta.52) (2020-09-10)
|
|
911
|
+
|
|
912
|
+
### Bug Fixes
|
|
134
913
|
|
|
914
|
+
- **deps:** update @ecomplus/i18n to v1.15.0 ([47dec6e](https://github.com/ecomplus/storefront/commit/47dec6eeda2c8078a06f35cb726c49837315a28a))
|
|
915
|
+
- **i18n:** importing new releases words from @ecomplus/i18n ([343fe92](https://github.com/ecomplus/storefront/commit/343fe927069e1ba4f45ef60f3bdceb42f6f18e32))
|
|
916
|
+
- **product-quickview:** destroy component after hidden ([8546a76](https://github.com/ecomplus/storefront/commit/8546a7633db92c9d4801473ba6acbda5384683ed))
|
|
135
917
|
|
|
136
918
|
### Features
|
|
137
919
|
|
|
138
|
-
|
|
920
|
+
- **product-quickview:** new ProductQuickview componente :tada: ([#291](https://github.com/ecomplus/storefront/issues/291)) ([ab554bd](https://github.com/ecomplus/storefront/commit/ab554bd588a39dff215c5593b85dac8476f7451b))
|
|
139
921
|
|
|
922
|
+
# [1.0.0-beta.51](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.50...@ecomplus/storefront-components@1.0.0-beta.51) (2020-08-27)
|
|
140
923
|
|
|
924
|
+
### Bug Fixes
|
|
141
925
|
|
|
926
|
+
- **deps:** fix vue to v2.6.12 ([0ab8ac5](https://github.com/ecomplus/storefront/commit/0ab8ac597c80643d0232c3808c9bfaffb7ad92e0))
|
|
142
927
|
|
|
928
|
+
# [1.0.0-beta.50](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.49...@ecomplus/storefront-components@1.0.0-beta.50) (2020-08-27)
|
|
143
929
|
|
|
144
|
-
|
|
930
|
+
### Bug Fixes
|
|
931
|
+
|
|
932
|
+
- **address-form:** fix province code input pattern (uppercase) ([a1f1f29](https://github.com/ecomplus/storefront/commit/a1f1f292ec0546916ff65946139348afc41c6437))
|
|
933
|
+
|
|
934
|
+
### Features
|
|
935
|
+
|
|
936
|
+
- **search-engine:** add `news` sort option ([ebb8a62](https://github.com/ecomplus/storefront/commit/ebb8a627090ed63181abb29f60e9339b5256b71a))
|
|
145
937
|
|
|
938
|
+
# [1.0.0-beta.49](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.48...@ecomplus/storefront-components@1.0.0-beta.49) (2020-08-20)
|
|
146
939
|
|
|
147
940
|
### Bug Fixes
|
|
148
941
|
|
|
149
|
-
|
|
150
|
-
* **input-phone:** minor fix for br phone number placeholder ([363a686](https://github.com/ecomplus/storefront/commit/363a686bc985b54658cf649f07ea1ee1a898ceb2))
|
|
942
|
+
- **cart:** skip some components when cart has any valid item ([ad486bd](https://github.com/ecomplus/storefront/commit/ad486bdb74aa164d54c405d1eee8821d9497e51b))
|
|
151
943
|
|
|
944
|
+
### Features
|
|
152
945
|
|
|
946
|
+
- **cart-item:** check item stock and show properly message ([654127b](https://github.com/ecomplus/storefront/commit/654127b5e3e73f6c18523cde8cd68335a647f473))
|
|
153
947
|
|
|
948
|
+
### Performance Improvements
|
|
154
949
|
|
|
950
|
+
- **product-data:** unset/delete inventory_records and price_change_records when not needed ([d7c6777](https://github.com/ecomplus/storefront/commit/d7c6777573faafd5890ac8c4eae1f6ac68e413aa))
|
|
155
951
|
|
|
156
|
-
# [1.0.0-beta.
|
|
952
|
+
# [1.0.0-beta.48](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.47...@ecomplus/storefront-components@1.0.0-beta.48) (2020-08-19)
|
|
953
|
+
|
|
954
|
+
### Bug Fixes
|
|
955
|
+
|
|
956
|
+
- **deps:** update @ecomplus/shoppint-cart to ^2.1.7 ([beb198b](https://github.com/ecomplus/storefront/commit/beb198be29a4f689450cf0d2743b6ebcafce5a23))
|
|
957
|
+
|
|
958
|
+
### Features
|
|
959
|
+
|
|
960
|
+
- **product:** handle production time info ([#273](https://github.com/ecomplus/storefront/issues/273)) ([1348b03](https://github.com/ecomplus/storefront/commit/1348b0352fd69cb01b90a232293e8c1336f826dd))
|
|
157
961
|
|
|
962
|
+
# [1.0.0-beta.47](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.46...@ecomplus/storefront-components@1.0.0-beta.47) (2020-08-17)
|
|
963
|
+
|
|
964
|
+
### Features
|
|
965
|
+
|
|
966
|
+
- **search-engine:** add `loadMoreSelector` to move lozad observed el with portal ([e142729](https://github.com/ecomplus/storefront/commit/e142729b1a345a672dbd9a27e45a1cc2e9216c31))
|
|
967
|
+
|
|
968
|
+
# [1.0.0-beta.46](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.45...@ecomplus/storefront-components@1.0.0-beta.46) (2020-08-14)
|
|
158
969
|
|
|
159
970
|
### Bug Fixes
|
|
160
971
|
|
|
161
|
-
|
|
162
|
-
* **search-engine:** fix preseted brands/categories options (filterable) ([cbb286a](https://github.com/ecomplus/storefront/commit/cbb286a2f47de05a4595d488fe9b042a53ced432))
|
|
972
|
+
- **account-form:** validating phone number country code (int) ([b999e83](https://github.com/ecomplus/storefront/commit/b999e83e3296dc5bd786902b650ddc750abbebf1))
|
|
163
973
|
|
|
974
|
+
### Features
|
|
164
975
|
|
|
976
|
+
- **product-card:** add `transitionClass` prop ([a68f712](https://github.com/ecomplus/storefront/commit/a68f712ae05bde2999e3f0dbbc664914508bb6d6))
|
|
977
|
+
- **product-gallery:** handle first picture pre loaded without reload ([96ab0d8](https://github.com/ecomplus/storefront/commit/96ab0d8e46e04b915c4b05a031951ff844faf775))
|
|
978
|
+
- **search-engine:** add boolean prop (true by default) ([06b4585](https://github.com/ecomplus/storefront/commit/06b45851a6948cd05e5ce7f4e19c580ad039c888))
|
|
979
|
+
- **the-product:** handlers for painless hydration using portals ([59999eb](https://github.com/ecomplus/storefront/commit/59999eb1bf21e91fe4ba04d55c1e2679528a0afe))
|
|
165
980
|
|
|
981
|
+
# [1.0.0-beta.45](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.44...@ecomplus/storefront-components@1.0.0-beta.45) (2020-08-12)
|
|
166
982
|
|
|
983
|
+
### Bug Fixes
|
|
167
984
|
|
|
168
|
-
|
|
985
|
+
- **account-form:** fixing full name string (sequential spaces) ([04b46bf](https://github.com/ecomplus/storefront/commit/04b46bf363039bdc1b1975628fb5243e64054ab5))
|
|
986
|
+
- **address-form:** better handling zip code and address fetch ([38f3577](https://github.com/ecomplus/storefront/commit/38f35778b1cdf894e78eb8662ebf4b694898f81c))
|
|
987
|
+
- **deps:** update @ecomplus/shopping-cart to ^2.1.6 ([499004b](https://github.com/ecomplus/storefront/commit/499004bbb1442b5852f5b2099711340064f8d863))
|
|
988
|
+
- **product-variations:** ensure no option is selected by default ([0598f07](https://github.com/ecomplus/storefront/commit/0598f07ea492dc3b339e4785a65ac47f1330b971))
|
|
169
989
|
|
|
990
|
+
# [1.0.0-beta.44](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.43...@ecomplus/storefront-components@1.0.0-beta.44) (2020-08-11)
|
|
170
991
|
|
|
171
992
|
### Bug Fixes
|
|
172
993
|
|
|
173
|
-
|
|
994
|
+
- **account-form:** fix parting full name str to name object (ensure familly name) ([d938d07](https://github.com/ecomplus/storefront/commit/d938d075238f4ad6f67865b522020dc32cea3311))
|
|
174
995
|
|
|
996
|
+
# [1.0.0-beta.43](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.42...@ecomplus/storefront-components@1.0.0-beta.43) (2020-08-10)
|
|
175
997
|
|
|
176
998
|
### Features
|
|
177
999
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
* **link:** expose ALink component (was internal) ([b8663bf](https://github.com/ecomplus/storefront/commit/b8663bf34ef622b1ce071cc7efb3971248a78e37))
|
|
183
|
-
* **prices:** showing installments option even with interest ([eaf702f](https://github.com/ecomplus/storefront/commit/eaf702fe1525bba47c391d0f2f386deff9092978))
|
|
1000
|
+
- **account-form:** better ux response on submit ([0829f2d](https://github.com/ecomplus/storefront/commit/0829f2d1e1a7b69bd42d8f9d6c6b94bbd07a615e))
|
|
1001
|
+
- **shipping-calculator:** add `shippingAppsSort` prop ([f21d7e5](https://github.com/ecomplus/storefront/commit/f21d7e5bb625ee99ecbd1693825a7ddcdd88b906))
|
|
1002
|
+
|
|
1003
|
+
# [1.0.0-beta.42](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.41...@ecomplus/storefront-components@1.0.0-beta.42) (2020-08-04)
|
|
184
1004
|
|
|
1005
|
+
### Bug Fixes
|
|
1006
|
+
|
|
1007
|
+
- **account-addresses:** passing customer full name to address recipient ([#278](https://github.com/ecomplus/storefront/issues/278)) ([1000832](https://github.com/ecomplus/storefront/commit/100083258c5024a59c37795ac7785fdb55ea7542))
|
|
1008
|
+
- **account-addresses:** prevent exceed maximum number of characters in the recipient's name ([3d99fb0](https://github.com/ecomplus/storefront/commit/3d99fb0d8d6b7005fb9089c4a56d478fba7736df))
|
|
1009
|
+
- **discount-applier:** always sending custom on params (if logged) ([5db55bc](https://github.com/ecomplus/storefront/commit/5db55bca522c3a3ca76e466d3ce99b3f3604a732))
|
|
1010
|
+
- **shipping-calculator:** sort shipping services by price and delivery time ([#280](https://github.com/ecomplus/storefront/issues/280)) ([bb08539](https://github.com/ecomplus/storefront/commit/bb08539e996e07453e0b4c7a22465c92ceafda87))
|
|
185
1011
|
|
|
1012
|
+
# [1.0.0-beta.41](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.40...@ecomplus/storefront-components@1.0.0-beta.41) (2020-07-29)
|
|
186
1013
|
|
|
1014
|
+
### Bug Fixes
|
|
187
1015
|
|
|
1016
|
+
- **deps:** update @ecomplus/client to ^2.1.0 ([95139fe](https://github.com/ecomplus/storefront/commit/95139fef754897d7618f5d81fed00493f93eae17))
|
|
1017
|
+
- **input-phone:** minor pattern fix (br ddd) ([602e795](https://github.com/ecomplus/storefront/commit/602e795a0925aad65ec424d293c539c20a8722fe))
|
|
188
1018
|
|
|
189
|
-
# [1.0.0-beta.
|
|
1019
|
+
# [1.0.0-beta.40](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.39...@ecomplus/storefront-components@1.0.0-beta.40) (2020-07-20)
|
|
1020
|
+
|
|
1021
|
+
### Bug Fixes
|
|
1022
|
+
|
|
1023
|
+
- **shipping-calculator:** fix handling retry when no valid shipping options ([837e9cf](https://github.com/ecomplus/storefront/commit/837e9cf4fe60f32bdfd971ed9c81aa64719d601a))
|
|
1024
|
+
|
|
1025
|
+
# [1.0.0-beta.39](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.38...@ecomplus/storefront-components@1.0.0-beta.39) (2020-07-17)
|
|
190
1026
|
|
|
1027
|
+
### Bug Fixes
|
|
1028
|
+
|
|
1029
|
+
- **account-form:** regex pattern for email input (check domain) ([1f77c2a](https://github.com/ecomplus/storefront/commit/1f77c2ae1cc1691f9396c6da0babb22b8ec4ccc4))
|
|
1030
|
+
- **deps:** update @ecomplus/i18n to v1.14.0 ([ea9f37c](https://github.com/ecomplus/storefront/commit/ea9f37c80401653eee18c7c9c2b384935c1ed298))
|
|
1031
|
+
- **deps:** update all non-major dependencies ([#265](https://github.com/ecomplus/storefront/issues/265)) ([f85b9be](https://github.com/ecomplus/storefront/commit/f85b9bea392fd7107cd2dcd8b42e5b09b44663a3))
|
|
1032
|
+
|
|
1033
|
+
# [1.0.0-beta.38](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.37...@ecomplus/storefront-components@1.0.0-beta.38) (2020-07-03)
|
|
1034
|
+
|
|
1035
|
+
### Bug Fixes
|
|
1036
|
+
|
|
1037
|
+
- **cart-item:** check min quantity not gt max before fixing current qnt ([ceaba7b](https://github.com/ecomplus/storefront/commit/ceaba7b12a9fb65d853c698596535ac49932891c))
|
|
1038
|
+
|
|
1039
|
+
# [1.0.0-beta.37](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.36...@ecomplus/storefront-components@1.0.0-beta.37) (2020-07-03)
|
|
191
1040
|
|
|
192
1041
|
### Bug Fixes
|
|
193
1042
|
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
* **discount-applier:** fix emitted events (kebab case) ([c03cfac](https://github.com/ecomplus/storefront/commit/c03cfaca0ff39576614ffcb82f914d9f3c48205b))
|
|
198
|
-
* **discount-applier:** import alert component (internal) ([1b1c120](https://github.com/ecomplus/storefront/commit/1b1c12079e4c4f14b799f6073199d2c39a09f6b5))
|
|
199
|
-
* **prices:** handle discount option without label ([417e8ee](https://github.com/ecomplus/storefront/commit/417e8eed212765abcca1ad6f6a3cce2cf15aab06))
|
|
200
|
-
* **product-card:** fix handling product with one picture only ([53b8c1a](https://github.com/ecomplus/storefront/commit/53b8c1a9c72e26314e0af621bc6ee4194e8b0a5a))
|
|
201
|
-
* **the-product:** minor style fixes for stock alert ([2c3c5c8](https://github.com/ecomplus/storefront/commit/2c3c5c8d2371e4e2f75bb01ef60f20e4f9b7bdf3))
|
|
1043
|
+
- **cart-item:** fix handling optionals min/max quantity ([7d3acd6](https://github.com/ecomplus/storefront/commit/7d3acd6f144be0bc460b9d75478de820ae8defa2))
|
|
1044
|
+
|
|
1045
|
+
# [1.0.0-beta.36](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.35...@ecomplus/storefront-components@1.0.0-beta.36) (2020-07-03)
|
|
202
1046
|
|
|
1047
|
+
### Bug Fixes
|
|
1048
|
+
|
|
1049
|
+
- **cart-item:** prevent so much quantity options (with max quantity) ([f532b72](https://github.com/ecomplus/storefront/commit/f532b721790e02c68dca4c962f342a456cbaeb55))
|
|
1050
|
+
- **picture:** fallback for legacy storage api v1 ([926f444](https://github.com/ecomplus/storefront/commit/926f4445e4dd55a3544d49e6db17f2c77c8d2f4f))
|
|
203
1051
|
|
|
204
1052
|
### Features
|
|
205
1053
|
|
|
206
|
-
|
|
207
|
-
* **discount-applier:** add DiscountApplier component :tada: ([f4f1eb3](https://github.com/ecomplus/storefront/commit/f4f1eb34d464dd789dde6e43d0cb33daaed71727))
|
|
208
|
-
* **input-doc-number:** add InputDocNumber component :tada: ([f8873f7](https://github.com/ecomplus/storefront/commit/f8873f723ecea52d6b13ae1cc712fc78f1bc0b5d))
|
|
209
|
-
* **login-block:** add new LoginBlock component :tada: ([3e72b87](https://github.com/ecomplus/storefront/commit/3e72b87d482e93416c274ee3993fb9ebc26de59b))
|
|
1054
|
+
- **account-form:** create new AccountForm component ([#261](https://github.com/ecomplus/storefront/issues/261)) ([0b1e319](https://github.com/ecomplus/storefront/commit/0b1e31960ce020fd4d1a267ce78dab9b911635b5))
|
|
210
1055
|
|
|
1056
|
+
# [1.0.0-beta.35](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.34...@ecomplus/storefront-components@1.0.0-beta.35) (2020-07-02)
|
|
211
1057
|
|
|
1058
|
+
### Bug Fixes
|
|
212
1059
|
|
|
1060
|
+
- **cart-item:** ignore 11+ quantity option if max quantity lt 10 ([29b5159](https://github.com/ecomplus/storefront/commit/29b5159338334cd6fcdbcc13513526e725d8a3ba))
|
|
1061
|
+
- **deps:** fix @ecomplus/shopping-cart to v2.1.5 ([9d5d68c](https://github.com/ecomplus/storefront/commit/9d5d68c2218226d5984f648fb7f6914c93e4ec20))
|
|
1062
|
+
- **discount-applier:** fix setting quantity when adding freebie item ([27224c3](https://github.com/ecomplus/storefront/commit/27224c3a42de01596feb87a53fedd674874b8d86))
|
|
213
1063
|
|
|
1064
|
+
# [1.0.0-beta.34](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.33...@ecomplus/storefront-components@1.0.0-beta.34) (2020-06-30)
|
|
214
1065
|
|
|
215
|
-
|
|
1066
|
+
### Bug Fixes
|
|
1067
|
+
|
|
1068
|
+
- **deps:** update @ecomplus/shopping-cart to v2.1.2 ([d4fb6b0](https://github.com/ecomplus/storefront/commit/d4fb6b032b82519f7e3b433fd6faad3715746fbf))
|
|
1069
|
+
- **deps:** update @ecomplus/shopping-cart to v2.1.3 ([0a71d3b](https://github.com/ecomplus/storefront/commit/0a71d3b161b8f2b4258ec72df0772a5ac9e8b3c0))
|
|
1070
|
+
- **input-doc-number:** valid cpf/cnpj only when input is filled ([9c04909](https://github.com/ecomplus/storefront/commit/9c049093d21684e01bf9396cb902f62dc10f88a6))
|
|
1071
|
+
|
|
1072
|
+
### Features
|
|
216
1073
|
|
|
1074
|
+
- **account-addresses:** add new AccountAddresses component :tada: ([#256](https://github.com/ecomplus/storefront/issues/256)) ([a37811e](https://github.com/ecomplus/storefront/commit/a37811e58cb810d1295cccba4606a8f536131b7b))
|
|
1075
|
+
- **input-doc-number:** checking br cpf/cnpj ([067d398](https://github.com/ecomplus/storefront/commit/067d3981536aa979777944390ac0c94d59f75d36))
|
|
1076
|
+
|
|
1077
|
+
# [1.0.0-beta.33](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.32...@ecomplus/storefront-components@1.0.0-beta.33) (2020-06-25)
|
|
217
1078
|
|
|
218
1079
|
### Bug Fixes
|
|
219
1080
|
|
|
220
|
-
|
|
1081
|
+
- **scss:** minor fixes for @ecomplus/storefront v5.9.0 ([6fea498](https://github.com/ecomplus/storefront/commit/6fea4982b7086f03217b4c516267849abd3918a0))
|
|
221
1082
|
|
|
1083
|
+
### Features
|
|
222
1084
|
|
|
1085
|
+
- **the-cart:** add TheCart component ([#248](https://github.com/ecomplus/storefront/issues/248)) ([2116548](https://github.com/ecomplus/storefront/commit/2116548faad452acfd2f08786bb68e4645bc1d26)), closes [#182](https://github.com/ecomplus/storefront/issues/182)
|
|
223
1086
|
|
|
1087
|
+
# [1.0.0-beta.32](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.31...@ecomplus/storefront-components@1.0.0-beta.32) (2020-06-21)
|
|
224
1088
|
|
|
1089
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
225
1090
|
|
|
226
|
-
# [1.0.0-beta.
|
|
1091
|
+
# [1.0.0-beta.31](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.30...@ecomplus/storefront-components@1.0.0-beta.31) (2020-06-21)
|
|
1092
|
+
|
|
1093
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
1094
|
+
|
|
1095
|
+
# [1.0.0-beta.30](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.29...@ecomplus/storefront-components@1.0.0-beta.30) (2020-06-18)
|
|
1096
|
+
|
|
1097
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
1098
|
+
|
|
1099
|
+
# [1.0.0-beta.29](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.28...@ecomplus/storefront-components@1.0.0-beta.29) (2020-06-18)
|
|
1100
|
+
|
|
1101
|
+
### Bug Fixes
|
|
227
1102
|
|
|
1103
|
+
- **deps:** update all non-major dependencies ([#251](https://github.com/ecomplus/storefront/issues/251)) ([d08be72](https://github.com/ecomplus/storefront/commit/d08be7258f1f0d55f2d6b6b53fd3f5fb1b6a4bbe))
|
|
1104
|
+
|
|
1105
|
+
# [1.0.0-beta.28](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.27...@ecomplus/storefront-components@1.0.0-beta.28) (2020-06-10)
|
|
228
1106
|
|
|
229
1107
|
### Bug Fixes
|
|
230
1108
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
* **instant-search:** properly set input value before parent form submit ([81199a4](https://github.com/ecomplus/storefront/commit/81199a4048cbc8ba8b0627df6c023a8870f64619))
|
|
236
|
-
* **product-card:** ensure picture max width ([5e4c911](https://github.com/ecomplus/storefront/commit/5e4c911ee22625c74e9b12b4ef2f87f3224b452c))
|
|
237
|
-
* **product-card:** ensure product name block box sizing ([f92abd5](https://github.com/ecomplus/storefront/commit/f92abd59959dad76a9b92d6c3041c20300f04777))
|
|
238
|
-
* **product-variations:** fix scss class name and minor style fixes ([c06e527](https://github.com/ecomplus/storefront/commit/c06e527510fc6f0ee9f55e955c7a34e6cdb1c5b8))
|
|
1109
|
+
- **cart-item:** disable input (quantity edit) if no price ([cc8d8e4](https://github.com/ecomplus/storefront/commit/cc8d8e49345c1b31eb97dcf875a789400176d8b1))
|
|
1110
|
+
- **deps:** update @ecomplus/i18n to v1.12.0 ([eadefea](https://github.com/ecomplus/storefront/commit/eadefea96ee224f0d403686b3c8ff6ca574a6b50))
|
|
1111
|
+
- **deps:** update all non-major dependencies ([#249](https://github.com/ecomplus/storefront/issues/249)) ([6762fac](https://github.com/ecomplus/storefront/commit/6762fac914c7a272e115ce79c497d918c8518416))
|
|
1112
|
+
- **i18n:** update (import) some new words ([e55bbfd](https://github.com/ecomplus/storefront/commit/e55bbfd321b6808970bdf81e2a19ec95c72e1a9f))
|
|
239
1113
|
|
|
1114
|
+
# [1.0.0-beta.27](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.26...@ecomplus/storefront-components@1.0.0-beta.27) (2020-06-06)
|
|
240
1115
|
|
|
241
1116
|
### Features
|
|
242
1117
|
|
|
243
|
-
|
|
244
|
-
|
|
1118
|
+
- **cart-item:** handling freebie items by flag ([2867e52](https://github.com/ecomplus/storefront/commit/2867e52d1af0e611a9b688fc710ceb62f749641e))
|
|
1119
|
+
- **discount-applier:** handle new 'canAddFreebieItems' prop ([5bfb52f](https://github.com/ecomplus/storefront/commit/5bfb52f61178c418f05d5f6a0fc610f326a192d4))
|
|
245
1120
|
|
|
1121
|
+
# [1.0.0-beta.26](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.25...@ecomplus/storefront-components@1.0.0-beta.26) (2020-06-03)
|
|
246
1122
|
|
|
1123
|
+
### Bug Fixes
|
|
247
1124
|
|
|
1125
|
+
- **search-engine:** check term string to handle suggestions ([89800f4](https://github.com/ecomplus/storefront/commit/89800f422cd211891001c4afeb509faf1b2d937b))
|
|
248
1126
|
|
|
1127
|
+
# [1.0.0-beta.25](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.24...@ecomplus/storefront-components@1.0.0-beta.25) (2020-06-03)
|
|
249
1128
|
|
|
250
|
-
|
|
1129
|
+
### Bug Fixes
|
|
1130
|
+
|
|
1131
|
+
- **product-card:** style fix for chrome mobile ([38d9415](https://github.com/ecomplus/storefront/commit/38d9415d91ac58ea5dcaafdafd3be78c0329f94b))
|
|
1132
|
+
- **search-engine:** fix handling suggestions with case insensitive terms ([c5d682b](https://github.com/ecomplus/storefront/commit/c5d682b10eedda7491bc93bdbe087ed7842a3bf5))
|
|
1133
|
+
|
|
1134
|
+
# [1.0.0-beta.24](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.23...@ecomplus/storefront-components@1.0.0-beta.24) (2020-06-02)
|
|
1135
|
+
|
|
1136
|
+
### Bug Fixes
|
|
1137
|
+
|
|
1138
|
+
- **recommended-items:** fix handling pagination (load more) ([d3e4802](https://github.com/ecomplus/storefront/commit/d3e4802bfc0d6ac4d428b1de07ca426277c3cf1f))
|
|
1139
|
+
- **recommended-items:** styles/props fixes for mobile ([c174b5d](https://github.com/ecomplus/storefront/commit/c174b5debcf7b804abe0996f010252bbd323038b))
|
|
1140
|
+
- **shipping-calculator:** preventing unecessary update fetch ([e718eff](https://github.com/ecomplus/storefront/commit/e718effb05e08e5d22e7a1db563937e1b2edf795))
|
|
1141
|
+
|
|
1142
|
+
### Features
|
|
1143
|
+
|
|
1144
|
+
- **product-card:** add 'installmentsOption' and 'discountOption' ([4e3217f](https://github.com/ecomplus/storefront/commit/4e3217f037e6a5a461cd7066d17134e2689564af))
|
|
251
1145
|
|
|
1146
|
+
# [1.0.0-beta.23](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.22...@ecomplus/storefront-components@1.0.0-beta.23) (2020-06-02)
|
|
252
1147
|
|
|
253
1148
|
### Bug Fixes
|
|
254
1149
|
|
|
255
|
-
|
|
1150
|
+
- **deps:** update @ecomplus/search-engine to v2.3.2 ([042f082](https://github.com/ecomplus/storefront/commit/042f082e89ee8c4627407d3bbf3e38804ef3fb92))
|
|
1151
|
+
- **discount-applier:** fix local amount calc ([1f6c38e](https://github.com/ecomplus/storefront/commit/1f6c38e4842a87f505cb692f519731b813b28eac))
|
|
1152
|
+
- **shipping-calculator:** ensure skip progress bar if no 50% for free ([841ca10](https://github.com/ecomplus/storefront/commit/841ca1090737de1bcbd722ee2be20329710600f3))
|
|
256
1153
|
|
|
1154
|
+
### Features
|
|
1155
|
+
|
|
1156
|
+
- **product:** add 'free shipping from' info ([397bad5](https://github.com/ecomplus/storefront/commit/397bad555a91095870fbc22588efa9fe830b00f1))
|
|
1157
|
+
- **product:** handling optional payment apps sort array ([550aad3](https://github.com/ecomplus/storefront/commit/550aad38fdff0fc7ef8ac57657af160be18b72ff))
|
|
1158
|
+
- **recommended-items:** new 'RecommendedItems' component :tada: ([083ddd7](https://github.com/ecomplus/storefront/commit/083ddd7d4b1b675103524753e86523fa625cc112))
|
|
1159
|
+
- **shipping-calculator:** add 'free-from-value' and 'option' slots ([6a91188](https://github.com/ecomplus/storefront/commit/6a911885b6440dd9041002304284416f992ffd27))
|
|
1160
|
+
|
|
1161
|
+
# [1.0.0-beta.22](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.21...@ecomplus/storefront-components@1.0.0-beta.22) (2020-05-28)
|
|
1162
|
+
|
|
1163
|
+
### Bug Fixes
|
|
1164
|
+
|
|
1165
|
+
- **variations:** fix skipping out of stock variation on select ([d38978a](https://github.com/ecomplus/storefront/commit/d38978aff4fa6ce98a91ed5b2c5b61f5d56f12a3))
|
|
1166
|
+
|
|
1167
|
+
# [1.0.0-beta.21](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.20...@ecomplus/storefront-components@1.0.0-beta.21) (2020-05-28)
|
|
257
1168
|
|
|
258
1169
|
### Features
|
|
259
1170
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
* **product-gallery:** supporting a preloaded first image with slot ([1a163ea](https://github.com/ecomplus/storefront/commit/1a163ea23a042207b954d35c0a4f7e2aba259135))
|
|
1171
|
+
- **product:** show success button when product on cart ([069e0c0](https://github.com/ecomplus/storefront/commit/069e0c09c6d97c98f5d62306ef8688d930c5de86))
|
|
1172
|
+
|
|
1173
|
+
# [1.0.0-beta.20](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.19...@ecomplus/storefront-components@1.0.0-beta.20) (2020-05-28)
|
|
264
1174
|
|
|
1175
|
+
### Bug Fixes
|
|
1176
|
+
|
|
1177
|
+
- **back-shopping:** 'continue shopping' button on quickview and cart page ([#241](https://github.com/ecomplus/storefront/issues/241)) ([47f1064](https://github.com/ecomplus/storefront/commit/47f1064b1640cfb95f486c6c6b9b8dd31decf321))
|
|
1178
|
+
- **deps:** update @ecomplus/i18n to v1.11.1 ([0d3a041](https://github.com/ecomplus/storefront/commit/0d3a041e4985555482ca5c3965149d28b439fbbf))
|
|
1179
|
+
- **deps:** update @ecomplus/search-engine to v2.3.1 ([471416d](https://github.com/ecomplus/storefront/commit/471416d80c4a54e1c7c5245bafbb9fb631321813))
|
|
1180
|
+
- **product:** fix using ProductGalery component (`current-slide`) ([8123d2f](https://github.com/ecomplus/storefront/commit/8123d2f73b142066baf04a022afaaed385c0b540))
|
|
1181
|
+
- **product:** handling payment with 'installments_option' ([095ca74](https://github.com/ecomplus/storefront/commit/095ca740a68e17d3a080246d10843a89bbed1dce))
|
|
1182
|
+
- **product:** minor fix for unselected variations message ([5a67b7d](https://github.com/ecomplus/storefront/commit/5a67b7d121a0bfba12489f74377efcea319b09c4))
|
|
1183
|
+
- **share:** stop forcing vertical margin ([1347012](https://github.com/ecomplus/storefront/commit/134701261d191f59e31b69ab8133d8f5ee793672))
|
|
265
1184
|
|
|
1185
|
+
### Features
|
|
266
1186
|
|
|
1187
|
+
- **payment-option:** add `installmentsOption` prop ([726b2de](https://github.com/ecomplus/storefront/commit/726b2de92f8c6019c6dfc953c33b4a34666d83b6))
|
|
1188
|
+
- **product:** add share buttons after buy button ([e707e3d](https://github.com/ecomplus/storefront/commit/e707e3d56d597d55f5d07a23a8c5a5c5c594b63f))
|
|
1189
|
+
- **product-variations:** better showing selected option value ([d111a44](https://github.com/ecomplus/storefront/commit/d111a449e4c6cfd3ccd97f51a30c85e258ddad5f))
|
|
1190
|
+
- **share:** add new AShare component :tada: ([2018619](https://github.com/ecomplus/storefront/commit/201861922b8355ee1e733d34d9ccf47ca8cfa1c9))
|
|
267
1191
|
|
|
1192
|
+
# [1.0.0-beta.19](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.18...@ecomplus/storefront-components@1.0.0-beta.19) (2020-05-26)
|
|
268
1193
|
|
|
269
|
-
|
|
1194
|
+
### Features
|
|
1195
|
+
|
|
1196
|
+
- **product-card:** accepting preseted picture size variables (!default) ([7f4de60](https://github.com/ecomplus/storefront/commit/7f4de605dcc367e812157f57a64d3c47015e7a6e))
|
|
1197
|
+
|
|
1198
|
+
# [1.0.0-beta.18](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.17...@ecomplus/storefront-components@1.0.0-beta.18) (2020-05-26)
|
|
270
1199
|
|
|
271
1200
|
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
272
1201
|
|
|
1202
|
+
# [1.0.0-beta.17](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.16...@ecomplus/storefront-components@1.0.0-beta.17) (2020-05-24)
|
|
1203
|
+
|
|
1204
|
+
### Bug Fixes
|
|
273
1205
|
|
|
1206
|
+
- **deps:** update @ecomplus/search-engine v2.3.0 ([f544a71](https://github.com/ecomplus/storefront/commit/f544a7146c60429709e5f18853df8808ae2aaf69))
|
|
1207
|
+
- **search-engine:** fix handling fixed categories filters ([f1fc397](https://github.com/ecomplus/storefront/commit/f1fc3977593b32509bd5634ee670a663639174be))
|
|
274
1208
|
|
|
1209
|
+
### Features
|
|
275
1210
|
|
|
1211
|
+
- **picture:** check configured default img size and container height ([eb7c8bb](https://github.com/ecomplus/storefront/commit/eb7c8bbe6e9041887f3209d5032cb736aec24fab))
|
|
276
1212
|
|
|
277
|
-
# [1.0.0-beta.
|
|
1213
|
+
# [1.0.0-beta.16](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.15...@ecomplus/storefront-components@1.0.0-beta.16) (2020-05-22)
|
|
1214
|
+
|
|
1215
|
+
### Bug Fixes
|
|
1216
|
+
|
|
1217
|
+
- **deps:** update @ecomplus/i18n to v1.11.0 ([07414f3](https://github.com/ecomplus/storefront/commit/07414f3d9e16238b87653df5bac1a601c7c25421))
|
|
1218
|
+
- **deps:** update @ecomplus/utils to v1.4.0 ([551e02e](https://github.com/ecomplus/storefront/commit/551e02e0e1e3bee6ce7002fd84d0c91f9cb8fb08))
|
|
1219
|
+
|
|
1220
|
+
### Features
|
|
1221
|
+
|
|
1222
|
+
- **seacrh-engine:** add/handle new 'defaultSort' prop ([1528d67](https://github.com/ecomplus/storefront/commit/1528d67f40109b0fb57b808201eb1b522966c7b2))
|
|
1223
|
+
- **search-engine:** add fixed right filter/loading button ([8ca2149](https://github.com/ecomplus/storefront/commit/8ca2149f3c76f44c40ff41e69108aee5653e1cd6))
|
|
1224
|
+
|
|
1225
|
+
# [1.0.0-beta.15](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.14...@ecomplus/storefront-components@1.0.0-beta.15) (2020-05-22)
|
|
1226
|
+
|
|
1227
|
+
### Bug Fixes
|
|
1228
|
+
|
|
1229
|
+
- **search-engine:** fix handling `isFixed${filter}` props ([8810fd2](https://github.com/ecomplus/storefront/commit/8810fd236973c6c8cb1c4168d9bc98eedc4bb481))
|
|
278
1230
|
|
|
1231
|
+
# [1.0.0-beta.14](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.13...@ecomplus/storefront-components@1.0.0-beta.14) (2020-05-21)
|
|
1232
|
+
|
|
1233
|
+
### Bug Fixes
|
|
1234
|
+
|
|
1235
|
+
- **deps:** update @ecomplus/passport-client to v1.0.10 ([ff72116](https://github.com/ecomplus/storefront/commit/ff721164afc001d02431601bd083c3beb417fada))
|
|
1236
|
+
- **discount-applier:** updating discoutn value when amout is changed ([afedcab](https://github.com/ecomplus/storefront/commit/afedcab50756c06812f0133322758cee749ad8a9))
|
|
1237
|
+
- **search-engine:** add 'isFixedBrands' and 'isFixedCategories' props ([8b9407b](https://github.com/ecomplus/storefront/commit/8b9407bc26407f8d0e425afba3480cbe5d1f1f92))
|
|
1238
|
+
|
|
1239
|
+
# [1.0.0-beta.13](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.12...@ecomplus/storefront-components@1.0.0-beta.13) (2020-05-16)
|
|
279
1240
|
|
|
280
1241
|
### Bug Fixes
|
|
281
1242
|
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
* **deps:** update @ecomplus/i18n to ^1.7.0 ([8c2b1c7](https://github.com/ecomplus/storefront/commit/8c2b1c70e1fb131b69e38eb9893a46fc6b2157d5))
|
|
288
|
-
* **deps:** update \@ecomplus/utils to v1.3.4 ([5b3b40a](https://github.com/ecomplus/storefront/commit/5b3b40a8f9d0d5154512a2401fff333239aabc1a))
|
|
289
|
-
* **deps:** update all non-major dependencies ([#171](https://github.com/ecomplus/storefront/issues/171)) ([d94b3fe](https://github.com/ecomplus/storefront/commit/d94b3fec0726e5d92becd3dd53f3833c77bb03cc))
|
|
290
|
-
* **instant-search:** mobile style fixes ([7be8752](https://github.com/ecomplus/storefront/commit/7be87528f8c1e027111117665f01c2f5e2939ce6))
|
|
291
|
-
* **js:** don't fire window directly to prevent ssr error ([7a248be](https://github.com/ecomplus/storefront/commit/7a248bee4b32dd2758ccb544633353a2a21d43c9))
|
|
292
|
-
* **links:** check if route path exists to use router-link ([974b1b0](https://github.com/ecomplus/storefront/commit/974b1b09e964ca3af5c0754b78f7656643ee449c))
|
|
293
|
-
* **links:** using internal VLink to support vue router ([0d60177](https://github.com/ecomplus/storefront/commit/0d60177bf29f7fb805b90b3cde498582e98a5e8a))
|
|
294
|
-
* **login-modal:** use VLink for account menu to support router ([6836215](https://github.com/ecomplus/storefront/commit/6836215047a60ddd9dd741c33a50cb74c223ee8d))
|
|
295
|
-
* **picture:** edit loading background, minor fix fade effect ([97fab5b](https://github.com/ecomplus/storefront/commit/97fab5b12c2238d25351b721c1f2d1aaf3c5b428))
|
|
296
|
-
* **picture:** fix handling fade effect on load ([a8493a2](https://github.com/ecomplus/storefront/commit/a8493a228d5d6e8767f3f8abd7d26e5557ca93c1))
|
|
297
|
-
* **picture:** properlly handling src as img object ([edf5eaf](https://github.com/ecomplus/storefront/commit/edf5eafb2bf91c89e2d846feb383dcaf228c0b5d))
|
|
298
|
-
* **picture:** set height only if el 'clientWidth' is set ([9553d7d](https://github.com/ecomplus/storefront/commit/9553d7d6cb2435e1fb2063d28867dd8b9b22e1ee))
|
|
299
|
-
* **product-card:** load secondary image on hover only, minor fade fix ([bccb1b3](https://github.com/ecomplus/storefront/commit/bccb1b320777f2a72b10c6539fb6f97c34499674))
|
|
300
|
-
* **product-card:** minor pictures overlap fix, offer stamp prettier ([036371b](https://github.com/ecomplus/storefront/commit/036371bf57617dccb0c2a897ee1d79eed3fda853))
|
|
301
|
-
* **product-card:** minor pictures style fixes ([ac91ea9](https://github.com/ecomplus/storefront/commit/ac91ea916ca599dea415c1c9da810d3ed2e455af))
|
|
302
|
-
* **product-gallery:** prevent errors with undefined product props ([2c38a60](https://github.com/ecomplus/storefront/commit/2c38a606c75c2d1e7c64cd7488edd606f33f3951))
|
|
303
|
-
* **props:** consistent boolean props naming ([69a7e6b](https://github.com/ecomplus/storefront/commit/69a7e6ba2748ea077563bde27774a4ad6b08576b))
|
|
1243
|
+
- **product:** move payment options to after buy button, start hide ([dd712e5](https://github.com/ecomplus/storefront/commit/dd712e5d1b304b45f727917908fde6e7b0ee7989))
|
|
1244
|
+
|
|
1245
|
+
# [1.0.0-beta.12](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.11...@ecomplus/storefront-components@1.0.0-beta.12) (2020-05-16)
|
|
1246
|
+
|
|
1247
|
+
### Bug Fixes
|
|
304
1248
|
|
|
1249
|
+
- **deps:** update @ecomplus/i18n to v1.10.1 ([143d40a](https://github.com/ecomplus/storefront/commit/143d40a4d2cc407882dc30caba67fddb4cc71373))
|
|
1250
|
+
- **deps:** update @ecomplus/search-engine to v2.2.1 ([3da510f](https://github.com/ecomplus/storefront/commit/3da510fbd6024ddd05e3ef9721d24d6e9a91473f))
|
|
1251
|
+
- **prices:** check installment/discount options from props separately ([e2e3356](https://github.com/ecomplus/storefront/commit/e2e3356df67aff655a6c2b277fca7485afca230e))
|
|
1252
|
+
- **prices:** minor template fix for compared prices ([971ee3c](https://github.com/ecomplus/storefront/commit/971ee3ce6ae591feea86a3e339ba89bca90abee1))
|
|
305
1253
|
|
|
306
1254
|
### Features
|
|
307
1255
|
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
* **picture:** add lozad options props, handle $img onload ([fd6368f](https://github.com/ecomplus/storefront/commit/fd6368fcac821ab1a11e8ea5f120f2a3cf3f78fb))
|
|
314
|
-
* **product-card:** add 'rating' scoped slot (empty by default) ([d558954](https://github.com/ecomplus/storefront/commit/d558954b2741bfe44f2ea2dff70cabb01b4be683))
|
|
315
|
-
* **product-card:** prop for heading tag, small product card variation ([ab90a7b](https://github.com/ecomplus/storefront/commit/ab90a7b34feca7e7aea0099760a3bdd2cacab16e))
|
|
316
|
-
* **product-card:** setting up ProductCard molecule component ([8b6230d](https://github.com/ecomplus/storefront/commit/8b6230d737deb06775aa452a5943786b5ae30c80))
|
|
317
|
-
* **product-gallery:** add ProductGallery component :tada: ([5f79b52](https://github.com/ecomplus/storefront/commit/5f79b52eb77a4dfb80a37a1283d13d7527969626))
|
|
318
|
-
* **product-variations:** add new ProductVariations component :tada: ([6ab36dc](https://github.com/ecomplus/storefront/commit/6ab36dc80ef48cad8b47353af99e8e60c81c9129))
|
|
319
|
-
* **search-engine:** complete SearchEngine component ([daea95a](https://github.com/ecomplus/storefront/commit/daea95ae3284dcae04d2c0f9e5fc9e0d05c8e93e))
|
|
320
|
-
* **search-engine:** handle load more on scroll (observer) ([a621a39](https://github.com/ecomplus/storefront/commit/a621a398c53bc4ba1cce63fff6ae539470c73237))
|
|
321
|
-
* **search-engine:** handle search fetch with queue for props watch ([4ff86fa](https://github.com/ecomplus/storefront/commit/4ff86fac198d2a1f357d31567bcd182a9ce617ce))
|
|
322
|
-
* **search-engine:** handling search filters with off canvas menu ([df47b2b](https://github.com/ecomplus/storefront/commit/df47b2b55868b85e2c83d52c8def6b498192a061))
|
|
323
|
-
* **search-engine:** render search engine nav for info, sort and filter ([1a18828](https://github.com/ecomplus/storefront/commit/1a1882866e3d9459a4c9195a24e840631fe6b963))
|
|
324
|
-
* **shipping-calculator:** add new ShippingCalculator component :tada: ([07a4094](https://github.com/ecomplus/storefront/commit/07a40945fff66cdf569775f7702a7f3417cedbda))
|
|
325
|
-
* **shipping-line:** new ShippingLine component :tada: ([89f8d80](https://github.com/ecomplus/storefront/commit/89f8d802b76b6182491d633eeda520036880141d))
|
|
326
|
-
* **the-product:** add new TheProduct component :tada: ([80141ca](https://github.com/ecomplus/storefront/commit/80141ca1023cbe6a66032515c14730b16ab44ed4))
|
|
1256
|
+
- **payment-option:** add new 'PaymentOption' component :tada: ([c4c001b](https://github.com/ecomplus/storefront/commit/c4c001b8a42797b1baef962f4c87d0f136ffc6d2))
|
|
1257
|
+
- **prices:** emit 'fix-price' to pass price with extra discount ([d854fb1](https://github.com/ecomplus/storefront/commit/d854fb1eabb4c2155d10570a58d11db192a4df32))
|
|
1258
|
+
- **product:** handling fixed price and list payment options ([03c3f62](https://github.com/ecomplus/storefront/commit/03c3f6205a2aa9ce2ebb905beb138ee176d0f6de))
|
|
1259
|
+
|
|
1260
|
+
# [1.0.0-beta.11](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.10...@ecomplus/storefront-components@1.0.0-beta.11) (2020-05-14)
|
|
327
1261
|
|
|
1262
|
+
### Bug Fixes
|
|
328
1263
|
|
|
1264
|
+
- **deps:** update @ecomplus/search-engine to v2.1.0 ([7458273](https://github.com/ecomplus/storefront/commit/745827394b3255105a666c55f829fd97c8845a10))
|
|
329
1265
|
|
|
1266
|
+
# [1.0.0-beta.10](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.9...@ecomplus/storefront-components@1.0.0-beta.10) (2020-05-12)
|
|
330
1267
|
|
|
1268
|
+
### Bug Fixes
|
|
331
1269
|
|
|
332
|
-
|
|
1270
|
+
- **prices:** fix literal installments text (upto x of y) ([61f9fca](https://github.com/ecomplus/storefront/commit/61f9fcae2ae87c6d552438747ffeb09a64f5f8d1))
|
|
1271
|
+
- **product-gallery:** fix opening zoom on excedent images button ([b44fbdb](https://github.com/ecomplus/storefront/commit/b44fbdba3e6f70978836c2865dab0eb328a26bf9))
|
|
1272
|
+
- **product-variations:** minor style fix for multiple grid options cases ([52cf785](https://github.com/ecomplus/storefront/commit/52cf7850e7b1a6a099e88b2c519f72bd908d4873))
|
|
1273
|
+
- **search-engine:** handle search engine sort order change ([#213](https://github.com/ecomplus/storefront/issues/213)) ([9879e69](https://github.com/ecomplus/storefront/commit/9879e694b63733d40b38d85e91efd6956dad1f65)), closes [#212](https://github.com/ecomplus/storefront/issues/212)
|
|
333
1274
|
|
|
1275
|
+
### Features
|
|
1276
|
+
|
|
1277
|
+
- **address-form:** add new 'AddressForm' component :tada: ([ebafa32](https://github.com/ecomplus/storefront/commit/ebafa32cdac6d70bd573578c14e8812be5937f88))
|
|
1278
|
+
- **product-variations:** handle 'maxOptionsBtns' prop ([73ec095](https://github.com/ecomplus/storefront/commit/73ec0953bd03fe2f23382fa084c7e0b208293be7))
|
|
1279
|
+
|
|
1280
|
+
# [1.0.0-beta.9](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.8...@ecomplus/storefront-components@1.0.0-beta.9) (2020-05-08)
|
|
1281
|
+
|
|
1282
|
+
### Bug Fixes
|
|
1283
|
+
|
|
1284
|
+
- **product-gallery:** open photoswipe with 1000x1000 if size undefined ([4a509e8](https://github.com/ecomplus/storefront/commit/4a509e8539fcda30d2495a88169950f5ab89d573))
|
|
334
1285
|
|
|
335
1286
|
### Features
|
|
336
1287
|
|
|
337
|
-
|
|
338
|
-
|
|
1288
|
+
- **cart-quickview:** show installment/discount options with APrice ([104154f](https://github.com/ecomplus/storefront/commit/104154f9198cf6fe0fe421befb81f6948c666572))
|
|
1289
|
+
|
|
1290
|
+
# [1.0.0-beta.8](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.7...@ecomplus/storefront-components@1.0.0-beta.8) (2020-05-05)
|
|
1291
|
+
|
|
1292
|
+
### Bug Fixes
|
|
1293
|
+
|
|
1294
|
+
- **deps:** update @ecomplus/i18n to v1.9.0 ([534a235](https://github.com/ecomplus/storefront/commit/534a23571d6d054a9f8186fb0d9e069dac78836f))
|
|
1295
|
+
- **input-phone:** minor fix for br phone number placeholder ([363a686](https://github.com/ecomplus/storefront/commit/363a686bc985b54658cf649f07ea1ee1a898ceb2))
|
|
339
1296
|
|
|
1297
|
+
# [1.0.0-beta.7](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.6...@ecomplus/storefront-components@1.0.0-beta.7) (2020-05-03)
|
|
340
1298
|
|
|
1299
|
+
### Bug Fixes
|
|
341
1300
|
|
|
1301
|
+
- **instant-search:** minor style fix for results count block ([24eeece](https://github.com/ecomplus/storefront/commit/24eeeced67d8edb8d3168af2dc356391e9a83899))
|
|
1302
|
+
- **search-engine:** fix preseted brands/categories options (filterable) ([cbb286a](https://github.com/ecomplus/storefront/commit/cbb286a2f47de05a4595d488fe9b042a53ced432))
|
|
342
1303
|
|
|
1304
|
+
# [1.0.0-beta.6](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.5...@ecomplus/storefront-components@1.0.0-beta.6) (2020-05-01)
|
|
343
1305
|
|
|
344
|
-
|
|
1306
|
+
### Bug Fixes
|
|
1307
|
+
|
|
1308
|
+
- **components:** fix importing and declaring alert/link components ([c7318c1](https://github.com/ecomplus/storefront/commit/c7318c1109df41a0a3a57d7f7ead6acd6736b957))
|
|
1309
|
+
|
|
1310
|
+
### Features
|
|
1311
|
+
|
|
1312
|
+
- **alert:** expose AAlert component (was internal) ([e4ba211](https://github.com/ecomplus/storefront/commit/e4ba21133f65fa12a142defd8892262c35e7dff1))
|
|
1313
|
+
- **input-date:** date input with format ([93a3d51](https://github.com/ecomplus/storefront/commit/93a3d516fae8faaacc15f1ef3cbca36cd87ea6d2))
|
|
1314
|
+
- **input-phone:** phone number input with format ([8561df0](https://github.com/ecomplus/storefront/commit/8561df0924a8bb2d025de66bc73dd8e0b7774e2e))
|
|
1315
|
+
- **input-zip-code:** zip code (CEP) input with format ([1969622](https://github.com/ecomplus/storefront/commit/196962266dac093e6225e5e93748e3c20a8de2e7))
|
|
1316
|
+
- **link:** expose ALink component (was internal) ([b8663bf](https://github.com/ecomplus/storefront/commit/b8663bf34ef622b1ce071cc7efb3971248a78e37))
|
|
1317
|
+
- **prices:** showing installments option even with interest ([eaf702f](https://github.com/ecomplus/storefront/commit/eaf702fe1525bba47c391d0f2f386deff9092978))
|
|
1318
|
+
|
|
1319
|
+
# [1.0.0-beta.5](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.4...@ecomplus/storefront-components@1.0.0-beta.5) (2020-04-23)
|
|
1320
|
+
|
|
1321
|
+
### Bug Fixes
|
|
1322
|
+
|
|
1323
|
+
- **deps:** update @ecomplus/i18n to 1.7.1 ([6a55c90](https://github.com/ecomplus/storefront/commit/6a55c90b370ae5e872ee96c0763febc94462484d))
|
|
1324
|
+
- **deps:** update @ecomplus/i18n to v1.8.0 ([63140b8](https://github.com/ecomplus/storefront/commit/63140b837537442f92532ae98a8e14caa55edc55))
|
|
1325
|
+
- **discount-applier:** fix el class names ([c011832](https://github.com/ecomplus/storefront/commit/c011832d7c28470b4f93b8df48968527a3ef7dcf))
|
|
1326
|
+
- **discount-applier:** fix emitted events (kebab case) ([c03cfac](https://github.com/ecomplus/storefront/commit/c03cfaca0ff39576614ffcb82f914d9f3c48205b))
|
|
1327
|
+
- **discount-applier:** import alert component (internal) ([1b1c120](https://github.com/ecomplus/storefront/commit/1b1c12079e4c4f14b799f6073199d2c39a09f6b5))
|
|
1328
|
+
- **prices:** handle discount option without label ([417e8ee](https://github.com/ecomplus/storefront/commit/417e8eed212765abcca1ad6f6a3cce2cf15aab06))
|
|
1329
|
+
- **product-card:** fix handling product with one picture only ([53b8c1a](https://github.com/ecomplus/storefront/commit/53b8c1a9c72e26314e0af621bc6ee4194e8b0a5a))
|
|
1330
|
+
- **the-product:** minor style fixes for stock alert ([2c3c5c8](https://github.com/ecomplus/storefront/commit/2c3c5c8d2371e4e2f75bb01ef60f20e4f9b7bdf3))
|
|
1331
|
+
|
|
1332
|
+
### Features
|
|
1333
|
+
|
|
1334
|
+
- **account:** add new TheAccount component :tada: ([6e11fd1](https://github.com/ecomplus/storefront/commit/6e11fd1aa8d99c951da908962063f8cab30457b1))
|
|
1335
|
+
- **discount-applier:** add DiscountApplier component :tada: ([f4f1eb3](https://github.com/ecomplus/storefront/commit/f4f1eb34d464dd789dde6e43d0cb33daaed71727))
|
|
1336
|
+
- **input-doc-number:** add InputDocNumber component :tada: ([f8873f7](https://github.com/ecomplus/storefront/commit/f8873f723ecea52d6b13ae1cc712fc78f1bc0b5d))
|
|
1337
|
+
- **login-block:** add new LoginBlock component :tada: ([3e72b87](https://github.com/ecomplus/storefront/commit/3e72b87d482e93416c274ee3993fb9ebc26de59b))
|
|
1338
|
+
|
|
1339
|
+
# [1.0.0-beta.4](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.3...@ecomplus/storefront-components@1.0.0-beta.4) (2020-04-16)
|
|
1340
|
+
|
|
1341
|
+
### Bug Fixes
|
|
1342
|
+
|
|
1343
|
+
- **product-card:** check window object to support ssr ([8dc2de2](https://github.com/ecomplus/storefront/commit/8dc2de21b657d7bf5ae5d0122bb1fb777bd1b50e))
|
|
1344
|
+
|
|
1345
|
+
# [1.0.0-beta.3](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.2...@ecomplus/storefront-components@1.0.0-beta.3) (2020-04-16)
|
|
1346
|
+
|
|
1347
|
+
### Bug Fixes
|
|
1348
|
+
|
|
1349
|
+
- **backdrop:** lock body scrool on backdrop visible ([16f6079](https://github.com/ecomplus/storefront/commit/16f60794c310cac4efb853dda68c9c363b2bf7d4))
|
|
1350
|
+
- **deps:** update all non-major dependencies ([#196](https://github.com/ecomplus/storefront/issues/196)) ([9a9c188](https://github.com/ecomplus/storefront/commit/9a9c18889a091c40064441e3079a9ed6d8905589))
|
|
1351
|
+
- **instant-search:** `autoFixTerm` to `autoFixScore` ([3ce8ef7](https://github.com/ecomplus/storefront/commit/3ce8ef70e724bac1af8342aed91fd5fc6c7d7ff5))
|
|
1352
|
+
- **instant-search:** fix triggering input focus ([5634d4c](https://github.com/ecomplus/storefront/commit/5634d4c9395764b79bc83661f4af36c7bf3dc46a))
|
|
1353
|
+
- **instant-search:** properly set input value before parent form submit ([81199a4](https://github.com/ecomplus/storefront/commit/81199a4048cbc8ba8b0627df6c023a8870f64619))
|
|
1354
|
+
- **product-card:** ensure picture max width ([5e4c911](https://github.com/ecomplus/storefront/commit/5e4c911ee22625c74e9b12b4ef2f87f3224b452c))
|
|
1355
|
+
- **product-card:** ensure product name block box sizing ([f92abd5](https://github.com/ecomplus/storefront/commit/f92abd59959dad76a9b92d6c3041c20300f04777))
|
|
1356
|
+
- **product-variations:** fix scss class name and minor style fixes ([c06e527](https://github.com/ecomplus/storefront/commit/c06e527510fc6f0ee9f55e955c7a34e6cdb1c5b8))
|
|
1357
|
+
|
|
1358
|
+
### Features
|
|
1359
|
+
|
|
1360
|
+
- **product:** add 'rating' slot ([c917288](https://github.com/ecomplus/storefront/commit/c917288292ac2e0fc032b3279c3f7bf6f5502aa9))
|
|
1361
|
+
- **product-card:** try some vars from window to customize card ([81fe202](https://github.com/ecomplus/storefront/commit/81fe202cdf3eda934053fb976a8e1c31b2cc4034))
|
|
1362
|
+
|
|
1363
|
+
# [1.0.0-beta.2](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.1...@ecomplus/storefront-components@1.0.0-beta.2) (2020-04-03)
|
|
1364
|
+
|
|
1365
|
+
### Bug Fixes
|
|
1366
|
+
|
|
1367
|
+
- **deps:** update @ecomplus/passport-client to v1.0.7 ([b2c624d](https://github.com/ecomplus/storefront/commit/b2c624d1780a6920d8227aa1e0e693630bfd2a92))
|
|
1368
|
+
|
|
1369
|
+
### Features
|
|
1370
|
+
|
|
1371
|
+
- **picture:** emit 'load' event when image is ready ([e5e568a](https://github.com/ecomplus/storefront/commit/e5e568a1818226e24a9f533ca8b8e1b3f2e948ff))
|
|
1372
|
+
- **product:** add some slots common for product page and ssr ([4aaf96d](https://github.com/ecomplus/storefront/commit/4aaf96d427315b0771dbe8ae0f468c9e9c08b30a))
|
|
1373
|
+
- **product-card:** add header, title and buy-buttont-content slots ([3818e20](https://github.com/ecomplus/storefront/commit/3818e2047dd6ef026ec6dab662f526ba0ff96542))
|
|
1374
|
+
- **product-gallery:** supporting a preloaded first image with slot ([1a163ea](https://github.com/ecomplus/storefront/commit/1a163ea23a042207b954d35c0a4f7e2aba259135))
|
|
1375
|
+
|
|
1376
|
+
# [1.0.0-beta.1](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@1.0.0-beta.0...@ecomplus/storefront-components@1.0.0-beta.1) (2020-03-30)
|
|
1377
|
+
|
|
1378
|
+
**Note:** Version bump only for package @ecomplus/storefront-components
|
|
1379
|
+
|
|
1380
|
+
# [1.0.0-beta.0](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@0.3.0...@ecomplus/storefront-components@1.0.0-beta.0) (2020-03-28)
|
|
345
1381
|
|
|
1382
|
+
### Bug Fixes
|
|
1383
|
+
|
|
1384
|
+
- **atoms:** minor style fixes for prices/picture atoms ([0aee47d](https://github.com/ecomplus/storefront/commit/0aee47d05118ef2519d2ce64d884d0c745fcd17d))
|
|
1385
|
+
- **backdrop:** ensure invisible backdrop is out of screen ([1dbb499](https://github.com/ecomplus/storefront/commit/1dbb499e2b2a9a66342a639b8fa7e6ab0fca193c))
|
|
1386
|
+
- **backdrop:** rename prop to `canAutoHide`, check if clickable ([2fc3399](https://github.com/ecomplus/storefront/commit/2fc3399a7ffa18f65201bed579b168cb483c71c4))
|
|
1387
|
+
- **backdrop:** sync visibility state by prop, also ensure fade in ([c2b4d92](https://github.com/ecomplus/storefront/commit/c2b4d92672cee1f32b5403d6105659a87d304c92))
|
|
1388
|
+
- **deps:** fix pkg deps, update root @ecomplus/i18n to v1.5.0 ([89699e2](https://github.com/ecomplus/storefront/commit/89699e22bcb8ea1fa36e64babcf10f41f4e9805b))
|
|
1389
|
+
- **deps:** update @ecomplus/i18n to ^1.7.0 ([8c2b1c7](https://github.com/ecomplus/storefront/commit/8c2b1c70e1fb131b69e38eb9893a46fc6b2157d5))
|
|
1390
|
+
- **deps:** update \@ecomplus/utils to v1.3.4 ([5b3b40a](https://github.com/ecomplus/storefront/commit/5b3b40a8f9d0d5154512a2401fff333239aabc1a))
|
|
1391
|
+
- **deps:** update all non-major dependencies ([#171](https://github.com/ecomplus/storefront/issues/171)) ([d94b3fe](https://github.com/ecomplus/storefront/commit/d94b3fec0726e5d92becd3dd53f3833c77bb03cc))
|
|
1392
|
+
- **instant-search:** mobile style fixes ([7be8752](https://github.com/ecomplus/storefront/commit/7be87528f8c1e027111117665f01c2f5e2939ce6))
|
|
1393
|
+
- **js:** don't fire window directly to prevent ssr error ([7a248be](https://github.com/ecomplus/storefront/commit/7a248bee4b32dd2758ccb544633353a2a21d43c9))
|
|
1394
|
+
- **links:** check if route path exists to use router-link ([974b1b0](https://github.com/ecomplus/storefront/commit/974b1b09e964ca3af5c0754b78f7656643ee449c))
|
|
1395
|
+
- **links:** using internal VLink to support vue router ([0d60177](https://github.com/ecomplus/storefront/commit/0d60177bf29f7fb805b90b3cde498582e98a5e8a))
|
|
1396
|
+
- **login-modal:** use VLink for account menu to support router ([6836215](https://github.com/ecomplus/storefront/commit/6836215047a60ddd9dd741c33a50cb74c223ee8d))
|
|
1397
|
+
- **picture:** edit loading background, minor fix fade effect ([97fab5b](https://github.com/ecomplus/storefront/commit/97fab5b12c2238d25351b721c1f2d1aaf3c5b428))
|
|
1398
|
+
- **picture:** fix handling fade effect on load ([a8493a2](https://github.com/ecomplus/storefront/commit/a8493a228d5d6e8767f3f8abd7d26e5557ca93c1))
|
|
1399
|
+
- **picture:** properlly handling src as img object ([edf5eaf](https://github.com/ecomplus/storefront/commit/edf5eafb2bf91c89e2d846feb383dcaf228c0b5d))
|
|
1400
|
+
- **picture:** set height only if el 'clientWidth' is set ([9553d7d](https://github.com/ecomplus/storefront/commit/9553d7d6cb2435e1fb2063d28867dd8b9b22e1ee))
|
|
1401
|
+
- **product-card:** load secondary image on hover only, minor fade fix ([bccb1b3](https://github.com/ecomplus/storefront/commit/bccb1b320777f2a72b10c6539fb6f97c34499674))
|
|
1402
|
+
- **product-card:** minor pictures overlap fix, offer stamp prettier ([036371b](https://github.com/ecomplus/storefront/commit/036371bf57617dccb0c2a897ee1d79eed3fda853))
|
|
1403
|
+
- **product-card:** minor pictures style fixes ([ac91ea9](https://github.com/ecomplus/storefront/commit/ac91ea916ca599dea415c1c9da810d3ed2e455af))
|
|
1404
|
+
- **product-gallery:** prevent errors with undefined product props ([2c38a60](https://github.com/ecomplus/storefront/commit/2c38a606c75c2d1e7c64cd7488edd606f33f3951))
|
|
1405
|
+
- **props:** consistent boolean props naming ([69a7e6b](https://github.com/ecomplus/storefront/commit/69a7e6ba2748ea077563bde27774a4ad6b08576b))
|
|
346
1406
|
|
|
347
1407
|
### Features
|
|
348
1408
|
|
|
349
|
-
|
|
1409
|
+
- **backdrop:** add ABackdrop atom component ([5008b26](https://github.com/ecomplus/storefront/commit/5008b26df789117ad4e439d4f484c84a3ef32948))
|
|
1410
|
+
- **cart-item:** add CartItem component :tada: ([37ca938](https://github.com/ecomplus/storefront/commit/37ca9387b805da85c8beba984ca3f3e71f7cce86))
|
|
1411
|
+
- **cart-quickview:** add CartQuickview component :tada: ([a6467ff](https://github.com/ecomplus/storefront/commit/a6467ffaa7f291cd223030c4f6cdd2c98a0b8d0c))
|
|
1412
|
+
- **instant-search:** setup InstantSearch component :tada: ([33f9fc0](https://github.com/ecomplus/storefront/commit/33f9fc042a2328ce207b55a7bf8f6f928732cdf8))
|
|
1413
|
+
- **login-modal:** add new LoginModal component :tada: ([75238ca](https://github.com/ecomplus/storefront/commit/75238cab394927767261444b1cdd4e2db19aa45e))
|
|
1414
|
+
- **picture:** add lozad options props, handle $img onload ([fd6368f](https://github.com/ecomplus/storefront/commit/fd6368fcac821ab1a11e8ea5f120f2a3cf3f78fb))
|
|
1415
|
+
- **product-card:** add 'rating' scoped slot (empty by default) ([d558954](https://github.com/ecomplus/storefront/commit/d558954b2741bfe44f2ea2dff70cabb01b4be683))
|
|
1416
|
+
- **product-card:** prop for heading tag, small product card variation ([ab90a7b](https://github.com/ecomplus/storefront/commit/ab90a7b34feca7e7aea0099760a3bdd2cacab16e))
|
|
1417
|
+
- **product-card:** setting up ProductCard molecule component ([8b6230d](https://github.com/ecomplus/storefront/commit/8b6230d737deb06775aa452a5943786b5ae30c80))
|
|
1418
|
+
- **product-gallery:** add ProductGallery component :tada: ([5f79b52](https://github.com/ecomplus/storefront/commit/5f79b52eb77a4dfb80a37a1283d13d7527969626))
|
|
1419
|
+
- **product-variations:** add new ProductVariations component :tada: ([6ab36dc](https://github.com/ecomplus/storefront/commit/6ab36dc80ef48cad8b47353af99e8e60c81c9129))
|
|
1420
|
+
- **search-engine:** complete SearchEngine component ([daea95a](https://github.com/ecomplus/storefront/commit/daea95ae3284dcae04d2c0f9e5fc9e0d05c8e93e))
|
|
1421
|
+
- **search-engine:** handle load more on scroll (observer) ([a621a39](https://github.com/ecomplus/storefront/commit/a621a398c53bc4ba1cce63fff6ae539470c73237))
|
|
1422
|
+
- **search-engine:** handle search fetch with queue for props watch ([4ff86fa](https://github.com/ecomplus/storefront/commit/4ff86fac198d2a1f357d31567bcd182a9ce617ce))
|
|
1423
|
+
- **search-engine:** handling search filters with off canvas menu ([df47b2b](https://github.com/ecomplus/storefront/commit/df47b2b55868b85e2c83d52c8def6b498192a061))
|
|
1424
|
+
- **search-engine:** render search engine nav for info, sort and filter ([1a18828](https://github.com/ecomplus/storefront/commit/1a1882866e3d9459a4c9195a24e840631fe6b963))
|
|
1425
|
+
- **shipping-calculator:** add new ShippingCalculator component :tada: ([07a4094](https://github.com/ecomplus/storefront/commit/07a40945fff66cdf569775f7702a7f3417cedbda))
|
|
1426
|
+
- **shipping-line:** new ShippingLine component :tada: ([89f8d80](https://github.com/ecomplus/storefront/commit/89f8d802b76b6182491d633eeda520036880141d))
|
|
1427
|
+
- **the-product:** add new TheProduct component :tada: ([80141ca](https://github.com/ecomplus/storefront/commit/80141ca1023cbe6a66032515c14730b16ab44ed4))
|
|
1428
|
+
|
|
1429
|
+
# [0.3.0](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@0.2.0...@ecomplus/storefront-components@0.3.0) (2020-02-27)
|
|
1430
|
+
|
|
1431
|
+
### Features
|
|
350
1432
|
|
|
1433
|
+
- **picture:** picture atom component (first one :tada:) ([f3a5a9e](https://github.com/ecomplus/storefront/commit/f3a5a9e31967667b222a52999829c671bffed52d))
|
|
1434
|
+
- **prices:** prices atom component ([7729340](https://github.com/ecomplus/storefront/commit/77293403387f78a00232207d6e6b7359af553588))
|
|
351
1435
|
|
|
1436
|
+
# [0.2.0](https://github.com/ecomplus/storefront/compare/@ecomplus/storefront-components@0.1.1...@ecomplus/storefront-components@0.2.0) (2020-02-13)
|
|
352
1437
|
|
|
1438
|
+
### Features
|
|
353
1439
|
|
|
1440
|
+
- **components:** setting up src and first component (picture) ([0f881ce](https://github.com/ecomplus/storefront/commit/0f881ced0454fd6e7b1ea9f5378575d99c650423))
|
|
354
1441
|
|
|
355
1442
|
## 0.1.1 (2020-02-06)
|
|
356
1443
|
|