@plurix/ecom-components 1.18.16-commerce → 1.18.17-commerce

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.
@@ -1,4 +1,15 @@
1
1
 
2
+ interface BannerImage {
3
+ src: string;
4
+ width: number;
5
+ height: number;
6
+ }
7
+ interface BannerData {
8
+ visibility: boolean;
9
+ mobile: BannerImage;
10
+ desktop: BannerImage;
11
+ alt: string;
12
+ }
2
13
  interface ClubCollectsProps {
3
14
  currentSeals?: number;
4
15
  nextSealProgress?: number;
@@ -6,6 +17,7 @@ interface ClubCollectsProps {
6
17
  sealGoalValue?: number;
7
18
  subtotalValue?: number;
8
19
  sealQuantityText?: string;
20
+ banner?: BannerData;
9
21
  }
10
- export declare const ClubCollects: ({ currentSeals, nextSealProgress, missingValue, sealGoalValue, subtotalValue, sealQuantityText }: ClubCollectsProps) => import("react/jsx-runtime").JSX.Element;
22
+ export declare const ClubCollects: ({ currentSeals, nextSealProgress, missingValue, sealGoalValue, subtotalValue, sealQuantityText, banner }: ClubCollectsProps) => import("react/jsx-runtime").JSX.Element;
11
23
  export {};
@@ -1,20 +1,21 @@
1
- import { jsxs as l, jsx as s } from "react/jsx-runtime";
2
- import { ClubCollectsIcon as n } from "../../assets/svgs/ClubCollectsIcon.js";
3
- /* empty css */const p = ({
1
+ import { jsxs as l, jsx as c } from "react/jsx-runtime";
2
+ import { ClubCollectsIcon as d } from "../../assets/svgs/ClubCollectsIcon.js";
3
+ /* empty css */const _ = ({
4
4
  currentSeals: e,
5
5
  nextSealProgress: o,
6
6
  missingValue: r,
7
- sealGoalValue: a,
8
- subtotalValue: i,
9
- sealQuantityText: c
7
+ sealGoalValue: t,
8
+ subtotalValue: a,
9
+ sealQuantityText: i,
10
+ banner: s
10
11
  }) => /* @__PURE__ */ l("div", { className: "clubCollects", children: [
11
12
  /* @__PURE__ */ l("div", { className: "clubCollects__header", children: [
12
- /* @__PURE__ */ s(n, {}),
13
- /* @__PURE__ */ s("span", { className: "clubCollects__logo", children: "Coleciona" })
13
+ /* @__PURE__ */ c(d, {}),
14
+ /* @__PURE__ */ c("span", { className: "clubCollects__logo", children: "Coleciona" })
14
15
  ] }),
15
16
  /* @__PURE__ */ l("div", { className: "clubCollects__content", children: [
16
17
  /* @__PURE__ */ l("p", { className: "clubCollects__current", children: [
17
- "garantidos no carrinho atual:",
18
+ "Garantidos no carrinho atual:",
18
19
  " ",
19
20
  /* @__PURE__ */ l("span", { children: [
20
21
  e,
@@ -23,7 +24,7 @@ import { ClubCollectsIcon as n } from "../../assets/svgs/ClubCollectsIcon.js";
23
24
  ] })
24
25
  ] }),
25
26
  /* @__PURE__ */ l("div", { className: "clubCollects__progressWrapper", children: [
26
- /* @__PURE__ */ s("div", { className: "clubCollects__progress", children: /* @__PURE__ */ s(
27
+ /* @__PURE__ */ c("div", { className: "clubCollects__progress", children: /* @__PURE__ */ c(
27
28
  "div",
28
29
  {
29
30
  className: "clubCollects__progressFill",
@@ -34,7 +35,7 @@ import { ClubCollectsIcon as n } from "../../assets/svgs/ClubCollectsIcon.js";
34
35
  ) }),
35
36
  /* @__PURE__ */ l("span", { className: "clubCollects__next", children: [
36
37
  "+",
37
- c,
38
+ i,
38
39
  " selo"
39
40
  ] })
40
41
  ] }),
@@ -42,7 +43,7 @@ import { ClubCollectsIcon as n } from "../../assets/svgs/ClubCollectsIcon.js";
42
43
  "Subtotal ",
43
44
  /* @__PURE__ */ l("span", { children: [
44
45
  "R$ ",
45
- Number(i).toFixed(2)
46
+ Number(a).toFixed(2)
46
47
  ] }),
47
48
  " faltam",
48
49
  " ",
@@ -52,18 +53,30 @@ import { ClubCollectsIcon as n } from "../../assets/svgs/ClubCollectsIcon.js";
52
53
  ] }),
53
54
  " para o próximo selo"
54
55
  ] }),
56
+ (s == null ? void 0 : s.visibility) && /* @__PURE__ */ c("div", { className: "clubCollects__banner", children: /* @__PURE__ */ l("picture", { children: [
57
+ /* @__PURE__ */ c("source", { media: "(min-width: 768px)", srcSet: s.desktop.src }),
58
+ /* @__PURE__ */ c(
59
+ "img",
60
+ {
61
+ src: s.mobile.src,
62
+ alt: s.alt,
63
+ width: s.mobile.width,
64
+ height: s.mobile.height
65
+ }
66
+ )
67
+ ] }) }),
55
68
  /* @__PURE__ */ l("p", { className: "clubCollects__rule", children: [
56
69
  "A cada ",
57
70
  /* @__PURE__ */ l("strong", { children: [
58
71
  "R$ ",
59
- a
72
+ t
60
73
  ] }),
61
74
  " em compras =",
62
75
  " ",
63
- /* @__PURE__ */ s("strong", { children: c })
76
+ /* @__PURE__ */ c("strong", { children: i })
64
77
  ] })
65
78
  ] })
66
79
  ] });
67
80
  export {
68
- p as ClubCollects
81
+ _ as ClubCollects
69
82
  };
@@ -1 +1 @@
1
- .clubCollects{background:#0f2144;border-radius:8px;padding:16px;max-width:330px;color:#fff}.clubCollects__header{display:flex;justify-content:center;align-items:center;margin-bottom:16px;gap:5px}.clubCollects__logo{font-size:16px;font-weight:600;color:#f4af25}.clubCollects__content{display:flex;flex-direction:column;gap:12px}.clubCollects__current{font-size:12px;font-weight:700;line-height:16px;margin:0;text-align:center}.clubCollects__current span{color:#f4af25;font-size:16px}.clubCollects__progressWrapper{display:flex;align-items:center;gap:8px}.clubCollects__progress{flex:1;height:6px;background:rgba(255,255,255,.2);border-radius:999px;overflow:hidden;position:relative}.clubCollects__progressFill{height:100%;border-radius:999px;background:#f4af25;transition:width .3s ease}.clubCollects__next{font-size:14px;font-weight:700;white-space:nowrap}.clubCollects__missing{font-size:12px;text-align:center;margin:0}.clubCollects__missing span{color:#f4af25;font-weight:700}.clubCollects__rule{text-align:center;font-size:12px;margin:0}.clubCollects__rule strong{font-weight:700}
1
+ .clubCollects{background:#0f2144;border-radius:8px;padding:16px;max-width:330px;color:#fff}.clubCollects__header{display:flex;justify-content:center;align-items:center;margin-bottom:16px;gap:5px}.clubCollects__logo{font-size:16px;font-weight:600;color:#f4af25}.clubCollects__content{display:flex;flex-direction:column;gap:12px}.clubCollects__current{font-size:12px;font-weight:700;line-height:16px;margin:0;text-align:center}.clubCollects__current span{color:#f4af25;font-size:16px}.clubCollects__progressWrapper{display:flex;align-items:center;gap:8px}.clubCollects__progress{flex:1;height:6px;background:rgba(255,255,255,.2);border-radius:999px;overflow:hidden;position:relative}.clubCollects__progressFill{height:100%;border-radius:999px;background:#f4af25;transition:width .3s ease}.clubCollects__next{font-size:14px;font-weight:700;white-space:nowrap}.clubCollects__missing{font-size:12px;text-align:center;margin:0}.clubCollects__missing span{color:#f4af25;font-weight:700}.clubCollects__rule{text-align:center;font-size:12px;margin:0}.clubCollects__rule strong{font-weight:700}.clubCollects__banner img{display:block;object-fit:contain;width:100%;height:100%}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@plurix/ecom-components",
3
3
  "author": "Plurix",
4
4
  "private": false,
5
- "version": "1.18.16-commerce",
5
+ "version": "1.18.17-commerce",
6
6
  "type": "module",
7
7
  "main": "dist/main.js",
8
8
  "types": "dist/main.d.ts",
package/CHANGELOG.md DELETED
@@ -1,553 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- ## [Unreleased]
9
-
10
- ## [1.17.1-commerce] - 2026-04-16
11
-
12
- - [COM-3559](https://dev.azure.com/Plurix/Digital/_workitems/edit/3559) - Change postal code variables are saved.
13
- - [COM-374](https://dev.azure.com/Plurix/Digital/_workitems/edit/374) - Added prop for the "add" button in the product cart.
14
-
15
- ## [1.16.5-commerce] - 2026-03-25
16
-
17
- - [COM-3393](https://dev.azure.com/Plurix/Digital/_workitems/edit/3393) - Updated product card; add buttons and unavailable buttons.only for Dom.
18
-
19
- ## [1.16.4-commerce] - 2026-02-23
20
-
21
- - [COM-3076](https://dev.azure.com/Plurix/Digital/_workitems/edit/3076) - Added background color to the description and changed the colors of the +friend badge to only for Dom.
22
-
23
- ## [1.16.2-commerce] - 2026-01-09
24
-
25
- - [COM-2434](https://dev.azure.com/Plurix/Digital/_workitems/edit/2434) - Repair tag discount and weigth in product card
26
- - [COM-2384](https://dev.azure.com/Plurix/Digital/_workitems/edit/2384) - Added white border as a variable in the product cart see more
27
- - [COM-2346](https://dev.azure.com/Plurix/Digital/_workitems/edit/2346) - Remove margin right on card for regionalization in store selection.
28
-
29
- ## [1.16.0-commerce] - 2025-12-11
30
-
31
- ### Added
32
-
33
- - [COM-2034](https://dev.azure.com/Plurix/Digital/_workitems/edit/2034) - Change order button has been fixed.
34
-
35
- ## [1.15.0-loyalty] - 2025-12-10
36
-
37
- ### Changed
38
-
39
- - [FIN-1524](https://dev.azure.com/Plurix/Digital/_workitems/edit/1524) - Requests are not defined by platform anymore
40
- - [FIN-1555](https://dev.azure.com/Plurix/Digital/_workitems/edit/1555) - Coupons UI
41
- - [FIN-1445](https://dev.azure.com/Plurix/Digital/_workitems/edit/1445) - Changed component vouchers redeemed to use in modal cart IO
42
-
43
- ### Added
44
-
45
- - [FIN-1447](https://dev.azure.com/Plurix/Digital/_workitems/edit/1447) - Migrated adaptive carousel and created component vouchers redeemed
46
- - [COM-1249](https://dev.azure.com/Plurix/Digital/_workitems/edit/1249) - Adjusting ChangeOrderModal component for accept graphql
47
- - [COM-2098](https://dev.azure.com/Plurix/Digital/_workitems/edit/2098) - Update api in coupons component
48
- - [COM-1249](https://dev.azure.com/Plurix/Digital/_workitems/edit/1249) - Adjusting ChangeOrderModal component for accept graphql
49
- - [COM-1332](https://dev.azure.com/Plurix/Digital/_workitems/edit/1332) - Adjusting Coupons component for accept graphql
50
-
51
- ### Added
52
-
53
- - [COM-1311](https://dev.azure.com/Plurix/Digital/_workitems/edit/1311) - Adjusting ProductCardPrice for new product API
54
-
55
- ## [1.14.2-commerce] - 2025-08-29
56
-
57
- ### Fixed
58
-
59
- - [COM-797](https://dev.azure.com/Plurix/Digital/_workitems/edit/797) - Adjusting ProductCardBadgeKg visibility
60
-
61
- ## [1.14.0-loyalty] - 2025-07-02
62
-
63
- ### Changed
64
-
65
- - [SHLO-465](https://dev.azure.com/Plurix/Digital/_workitems/edit/465) - Added product cards to intelligent and adjust general in card
66
-
67
- ### Fixed
68
-
69
- - [SHLO-497](https://dev.azure.com/Plurix/Digital/_workitems/edit/497) - Quantity selector width
70
- - [SHLO-524](https://dev.azure.com/Plurix/Digital/_workitems/edit/524) - Modal and onboarding css
71
-
72
- ## [1.13.0-club] - 2025-06-09
73
-
74
- ### Changed
75
-
76
- - [SL-2649](https://plurix.atlassian.net/browse/SL-2649) - Added ProductCardSeeMore horizontal Variant
77
-
78
- ### Added
79
-
80
- - [SL-2680](https://plurix.atlassian.net/browse/SL-2680) - Added new function in ProductCardSeeMore
81
- - [SL-2569](https://plurix.atlassian.net/browse/SL-2569) - New product card UI Horizontal
82
- - [SL-2529](https://plurix.atlassian.net/browse/SL-2529) - New product card UI Vertical
83
-
84
- ## [1.12.0-commerce] - 2025-06-04
85
-
86
- ## Added
87
-
88
- - [COM-138](https://dev.azure.com/Plurix/Digital/_workitems/edit/138) - Added Skeleton component to ecom-components
89
- - [COM-137](https://dev.azure.com/Plurix/Digital/_workitems/edit/137) - Added search suggestions component from acct repo to ecom-components
90
- - [COM-136](https://dev.azure.com/Plurix/Digital/_workitems/edit/136) - Adding ContactCard component
91
-
92
- ## [1.10.0-loyalty] - 2025-03-26
93
-
94
- - [SL-2446](https://plurix.atlassian.net/browse/SL-2446) - Added text '+ amigo' in cartClubAlert
95
-
96
- ## [1.9.0-commerce] - 2025-03-13
97
-
98
- - [SCS-2173](https://plurix.atlassian.net/browse/SCS-2173) - Added validation for low stock products without similar products
99
-
100
- ## [1.8.1-commerce] - 2025-02-11
101
-
102
- ### Added
103
-
104
- - [SL-2446](https://plurix.atlassian.net/browse/SL-2446) - [Coupons] - Added button in mobile version of coupons
105
-
106
- ## [1.7.0-loyalty] - 2024-02-10
107
-
108
- ### Added
109
-
110
- - [SHLO-242](https://plurix.atlassian.net/browse/SHLO-242) - [Coupons] - POST method in getCoupons api
111
-
112
- ## [1.6.0-commerce] - 2024-12-18
113
-
114
- ### Changed
115
-
116
- - [SCS-2154](https://plurix.atlassian.net/browse/SCS-2154) - Correcting prices and discount percentage in change order modal
117
-
118
- ## [1.5.0-club] - 2024-12-12
119
-
120
- ### Changed
121
-
122
- - [SL-2063](https://plurix.atlassian.net/browse/SL-2063) - Change tag p from (H1, H2, H3 e H4) for SEO in components coupons
123
-
124
- ## [1.4.0-commerce] - 2024-11-21
125
-
126
- ### Added
127
-
128
- - [SCS-1825](https://plurix.atlassian.net/browse/SCS-1825) - Change Order Modal
129
-
130
- ## [1.3.0-loyalty] - 2024-11-19
131
-
132
- ### Added
133
-
134
- - [SL-2399](https://plurix.atlassian.net/browse/SL-2399) - Bullet active status in carousel component
135
-
136
- ## [1.2.0-loyalty] - 2024-10-24
137
-
138
- ### Added
139
-
140
- - [SL-2078](https://plurix.atlassian.net/browse/SL-2078) - Adding props to carousel component
141
-
142
- ## [1.1.3-loyalty] - 2024-08-26
143
-
144
- ### Removed
145
-
146
- - Removed "div" reference from modal global css
147
- - Removed avenida validation to coupons
148
-
149
- ## [1.1.2-loyalty] - 2024-07-25
150
-
151
- ### Changed
152
-
153
- - [SL-1694](https://plurix.atlassian.net/browse/SL-1694) - Cupons modal changes
154
- - [SL-1715](https://plurix.atlassian.net/browse/SL-1715) - Onboarding modal padronization
155
- - [SL-1823](https://plurix.atlassian.net/browse/SL-1823) - Adding variable to hide header on Modal component
156
-
157
- ## [1.1.1-loyalty] - 2024-06-26
158
-
159
- - [SL-1698](https://plurix.atlassian.net/browse/SL-1698) - [Web] NoCoupons components changed
160
- - [SL-1856](https://plurix.atlassian.net/browse/SL-1856) - added window.reload in handler remove coupon in coupons component
161
-
162
- ## [1.1.0-loyalty] - 2024-06-13
163
-
164
- ### Changed
165
-
166
- - [SL-1700](https://plurix.atlassian.net/browse/SL-1700) - Coupons badge variables
167
-
168
- ## [1.0.0] - 2024-06-05
169
-
170
- ### Refactored
171
-
172
- - [SL-1720](https://plurix.atlassian.net/browse/SL-1720) - Restructured repository, uniting all packages into one called @plurix/ecom-components
173
-
174
- <!-- All records below are from when this repository contained several NPM packages, we are saving these registers -->
175
- <!-- Regionalization -->
176
-
177
- ## [16.0.0] - 2023-11-03
178
-
179
- ### Added
180
-
181
- - [SCS-641](https://plurix.atlassian.net/browse/SCS-911) - [Regionalization] - Initial Flow
182
- - [SCS-970](https://plurix.atlassian.net/browse/SCS-970) - [Regionalization] - Invalid shipping pickup option
183
-
184
- ### Changed
185
-
186
- - [SCS-980](https://plurix.atlassian.net/browse/SCS-980) - [Regionalization] - More infos view
187
- - [SCS-917](https://plurix.atlassian.net/browse/SCS-917) - [Regionalization] Region | Delivery Modall
188
-
189
- ## [0.15.1] - 2023-10-11
190
-
191
- ### Fixed
192
-
193
- - [SCS-1000](https://plurix.atlassian.net/browse/SCS-1000) - Correction in the regionalization modal scroll
194
-
195
- ## [0.15.0] - 2023-08-11
196
-
197
- ### Added
198
-
199
- - [SCS-641](https://plurix.atlassian.net/browse/SCS-449) - Custom cms pickup point text prop
200
-
201
- ## [0.14.0] - 2023-07-24
202
-
203
- ### Added
204
-
205
- - [SCS-449](https://plurix.atlassian.net/browse/SCS-449)
206
-
207
- ## [0.13.9] - 2022-11-01
208
-
209
- ### Changed
210
-
211
- - More times infos button style
212
-
213
- ## [0.13.8] - 2022-10-31
214
-
215
- ### Added
216
-
217
- - Pickup point validation
218
-
219
- ## [0.13.7] - 2022-10-31
220
-
221
- ### Changed
222
-
223
- - Optional chaining in filteredStores
224
-
225
- ## [0.13.6] - 2022-10-31
226
-
227
- ### Changed
228
-
229
- - Icons default color
230
-
231
- ## [0.13.4] - 2022-10-31
232
-
233
- ### Changed
234
-
235
- - Icons colors to variables
236
-
237
- ## [0.13.3] - 2022-10-25
238
-
239
- ### Added
240
-
241
- - Important in bagde text color
242
-
243
- ## [0.13.2] - 2022-10-20
244
-
245
- ### Change
246
-
247
- - New style to back button and title in all stores screen
248
-
249
- ## [0.13.1] - 2022-10-20
250
-
251
- ### Added
252
-
253
- - New price data
254
-
255
- ## [0.13.0] - 2022-10-17
256
-
257
- ### Change
258
-
259
- - Replace session storage to LocalStorage
260
-
261
- ## [0.12.1] - 2022-10-11
262
-
263
- ### Change
264
-
265
- - Replace Estimate and Pickup point set method
266
-
267
- ## [0.12.0] - 2022-10-10
268
-
269
- ### Change
270
-
271
- - Change cookies to sessions
272
-
273
- ## [0.11.2] - 2022-10-05
274
-
275
- ### Change
276
-
277
- - Validate condition
278
-
279
- ## [0.11.1] - 2022-09-23
280
-
281
- ### Change
282
-
283
- - Pickup name to pickup-in-point
284
-
285
- ## [0.11.0] - 2022-09-22
286
-
287
- ### Added
288
-
289
- - useEffect for pickuppoints state
290
-
291
- ## [0.10.1] - 2022-09-13
292
-
293
- ### Fixed
294
-
295
- - Align button on store-container
296
-
297
- ## [0.10.0] - 2022-09-12
298
-
299
- ### Added
300
-
301
- - [SHC-1130](https://smrholding.atlassian.net/browse/SHC-1130) - Variable colors
302
-
303
- ## [0.9.3] - 2022-09-08
304
-
305
- ### Added
306
-
307
- - Set postal code in pickup
308
-
309
- ## [0.9.2] - 2022-09-08
310
-
311
- ### Added
312
-
313
- - Pickup cookies and states
314
-
315
- ## [0.9.1] - 2022-09-08
316
-
317
- ### Fixed
318
-
319
- - types and setStates
320
-
321
- ## [0.9.0] - 2022-09-06
322
-
323
- ### Added
324
-
325
- - [SHC-1080](https://smrholding.atlassian.net/browse/SHC-1080) - Regionalize catalog
326
-
327
- ## [0.8.3] - 2022-08-31
328
-
329
- ### Added
330
-
331
- - Pickup Point name state
332
-
333
- ## [0.8.2] - 2022-08-31
334
-
335
- ### Change
336
-
337
- -Change the set method function
338
-
339
- ## [0.8.1] - 2022-08-26
340
-
341
- ### Change
342
-
343
- -Moved the "method" state to external receive.
344
- -Change badge css.
345
-
346
- ## [0.8.0] - 2022-08-26
347
-
348
- ### Added
349
-
350
- - [SHC-1062](https://smrholding.atlassian.net/browse/SHC-1062) - Pickup Point infos
351
-
352
- ## [0.7.0] - 2022-08-26
353
-
354
- ### Added
355
-
356
- - [SHC-1088](https://smrholding.atlassian.net/browse/SHC-1088) - Cart simulator context
357
-
358
- ## [0.6.2] - 2022-08-26
359
-
360
- ### Fixed
361
-
362
- - edit address button text
363
-
364
- ## [0.6.1] - 2022-08-26
365
-
366
- ### Fixed
367
-
368
- - close modal in navigation
369
-
370
- ## [0.6.0] - 2022-08-26
371
-
372
- ### Added
373
-
374
- - [SHC-1008](https://smrholding.atlassian.net/browse/SHC-1008) - Store choosed view
375
-
376
- ## [0.5.0] - 2022-08-25
377
-
378
- ### Added
379
-
380
- - Delivery props
381
-
382
- ## [0.4.0] - 2022-08-25
383
-
384
- ### Added
385
-
386
- - [SHC-906](https://smrholding.atlassian.net/browse/SHC-906) - Stores list
387
-
388
- ## [0.3.0] - 2022-08-24
389
-
390
- ### Added
391
-
392
- - [SHC-819](https://smrholding.atlassian.net/browse/SHC-819) - Pickup modal
393
-
394
- ### Changed
395
-
396
- - props
397
-
398
- ## [0.2.3] - 2022-08-19
399
-
400
- ### Changed
401
-
402
- - Fix Status import in context
403
-
404
- ## [0.2.2] - 2022-08-19
405
-
406
- ### Changed
407
-
408
- - Status in RegionalizationProps
409
-
410
- ## [0.2.1] - 2022-08-19
411
-
412
- ### Fixed
413
-
414
- - Export in index.ts
415
-
416
- ## [0.2.0] - 2022-08-19
417
-
418
- ### Changed
419
-
420
- - refactored and componentized
421
-
422
- ## [0.1.21] - 2022-06-27
423
-
424
- ### Changed
425
-
426
- - update start price function
427
-
428
- ### Fixed
429
-
430
- - Update input and button in initial view
431
-
432
- ## [0.1.20] - 2022-06-27
433
-
434
- ### Fixed
435
-
436
- - Update input and button in initial view
437
-
438
- ## [0.1.19] - 2022-06-27
439
-
440
- ### Fixed
441
-
442
- -Add mask in postal code input and minWidth
443
-
444
- ## [0.1.18] - 2022-06-20
445
-
446
- ### Fixed
447
-
448
- - style defaultStyleContainerSections renamed
449
-
450
- ## [0.1.17] - 2022-06-20
451
-
452
- ### Fixed
453
-
454
- - default styles in times section
455
-
456
- ## [0.1.15] - 2022-06-20
457
-
458
- ### Added
459
-
460
- - added validation in cep input
461
-
462
- ## [0.1.14] - 2022-06-15
463
-
464
- ### Removed
465
-
466
- - Import React in useWindowsDimensions hook
467
-
468
- ## [0.1.13] - 2022-06-15
469
-
470
- ### Added
471
-
472
- - Created button disabled style
473
-
474
- ## [0.1.12] - 2022-06-15
475
-
476
- ### Added
477
-
478
- - Changed to clean package
479
-
480
- <!-- Coupons -->
481
-
482
- ## [2.1.0] 2024-01-22
483
-
484
- ### Added
485
-
486
- - [SL-1323](https://plurix.atlassian.net/browse/SL-1323) - Prop to disable first empty modal
487
-
488
- ## [2.0.0] 2023-09-21
489
-
490
- ### Added
491
-
492
- - [SL-802](https://plurix.atlassian.net/browse/SL-802) - All custom coupons logic in the package
493
-
494
- ## [0.2.13] 2023-09-11
495
-
496
- ### Added
497
-
498
- - [SL-803](https://plurix.atlassian.net/browse/SL-803) - [PLP-COUPONS] - changed plp of coupons added some alert message and coupon notification
499
- - [SL-561](https://plurix.atlassian.net/browse/SL-561) - [PLP-COUPONS] - added tagging plp of coupons
500
-
501
- <!-- Carousel -->
502
-
503
- ## [1.4.4]
504
-
505
- - [SL-1227](https://plurix.atlassian.net/browse/SL-1227) - changed css to improve carousel layout
506
-
507
- <!-- Tour -->
508
-
509
- ## [1.0.0] - 2024-02-14
510
-
511
- ### Added
512
-
513
- - [SL-1328](https://plurix.atlassian.net/browse/SL-1328) - Tour package
514
-
515
- <!-- Onboarding -->
516
-
517
- ## [1.0.0] 2024-01-22
518
-
519
- ### Added
520
-
521
- - [SL-1318](https://plurix.atlassian.net/browse/SL-1318) - Onboarding package
522
-
523
- <!-- Club Cart Alert -->
524
-
525
- ## [0.4.0]
526
-
527
- ### Added
528
-
529
- - Update style and remove title
530
-
531
- ## [0.2.0] - 2022-11-17
532
-
533
- ### Added
534
-
535
- - Redirect links
536
-
537
- ## [0.1.2] - 2022-10-25
538
-
539
- ### Added
540
-
541
- - Scss returned and export a specific css file to Vtex IO
542
-
543
- ## [0.1.1] - 2022-10-24
544
-
545
- ### Changed
546
-
547
- - Scss to css and removed mocked text
548
-
549
- ## [0.1.0] - 2022-10-24
550
-
551
- ### Added
552
-
553
- - Component created