@lookiero/checkout 14.2.0 → 14.2.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/dist/src/ExpoRoot.js +1 -1
- package/dist/src/infrastructure/ui/components/atoms/price/Price.js +1 -1
- package/dist/src/infrastructure/ui/components/atoms/price/Price.style.d.ts +1 -0
- package/dist/src/infrastructure/ui/components/atoms/price/Price.style.js +1 -0
- package/dist/src/infrastructure/ui/components/organisms/checkoutQuestions/components/buttonCheckoutQuestionItem/ButtonCheckoutQuestionItem.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostLegacyRadioGroupReturnQuestionItem/HostLegacyRadioGroupReturnQuestionItem.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostRadioGroupReturnQuestionItem/HostRadioGroupReturnQuestionItem.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.js +2 -2
- package/dist/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.js +1 -1
- package/dist/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.js +1 -1
- package/dist/src/infrastructure/ui/components/templates/header/itemHeader/ItemHeader.js +1 -1
- package/dist/src/infrastructure/ui/views/checkout/Checkout.js +1 -1
- package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.js +1 -1
- package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.style.d.ts +3 -0
- package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.style.js +3 -0
- package/dist/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/GetOutOfCheckoutModal.js +2 -2
- package/dist/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.js +3 -3
- package/dist/src/infrastructure/ui/views/item/components/selectModal/SelectModal.js +1 -1
- package/dist/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/SizeWithoutStockModal.js +1 -1
- package/dist/src/infrastructure/ui/views/return/components/price/Price.js +3 -3
- package/dist/src/infrastructure/ui/views/return/components/price/Price.style.d.ts +1 -0
- package/dist/src/infrastructure/ui/views/return/components/price/Price.style.js +1 -0
- package/dist/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.js +3 -3
- package/dist/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.js +2 -2
- package/dist/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.js +4 -4
- package/dist/src/infrastructure/ui/views/summary/Summary.js +1 -1
- package/dist/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.js +1 -1
- package/dist/src/infrastructure/ui/views/summary/components/pricing/Pricing.js +1 -1
- package/dist/src/version.d.ts +2 -2
- package/dist/src/version.js +2 -2
- package/package.json +1 -1
- package/src/ExpoRoot.tsx +1 -1
- package/src/infrastructure/ui/components/atoms/price/Price.style.ts +1 -0
- package/src/infrastructure/ui/components/atoms/price/Price.tsx +1 -6
- package/src/infrastructure/ui/components/atoms/price/__snapshots__/Price.test.tsx.snap +19 -13
- package/src/infrastructure/ui/components/organisms/checkoutQuestions/components/buttonCheckoutQuestionItem/ButtonCheckoutQuestionItem.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostLegacyRadioGroupReturnQuestionItem/HostLegacyRadioGroupReturnQuestionItem.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostRadioGroupReturnQuestionItem/HostRadioGroupReturnQuestionItem.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.tsx +2 -2
- package/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.tsx +1 -1
- package/src/infrastructure/ui/components/templates/header/checkoutHeader/__snapshots__/CheckoutHeader.test.tsx.snap +2 -0
- package/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.tsx +1 -1
- package/src/infrastructure/ui/components/templates/header/itemDetailHeader/__snapshots__/ItemDetailHeader.test.tsx.snap +2 -0
- package/src/infrastructure/ui/components/templates/header/itemHeader/ItemHeader.tsx +1 -1
- package/src/infrastructure/ui/components/templates/header/itemHeader/__snapshots__/ItemHeader.test.tsx.snap +3 -0
- package/src/infrastructure/ui/views/checkout/Checkout.tsx +1 -1
- package/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.style.ts +3 -0
- package/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.tsx +1 -1
- package/src/infrastructure/ui/views/item/components/banner/__snapshots__/CustomerDecissionBanner.test.tsx.snap +9 -3
- package/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/GetOutOfCheckoutModal.tsx +12 -2
- package/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/__snapshots__/GetOutOfCheckoutModal.test.tsx.snap +4 -0
- package/src/infrastructure/ui/views/item/components/itemActions/__snapshots__/ItemActions.test.tsx.snap +4 -0
- package/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.tsx +3 -3
- package/src/infrastructure/ui/views/item/components/productVariantDescription/__snapshots__/ProductVariantDescription.test.tsx.snap +18 -8
- package/src/infrastructure/ui/views/item/components/selectModal/SelectModal.tsx +1 -1
- package/src/infrastructure/ui/views/item/components/selectModal/__snapshots__/SelecModal.test.tsx.snap +2 -0
- package/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/SizeWithoutStockModal.tsx +1 -1
- package/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/__snapshots__/SizeWithoutStockModal.test.tsx.snap +3 -0
- package/src/infrastructure/ui/views/item/views/productVariant/__snapshots__/ProductVariant.test.tsx.snap +27 -12
- package/src/infrastructure/ui/views/return/components/price/Price.style.ts +1 -0
- package/src/infrastructure/ui/views/return/components/price/Price.tsx +3 -3
- package/src/infrastructure/ui/views/return/components/price/__snapshots__/Price.test.tsx.snap +4 -1
- package/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.tsx +3 -3
- package/src/infrastructure/ui/views/return/components/productVariantPreview/__snapshots__/ProductVariantPreview.test.tsx.snap +4 -0
- package/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.tsx +2 -2
- package/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.tsx +4 -4
- package/src/infrastructure/ui/views/shared/components/productVariant/__snapshots__/ProductVariant.test.tsx.snap +20 -8
- package/src/infrastructure/ui/views/summary/Summary.tsx +1 -1
- package/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.tsx +1 -1
- package/src/infrastructure/ui/views/summary/components/collapsiblePricing/__snapshots__/CollapsiblePricing.test.tsx.snap +16 -8
- package/src/infrastructure/ui/views/summary/components/pricing/Pricing.tsx +1 -1
- package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/__snapshots__/CheckoutItemsTabs.test.tsx.snap +44 -16
- package/dist/src/projection/order/order.d.ts +0 -6
- package/dist/src/projection/order/order.js +0 -1
- package/dist/src/projection/subscription/subscription.d.ts +0 -2
- package/dist/src/projection/subscription/subscription.js +0 -1
package/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.tsx
CHANGED
|
@@ -183,10 +183,10 @@ const ReturnQuestionsForm: FC<ReturnQuestionsFormProps> = ({
|
|
|
183
183
|
tradename === Tradename.OUTFITTERY && style.infoOutfittery,
|
|
184
184
|
]}
|
|
185
185
|
>
|
|
186
|
-
<Text level={3} heading>
|
|
186
|
+
<Text level={3} variant="heading">
|
|
187
187
|
{titleText}
|
|
188
188
|
</Text>
|
|
189
|
-
<Text level={1} style={style.description} detail>
|
|
189
|
+
<Text level={1} style={style.description} variant="detail">
|
|
190
190
|
{descriptionText}
|
|
191
191
|
</Text>
|
|
192
192
|
</View>
|
|
@@ -69,19 +69,19 @@ const ProductVariant: FC<ProductVariantProps> = ({
|
|
|
69
69
|
|
|
70
70
|
<View style={style.descriptionContainer}>
|
|
71
71
|
<View style={style.infoProductVariant}>
|
|
72
|
-
<Text level={2} style={style.text} detail>
|
|
72
|
+
<Text level={2} style={style.text} variant="detail">
|
|
73
73
|
{brand}
|
|
74
74
|
</Text>
|
|
75
|
-
<Text level={2} detail>
|
|
75
|
+
<Text level={2} variant="detail">
|
|
76
76
|
{name}
|
|
77
77
|
</Text>
|
|
78
|
-
<Text level={2} style={style.text} detail>
|
|
78
|
+
<Text level={2} style={style.text} variant="detail">
|
|
79
79
|
{sizeProjection.unique ? uniqueText : size({ size: sizeProjection, country })} / {colorLabel}
|
|
80
80
|
</Text>
|
|
81
81
|
|
|
82
82
|
{status === CheckoutItemStatus.REPLACED && (
|
|
83
83
|
<View style={style.sizeChange}>
|
|
84
|
-
<Text level={2} detail>
|
|
84
|
+
<Text level={2} variant="detail">
|
|
85
85
|
{sizeChangeText}
|
|
86
86
|
</Text>
|
|
87
87
|
</View>
|
|
@@ -231,6 +231,7 @@ exports[`ProductVariant component matches the snapshot for a non-unique size: no
|
|
|
231
231
|
style={
|
|
232
232
|
[
|
|
233
233
|
{
|
|
234
|
+
"color": "#0C0A0A",
|
|
234
235
|
"fontFamily": "AreaNormal-Semibold",
|
|
235
236
|
"fontSize": 12,
|
|
236
237
|
"fontStyle": "normal",
|
|
@@ -250,6 +251,7 @@ exports[`ProductVariant component matches the snapshot for a non-unique size: no
|
|
|
250
251
|
style={
|
|
251
252
|
[
|
|
252
253
|
{
|
|
254
|
+
"color": "#0C0A0A",
|
|
253
255
|
"fontFamily": "AreaNormal-Semibold",
|
|
254
256
|
"fontSize": 12,
|
|
255
257
|
"fontStyle": "normal",
|
|
@@ -267,6 +269,7 @@ exports[`ProductVariant component matches the snapshot for a non-unique size: no
|
|
|
267
269
|
style={
|
|
268
270
|
[
|
|
269
271
|
{
|
|
272
|
+
"color": "#0C0A0A",
|
|
270
273
|
"fontFamily": "AreaNormal-Semibold",
|
|
271
274
|
"fontSize": 12,
|
|
272
275
|
"fontStyle": "normal",
|
|
@@ -294,15 +297,17 @@ exports[`ProductVariant component matches the snapshot for a non-unique size: no
|
|
|
294
297
|
testID="price"
|
|
295
298
|
>
|
|
296
299
|
<Text
|
|
300
|
+
detail={true}
|
|
297
301
|
style={
|
|
298
302
|
[
|
|
299
303
|
{
|
|
304
|
+
"color": "#0C0A0A",
|
|
300
305
|
"fontFamily": "AreaNormal-Semibold",
|
|
301
|
-
"fontSize":
|
|
306
|
+
"fontSize": 18,
|
|
302
307
|
"fontStyle": "normal",
|
|
303
|
-
"fontWeight": "
|
|
304
|
-
"letterSpacing": 0.
|
|
305
|
-
"lineHeight":
|
|
308
|
+
"fontWeight": "300",
|
|
309
|
+
"letterSpacing": -0.2,
|
|
310
|
+
"lineHeight": 22,
|
|
306
311
|
},
|
|
307
312
|
undefined,
|
|
308
313
|
]
|
|
@@ -322,6 +327,7 @@ exports[`ProductVariant component matches the snapshot for a non-unique size: no
|
|
|
322
327
|
style={
|
|
323
328
|
[
|
|
324
329
|
{
|
|
330
|
+
"color": "#0C0A0A",
|
|
325
331
|
"fontFamily": "AreaNormal-Semibold",
|
|
326
332
|
"fontSize": 15,
|
|
327
333
|
"fontStyle": "normal",
|
|
@@ -584,6 +590,7 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
|
|
|
584
590
|
style={
|
|
585
591
|
[
|
|
586
592
|
{
|
|
593
|
+
"color": "#0C0A0A",
|
|
587
594
|
"fontFamily": "AreaNormal-Semibold",
|
|
588
595
|
"fontSize": 12,
|
|
589
596
|
"fontStyle": "normal",
|
|
@@ -603,6 +610,7 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
|
|
|
603
610
|
style={
|
|
604
611
|
[
|
|
605
612
|
{
|
|
613
|
+
"color": "#0C0A0A",
|
|
606
614
|
"fontFamily": "AreaNormal-Semibold",
|
|
607
615
|
"fontSize": 12,
|
|
608
616
|
"fontStyle": "normal",
|
|
@@ -620,6 +628,7 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
|
|
|
620
628
|
style={
|
|
621
629
|
[
|
|
622
630
|
{
|
|
631
|
+
"color": "#0C0A0A",
|
|
623
632
|
"fontFamily": "AreaNormal-Semibold",
|
|
624
633
|
"fontSize": 12,
|
|
625
634
|
"fontStyle": "normal",
|
|
@@ -647,15 +656,17 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
|
|
|
647
656
|
testID="price"
|
|
648
657
|
>
|
|
649
658
|
<Text
|
|
659
|
+
detail={true}
|
|
650
660
|
style={
|
|
651
661
|
[
|
|
652
662
|
{
|
|
663
|
+
"color": "#0C0A0A",
|
|
653
664
|
"fontFamily": "AreaNormal-Semibold",
|
|
654
|
-
"fontSize":
|
|
665
|
+
"fontSize": 18,
|
|
655
666
|
"fontStyle": "normal",
|
|
656
|
-
"fontWeight": "
|
|
657
|
-
"letterSpacing": 0.
|
|
658
|
-
"lineHeight":
|
|
667
|
+
"fontWeight": "300",
|
|
668
|
+
"letterSpacing": -0.2,
|
|
669
|
+
"lineHeight": 22,
|
|
659
670
|
},
|
|
660
671
|
undefined,
|
|
661
672
|
]
|
|
@@ -675,6 +686,7 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
|
|
|
675
686
|
style={
|
|
676
687
|
[
|
|
677
688
|
{
|
|
689
|
+
"color": "#0C0A0A",
|
|
678
690
|
"fontFamily": "AreaNormal-Semibold",
|
|
679
691
|
"fontSize": 15,
|
|
680
692
|
"fontStyle": "normal",
|
|
@@ -134,7 +134,7 @@ const Summary: FC<SummaryProps> = ({ layout: Layout, children }) => {
|
|
|
134
134
|
<Box size={{ L: "2/3" }} style={isDesktopScreen && style.desktopListSpacing}>
|
|
135
135
|
<View style={[style.contentWrapper, isDesktopScreen && style.desktopContentWrapper]}>
|
|
136
136
|
<View style={!isDesktopScreen && style.mobileInfo}>
|
|
137
|
-
<Text level={3} style={style.title} heading>
|
|
137
|
+
<Text level={3} style={style.title} variant="heading">
|
|
138
138
|
{titleText}
|
|
139
139
|
</Text>
|
|
140
140
|
<Text level={3} style={style.description}>
|
package/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.tsx
CHANGED
|
@@ -72,7 +72,7 @@ const CollapsiblePricing: FC<CollapsiblePricingProps> = ({
|
|
|
72
72
|
{collapsed && collapsible ? (
|
|
73
73
|
<Animated.View key="collapsed" style={[style.collapsed, collapsedAnimatedStyle]}>
|
|
74
74
|
<View style={style.collapsedContent}>
|
|
75
|
-
<Text level={1} style={style.totalCollapsed} detail>
|
|
75
|
+
<Text level={1} style={style.totalCollapsed} variant="detail">
|
|
76
76
|
{totalText} {totalCheckoutItemsKeptText}
|
|
77
77
|
</Text>
|
|
78
78
|
<Price price={pendingToPay} variant="detail" />
|
|
@@ -75,6 +75,7 @@ exports[`Pricing component matches the snapshot for collaped pricing: collapsed
|
|
|
75
75
|
style={
|
|
76
76
|
[
|
|
77
77
|
{
|
|
78
|
+
"color": "#0C0A0A",
|
|
78
79
|
"fontFamily": "AreaNormal-Semibold",
|
|
79
80
|
"fontSize": 15,
|
|
80
81
|
"fontStyle": "normal",
|
|
@@ -128,6 +129,7 @@ exports[`Pricing component matches the snapshot for collaped pricing: collapsed
|
|
|
128
129
|
style={
|
|
129
130
|
[
|
|
130
131
|
{
|
|
132
|
+
"color": "#0C0A0A",
|
|
131
133
|
"fontFamily": "AreaNormal-Semibold",
|
|
132
134
|
"fontSize": 13,
|
|
133
135
|
"fontStyle": "normal",
|
|
@@ -154,15 +156,17 @@ exports[`Pricing component matches the snapshot for collaped pricing: collapsed
|
|
|
154
156
|
testID="price"
|
|
155
157
|
>
|
|
156
158
|
<Text
|
|
159
|
+
detail={true}
|
|
157
160
|
style={
|
|
158
161
|
[
|
|
159
162
|
{
|
|
163
|
+
"color": "#0C0A0A",
|
|
160
164
|
"fontFamily": "AreaNormal-Semibold",
|
|
161
|
-
"fontSize":
|
|
165
|
+
"fontSize": 18,
|
|
162
166
|
"fontStyle": "normal",
|
|
163
|
-
"fontWeight": "
|
|
164
|
-
"letterSpacing": 0.
|
|
165
|
-
"lineHeight":
|
|
167
|
+
"fontWeight": "300",
|
|
168
|
+
"letterSpacing": -0.2,
|
|
169
|
+
"lineHeight": 22,
|
|
166
170
|
},
|
|
167
171
|
undefined,
|
|
168
172
|
]
|
|
@@ -425,6 +429,7 @@ exports[`Pricing component matches the snapshot for non-collaped pricing: non-co
|
|
|
425
429
|
style={
|
|
426
430
|
[
|
|
427
431
|
{
|
|
432
|
+
"color": "#0C0A0A",
|
|
428
433
|
"fontFamily": "AreaNormal-Semibold",
|
|
429
434
|
"fontSize": 15,
|
|
430
435
|
"fontStyle": "normal",
|
|
@@ -478,6 +483,7 @@ exports[`Pricing component matches the snapshot for non-collaped pricing: non-co
|
|
|
478
483
|
style={
|
|
479
484
|
[
|
|
480
485
|
{
|
|
486
|
+
"color": "#0C0A0A",
|
|
481
487
|
"fontFamily": "AreaNormal-Semibold",
|
|
482
488
|
"fontSize": 13,
|
|
483
489
|
"fontStyle": "normal",
|
|
@@ -504,15 +510,17 @@ exports[`Pricing component matches the snapshot for non-collaped pricing: non-co
|
|
|
504
510
|
testID="price"
|
|
505
511
|
>
|
|
506
512
|
<Text
|
|
513
|
+
detail={true}
|
|
507
514
|
style={
|
|
508
515
|
[
|
|
509
516
|
{
|
|
517
|
+
"color": "#0C0A0A",
|
|
510
518
|
"fontFamily": "AreaNormal-Semibold",
|
|
511
|
-
"fontSize":
|
|
519
|
+
"fontSize": 18,
|
|
512
520
|
"fontStyle": "normal",
|
|
513
|
-
"fontWeight": "
|
|
514
|
-
"letterSpacing": 0.
|
|
515
|
-
"lineHeight":
|
|
521
|
+
"fontWeight": "300",
|
|
522
|
+
"letterSpacing": -0.2,
|
|
523
|
+
"lineHeight": 22,
|
|
516
524
|
},
|
|
517
525
|
undefined,
|
|
518
526
|
]
|
|
@@ -110,6 +110,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
110
110
|
style={
|
|
111
111
|
[
|
|
112
112
|
{
|
|
113
|
+
"color": "#0C0A0A",
|
|
113
114
|
"fontFamily": "AreaNormal-Extrabold",
|
|
114
115
|
"fontSize": 15,
|
|
115
116
|
"fontStyle": "normal",
|
|
@@ -181,6 +182,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
181
182
|
style={
|
|
182
183
|
[
|
|
183
184
|
{
|
|
185
|
+
"color": "#0C0A0A",
|
|
184
186
|
"fontFamily": "AreaNormal-Extrabold",
|
|
185
187
|
"fontSize": 15,
|
|
186
188
|
"fontStyle": "normal",
|
|
@@ -514,6 +516,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
514
516
|
style={
|
|
515
517
|
[
|
|
516
518
|
{
|
|
519
|
+
"color": "#0C0A0A",
|
|
517
520
|
"fontFamily": "AreaNormal-Semibold",
|
|
518
521
|
"fontSize": 12,
|
|
519
522
|
"fontStyle": "normal",
|
|
@@ -533,6 +536,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
533
536
|
style={
|
|
534
537
|
[
|
|
535
538
|
{
|
|
539
|
+
"color": "#0C0A0A",
|
|
536
540
|
"fontFamily": "AreaNormal-Semibold",
|
|
537
541
|
"fontSize": 12,
|
|
538
542
|
"fontStyle": "normal",
|
|
@@ -550,6 +554,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
550
554
|
style={
|
|
551
555
|
[
|
|
552
556
|
{
|
|
557
|
+
"color": "#0C0A0A",
|
|
553
558
|
"fontFamily": "AreaNormal-Semibold",
|
|
554
559
|
"fontSize": 12,
|
|
555
560
|
"fontStyle": "normal",
|
|
@@ -577,15 +582,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
577
582
|
testID="price"
|
|
578
583
|
>
|
|
579
584
|
<Text
|
|
585
|
+
detail={true}
|
|
580
586
|
style={
|
|
581
587
|
[
|
|
582
588
|
{
|
|
589
|
+
"color": "#0C0A0A",
|
|
583
590
|
"fontFamily": "AreaNormal-Semibold",
|
|
584
|
-
"fontSize":
|
|
591
|
+
"fontSize": 18,
|
|
585
592
|
"fontStyle": "normal",
|
|
586
|
-
"fontWeight": "
|
|
587
|
-
"letterSpacing": 0.
|
|
588
|
-
"lineHeight":
|
|
593
|
+
"fontWeight": "300",
|
|
594
|
+
"letterSpacing": -0.2,
|
|
595
|
+
"lineHeight": 22,
|
|
589
596
|
},
|
|
590
597
|
undefined,
|
|
591
598
|
]
|
|
@@ -605,6 +612,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
605
612
|
style={
|
|
606
613
|
[
|
|
607
614
|
{
|
|
615
|
+
"color": "#0C0A0A",
|
|
608
616
|
"fontFamily": "AreaNormal-Semibold",
|
|
609
617
|
"fontSize": 15,
|
|
610
618
|
"fontStyle": "normal",
|
|
@@ -839,6 +847,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
839
847
|
style={
|
|
840
848
|
[
|
|
841
849
|
{
|
|
850
|
+
"color": "#0C0A0A",
|
|
842
851
|
"fontFamily": "AreaNormal-Semibold",
|
|
843
852
|
"fontSize": 12,
|
|
844
853
|
"fontStyle": "normal",
|
|
@@ -858,6 +867,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
858
867
|
style={
|
|
859
868
|
[
|
|
860
869
|
{
|
|
870
|
+
"color": "#0C0A0A",
|
|
861
871
|
"fontFamily": "AreaNormal-Semibold",
|
|
862
872
|
"fontSize": 12,
|
|
863
873
|
"fontStyle": "normal",
|
|
@@ -875,6 +885,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
875
885
|
style={
|
|
876
886
|
[
|
|
877
887
|
{
|
|
888
|
+
"color": "#0C0A0A",
|
|
878
889
|
"fontFamily": "AreaNormal-Semibold",
|
|
879
890
|
"fontSize": 12,
|
|
880
891
|
"fontStyle": "normal",
|
|
@@ -908,6 +919,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
908
919
|
style={
|
|
909
920
|
[
|
|
910
921
|
{
|
|
922
|
+
"color": "#0C0A0A",
|
|
911
923
|
"fontFamily": "AreaNormal-Semibold",
|
|
912
924
|
"fontSize": 12,
|
|
913
925
|
"fontStyle": "normal",
|
|
@@ -932,15 +944,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
932
944
|
testID="price"
|
|
933
945
|
>
|
|
934
946
|
<Text
|
|
947
|
+
detail={true}
|
|
935
948
|
style={
|
|
936
949
|
[
|
|
937
950
|
{
|
|
951
|
+
"color": "#0C0A0A",
|
|
938
952
|
"fontFamily": "AreaNormal-Semibold",
|
|
939
|
-
"fontSize":
|
|
953
|
+
"fontSize": 18,
|
|
940
954
|
"fontStyle": "normal",
|
|
941
|
-
"fontWeight": "
|
|
942
|
-
"letterSpacing": 0.
|
|
943
|
-
"lineHeight":
|
|
955
|
+
"fontWeight": "300",
|
|
956
|
+
"letterSpacing": -0.2,
|
|
957
|
+
"lineHeight": 22,
|
|
944
958
|
},
|
|
945
959
|
undefined,
|
|
946
960
|
]
|
|
@@ -960,6 +974,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
960
974
|
style={
|
|
961
975
|
[
|
|
962
976
|
{
|
|
977
|
+
"color": "#0C0A0A",
|
|
963
978
|
"fontFamily": "AreaNormal-Semibold",
|
|
964
979
|
"fontSize": 15,
|
|
965
980
|
"fontStyle": "normal",
|
|
@@ -1208,6 +1223,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1208
1223
|
style={
|
|
1209
1224
|
[
|
|
1210
1225
|
{
|
|
1226
|
+
"color": "#0C0A0A",
|
|
1211
1227
|
"fontFamily": "AreaNormal-Semibold",
|
|
1212
1228
|
"fontSize": 12,
|
|
1213
1229
|
"fontStyle": "normal",
|
|
@@ -1227,6 +1243,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1227
1243
|
style={
|
|
1228
1244
|
[
|
|
1229
1245
|
{
|
|
1246
|
+
"color": "#0C0A0A",
|
|
1230
1247
|
"fontFamily": "AreaNormal-Semibold",
|
|
1231
1248
|
"fontSize": 12,
|
|
1232
1249
|
"fontStyle": "normal",
|
|
@@ -1244,6 +1261,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1244
1261
|
style={
|
|
1245
1262
|
[
|
|
1246
1263
|
{
|
|
1264
|
+
"color": "#0C0A0A",
|
|
1247
1265
|
"fontFamily": "AreaNormal-Semibold",
|
|
1248
1266
|
"fontSize": 12,
|
|
1249
1267
|
"fontStyle": "normal",
|
|
@@ -1271,15 +1289,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1271
1289
|
testID="price"
|
|
1272
1290
|
>
|
|
1273
1291
|
<Text
|
|
1292
|
+
detail={true}
|
|
1274
1293
|
style={
|
|
1275
1294
|
[
|
|
1276
1295
|
{
|
|
1296
|
+
"color": "#0C0A0A",
|
|
1277
1297
|
"fontFamily": "AreaNormal-Semibold",
|
|
1278
|
-
"fontSize":
|
|
1298
|
+
"fontSize": 18,
|
|
1279
1299
|
"fontStyle": "normal",
|
|
1280
|
-
"fontWeight": "
|
|
1281
|
-
"letterSpacing": 0.
|
|
1282
|
-
"lineHeight":
|
|
1300
|
+
"fontWeight": "300",
|
|
1301
|
+
"letterSpacing": -0.2,
|
|
1302
|
+
"lineHeight": 22,
|
|
1283
1303
|
},
|
|
1284
1304
|
undefined,
|
|
1285
1305
|
]
|
|
@@ -1299,6 +1319,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1299
1319
|
style={
|
|
1300
1320
|
[
|
|
1301
1321
|
{
|
|
1322
|
+
"color": "#0C0A0A",
|
|
1302
1323
|
"fontFamily": "AreaNormal-Semibold",
|
|
1303
1324
|
"fontSize": 15,
|
|
1304
1325
|
"fontStyle": "normal",
|
|
@@ -1533,6 +1554,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1533
1554
|
style={
|
|
1534
1555
|
[
|
|
1535
1556
|
{
|
|
1557
|
+
"color": "#0C0A0A",
|
|
1536
1558
|
"fontFamily": "AreaNormal-Semibold",
|
|
1537
1559
|
"fontSize": 12,
|
|
1538
1560
|
"fontStyle": "normal",
|
|
@@ -1552,6 +1574,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1552
1574
|
style={
|
|
1553
1575
|
[
|
|
1554
1576
|
{
|
|
1577
|
+
"color": "#0C0A0A",
|
|
1555
1578
|
"fontFamily": "AreaNormal-Semibold",
|
|
1556
1579
|
"fontSize": 12,
|
|
1557
1580
|
"fontStyle": "normal",
|
|
@@ -1569,6 +1592,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1569
1592
|
style={
|
|
1570
1593
|
[
|
|
1571
1594
|
{
|
|
1595
|
+
"color": "#0C0A0A",
|
|
1572
1596
|
"fontFamily": "AreaNormal-Semibold",
|
|
1573
1597
|
"fontSize": 12,
|
|
1574
1598
|
"fontStyle": "normal",
|
|
@@ -1602,6 +1626,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1602
1626
|
style={
|
|
1603
1627
|
[
|
|
1604
1628
|
{
|
|
1629
|
+
"color": "#0C0A0A",
|
|
1605
1630
|
"fontFamily": "AreaNormal-Semibold",
|
|
1606
1631
|
"fontSize": 12,
|
|
1607
1632
|
"fontStyle": "normal",
|
|
@@ -1626,15 +1651,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1626
1651
|
testID="price"
|
|
1627
1652
|
>
|
|
1628
1653
|
<Text
|
|
1654
|
+
detail={true}
|
|
1629
1655
|
style={
|
|
1630
1656
|
[
|
|
1631
1657
|
{
|
|
1658
|
+
"color": "#0C0A0A",
|
|
1632
1659
|
"fontFamily": "AreaNormal-Semibold",
|
|
1633
|
-
"fontSize":
|
|
1660
|
+
"fontSize": 18,
|
|
1634
1661
|
"fontStyle": "normal",
|
|
1635
|
-
"fontWeight": "
|
|
1636
|
-
"letterSpacing": 0.
|
|
1637
|
-
"lineHeight":
|
|
1662
|
+
"fontWeight": "300",
|
|
1663
|
+
"letterSpacing": -0.2,
|
|
1664
|
+
"lineHeight": 22,
|
|
1638
1665
|
},
|
|
1639
1666
|
undefined,
|
|
1640
1667
|
]
|
|
@@ -1654,6 +1681,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1654
1681
|
style={
|
|
1655
1682
|
[
|
|
1656
1683
|
{
|
|
1684
|
+
"color": "#0C0A0A",
|
|
1657
1685
|
"fontFamily": "AreaNormal-Semibold",
|
|
1658
1686
|
"fontSize": 15,
|
|
1659
1687
|
"fontStyle": "normal",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|