@ecomplus/storefront-components 1.0.0-beta.18 → 1.0.0-beta.181

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