@haus-storefront-react/order-lines 0.0.50 → 0.0.52-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +332 -261
- package/index.js +29 -29
- package/index.mjs +3002 -2896
- package/package.json +6 -6
- package/README.md +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,74 @@
|
|
|
1
|
+
## 0.0.52 (2025-12-11)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- enhance form handling and component props across various modules
|
|
6
|
+
- add CartPage component for managing shopping cart functionality
|
|
7
|
+
- add order confirmation route and related components
|
|
8
|
+
- add ProductBadge component for enhanced product presentation
|
|
9
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
10
|
+
|
|
11
|
+
### 🩹 Fixes
|
|
12
|
+
|
|
13
|
+
- update default minimum quantity to 0 in various components
|
|
14
|
+
|
|
15
|
+
### 🧱 Updated Dependencies
|
|
16
|
+
|
|
17
|
+
- Updated store/hooks to 0.0.52
|
|
18
|
+
- Updated core to 0.0.52
|
|
19
|
+
- Updated common/utils to 0.0.52
|
|
20
|
+
- Updated common/ui to 0.0.52
|
|
21
|
+
- Updated shared/types to 0.0.52
|
|
22
|
+
|
|
23
|
+
## 0.0.51-0 (2025-12-11)
|
|
24
|
+
|
|
25
|
+
### 🚀 Features
|
|
26
|
+
|
|
27
|
+
- enhance form handling and component props across various modules
|
|
28
|
+
- add CartPage component for managing shopping cart functionality
|
|
29
|
+
- add order confirmation route and related components
|
|
30
|
+
- add ProductBadge component for enhanced product presentation
|
|
31
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
32
|
+
|
|
33
|
+
### 🩹 Fixes
|
|
34
|
+
|
|
35
|
+
- update default minimum quantity to 0 in various components
|
|
36
|
+
|
|
37
|
+
### 🧱 Updated Dependencies
|
|
38
|
+
|
|
39
|
+
- Updated store/hooks to 0.0.51-0
|
|
40
|
+
- Updated core to 0.0.51-0
|
|
41
|
+
- Updated common/utils to 0.0.51-0
|
|
42
|
+
- Updated common/ui to 0.0.51-0
|
|
43
|
+
- Updated shared/types to 0.0.51-0
|
|
44
|
+
|
|
45
|
+
## 0.0.50 (2025-11-25)
|
|
46
|
+
|
|
47
|
+
### 🚀 Features
|
|
48
|
+
|
|
49
|
+
- enhance form handling and component props across various modules ([21edaa1](https://github.com/WeAreHausTech/haus-storefront-components/commit/21edaa1))
|
|
50
|
+
- add CartPage component for managing shopping cart functionality ([#30](https://github.com/WeAreHausTech/haus-storefront-components/pull/30))
|
|
51
|
+
- add order confirmation route and related components ([#24](https://github.com/WeAreHausTech/haus-storefront-components/pull/24))
|
|
52
|
+
- add ProductBadge component for enhanced product presentation ([#26](https://github.com/WeAreHausTech/haus-storefront-components/pull/26))
|
|
53
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments ([3991992](https://github.com/WeAreHausTech/haus-storefront-components/commit/3991992))
|
|
54
|
+
|
|
55
|
+
### 🩹 Fixes
|
|
56
|
+
|
|
57
|
+
- update default minimum quantity to 0 in various components ([f55bb70](https://github.com/WeAreHausTech/haus-storefront-components/commit/f55bb70))
|
|
58
|
+
|
|
59
|
+
### 🧱 Updated Dependencies
|
|
60
|
+
|
|
61
|
+
- Updated store/hooks to 0.0.50
|
|
62
|
+
- Updated core to 0.0.50
|
|
63
|
+
- Updated common/utils to 0.0.50
|
|
64
|
+
- Updated common/ui to 0.0.50
|
|
65
|
+
- Updated shared/types to 0.0.50
|
|
66
|
+
|
|
67
|
+
### ❤️ Thank You
|
|
68
|
+
|
|
69
|
+
- Johanna Bertils @johannabertils
|
|
70
|
+
- Mathias Saxenstrand
|
|
71
|
+
|
|
1
72
|
## 0.0.49 (2025-11-25)
|
|
2
73
|
|
|
3
74
|
### 🚀 Features
|
|
@@ -29,15 +100,15 @@
|
|
|
29
100
|
|
|
30
101
|
### 🚀 Features
|
|
31
102
|
|
|
32
|
-
- enhance form handling and component props across various modules
|
|
33
|
-
- add CartPage component for managing shopping cart functionality
|
|
34
|
-
- add order confirmation route and related components
|
|
35
|
-
- add ProductBadge component for enhanced product presentation
|
|
36
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
103
|
+
- enhance form handling and component props across various modules
|
|
104
|
+
- add CartPage component for managing shopping cart functionality
|
|
105
|
+
- add order confirmation route and related components
|
|
106
|
+
- add ProductBadge component for enhanced product presentation
|
|
107
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
37
108
|
|
|
38
109
|
### 🩹 Fixes
|
|
39
110
|
|
|
40
|
-
- update default minimum quantity to 0 in various components
|
|
111
|
+
- update default minimum quantity to 0 in various components
|
|
41
112
|
|
|
42
113
|
### 🧱 Updated Dependencies
|
|
43
114
|
|
|
@@ -56,15 +127,15 @@
|
|
|
56
127
|
|
|
57
128
|
### 🚀 Features
|
|
58
129
|
|
|
59
|
-
- enhance form handling and component props across various modules
|
|
60
|
-
- add CartPage component for managing shopping cart functionality
|
|
61
|
-
- add order confirmation route and related components
|
|
62
|
-
- add ProductBadge component for enhanced product presentation
|
|
63
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
130
|
+
- enhance form handling and component props across various modules
|
|
131
|
+
- add CartPage component for managing shopping cart functionality
|
|
132
|
+
- add order confirmation route and related components
|
|
133
|
+
- add ProductBadge component for enhanced product presentation
|
|
134
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
64
135
|
|
|
65
136
|
### 🩹 Fixes
|
|
66
137
|
|
|
67
|
-
- update default minimum quantity to 0 in various components
|
|
138
|
+
- update default minimum quantity to 0 in various components
|
|
68
139
|
|
|
69
140
|
### 🧱 Updated Dependencies
|
|
70
141
|
|
|
@@ -83,15 +154,15 @@
|
|
|
83
154
|
|
|
84
155
|
### 🚀 Features
|
|
85
156
|
|
|
86
|
-
- enhance form handling and component props across various modules
|
|
87
|
-
- add CartPage component for managing shopping cart functionality
|
|
88
|
-
- add order confirmation route and related components
|
|
89
|
-
- add ProductBadge component for enhanced product presentation
|
|
90
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
157
|
+
- enhance form handling and component props across various modules
|
|
158
|
+
- add CartPage component for managing shopping cart functionality
|
|
159
|
+
- add order confirmation route and related components
|
|
160
|
+
- add ProductBadge component for enhanced product presentation
|
|
161
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
91
162
|
|
|
92
163
|
### 🩹 Fixes
|
|
93
164
|
|
|
94
|
-
- update default minimum quantity to 0 in various components
|
|
165
|
+
- update default minimum quantity to 0 in various components
|
|
95
166
|
|
|
96
167
|
### 🧱 Updated Dependencies
|
|
97
168
|
|
|
@@ -110,15 +181,15 @@
|
|
|
110
181
|
|
|
111
182
|
### 🚀 Features
|
|
112
183
|
|
|
113
|
-
- enhance form handling and component props across various modules
|
|
114
|
-
- add CartPage component for managing shopping cart functionality
|
|
115
|
-
- add order confirmation route and related components
|
|
116
|
-
- add ProductBadge component for enhanced product presentation
|
|
117
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
184
|
+
- enhance form handling and component props across various modules
|
|
185
|
+
- add CartPage component for managing shopping cart functionality
|
|
186
|
+
- add order confirmation route and related components
|
|
187
|
+
- add ProductBadge component for enhanced product presentation
|
|
188
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
118
189
|
|
|
119
190
|
### 🩹 Fixes
|
|
120
191
|
|
|
121
|
-
- update default minimum quantity to 0 in various components
|
|
192
|
+
- update default minimum quantity to 0 in various components
|
|
122
193
|
|
|
123
194
|
### 🧱 Updated Dependencies
|
|
124
195
|
|
|
@@ -137,15 +208,15 @@
|
|
|
137
208
|
|
|
138
209
|
### 🚀 Features
|
|
139
210
|
|
|
140
|
-
- enhance form handling and component props across various modules
|
|
141
|
-
- add CartPage component for managing shopping cart functionality
|
|
142
|
-
- add order confirmation route and related components
|
|
143
|
-
- add ProductBadge component for enhanced product presentation
|
|
144
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
211
|
+
- enhance form handling and component props across various modules
|
|
212
|
+
- add CartPage component for managing shopping cart functionality
|
|
213
|
+
- add order confirmation route and related components
|
|
214
|
+
- add ProductBadge component for enhanced product presentation
|
|
215
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
145
216
|
|
|
146
217
|
### 🩹 Fixes
|
|
147
218
|
|
|
148
|
-
- update default minimum quantity to 0 in various components
|
|
219
|
+
- update default minimum quantity to 0 in various components
|
|
149
220
|
|
|
150
221
|
### 🧱 Updated Dependencies
|
|
151
222
|
|
|
@@ -164,15 +235,15 @@
|
|
|
164
235
|
|
|
165
236
|
### 🚀 Features
|
|
166
237
|
|
|
167
|
-
- enhance form handling and component props across various modules
|
|
168
|
-
- add CartPage component for managing shopping cart functionality
|
|
169
|
-
- add order confirmation route and related components
|
|
170
|
-
- add ProductBadge component for enhanced product presentation
|
|
171
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
238
|
+
- enhance form handling and component props across various modules
|
|
239
|
+
- add CartPage component for managing shopping cart functionality
|
|
240
|
+
- add order confirmation route and related components
|
|
241
|
+
- add ProductBadge component for enhanced product presentation
|
|
242
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
172
243
|
|
|
173
244
|
### 🩹 Fixes
|
|
174
245
|
|
|
175
|
-
- update default minimum quantity to 0 in various components
|
|
246
|
+
- update default minimum quantity to 0 in various components
|
|
176
247
|
|
|
177
248
|
### 🧱 Updated Dependencies
|
|
178
249
|
|
|
@@ -191,15 +262,15 @@
|
|
|
191
262
|
|
|
192
263
|
### 🚀 Features
|
|
193
264
|
|
|
194
|
-
- enhance form handling and component props across various modules
|
|
195
|
-
- add CartPage component for managing shopping cart functionality
|
|
196
|
-
- add order confirmation route and related components
|
|
197
|
-
- add ProductBadge component for enhanced product presentation
|
|
198
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
265
|
+
- enhance form handling and component props across various modules
|
|
266
|
+
- add CartPage component for managing shopping cart functionality
|
|
267
|
+
- add order confirmation route and related components
|
|
268
|
+
- add ProductBadge component for enhanced product presentation
|
|
269
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
199
270
|
|
|
200
271
|
### 🩹 Fixes
|
|
201
272
|
|
|
202
|
-
- update default minimum quantity to 0 in various components
|
|
273
|
+
- update default minimum quantity to 0 in various components
|
|
203
274
|
|
|
204
275
|
### 🧱 Updated Dependencies
|
|
205
276
|
|
|
@@ -218,15 +289,15 @@
|
|
|
218
289
|
|
|
219
290
|
### 🚀 Features
|
|
220
291
|
|
|
221
|
-
- enhance form handling and component props across various modules
|
|
222
|
-
- add CartPage component for managing shopping cart functionality
|
|
223
|
-
- add order confirmation route and related components
|
|
224
|
-
- add ProductBadge component for enhanced product presentation
|
|
225
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
292
|
+
- enhance form handling and component props across various modules
|
|
293
|
+
- add CartPage component for managing shopping cart functionality
|
|
294
|
+
- add order confirmation route and related components
|
|
295
|
+
- add ProductBadge component for enhanced product presentation
|
|
296
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
226
297
|
|
|
227
298
|
### 🩹 Fixes
|
|
228
299
|
|
|
229
|
-
- update default minimum quantity to 0 in various components
|
|
300
|
+
- update default minimum quantity to 0 in various components
|
|
230
301
|
|
|
231
302
|
### 🧱 Updated Dependencies
|
|
232
303
|
|
|
@@ -245,15 +316,15 @@
|
|
|
245
316
|
|
|
246
317
|
### 🚀 Features
|
|
247
318
|
|
|
248
|
-
- enhance form handling and component props across various modules
|
|
249
|
-
- add CartPage component for managing shopping cart functionality
|
|
250
|
-
- add order confirmation route and related components
|
|
251
|
-
- add ProductBadge component for enhanced product presentation
|
|
252
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
319
|
+
- enhance form handling and component props across various modules
|
|
320
|
+
- add CartPage component for managing shopping cart functionality
|
|
321
|
+
- add order confirmation route and related components
|
|
322
|
+
- add ProductBadge component for enhanced product presentation
|
|
323
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
253
324
|
|
|
254
325
|
### 🩹 Fixes
|
|
255
326
|
|
|
256
|
-
- update default minimum quantity to 0 in various components
|
|
327
|
+
- update default minimum quantity to 0 in various components
|
|
257
328
|
|
|
258
329
|
### 🧱 Updated Dependencies
|
|
259
330
|
|
|
@@ -272,15 +343,15 @@
|
|
|
272
343
|
|
|
273
344
|
### 🚀 Features
|
|
274
345
|
|
|
275
|
-
- enhance form handling and component props across various modules
|
|
276
|
-
- add CartPage component for managing shopping cart functionality
|
|
277
|
-
- add order confirmation route and related components
|
|
278
|
-
- add ProductBadge component for enhanced product presentation
|
|
279
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
346
|
+
- enhance form handling and component props across various modules
|
|
347
|
+
- add CartPage component for managing shopping cart functionality
|
|
348
|
+
- add order confirmation route and related components
|
|
349
|
+
- add ProductBadge component for enhanced product presentation
|
|
350
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
280
351
|
|
|
281
352
|
### 🩹 Fixes
|
|
282
353
|
|
|
283
|
-
- update default minimum quantity to 0 in various components
|
|
354
|
+
- update default minimum quantity to 0 in various components
|
|
284
355
|
|
|
285
356
|
### 🧱 Updated Dependencies
|
|
286
357
|
|
|
@@ -299,15 +370,15 @@
|
|
|
299
370
|
|
|
300
371
|
### 🚀 Features
|
|
301
372
|
|
|
302
|
-
- enhance form handling and component props across various modules
|
|
303
|
-
- add CartPage component for managing shopping cart functionality
|
|
304
|
-
- add order confirmation route and related components
|
|
305
|
-
- add ProductBadge component for enhanced product presentation
|
|
306
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
373
|
+
- enhance form handling and component props across various modules
|
|
374
|
+
- add CartPage component for managing shopping cart functionality
|
|
375
|
+
- add order confirmation route and related components
|
|
376
|
+
- add ProductBadge component for enhanced product presentation
|
|
377
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
307
378
|
|
|
308
379
|
### 🩹 Fixes
|
|
309
380
|
|
|
310
|
-
- update default minimum quantity to 0 in various components
|
|
381
|
+
- update default minimum quantity to 0 in various components
|
|
311
382
|
|
|
312
383
|
### 🧱 Updated Dependencies
|
|
313
384
|
|
|
@@ -326,15 +397,15 @@
|
|
|
326
397
|
|
|
327
398
|
### 🚀 Features
|
|
328
399
|
|
|
329
|
-
- enhance form handling and component props across various modules
|
|
330
|
-
- add CartPage component for managing shopping cart functionality
|
|
331
|
-
- add order confirmation route and related components
|
|
332
|
-
- add ProductBadge component for enhanced product presentation
|
|
333
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
400
|
+
- enhance form handling and component props across various modules
|
|
401
|
+
- add CartPage component for managing shopping cart functionality
|
|
402
|
+
- add order confirmation route and related components
|
|
403
|
+
- add ProductBadge component for enhanced product presentation
|
|
404
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
334
405
|
|
|
335
406
|
### 🩹 Fixes
|
|
336
407
|
|
|
337
|
-
- update default minimum quantity to 0 in various components
|
|
408
|
+
- update default minimum quantity to 0 in various components
|
|
338
409
|
|
|
339
410
|
### 🧱 Updated Dependencies
|
|
340
411
|
|
|
@@ -353,15 +424,15 @@
|
|
|
353
424
|
|
|
354
425
|
### 🚀 Features
|
|
355
426
|
|
|
356
|
-
- enhance form handling and component props across various modules
|
|
357
|
-
- add CartPage component for managing shopping cart functionality
|
|
358
|
-
- add order confirmation route and related components
|
|
359
|
-
- add ProductBadge component for enhanced product presentation
|
|
360
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
427
|
+
- enhance form handling and component props across various modules
|
|
428
|
+
- add CartPage component for managing shopping cart functionality
|
|
429
|
+
- add order confirmation route and related components
|
|
430
|
+
- add ProductBadge component for enhanced product presentation
|
|
431
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
361
432
|
|
|
362
433
|
### 🩹 Fixes
|
|
363
434
|
|
|
364
|
-
- update default minimum quantity to 0 in various components
|
|
435
|
+
- update default minimum quantity to 0 in various components
|
|
365
436
|
|
|
366
437
|
### 🧱 Updated Dependencies
|
|
367
438
|
|
|
@@ -380,15 +451,15 @@
|
|
|
380
451
|
|
|
381
452
|
### 🚀 Features
|
|
382
453
|
|
|
383
|
-
- enhance form handling and component props across various modules
|
|
384
|
-
- add CartPage component for managing shopping cart functionality
|
|
385
|
-
- add order confirmation route and related components
|
|
386
|
-
- add ProductBadge component for enhanced product presentation
|
|
387
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
454
|
+
- enhance form handling and component props across various modules
|
|
455
|
+
- add CartPage component for managing shopping cart functionality
|
|
456
|
+
- add order confirmation route and related components
|
|
457
|
+
- add ProductBadge component for enhanced product presentation
|
|
458
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
388
459
|
|
|
389
460
|
### 🩹 Fixes
|
|
390
461
|
|
|
391
|
-
- update default minimum quantity to 0 in various components
|
|
462
|
+
- update default minimum quantity to 0 in various components
|
|
392
463
|
|
|
393
464
|
### 🧱 Updated Dependencies
|
|
394
465
|
|
|
@@ -407,15 +478,15 @@
|
|
|
407
478
|
|
|
408
479
|
### 🚀 Features
|
|
409
480
|
|
|
410
|
-
- enhance form handling and component props across various modules
|
|
411
|
-
- add CartPage component for managing shopping cart functionality
|
|
412
|
-
- add order confirmation route and related components
|
|
413
|
-
- add ProductBadge component for enhanced product presentation
|
|
414
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
481
|
+
- enhance form handling and component props across various modules
|
|
482
|
+
- add CartPage component for managing shopping cart functionality
|
|
483
|
+
- add order confirmation route and related components
|
|
484
|
+
- add ProductBadge component for enhanced product presentation
|
|
485
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
415
486
|
|
|
416
487
|
### 🩹 Fixes
|
|
417
488
|
|
|
418
|
-
- update default minimum quantity to 0 in various components
|
|
489
|
+
- update default minimum quantity to 0 in various components
|
|
419
490
|
|
|
420
491
|
### 🧱 Updated Dependencies
|
|
421
492
|
|
|
@@ -434,15 +505,15 @@
|
|
|
434
505
|
|
|
435
506
|
### 🚀 Features
|
|
436
507
|
|
|
437
|
-
- enhance form handling and component props across various modules
|
|
438
|
-
- add CartPage component for managing shopping cart functionality
|
|
439
|
-
- add order confirmation route and related components
|
|
440
|
-
- add ProductBadge component for enhanced product presentation
|
|
441
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
508
|
+
- enhance form handling and component props across various modules
|
|
509
|
+
- add CartPage component for managing shopping cart functionality
|
|
510
|
+
- add order confirmation route and related components
|
|
511
|
+
- add ProductBadge component for enhanced product presentation
|
|
512
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
442
513
|
|
|
443
514
|
### 🩹 Fixes
|
|
444
515
|
|
|
445
|
-
- update default minimum quantity to 0 in various components
|
|
516
|
+
- update default minimum quantity to 0 in various components
|
|
446
517
|
|
|
447
518
|
### 🧱 Updated Dependencies
|
|
448
519
|
|
|
@@ -461,15 +532,15 @@
|
|
|
461
532
|
|
|
462
533
|
### 🚀 Features
|
|
463
534
|
|
|
464
|
-
- enhance form handling and component props across various modules
|
|
465
|
-
- add CartPage component for managing shopping cart functionality
|
|
466
|
-
- add order confirmation route and related components
|
|
467
|
-
- add ProductBadge component for enhanced product presentation
|
|
468
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
535
|
+
- enhance form handling and component props across various modules
|
|
536
|
+
- add CartPage component for managing shopping cart functionality
|
|
537
|
+
- add order confirmation route and related components
|
|
538
|
+
- add ProductBadge component for enhanced product presentation
|
|
539
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
469
540
|
|
|
470
541
|
### 🩹 Fixes
|
|
471
542
|
|
|
472
|
-
- update default minimum quantity to 0 in various components
|
|
543
|
+
- update default minimum quantity to 0 in various components
|
|
473
544
|
|
|
474
545
|
### 🧱 Updated Dependencies
|
|
475
546
|
|
|
@@ -488,15 +559,15 @@
|
|
|
488
559
|
|
|
489
560
|
### 🚀 Features
|
|
490
561
|
|
|
491
|
-
- enhance form handling and component props across various modules
|
|
492
|
-
- add CartPage component for managing shopping cart functionality
|
|
493
|
-
- add order confirmation route and related components
|
|
494
|
-
- add ProductBadge component for enhanced product presentation
|
|
495
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
562
|
+
- enhance form handling and component props across various modules
|
|
563
|
+
- add CartPage component for managing shopping cart functionality
|
|
564
|
+
- add order confirmation route and related components
|
|
565
|
+
- add ProductBadge component for enhanced product presentation
|
|
566
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
496
567
|
|
|
497
568
|
### 🩹 Fixes
|
|
498
569
|
|
|
499
|
-
- update default minimum quantity to 0 in various components
|
|
570
|
+
- update default minimum quantity to 0 in various components
|
|
500
571
|
|
|
501
572
|
### 🧱 Updated Dependencies
|
|
502
573
|
|
|
@@ -515,15 +586,15 @@
|
|
|
515
586
|
|
|
516
587
|
### 🚀 Features
|
|
517
588
|
|
|
518
|
-
- enhance form handling and component props across various modules
|
|
519
|
-
- add CartPage component for managing shopping cart functionality
|
|
520
|
-
- add order confirmation route and related components
|
|
521
|
-
- add ProductBadge component for enhanced product presentation
|
|
522
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
589
|
+
- enhance form handling and component props across various modules
|
|
590
|
+
- add CartPage component for managing shopping cart functionality
|
|
591
|
+
- add order confirmation route and related components
|
|
592
|
+
- add ProductBadge component for enhanced product presentation
|
|
593
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
523
594
|
|
|
524
595
|
### 🩹 Fixes
|
|
525
596
|
|
|
526
|
-
- update default minimum quantity to 0 in various components
|
|
597
|
+
- update default minimum quantity to 0 in various components
|
|
527
598
|
|
|
528
599
|
### 🧱 Updated Dependencies
|
|
529
600
|
|
|
@@ -542,15 +613,15 @@
|
|
|
542
613
|
|
|
543
614
|
### 🚀 Features
|
|
544
615
|
|
|
545
|
-
- enhance form handling and component props across various modules
|
|
546
|
-
- add CartPage component for managing shopping cart functionality
|
|
547
|
-
- add order confirmation route and related components
|
|
548
|
-
- add ProductBadge component for enhanced product presentation
|
|
549
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
616
|
+
- enhance form handling and component props across various modules
|
|
617
|
+
- add CartPage component for managing shopping cart functionality
|
|
618
|
+
- add order confirmation route and related components
|
|
619
|
+
- add ProductBadge component for enhanced product presentation
|
|
620
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
550
621
|
|
|
551
622
|
### 🩹 Fixes
|
|
552
623
|
|
|
553
|
-
- update default minimum quantity to 0 in various components
|
|
624
|
+
- update default minimum quantity to 0 in various components
|
|
554
625
|
|
|
555
626
|
### 🧱 Updated Dependencies
|
|
556
627
|
|
|
@@ -569,15 +640,15 @@
|
|
|
569
640
|
|
|
570
641
|
### 🚀 Features
|
|
571
642
|
|
|
572
|
-
- enhance form handling and component props across various modules
|
|
573
|
-
- add CartPage component for managing shopping cart functionality
|
|
574
|
-
- add order confirmation route and related components
|
|
575
|
-
- add ProductBadge component for enhanced product presentation
|
|
576
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
643
|
+
- enhance form handling and component props across various modules
|
|
644
|
+
- add CartPage component for managing shopping cart functionality
|
|
645
|
+
- add order confirmation route and related components
|
|
646
|
+
- add ProductBadge component for enhanced product presentation
|
|
647
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
577
648
|
|
|
578
649
|
### 🩹 Fixes
|
|
579
650
|
|
|
580
|
-
- update default minimum quantity to 0 in various components
|
|
651
|
+
- update default minimum quantity to 0 in various components
|
|
581
652
|
|
|
582
653
|
### 🧱 Updated Dependencies
|
|
583
654
|
|
|
@@ -596,15 +667,15 @@
|
|
|
596
667
|
|
|
597
668
|
### 🚀 Features
|
|
598
669
|
|
|
599
|
-
- enhance form handling and component props across various modules
|
|
600
|
-
- add CartPage component for managing shopping cart functionality
|
|
601
|
-
- add order confirmation route and related components
|
|
602
|
-
- add ProductBadge component for enhanced product presentation
|
|
603
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
670
|
+
- enhance form handling and component props across various modules
|
|
671
|
+
- add CartPage component for managing shopping cart functionality
|
|
672
|
+
- add order confirmation route and related components
|
|
673
|
+
- add ProductBadge component for enhanced product presentation
|
|
674
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
604
675
|
|
|
605
676
|
### 🩹 Fixes
|
|
606
677
|
|
|
607
|
-
- update default minimum quantity to 0 in various components
|
|
678
|
+
- update default minimum quantity to 0 in various components
|
|
608
679
|
|
|
609
680
|
### 🧱 Updated Dependencies
|
|
610
681
|
|
|
@@ -623,15 +694,15 @@
|
|
|
623
694
|
|
|
624
695
|
### 🚀 Features
|
|
625
696
|
|
|
626
|
-
- enhance form handling and component props across various modules
|
|
627
|
-
- add CartPage component for managing shopping cart functionality
|
|
628
|
-
- add order confirmation route and related components
|
|
629
|
-
- add ProductBadge component for enhanced product presentation
|
|
630
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
697
|
+
- enhance form handling and component props across various modules
|
|
698
|
+
- add CartPage component for managing shopping cart functionality
|
|
699
|
+
- add order confirmation route and related components
|
|
700
|
+
- add ProductBadge component for enhanced product presentation
|
|
701
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
631
702
|
|
|
632
703
|
### 🩹 Fixes
|
|
633
704
|
|
|
634
|
-
- update default minimum quantity to 0 in various components
|
|
705
|
+
- update default minimum quantity to 0 in various components
|
|
635
706
|
|
|
636
707
|
### 🧱 Updated Dependencies
|
|
637
708
|
|
|
@@ -650,15 +721,15 @@
|
|
|
650
721
|
|
|
651
722
|
### 🚀 Features
|
|
652
723
|
|
|
653
|
-
- enhance form handling and component props across various modules
|
|
654
|
-
- add CartPage component for managing shopping cart functionality
|
|
655
|
-
- add order confirmation route and related components
|
|
656
|
-
- add ProductBadge component for enhanced product presentation
|
|
657
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
724
|
+
- enhance form handling and component props across various modules
|
|
725
|
+
- add CartPage component for managing shopping cart functionality
|
|
726
|
+
- add order confirmation route and related components
|
|
727
|
+
- add ProductBadge component for enhanced product presentation
|
|
728
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
658
729
|
|
|
659
730
|
### 🩹 Fixes
|
|
660
731
|
|
|
661
|
-
- update default minimum quantity to 0 in various components
|
|
732
|
+
- update default minimum quantity to 0 in various components
|
|
662
733
|
|
|
663
734
|
### 🧱 Updated Dependencies
|
|
664
735
|
|
|
@@ -677,15 +748,15 @@
|
|
|
677
748
|
|
|
678
749
|
### 🚀 Features
|
|
679
750
|
|
|
680
|
-
- enhance form handling and component props across various modules
|
|
681
|
-
- add CartPage component for managing shopping cart functionality
|
|
682
|
-
- add order confirmation route and related components
|
|
683
|
-
- add ProductBadge component for enhanced product presentation
|
|
684
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
751
|
+
- enhance form handling and component props across various modules
|
|
752
|
+
- add CartPage component for managing shopping cart functionality
|
|
753
|
+
- add order confirmation route and related components
|
|
754
|
+
- add ProductBadge component for enhanced product presentation
|
|
755
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
685
756
|
|
|
686
757
|
### 🩹 Fixes
|
|
687
758
|
|
|
688
|
-
- update default minimum quantity to 0 in various components
|
|
759
|
+
- update default minimum quantity to 0 in various components
|
|
689
760
|
|
|
690
761
|
### 🧱 Updated Dependencies
|
|
691
762
|
|
|
@@ -704,15 +775,15 @@
|
|
|
704
775
|
|
|
705
776
|
### 🚀 Features
|
|
706
777
|
|
|
707
|
-
- enhance form handling and component props across various modules
|
|
708
|
-
- add CartPage component for managing shopping cart functionality
|
|
709
|
-
- add order confirmation route and related components
|
|
710
|
-
- add ProductBadge component for enhanced product presentation
|
|
711
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
778
|
+
- enhance form handling and component props across various modules
|
|
779
|
+
- add CartPage component for managing shopping cart functionality
|
|
780
|
+
- add order confirmation route and related components
|
|
781
|
+
- add ProductBadge component for enhanced product presentation
|
|
782
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
712
783
|
|
|
713
784
|
### 🩹 Fixes
|
|
714
785
|
|
|
715
|
-
- update default minimum quantity to 0 in various components
|
|
786
|
+
- update default minimum quantity to 0 in various components
|
|
716
787
|
|
|
717
788
|
### 🧱 Updated Dependencies
|
|
718
789
|
|
|
@@ -731,15 +802,15 @@
|
|
|
731
802
|
|
|
732
803
|
### 🚀 Features
|
|
733
804
|
|
|
734
|
-
- enhance form handling and component props across various modules
|
|
735
|
-
- add CartPage component for managing shopping cart functionality
|
|
736
|
-
- add order confirmation route and related components
|
|
737
|
-
- add ProductBadge component for enhanced product presentation
|
|
738
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
805
|
+
- enhance form handling and component props across various modules
|
|
806
|
+
- add CartPage component for managing shopping cart functionality
|
|
807
|
+
- add order confirmation route and related components
|
|
808
|
+
- add ProductBadge component for enhanced product presentation
|
|
809
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
739
810
|
|
|
740
811
|
### 🩹 Fixes
|
|
741
812
|
|
|
742
|
-
- update default minimum quantity to 0 in various components
|
|
813
|
+
- update default minimum quantity to 0 in various components
|
|
743
814
|
|
|
744
815
|
### 🧱 Updated Dependencies
|
|
745
816
|
|
|
@@ -758,15 +829,15 @@
|
|
|
758
829
|
|
|
759
830
|
### 🚀 Features
|
|
760
831
|
|
|
761
|
-
- enhance form handling and component props across various modules
|
|
762
|
-
- add CartPage component for managing shopping cart functionality
|
|
763
|
-
- add order confirmation route and related components
|
|
764
|
-
- add ProductBadge component for enhanced product presentation
|
|
765
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
832
|
+
- enhance form handling and component props across various modules
|
|
833
|
+
- add CartPage component for managing shopping cart functionality
|
|
834
|
+
- add order confirmation route and related components
|
|
835
|
+
- add ProductBadge component for enhanced product presentation
|
|
836
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
766
837
|
|
|
767
838
|
### 🩹 Fixes
|
|
768
839
|
|
|
769
|
-
- update default minimum quantity to 0 in various components
|
|
840
|
+
- update default minimum quantity to 0 in various components
|
|
770
841
|
|
|
771
842
|
### 🧱 Updated Dependencies
|
|
772
843
|
|
|
@@ -785,15 +856,15 @@
|
|
|
785
856
|
|
|
786
857
|
### 🚀 Features
|
|
787
858
|
|
|
788
|
-
- enhance form handling and component props across various modules
|
|
789
|
-
- add CartPage component for managing shopping cart functionality
|
|
790
|
-
- add order confirmation route and related components
|
|
791
|
-
- add ProductBadge component for enhanced product presentation
|
|
792
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
859
|
+
- enhance form handling and component props across various modules
|
|
860
|
+
- add CartPage component for managing shopping cart functionality
|
|
861
|
+
- add order confirmation route and related components
|
|
862
|
+
- add ProductBadge component for enhanced product presentation
|
|
863
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
793
864
|
|
|
794
865
|
### 🩹 Fixes
|
|
795
866
|
|
|
796
|
-
- update default minimum quantity to 0 in various components
|
|
867
|
+
- update default minimum quantity to 0 in various components
|
|
797
868
|
|
|
798
869
|
### 🧱 Updated Dependencies
|
|
799
870
|
|
|
@@ -812,15 +883,15 @@
|
|
|
812
883
|
|
|
813
884
|
### 🚀 Features
|
|
814
885
|
|
|
815
|
-
- enhance form handling and component props across various modules
|
|
816
|
-
- add CartPage component for managing shopping cart functionality
|
|
817
|
-
- add order confirmation route and related components
|
|
818
|
-
- add ProductBadge component for enhanced product presentation
|
|
819
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
886
|
+
- enhance form handling and component props across various modules
|
|
887
|
+
- add CartPage component for managing shopping cart functionality
|
|
888
|
+
- add order confirmation route and related components
|
|
889
|
+
- add ProductBadge component for enhanced product presentation
|
|
890
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
820
891
|
|
|
821
892
|
### 🩹 Fixes
|
|
822
893
|
|
|
823
|
-
- update default minimum quantity to 0 in various components
|
|
894
|
+
- update default minimum quantity to 0 in various components
|
|
824
895
|
|
|
825
896
|
### 🧱 Updated Dependencies
|
|
826
897
|
|
|
@@ -839,15 +910,15 @@
|
|
|
839
910
|
|
|
840
911
|
### 🚀 Features
|
|
841
912
|
|
|
842
|
-
- enhance form handling and component props across various modules
|
|
843
|
-
- add CartPage component for managing shopping cart functionality
|
|
844
|
-
- add order confirmation route and related components
|
|
845
|
-
- add ProductBadge component for enhanced product presentation
|
|
846
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
913
|
+
- enhance form handling and component props across various modules
|
|
914
|
+
- add CartPage component for managing shopping cart functionality
|
|
915
|
+
- add order confirmation route and related components
|
|
916
|
+
- add ProductBadge component for enhanced product presentation
|
|
917
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
847
918
|
|
|
848
919
|
### 🩹 Fixes
|
|
849
920
|
|
|
850
|
-
- update default minimum quantity to 0 in various components
|
|
921
|
+
- update default minimum quantity to 0 in various components
|
|
851
922
|
|
|
852
923
|
### 🧱 Updated Dependencies
|
|
853
924
|
|
|
@@ -866,15 +937,15 @@
|
|
|
866
937
|
|
|
867
938
|
### 🚀 Features
|
|
868
939
|
|
|
869
|
-
- enhance form handling and component props across various modules
|
|
870
|
-
- add CartPage component for managing shopping cart functionality
|
|
871
|
-
- add order confirmation route and related components
|
|
872
|
-
- add ProductBadge component for enhanced product presentation
|
|
873
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
940
|
+
- enhance form handling and component props across various modules
|
|
941
|
+
- add CartPage component for managing shopping cart functionality
|
|
942
|
+
- add order confirmation route and related components
|
|
943
|
+
- add ProductBadge component for enhanced product presentation
|
|
944
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
874
945
|
|
|
875
946
|
### 🩹 Fixes
|
|
876
947
|
|
|
877
|
-
- update default minimum quantity to 0 in various components
|
|
948
|
+
- update default minimum quantity to 0 in various components
|
|
878
949
|
|
|
879
950
|
### 🧱 Updated Dependencies
|
|
880
951
|
|
|
@@ -893,15 +964,15 @@
|
|
|
893
964
|
|
|
894
965
|
### 🚀 Features
|
|
895
966
|
|
|
896
|
-
- enhance form handling and component props across various modules
|
|
897
|
-
- add CartPage component for managing shopping cart functionality
|
|
898
|
-
- add order confirmation route and related components
|
|
899
|
-
- add ProductBadge component for enhanced product presentation
|
|
900
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
967
|
+
- enhance form handling and component props across various modules
|
|
968
|
+
- add CartPage component for managing shopping cart functionality
|
|
969
|
+
- add order confirmation route and related components
|
|
970
|
+
- add ProductBadge component for enhanced product presentation
|
|
971
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
901
972
|
|
|
902
973
|
### 🩹 Fixes
|
|
903
974
|
|
|
904
|
-
- update default minimum quantity to 0 in various components
|
|
975
|
+
- update default minimum quantity to 0 in various components
|
|
905
976
|
|
|
906
977
|
### 🧱 Updated Dependencies
|
|
907
978
|
|
|
@@ -920,15 +991,15 @@
|
|
|
920
991
|
|
|
921
992
|
### 🚀 Features
|
|
922
993
|
|
|
923
|
-
- enhance form handling and component props across various modules
|
|
924
|
-
- add CartPage component for managing shopping cart functionality
|
|
925
|
-
- add order confirmation route and related components
|
|
926
|
-
- add ProductBadge component for enhanced product presentation
|
|
927
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
994
|
+
- enhance form handling and component props across various modules
|
|
995
|
+
- add CartPage component for managing shopping cart functionality
|
|
996
|
+
- add order confirmation route and related components
|
|
997
|
+
- add ProductBadge component for enhanced product presentation
|
|
998
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
928
999
|
|
|
929
1000
|
### 🩹 Fixes
|
|
930
1001
|
|
|
931
|
-
- update default minimum quantity to 0 in various components
|
|
1002
|
+
- update default minimum quantity to 0 in various components
|
|
932
1003
|
|
|
933
1004
|
### 🧱 Updated Dependencies
|
|
934
1005
|
|
|
@@ -947,15 +1018,15 @@
|
|
|
947
1018
|
|
|
948
1019
|
### 🚀 Features
|
|
949
1020
|
|
|
950
|
-
- enhance form handling and component props across various modules
|
|
951
|
-
- add CartPage component for managing shopping cart functionality
|
|
952
|
-
- add order confirmation route and related components
|
|
953
|
-
- add ProductBadge component for enhanced product presentation
|
|
954
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1021
|
+
- enhance form handling and component props across various modules
|
|
1022
|
+
- add CartPage component for managing shopping cart functionality
|
|
1023
|
+
- add order confirmation route and related components
|
|
1024
|
+
- add ProductBadge component for enhanced product presentation
|
|
1025
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
955
1026
|
|
|
956
1027
|
### 🩹 Fixes
|
|
957
1028
|
|
|
958
|
-
- update default minimum quantity to 0 in various components
|
|
1029
|
+
- update default minimum quantity to 0 in various components
|
|
959
1030
|
|
|
960
1031
|
### 🧱 Updated Dependencies
|
|
961
1032
|
|
|
@@ -974,15 +1045,15 @@
|
|
|
974
1045
|
|
|
975
1046
|
### 🚀 Features
|
|
976
1047
|
|
|
977
|
-
- enhance form handling and component props across various modules
|
|
978
|
-
- add CartPage component for managing shopping cart functionality
|
|
979
|
-
- add order confirmation route and related components
|
|
980
|
-
- add ProductBadge component for enhanced product presentation
|
|
981
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1048
|
+
- enhance form handling and component props across various modules
|
|
1049
|
+
- add CartPage component for managing shopping cart functionality
|
|
1050
|
+
- add order confirmation route and related components
|
|
1051
|
+
- add ProductBadge component for enhanced product presentation
|
|
1052
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
982
1053
|
|
|
983
1054
|
### 🩹 Fixes
|
|
984
1055
|
|
|
985
|
-
- update default minimum quantity to 0 in various components
|
|
1056
|
+
- update default minimum quantity to 0 in various components
|
|
986
1057
|
|
|
987
1058
|
### 🧱 Updated Dependencies
|
|
988
1059
|
|
|
@@ -1001,15 +1072,15 @@
|
|
|
1001
1072
|
|
|
1002
1073
|
### 🚀 Features
|
|
1003
1074
|
|
|
1004
|
-
- enhance form handling and component props across various modules
|
|
1005
|
-
- add CartPage component for managing shopping cart functionality
|
|
1006
|
-
- add order confirmation route and related components
|
|
1007
|
-
- add ProductBadge component for enhanced product presentation
|
|
1008
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1075
|
+
- enhance form handling and component props across various modules
|
|
1076
|
+
- add CartPage component for managing shopping cart functionality
|
|
1077
|
+
- add order confirmation route and related components
|
|
1078
|
+
- add ProductBadge component for enhanced product presentation
|
|
1079
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1009
1080
|
|
|
1010
1081
|
### 🩹 Fixes
|
|
1011
1082
|
|
|
1012
|
-
- update default minimum quantity to 0 in various components
|
|
1083
|
+
- update default minimum quantity to 0 in various components
|
|
1013
1084
|
|
|
1014
1085
|
### 🧱 Updated Dependencies
|
|
1015
1086
|
|
|
@@ -1066,7 +1137,7 @@
|
|
|
1066
1137
|
|
|
1067
1138
|
### 🚀 Features
|
|
1068
1139
|
|
|
1069
|
-
- enhance form handling and component props across various modules
|
|
1140
|
+
- enhance form handling and component props across various modules
|
|
1070
1141
|
|
|
1071
1142
|
### 🧱 Updated Dependencies
|
|
1072
1143
|
|
|
@@ -1084,15 +1155,15 @@
|
|
|
1084
1155
|
|
|
1085
1156
|
### 🚀 Features
|
|
1086
1157
|
|
|
1087
|
-
- enhance form handling and component props across various modules
|
|
1088
|
-
- add CartPage component for managing shopping cart functionality
|
|
1089
|
-
- add order confirmation route and related components
|
|
1090
|
-
- add ProductBadge component for enhanced product presentation
|
|
1091
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1158
|
+
- enhance form handling and component props across various modules
|
|
1159
|
+
- add CartPage component for managing shopping cart functionality
|
|
1160
|
+
- add order confirmation route and related components
|
|
1161
|
+
- add ProductBadge component for enhanced product presentation
|
|
1162
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1092
1163
|
|
|
1093
1164
|
### 🩹 Fixes
|
|
1094
1165
|
|
|
1095
|
-
- update default minimum quantity to 0 in various components
|
|
1166
|
+
- update default minimum quantity to 0 in various components
|
|
1096
1167
|
|
|
1097
1168
|
### 🧱 Updated Dependencies
|
|
1098
1169
|
|
|
@@ -1111,15 +1182,15 @@
|
|
|
1111
1182
|
|
|
1112
1183
|
### 🚀 Features
|
|
1113
1184
|
|
|
1114
|
-
- enhance form handling and component props across various modules
|
|
1115
|
-
- add CartPage component for managing shopping cart functionality
|
|
1116
|
-
- add order confirmation route and related components
|
|
1117
|
-
- add ProductBadge component for enhanced product presentation
|
|
1118
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1185
|
+
- enhance form handling and component props across various modules
|
|
1186
|
+
- add CartPage component for managing shopping cart functionality
|
|
1187
|
+
- add order confirmation route and related components
|
|
1188
|
+
- add ProductBadge component for enhanced product presentation
|
|
1189
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1119
1190
|
|
|
1120
1191
|
### 🩹 Fixes
|
|
1121
1192
|
|
|
1122
|
-
- update default minimum quantity to 0 in various components
|
|
1193
|
+
- update default minimum quantity to 0 in various components
|
|
1123
1194
|
|
|
1124
1195
|
### 🧱 Updated Dependencies
|
|
1125
1196
|
|
|
@@ -1168,7 +1239,7 @@
|
|
|
1168
1239
|
|
|
1169
1240
|
### 🩹 Fixes
|
|
1170
1241
|
|
|
1171
|
-
- update default minimum quantity to 0 in various components
|
|
1242
|
+
- update default minimum quantity to 0 in various components
|
|
1172
1243
|
|
|
1173
1244
|
### 🧱 Updated Dependencies
|
|
1174
1245
|
|
|
@@ -1196,7 +1267,7 @@
|
|
|
1196
1267
|
|
|
1197
1268
|
### 🚀 Features
|
|
1198
1269
|
|
|
1199
|
-
- add CartPage component for managing shopping cart functionality
|
|
1270
|
+
- add CartPage component for managing shopping cart functionality
|
|
1200
1271
|
|
|
1201
1272
|
### 🧱 Updated Dependencies
|
|
1202
1273
|
|
|
@@ -1224,7 +1295,7 @@
|
|
|
1224
1295
|
|
|
1225
1296
|
### 🚀 Features
|
|
1226
1297
|
|
|
1227
|
-
- add order confirmation route and related components
|
|
1298
|
+
- add order confirmation route and related components
|
|
1228
1299
|
|
|
1229
1300
|
### 🧱 Updated Dependencies
|
|
1230
1301
|
|
|
@@ -1242,8 +1313,8 @@
|
|
|
1242
1313
|
|
|
1243
1314
|
### 🚀 Features
|
|
1244
1315
|
|
|
1245
|
-
- add ProductBadge component for enhanced product presentation
|
|
1246
|
-
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1316
|
+
- add ProductBadge component for enhanced product presentation
|
|
1317
|
+
- add preAdd and preAdjust callbacks for order line and item adjustments
|
|
1247
1318
|
|
|
1248
1319
|
### 🧱 Updated Dependencies
|
|
1249
1320
|
|
|
@@ -1411,18 +1482,18 @@
|
|
|
1411
1482
|
|
|
1412
1483
|
### 🚀 Features
|
|
1413
1484
|
|
|
1414
|
-
- enhance cart functionality with AddItemToOrder component
|
|
1415
|
-
- add AddItemToOrder component for managing cart items
|
|
1416
|
-
- add react-native-web support and update Vite configurations
|
|
1417
|
-
- implement platform-aware components and utilities
|
|
1418
|
-
- generate project graph and update package.json files
|
|
1419
|
-
- integrate React Compiler and update dependencies across the project
|
|
1420
|
-
- **quantity-buttons:** integrate AsChildProps for flexible component rendering
|
|
1421
|
-
- **order-lines:** introduce OrderLines component for managing cart items
|
|
1485
|
+
- enhance cart functionality with AddItemToOrder component
|
|
1486
|
+
- add AddItemToOrder component for managing cart items
|
|
1487
|
+
- add react-native-web support and update Vite configurations
|
|
1488
|
+
- implement platform-aware components and utilities
|
|
1489
|
+
- generate project graph and update package.json files
|
|
1490
|
+
- integrate React Compiler and update dependencies across the project
|
|
1491
|
+
- **quantity-buttons:** integrate AsChildProps for flexible component rendering
|
|
1492
|
+
- **order-lines:** introduce OrderLines component for managing cart items
|
|
1422
1493
|
|
|
1423
1494
|
### 🩹 Fixes
|
|
1424
1495
|
|
|
1425
|
-
- adjust quantity validation in useOrderLinesProps
|
|
1496
|
+
- adjust quantity validation in useOrderLinesProps
|
|
1426
1497
|
|
|
1427
1498
|
### 🧱 Updated Dependencies
|
|
1428
1499
|
|
|
@@ -1521,7 +1592,7 @@ This was a version bump only for store/components/order-lines to align it with o
|
|
|
1521
1592
|
- Updated common/ui to 2.0.1
|
|
1522
1593
|
- Updated shared/types to 2.0.1
|
|
1523
1594
|
|
|
1524
|
-
|
|
1595
|
+
## 2.0.0 (2025-06-25)
|
|
1525
1596
|
|
|
1526
1597
|
### 🧱 Updated Dependencies
|
|
1527
1598
|
|
|
@@ -1535,16 +1606,16 @@ This was a version bump only for store/components/order-lines to align it with o
|
|
|
1535
1606
|
|
|
1536
1607
|
### 🚀 Features
|
|
1537
1608
|
|
|
1538
|
-
- introduce haus-storefront-components-react-native app
|
|
1539
|
-
- add FetchClient for API interactions and configure VSCode settings
|
|
1540
|
-
- enhance cart functionality with AddItemToOrder component
|
|
1541
|
-
- add AddItemToOrder component for managing cart items
|
|
1542
|
-
- add react-native-web support and update Vite configurations
|
|
1543
|
-
- implement platform-aware components and utilities
|
|
1609
|
+
- introduce haus-storefront-components-react-native app
|
|
1610
|
+
- add FetchClient for API interactions and configure VSCode settings
|
|
1611
|
+
- enhance cart functionality with AddItemToOrder component
|
|
1612
|
+
- add AddItemToOrder component for managing cart items
|
|
1613
|
+
- add react-native-web support and update Vite configurations
|
|
1614
|
+
- implement platform-aware components and utilities
|
|
1544
1615
|
|
|
1545
1616
|
### 🩹 Fixes
|
|
1546
1617
|
|
|
1547
|
-
- adjust quantity validation in useOrderLinesProps
|
|
1618
|
+
- adjust quantity validation in useOrderLinesProps
|
|
1548
1619
|
|
|
1549
1620
|
### 🧱 Updated Dependencies
|
|
1550
1621
|
|
|
@@ -1573,10 +1644,10 @@ This was a version bump only for store/components/order-lines to align it with o
|
|
|
1573
1644
|
|
|
1574
1645
|
### 🚀 Features
|
|
1575
1646
|
|
|
1576
|
-
- generate project graph and update package.json files
|
|
1577
|
-
- integrate React Compiler and update dependencies across the project
|
|
1578
|
-
- **quantity-buttons:** integrate AsChildProps for flexible component rendering
|
|
1579
|
-
- **order-lines:** introduce OrderLines component for managing cart items
|
|
1647
|
+
- generate project graph and update package.json files
|
|
1648
|
+
- integrate React Compiler and update dependencies across the project
|
|
1649
|
+
- **quantity-buttons:** integrate AsChildProps for flexible component rendering
|
|
1650
|
+
- **order-lines:** introduce OrderLines component for managing cart items
|
|
1580
1651
|
|
|
1581
1652
|
### 🧱 Updated Dependencies
|
|
1582
1653
|
|