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