@lookiero/checkout 14.0.4 → 14.2.0
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/public/public/assets/adaptive-icon.png +0 -0
- package/dist/public/public/assets/favicon.png +0 -0
- package/dist/public/public/assets/icon.png +0 -0
- package/dist/public/public/assets/splash.png +0 -0
- package/dist/public/public/images/not-found.png +0 -0
- package/dist/src/ExpoRoot.d.ts +1 -0
- package/dist/src/ExpoRoot.js +3 -2
- package/dist/src/infrastructure/ui/components/atoms/fiveItemsDiscountBanner/FiveItemsDiscountBanner.js +3 -2
- package/dist/src/infrastructure/ui/components/atoms/price/Price.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/checkoutQuestions/components/buttonCheckoutQuestionItem/ButtonCheckoutQuestionItem.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/checkoutQuestions/components/hostDefaultCheckoutQuestionItem/HostDefaultCheckoutQuestionItem.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/checkoutQuestions/components/hostSelectCheckoutQuestionItem/HostSelectCheckoutQuestionItem.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/modalOptionReturnQuestionItems/ModalOptionReturnQuestionItems.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/optionReturnQuestionItem/OptionReturnQuestionItem.js +1 -1
- package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.js +3 -4
- package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.js +1 -1
- 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 +2 -2
- package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.d.ts +1 -0
- package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.js +3 -2
- package/dist/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/GetOutOfCheckoutModal.js +4 -4
- package/dist/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.js +1 -1
- package/dist/src/infrastructure/ui/views/item/components/returnQuestionsFeedback/ReturnQuestionsFeedback.js +1 -1
- package/dist/src/infrastructure/ui/views/item/components/selectModal/SelectModal.js +1 -1
- package/dist/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/SizeWithoutStockModal.js +2 -2
- package/dist/src/infrastructure/ui/views/return/components/price/Price.js +1 -1
- package/dist/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.js +1 -1
- package/dist/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.js +2 -1
- package/dist/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.js +1 -1
- package/dist/src/infrastructure/ui/views/summary/Summary.js +2 -2
- package/dist/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.js +2 -2
- package/dist/src/infrastructure/ui/views/summary/components/pricing/Pricing.js +1 -1
- package/dist/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.js +1 -1
- package/dist/src/projection/order/order.d.ts +6 -0
- package/dist/src/projection/order/order.js +1 -0
- package/dist/src/projection/subscription/subscription.d.ts +2 -0
- package/dist/src/projection/subscription/subscription.js +1 -0
- package/dist/src/version.d.ts +2 -2
- package/dist/src/version.js +2 -2
- package/package.json +4 -4
- package/src/ExpoRoot.tsx +3 -2
- package/src/infrastructure/ui/components/atoms/fiveItemsDiscountBanner/FiveItemsDiscountBanner.tsx +3 -2
- package/src/infrastructure/ui/components/atoms/price/Price.tsx +1 -1
- package/src/infrastructure/ui/components/atoms/price/__snapshots__/Price.test.tsx.snap +11 -21
- package/src/infrastructure/ui/components/organisms/checkoutQuestions/components/buttonCheckoutQuestionItem/ButtonCheckoutQuestionItem.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/checkoutQuestions/components/hostDefaultCheckoutQuestionItem/HostDefaultCheckoutQuestionItem.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/checkoutQuestions/components/hostSelectCheckoutQuestionItem/HostSelectCheckoutQuestionItem.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/modalOptionReturnQuestionItems/ModalOptionReturnQuestionItems.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/returnQuestions/components/optionReturnQuestionItem/OptionReturnQuestionItem.tsx +1 -1
- package/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.tsx +5 -6
- package/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.tsx +1 -1
- 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 +21 -20
- 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 +21 -20
- 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 +39 -33
- package/src/infrastructure/ui/views/checkout/Checkout.tsx +2 -2
- package/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.tsx +3 -2
- package/src/infrastructure/ui/views/item/components/banner/__snapshots__/CustomerDecissionBanner.test.tsx.snap +9 -21
- package/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/GetOutOfCheckoutModal.tsx +4 -4
- package/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/__snapshots__/GetOutOfCheckoutModal.test.tsx.snap +31 -32
- package/src/infrastructure/ui/views/item/components/itemActions/__snapshots__/ItemActions.test.tsx.snap +45 -36
- package/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.tsx +1 -1
- package/src/infrastructure/ui/views/item/components/productVariantDescription/__snapshots__/ProductVariantDescription.test.tsx.snap +28 -56
- package/src/infrastructure/ui/views/item/components/returnQuestionsFeedback/ReturnQuestionsFeedback.tsx +1 -1
- 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 +29 -21
- package/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/SizeWithoutStockModal.tsx +2 -2
- package/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/__snapshots__/SizeWithoutStockModal.test.tsx.snap +28 -27
- package/src/infrastructure/ui/views/item/views/productVariant/__snapshots__/ProductVariant.test.tsx.snap +42 -84
- package/src/infrastructure/ui/views/return/components/price/Price.tsx +1 -1
- package/src/infrastructure/ui/views/return/components/price/__snapshots__/Price.test.tsx.snap +11 -21
- package/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.tsx +1 -1
- package/src/infrastructure/ui/views/return/components/productVariantPreview/__snapshots__/ProductVariantPreview.test.tsx.snap +16 -28
- package/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.tsx +2 -1
- package/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.tsx +1 -1
- package/src/infrastructure/ui/views/shared/components/productVariant/__snapshots__/ProductVariant.test.tsx.snap +68 -82
- package/src/infrastructure/ui/views/summary/Summary.tsx +2 -2
- package/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.tsx +2 -2
- package/src/infrastructure/ui/views/summary/components/collapsiblePricing/__snapshots__/CollapsiblePricing.test.tsx.snap +50 -54
- package/src/infrastructure/ui/views/summary/components/pricing/Pricing.tsx +1 -1
- package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.tsx +1 -1
- package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/__snapshots__/CheckoutItemsTabs.test.tsx.snap +172 -196
|
@@ -107,21 +107,28 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
107
107
|
testID="tab"
|
|
108
108
|
>
|
|
109
109
|
<Text
|
|
110
|
-
allowFontScaling={false}
|
|
111
|
-
selectable={false}
|
|
112
110
|
style={
|
|
113
111
|
[
|
|
114
112
|
{
|
|
115
|
-
"color": "#0C0A0A",
|
|
116
113
|
"fontFamily": "AreaNormal-Extrabold",
|
|
117
|
-
"fontSize":
|
|
114
|
+
"fontSize": 15,
|
|
115
|
+
"fontStyle": "normal",
|
|
116
|
+
"fontWeight": "normal",
|
|
118
117
|
"letterSpacing": -0.2,
|
|
119
|
-
"lineHeight":
|
|
120
|
-
"paddingBottom": 0,
|
|
121
|
-
"paddingLeft": 0,
|
|
122
|
-
"paddingRight": 0,
|
|
123
|
-
"paddingTop": 0,
|
|
118
|
+
"lineHeight": 20,
|
|
124
119
|
},
|
|
120
|
+
[
|
|
121
|
+
{
|
|
122
|
+
"color": "#837C7C",
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"color": "#0C0A0A",
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"fontSize": 13,
|
|
129
|
+
"lineHeight": 17,
|
|
130
|
+
},
|
|
131
|
+
],
|
|
125
132
|
]
|
|
126
133
|
}
|
|
127
134
|
>
|
|
@@ -171,21 +178,26 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
171
178
|
testID="tab"
|
|
172
179
|
>
|
|
173
180
|
<Text
|
|
174
|
-
allowFontScaling={false}
|
|
175
|
-
selectable={false}
|
|
176
181
|
style={
|
|
177
182
|
[
|
|
178
183
|
{
|
|
179
|
-
"color": "#837C7C",
|
|
180
184
|
"fontFamily": "AreaNormal-Extrabold",
|
|
181
|
-
"fontSize":
|
|
185
|
+
"fontSize": 15,
|
|
186
|
+
"fontStyle": "normal",
|
|
187
|
+
"fontWeight": "normal",
|
|
182
188
|
"letterSpacing": -0.2,
|
|
183
|
-
"lineHeight":
|
|
184
|
-
"paddingBottom": 0,
|
|
185
|
-
"paddingLeft": 0,
|
|
186
|
-
"paddingRight": 0,
|
|
187
|
-
"paddingTop": 0,
|
|
189
|
+
"lineHeight": 20,
|
|
188
190
|
},
|
|
191
|
+
[
|
|
192
|
+
{
|
|
193
|
+
"color": "#837C7C",
|
|
194
|
+
},
|
|
195
|
+
false,
|
|
196
|
+
{
|
|
197
|
+
"fontSize": 13,
|
|
198
|
+
"lineHeight": 17,
|
|
199
|
+
},
|
|
200
|
+
],
|
|
189
201
|
]
|
|
190
202
|
}
|
|
191
203
|
>
|
|
@@ -499,20 +511,18 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
499
511
|
}
|
|
500
512
|
>
|
|
501
513
|
<Text
|
|
502
|
-
allowFontScaling={false}
|
|
503
|
-
selectable={false}
|
|
504
514
|
style={
|
|
505
515
|
[
|
|
506
516
|
{
|
|
507
|
-
"color": "#837C7C",
|
|
508
517
|
"fontFamily": "AreaNormal-Semibold",
|
|
509
518
|
"fontSize": 12,
|
|
519
|
+
"fontStyle": "normal",
|
|
520
|
+
"fontWeight": "normal",
|
|
510
521
|
"letterSpacing": 0.1,
|
|
511
522
|
"lineHeight": 16,
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
"
|
|
515
|
-
"paddingTop": 0,
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"color": "#837C7C",
|
|
516
526
|
},
|
|
517
527
|
]
|
|
518
528
|
}
|
|
@@ -520,41 +530,35 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
520
530
|
CKS
|
|
521
531
|
</Text>
|
|
522
532
|
<Text
|
|
523
|
-
allowFontScaling={false}
|
|
524
|
-
selectable={false}
|
|
525
533
|
style={
|
|
526
534
|
[
|
|
527
535
|
{
|
|
528
|
-
"color": "#0C0A0A",
|
|
529
536
|
"fontFamily": "AreaNormal-Semibold",
|
|
530
537
|
"fontSize": 12,
|
|
538
|
+
"fontStyle": "normal",
|
|
539
|
+
"fontWeight": "normal",
|
|
531
540
|
"letterSpacing": 0.1,
|
|
532
541
|
"lineHeight": 16,
|
|
533
|
-
"paddingBottom": 0,
|
|
534
|
-
"paddingLeft": 0,
|
|
535
|
-
"paddingRight": 0,
|
|
536
|
-
"paddingTop": 0,
|
|
537
542
|
},
|
|
543
|
+
undefined,
|
|
538
544
|
]
|
|
539
545
|
}
|
|
540
546
|
>
|
|
541
547
|
Sari Tshirt lines
|
|
542
548
|
</Text>
|
|
543
549
|
<Text
|
|
544
|
-
allowFontScaling={false}
|
|
545
|
-
selectable={false}
|
|
546
550
|
style={
|
|
547
551
|
[
|
|
548
552
|
{
|
|
549
|
-
"color": "#837C7C",
|
|
550
553
|
"fontFamily": "AreaNormal-Semibold",
|
|
551
554
|
"fontSize": 12,
|
|
555
|
+
"fontStyle": "normal",
|
|
556
|
+
"fontWeight": "normal",
|
|
552
557
|
"letterSpacing": 0.1,
|
|
553
558
|
"lineHeight": 16,
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
"
|
|
557
|
-
"paddingTop": 0,
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"color": "#837C7C",
|
|
558
562
|
},
|
|
559
563
|
]
|
|
560
564
|
}
|
|
@@ -573,21 +577,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
573
577
|
testID="price"
|
|
574
578
|
>
|
|
575
579
|
<Text
|
|
576
|
-
allowFontScaling={false}
|
|
577
|
-
selectable={false}
|
|
578
580
|
style={
|
|
579
581
|
[
|
|
580
582
|
{
|
|
581
|
-
"color": "#0C0A0A",
|
|
582
583
|
"fontFamily": "AreaNormal-Semibold",
|
|
583
584
|
"fontSize": 12,
|
|
585
|
+
"fontStyle": "normal",
|
|
586
|
+
"fontWeight": "normal",
|
|
584
587
|
"letterSpacing": 0.1,
|
|
585
588
|
"lineHeight": 16,
|
|
586
|
-
"paddingBottom": 0,
|
|
587
|
-
"paddingLeft": 0,
|
|
588
|
-
"paddingRight": 0,
|
|
589
|
-
"paddingTop": 0,
|
|
590
589
|
},
|
|
590
|
+
undefined,
|
|
591
591
|
]
|
|
592
592
|
}
|
|
593
593
|
testID="price-text"
|
|
@@ -605,22 +605,27 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
605
605
|
style={
|
|
606
606
|
[
|
|
607
607
|
{
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"fontSize": 24,
|
|
608
|
+
"fontFamily": "AreaNormal-Semibold",
|
|
609
|
+
"fontSize": 15,
|
|
611
610
|
"fontStyle": "normal",
|
|
612
|
-
"fontWeight": "
|
|
613
|
-
"height": 24,
|
|
611
|
+
"fontWeight": "300",
|
|
614
612
|
"letterSpacing": -0.2,
|
|
615
|
-
"lineHeight":
|
|
616
|
-
"minHeight": 24,
|
|
617
|
-
"minWidth": 24,
|
|
618
|
-
"paddingBottom": 0,
|
|
619
|
-
"paddingLeft": 0,
|
|
620
|
-
"paddingRight": 0,
|
|
621
|
-
"paddingTop": 0,
|
|
622
|
-
"width": 24,
|
|
613
|
+
"lineHeight": 20,
|
|
623
614
|
},
|
|
615
|
+
[
|
|
616
|
+
{
|
|
617
|
+
"fontFamily": "auroraicons",
|
|
618
|
+
"fontSize": 24,
|
|
619
|
+
"fontStyle": "normal",
|
|
620
|
+
"fontWeight": "normal",
|
|
621
|
+
"height": 24,
|
|
622
|
+
"lineHeight": 24,
|
|
623
|
+
"minHeight": 24,
|
|
624
|
+
"minWidth": 24,
|
|
625
|
+
"width": 24,
|
|
626
|
+
},
|
|
627
|
+
undefined,
|
|
628
|
+
],
|
|
624
629
|
]
|
|
625
630
|
}
|
|
626
631
|
testID="icon"
|
|
@@ -831,20 +836,18 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
831
836
|
}
|
|
832
837
|
>
|
|
833
838
|
<Text
|
|
834
|
-
allowFontScaling={false}
|
|
835
|
-
selectable={false}
|
|
836
839
|
style={
|
|
837
840
|
[
|
|
838
841
|
{
|
|
839
|
-
"color": "#837C7C",
|
|
840
842
|
"fontFamily": "AreaNormal-Semibold",
|
|
841
843
|
"fontSize": 12,
|
|
844
|
+
"fontStyle": "normal",
|
|
845
|
+
"fontWeight": "normal",
|
|
842
846
|
"letterSpacing": 0.1,
|
|
843
847
|
"lineHeight": 16,
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
"
|
|
847
|
-
"paddingTop": 0,
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"color": "#837C7C",
|
|
848
851
|
},
|
|
849
852
|
]
|
|
850
853
|
}
|
|
@@ -852,41 +855,35 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
852
855
|
CKS
|
|
853
856
|
</Text>
|
|
854
857
|
<Text
|
|
855
|
-
allowFontScaling={false}
|
|
856
|
-
selectable={false}
|
|
857
858
|
style={
|
|
858
859
|
[
|
|
859
860
|
{
|
|
860
|
-
"color": "#0C0A0A",
|
|
861
861
|
"fontFamily": "AreaNormal-Semibold",
|
|
862
862
|
"fontSize": 12,
|
|
863
|
+
"fontStyle": "normal",
|
|
864
|
+
"fontWeight": "normal",
|
|
863
865
|
"letterSpacing": 0.1,
|
|
864
866
|
"lineHeight": 16,
|
|
865
|
-
"paddingBottom": 0,
|
|
866
|
-
"paddingLeft": 0,
|
|
867
|
-
"paddingRight": 0,
|
|
868
|
-
"paddingTop": 0,
|
|
869
867
|
},
|
|
868
|
+
undefined,
|
|
870
869
|
]
|
|
871
870
|
}
|
|
872
871
|
>
|
|
873
872
|
Sari Tshirt lines
|
|
874
873
|
</Text>
|
|
875
874
|
<Text
|
|
876
|
-
allowFontScaling={false}
|
|
877
|
-
selectable={false}
|
|
878
875
|
style={
|
|
879
876
|
[
|
|
880
877
|
{
|
|
881
|
-
"color": "#837C7C",
|
|
882
878
|
"fontFamily": "AreaNormal-Semibold",
|
|
883
879
|
"fontSize": 12,
|
|
880
|
+
"fontStyle": "normal",
|
|
881
|
+
"fontWeight": "normal",
|
|
884
882
|
"letterSpacing": 0.1,
|
|
885
883
|
"lineHeight": 16,
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
"
|
|
889
|
-
"paddingTop": 0,
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"color": "#837C7C",
|
|
890
887
|
},
|
|
891
888
|
]
|
|
892
889
|
}
|
|
@@ -908,21 +905,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
908
905
|
}
|
|
909
906
|
>
|
|
910
907
|
<Text
|
|
911
|
-
allowFontScaling={false}
|
|
912
|
-
selectable={false}
|
|
913
908
|
style={
|
|
914
909
|
[
|
|
915
910
|
{
|
|
916
|
-
"color": "#0C0A0A",
|
|
917
911
|
"fontFamily": "AreaNormal-Semibold",
|
|
918
912
|
"fontSize": 12,
|
|
913
|
+
"fontStyle": "normal",
|
|
914
|
+
"fontWeight": "normal",
|
|
919
915
|
"letterSpacing": 0.1,
|
|
920
916
|
"lineHeight": 16,
|
|
921
|
-
"paddingBottom": 0,
|
|
922
|
-
"paddingLeft": 0,
|
|
923
|
-
"paddingRight": 0,
|
|
924
|
-
"paddingTop": 0,
|
|
925
917
|
},
|
|
918
|
+
undefined,
|
|
926
919
|
]
|
|
927
920
|
}
|
|
928
921
|
>
|
|
@@ -939,21 +932,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
939
932
|
testID="price"
|
|
940
933
|
>
|
|
941
934
|
<Text
|
|
942
|
-
allowFontScaling={false}
|
|
943
|
-
selectable={false}
|
|
944
935
|
style={
|
|
945
936
|
[
|
|
946
937
|
{
|
|
947
|
-
"color": "#0C0A0A",
|
|
948
938
|
"fontFamily": "AreaNormal-Semibold",
|
|
949
939
|
"fontSize": 12,
|
|
940
|
+
"fontStyle": "normal",
|
|
941
|
+
"fontWeight": "normal",
|
|
950
942
|
"letterSpacing": 0.1,
|
|
951
943
|
"lineHeight": 16,
|
|
952
|
-
"paddingBottom": 0,
|
|
953
|
-
"paddingLeft": 0,
|
|
954
|
-
"paddingRight": 0,
|
|
955
|
-
"paddingTop": 0,
|
|
956
944
|
},
|
|
945
|
+
undefined,
|
|
957
946
|
]
|
|
958
947
|
}
|
|
959
948
|
testID="price-text"
|
|
@@ -971,22 +960,27 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
971
960
|
style={
|
|
972
961
|
[
|
|
973
962
|
{
|
|
974
|
-
"
|
|
975
|
-
"
|
|
976
|
-
"fontSize": 24,
|
|
963
|
+
"fontFamily": "AreaNormal-Semibold",
|
|
964
|
+
"fontSize": 15,
|
|
977
965
|
"fontStyle": "normal",
|
|
978
|
-
"fontWeight": "
|
|
979
|
-
"height": 24,
|
|
966
|
+
"fontWeight": "300",
|
|
980
967
|
"letterSpacing": -0.2,
|
|
981
|
-
"lineHeight":
|
|
982
|
-
"minHeight": 24,
|
|
983
|
-
"minWidth": 24,
|
|
984
|
-
"paddingBottom": 0,
|
|
985
|
-
"paddingLeft": 0,
|
|
986
|
-
"paddingRight": 0,
|
|
987
|
-
"paddingTop": 0,
|
|
988
|
-
"width": 24,
|
|
968
|
+
"lineHeight": 20,
|
|
989
969
|
},
|
|
970
|
+
[
|
|
971
|
+
{
|
|
972
|
+
"fontFamily": "auroraicons",
|
|
973
|
+
"fontSize": 24,
|
|
974
|
+
"fontStyle": "normal",
|
|
975
|
+
"fontWeight": "normal",
|
|
976
|
+
"height": 24,
|
|
977
|
+
"lineHeight": 24,
|
|
978
|
+
"minHeight": 24,
|
|
979
|
+
"minWidth": 24,
|
|
980
|
+
"width": 24,
|
|
981
|
+
},
|
|
982
|
+
undefined,
|
|
983
|
+
],
|
|
990
984
|
]
|
|
991
985
|
}
|
|
992
986
|
testID="icon"
|
|
@@ -1211,20 +1205,18 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1211
1205
|
}
|
|
1212
1206
|
>
|
|
1213
1207
|
<Text
|
|
1214
|
-
allowFontScaling={false}
|
|
1215
|
-
selectable={false}
|
|
1216
1208
|
style={
|
|
1217
1209
|
[
|
|
1218
1210
|
{
|
|
1219
|
-
"color": "#837C7C",
|
|
1220
1211
|
"fontFamily": "AreaNormal-Semibold",
|
|
1221
1212
|
"fontSize": 12,
|
|
1213
|
+
"fontStyle": "normal",
|
|
1214
|
+
"fontWeight": "normal",
|
|
1222
1215
|
"letterSpacing": 0.1,
|
|
1223
1216
|
"lineHeight": 16,
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
"
|
|
1227
|
-
"paddingTop": 0,
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
"color": "#837C7C",
|
|
1228
1220
|
},
|
|
1229
1221
|
]
|
|
1230
1222
|
}
|
|
@@ -1232,41 +1224,35 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1232
1224
|
CKS
|
|
1233
1225
|
</Text>
|
|
1234
1226
|
<Text
|
|
1235
|
-
allowFontScaling={false}
|
|
1236
|
-
selectable={false}
|
|
1237
1227
|
style={
|
|
1238
1228
|
[
|
|
1239
1229
|
{
|
|
1240
|
-
"color": "#0C0A0A",
|
|
1241
1230
|
"fontFamily": "AreaNormal-Semibold",
|
|
1242
1231
|
"fontSize": 12,
|
|
1232
|
+
"fontStyle": "normal",
|
|
1233
|
+
"fontWeight": "normal",
|
|
1243
1234
|
"letterSpacing": 0.1,
|
|
1244
1235
|
"lineHeight": 16,
|
|
1245
|
-
"paddingBottom": 0,
|
|
1246
|
-
"paddingLeft": 0,
|
|
1247
|
-
"paddingRight": 0,
|
|
1248
|
-
"paddingTop": 0,
|
|
1249
1236
|
},
|
|
1237
|
+
undefined,
|
|
1250
1238
|
]
|
|
1251
1239
|
}
|
|
1252
1240
|
>
|
|
1253
1241
|
Sari Tshirt lines
|
|
1254
1242
|
</Text>
|
|
1255
1243
|
<Text
|
|
1256
|
-
allowFontScaling={false}
|
|
1257
|
-
selectable={false}
|
|
1258
1244
|
style={
|
|
1259
1245
|
[
|
|
1260
1246
|
{
|
|
1261
|
-
"color": "#837C7C",
|
|
1262
1247
|
"fontFamily": "AreaNormal-Semibold",
|
|
1263
1248
|
"fontSize": 12,
|
|
1249
|
+
"fontStyle": "normal",
|
|
1250
|
+
"fontWeight": "normal",
|
|
1264
1251
|
"letterSpacing": 0.1,
|
|
1265
1252
|
"lineHeight": 16,
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
"
|
|
1269
|
-
"paddingTop": 0,
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"color": "#837C7C",
|
|
1270
1256
|
},
|
|
1271
1257
|
]
|
|
1272
1258
|
}
|
|
@@ -1285,21 +1271,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1285
1271
|
testID="price"
|
|
1286
1272
|
>
|
|
1287
1273
|
<Text
|
|
1288
|
-
allowFontScaling={false}
|
|
1289
|
-
selectable={false}
|
|
1290
1274
|
style={
|
|
1291
1275
|
[
|
|
1292
1276
|
{
|
|
1293
|
-
"color": "#0C0A0A",
|
|
1294
1277
|
"fontFamily": "AreaNormal-Semibold",
|
|
1295
1278
|
"fontSize": 12,
|
|
1279
|
+
"fontStyle": "normal",
|
|
1280
|
+
"fontWeight": "normal",
|
|
1296
1281
|
"letterSpacing": 0.1,
|
|
1297
1282
|
"lineHeight": 16,
|
|
1298
|
-
"paddingBottom": 0,
|
|
1299
|
-
"paddingLeft": 0,
|
|
1300
|
-
"paddingRight": 0,
|
|
1301
|
-
"paddingTop": 0,
|
|
1302
1283
|
},
|
|
1284
|
+
undefined,
|
|
1303
1285
|
]
|
|
1304
1286
|
}
|
|
1305
1287
|
testID="price-text"
|
|
@@ -1317,22 +1299,27 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1317
1299
|
style={
|
|
1318
1300
|
[
|
|
1319
1301
|
{
|
|
1320
|
-
"
|
|
1321
|
-
"
|
|
1322
|
-
"fontSize": 24,
|
|
1302
|
+
"fontFamily": "AreaNormal-Semibold",
|
|
1303
|
+
"fontSize": 15,
|
|
1323
1304
|
"fontStyle": "normal",
|
|
1324
|
-
"fontWeight": "
|
|
1325
|
-
"height": 24,
|
|
1305
|
+
"fontWeight": "300",
|
|
1326
1306
|
"letterSpacing": -0.2,
|
|
1327
|
-
"lineHeight":
|
|
1328
|
-
"minHeight": 24,
|
|
1329
|
-
"minWidth": 24,
|
|
1330
|
-
"paddingBottom": 0,
|
|
1331
|
-
"paddingLeft": 0,
|
|
1332
|
-
"paddingRight": 0,
|
|
1333
|
-
"paddingTop": 0,
|
|
1334
|
-
"width": 24,
|
|
1307
|
+
"lineHeight": 20,
|
|
1335
1308
|
},
|
|
1309
|
+
[
|
|
1310
|
+
{
|
|
1311
|
+
"fontFamily": "auroraicons",
|
|
1312
|
+
"fontSize": 24,
|
|
1313
|
+
"fontStyle": "normal",
|
|
1314
|
+
"fontWeight": "normal",
|
|
1315
|
+
"height": 24,
|
|
1316
|
+
"lineHeight": 24,
|
|
1317
|
+
"minHeight": 24,
|
|
1318
|
+
"minWidth": 24,
|
|
1319
|
+
"width": 24,
|
|
1320
|
+
},
|
|
1321
|
+
undefined,
|
|
1322
|
+
],
|
|
1336
1323
|
]
|
|
1337
1324
|
}
|
|
1338
1325
|
testID="icon"
|
|
@@ -1543,20 +1530,18 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1543
1530
|
}
|
|
1544
1531
|
>
|
|
1545
1532
|
<Text
|
|
1546
|
-
allowFontScaling={false}
|
|
1547
|
-
selectable={false}
|
|
1548
1533
|
style={
|
|
1549
1534
|
[
|
|
1550
1535
|
{
|
|
1551
|
-
"color": "#837C7C",
|
|
1552
1536
|
"fontFamily": "AreaNormal-Semibold",
|
|
1553
1537
|
"fontSize": 12,
|
|
1538
|
+
"fontStyle": "normal",
|
|
1539
|
+
"fontWeight": "normal",
|
|
1554
1540
|
"letterSpacing": 0.1,
|
|
1555
1541
|
"lineHeight": 16,
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
"
|
|
1559
|
-
"paddingTop": 0,
|
|
1542
|
+
},
|
|
1543
|
+
{
|
|
1544
|
+
"color": "#837C7C",
|
|
1560
1545
|
},
|
|
1561
1546
|
]
|
|
1562
1547
|
}
|
|
@@ -1564,41 +1549,35 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1564
1549
|
CKS
|
|
1565
1550
|
</Text>
|
|
1566
1551
|
<Text
|
|
1567
|
-
allowFontScaling={false}
|
|
1568
|
-
selectable={false}
|
|
1569
1552
|
style={
|
|
1570
1553
|
[
|
|
1571
1554
|
{
|
|
1572
|
-
"color": "#0C0A0A",
|
|
1573
1555
|
"fontFamily": "AreaNormal-Semibold",
|
|
1574
1556
|
"fontSize": 12,
|
|
1557
|
+
"fontStyle": "normal",
|
|
1558
|
+
"fontWeight": "normal",
|
|
1575
1559
|
"letterSpacing": 0.1,
|
|
1576
1560
|
"lineHeight": 16,
|
|
1577
|
-
"paddingBottom": 0,
|
|
1578
|
-
"paddingLeft": 0,
|
|
1579
|
-
"paddingRight": 0,
|
|
1580
|
-
"paddingTop": 0,
|
|
1581
1561
|
},
|
|
1562
|
+
undefined,
|
|
1582
1563
|
]
|
|
1583
1564
|
}
|
|
1584
1565
|
>
|
|
1585
1566
|
Sari Tshirt lines
|
|
1586
1567
|
</Text>
|
|
1587
1568
|
<Text
|
|
1588
|
-
allowFontScaling={false}
|
|
1589
|
-
selectable={false}
|
|
1590
1569
|
style={
|
|
1591
1570
|
[
|
|
1592
1571
|
{
|
|
1593
|
-
"color": "#837C7C",
|
|
1594
1572
|
"fontFamily": "AreaNormal-Semibold",
|
|
1595
1573
|
"fontSize": 12,
|
|
1574
|
+
"fontStyle": "normal",
|
|
1575
|
+
"fontWeight": "normal",
|
|
1596
1576
|
"letterSpacing": 0.1,
|
|
1597
1577
|
"lineHeight": 16,
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
"
|
|
1601
|
-
"paddingTop": 0,
|
|
1578
|
+
},
|
|
1579
|
+
{
|
|
1580
|
+
"color": "#837C7C",
|
|
1602
1581
|
},
|
|
1603
1582
|
]
|
|
1604
1583
|
}
|
|
@@ -1620,21 +1599,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1620
1599
|
}
|
|
1621
1600
|
>
|
|
1622
1601
|
<Text
|
|
1623
|
-
allowFontScaling={false}
|
|
1624
|
-
selectable={false}
|
|
1625
1602
|
style={
|
|
1626
1603
|
[
|
|
1627
1604
|
{
|
|
1628
|
-
"color": "#0C0A0A",
|
|
1629
1605
|
"fontFamily": "AreaNormal-Semibold",
|
|
1630
1606
|
"fontSize": 12,
|
|
1607
|
+
"fontStyle": "normal",
|
|
1608
|
+
"fontWeight": "normal",
|
|
1631
1609
|
"letterSpacing": 0.1,
|
|
1632
1610
|
"lineHeight": 16,
|
|
1633
|
-
"paddingBottom": 0,
|
|
1634
|
-
"paddingLeft": 0,
|
|
1635
|
-
"paddingRight": 0,
|
|
1636
|
-
"paddingTop": 0,
|
|
1637
1611
|
},
|
|
1612
|
+
undefined,
|
|
1638
1613
|
]
|
|
1639
1614
|
}
|
|
1640
1615
|
>
|
|
@@ -1651,21 +1626,17 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1651
1626
|
testID="price"
|
|
1652
1627
|
>
|
|
1653
1628
|
<Text
|
|
1654
|
-
allowFontScaling={false}
|
|
1655
|
-
selectable={false}
|
|
1656
1629
|
style={
|
|
1657
1630
|
[
|
|
1658
1631
|
{
|
|
1659
|
-
"color": "#0C0A0A",
|
|
1660
1632
|
"fontFamily": "AreaNormal-Semibold",
|
|
1661
1633
|
"fontSize": 12,
|
|
1634
|
+
"fontStyle": "normal",
|
|
1635
|
+
"fontWeight": "normal",
|
|
1662
1636
|
"letterSpacing": 0.1,
|
|
1663
1637
|
"lineHeight": 16,
|
|
1664
|
-
"paddingBottom": 0,
|
|
1665
|
-
"paddingLeft": 0,
|
|
1666
|
-
"paddingRight": 0,
|
|
1667
|
-
"paddingTop": 0,
|
|
1668
1638
|
},
|
|
1639
|
+
undefined,
|
|
1669
1640
|
]
|
|
1670
1641
|
}
|
|
1671
1642
|
testID="price-text"
|
|
@@ -1683,22 +1654,27 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
|
|
|
1683
1654
|
style={
|
|
1684
1655
|
[
|
|
1685
1656
|
{
|
|
1686
|
-
"
|
|
1687
|
-
"
|
|
1688
|
-
"fontSize": 24,
|
|
1657
|
+
"fontFamily": "AreaNormal-Semibold",
|
|
1658
|
+
"fontSize": 15,
|
|
1689
1659
|
"fontStyle": "normal",
|
|
1690
|
-
"fontWeight": "
|
|
1691
|
-
"height": 24,
|
|
1660
|
+
"fontWeight": "300",
|
|
1692
1661
|
"letterSpacing": -0.2,
|
|
1693
|
-
"lineHeight":
|
|
1694
|
-
"minHeight": 24,
|
|
1695
|
-
"minWidth": 24,
|
|
1696
|
-
"paddingBottom": 0,
|
|
1697
|
-
"paddingLeft": 0,
|
|
1698
|
-
"paddingRight": 0,
|
|
1699
|
-
"paddingTop": 0,
|
|
1700
|
-
"width": 24,
|
|
1662
|
+
"lineHeight": 20,
|
|
1701
1663
|
},
|
|
1664
|
+
[
|
|
1665
|
+
{
|
|
1666
|
+
"fontFamily": "auroraicons",
|
|
1667
|
+
"fontSize": 24,
|
|
1668
|
+
"fontStyle": "normal",
|
|
1669
|
+
"fontWeight": "normal",
|
|
1670
|
+
"height": 24,
|
|
1671
|
+
"lineHeight": 24,
|
|
1672
|
+
"minHeight": 24,
|
|
1673
|
+
"minWidth": 24,
|
|
1674
|
+
"width": 24,
|
|
1675
|
+
},
|
|
1676
|
+
undefined,
|
|
1677
|
+
],
|
|
1702
1678
|
]
|
|
1703
1679
|
}
|
|
1704
1680
|
testID="icon"
|