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