@lookiero/checkout 14.1.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.
Files changed (99) hide show
  1. package/dist/public/public/assets/adaptive-icon.png +0 -0
  2. package/dist/public/public/assets/favicon.png +0 -0
  3. package/dist/public/public/assets/icon.png +0 -0
  4. package/dist/public/public/assets/splash.png +0 -0
  5. package/dist/public/public/images/not-found.png +0 -0
  6. package/dist/src/ExpoRoot.d.ts +1 -0
  7. package/dist/src/ExpoRoot.js +4 -3
  8. package/dist/src/infrastructure/ui/components/atoms/fiveItemsDiscountBanner/FiveItemsDiscountBanner.js +3 -2
  9. package/dist/src/infrastructure/ui/components/atoms/price/Price.js +2 -2
  10. package/dist/src/infrastructure/ui/components/atoms/price/Price.style.d.ts +1 -0
  11. package/dist/src/infrastructure/ui/components/atoms/price/Price.style.js +1 -0
  12. package/dist/src/infrastructure/ui/components/organisms/checkoutQuestions/components/buttonCheckoutQuestionItem/ButtonCheckoutQuestionItem.js +2 -2
  13. package/dist/src/infrastructure/ui/components/organisms/checkoutQuestions/components/hostDefaultCheckoutQuestionItem/HostDefaultCheckoutQuestionItem.js +1 -1
  14. package/dist/src/infrastructure/ui/components/organisms/checkoutQuestions/components/hostSelectCheckoutQuestionItem/HostSelectCheckoutQuestionItem.js +1 -1
  15. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.js +2 -2
  16. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostLegacyRadioGroupReturnQuestionItem/HostLegacyRadioGroupReturnQuestionItem.js +2 -2
  17. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostRadioGroupReturnQuestionItem/HostRadioGroupReturnQuestionItem.js +2 -2
  18. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.js +2 -2
  19. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/modalOptionReturnQuestionItems/ModalOptionReturnQuestionItems.js +1 -1
  20. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/optionReturnQuestionItem/OptionReturnQuestionItem.js +1 -1
  21. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.js +3 -4
  22. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.js +3 -3
  23. package/dist/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.js +2 -2
  24. package/dist/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.js +2 -2
  25. package/dist/src/infrastructure/ui/components/templates/header/itemHeader/ItemHeader.js +2 -2
  26. package/dist/src/infrastructure/ui/views/checkout/Checkout.js +3 -3
  27. package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.d.ts +1 -0
  28. package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.js +4 -3
  29. package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.style.d.ts +3 -0
  30. package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.style.js +3 -0
  31. package/dist/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/GetOutOfCheckoutModal.js +4 -4
  32. package/dist/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.js +4 -4
  33. package/dist/src/infrastructure/ui/views/item/components/returnQuestionsFeedback/ReturnQuestionsFeedback.js +1 -1
  34. package/dist/src/infrastructure/ui/views/item/components/selectModal/SelectModal.js +2 -2
  35. package/dist/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/SizeWithoutStockModal.js +3 -3
  36. package/dist/src/infrastructure/ui/views/return/components/price/Price.js +4 -4
  37. package/dist/src/infrastructure/ui/views/return/components/price/Price.style.d.ts +1 -0
  38. package/dist/src/infrastructure/ui/views/return/components/price/Price.style.js +1 -0
  39. package/dist/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.js +4 -4
  40. package/dist/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.js +4 -3
  41. package/dist/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.js +5 -5
  42. package/dist/src/infrastructure/ui/views/summary/Summary.js +3 -3
  43. package/dist/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.js +3 -3
  44. package/dist/src/infrastructure/ui/views/summary/components/pricing/Pricing.js +2 -2
  45. package/dist/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.js +1 -1
  46. package/dist/src/version.d.ts +2 -2
  47. package/dist/src/version.js +2 -2
  48. package/package.json +4 -4
  49. package/src/ExpoRoot.tsx +4 -3
  50. package/src/infrastructure/ui/components/atoms/fiveItemsDiscountBanner/FiveItemsDiscountBanner.tsx +3 -2
  51. package/src/infrastructure/ui/components/atoms/price/Price.style.ts +1 -0
  52. package/src/infrastructure/ui/components/atoms/price/Price.tsx +2 -7
  53. package/src/infrastructure/ui/components/atoms/price/__snapshots__/Price.test.tsx.snap +24 -28
  54. package/src/infrastructure/ui/components/organisms/checkoutQuestions/components/buttonCheckoutQuestionItem/ButtonCheckoutQuestionItem.tsx +2 -2
  55. package/src/infrastructure/ui/components/organisms/checkoutQuestions/components/hostDefaultCheckoutQuestionItem/HostDefaultCheckoutQuestionItem.tsx +1 -1
  56. package/src/infrastructure/ui/components/organisms/checkoutQuestions/components/hostSelectCheckoutQuestionItem/HostSelectCheckoutQuestionItem.tsx +1 -1
  57. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.tsx +2 -2
  58. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostLegacyRadioGroupReturnQuestionItem/HostLegacyRadioGroupReturnQuestionItem.tsx +2 -2
  59. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostRadioGroupReturnQuestionItem/HostRadioGroupReturnQuestionItem.tsx +2 -2
  60. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.tsx +2 -2
  61. package/src/infrastructure/ui/components/organisms/returnQuestions/components/modalOptionReturnQuestionItems/ModalOptionReturnQuestionItems.tsx +1 -1
  62. package/src/infrastructure/ui/components/organisms/returnQuestions/components/optionReturnQuestionItem/OptionReturnQuestionItem.tsx +1 -1
  63. package/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.tsx +5 -6
  64. package/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.tsx +3 -3
  65. package/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.tsx +2 -2
  66. package/src/infrastructure/ui/components/templates/header/checkoutHeader/__snapshots__/CheckoutHeader.test.tsx.snap +21 -18
  67. package/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.tsx +2 -2
  68. package/src/infrastructure/ui/components/templates/header/itemDetailHeader/__snapshots__/ItemDetailHeader.test.tsx.snap +21 -18
  69. package/src/infrastructure/ui/components/templates/header/itemHeader/ItemHeader.tsx +2 -2
  70. package/src/infrastructure/ui/components/templates/header/itemHeader/__snapshots__/ItemHeader.test.tsx.snap +39 -30
  71. package/src/infrastructure/ui/views/checkout/Checkout.tsx +3 -3
  72. package/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.style.ts +3 -0
  73. package/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.tsx +4 -3
  74. package/src/infrastructure/ui/views/item/components/banner/__snapshots__/CustomerDecissionBanner.test.tsx.snap +12 -18
  75. package/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/GetOutOfCheckoutModal.tsx +14 -4
  76. package/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/__snapshots__/GetOutOfCheckoutModal.test.tsx.snap +30 -28
  77. package/src/infrastructure/ui/views/item/components/itemActions/__snapshots__/ItemActions.test.tsx.snap +45 -33
  78. package/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.tsx +4 -4
  79. package/src/infrastructure/ui/views/item/components/productVariantDescription/__snapshots__/ProductVariantDescription.test.tsx.snap +38 -56
  80. package/src/infrastructure/ui/views/item/components/returnQuestionsFeedback/ReturnQuestionsFeedback.tsx +1 -1
  81. package/src/infrastructure/ui/views/item/components/selectModal/SelectModal.tsx +2 -2
  82. package/src/infrastructure/ui/views/item/components/selectModal/__snapshots__/SelecModal.test.tsx.snap +28 -19
  83. package/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/SizeWithoutStockModal.tsx +3 -3
  84. package/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/__snapshots__/SizeWithoutStockModal.test.tsx.snap +28 -25
  85. package/src/infrastructure/ui/views/item/views/productVariant/__snapshots__/ProductVariant.test.tsx.snap +57 -84
  86. package/src/infrastructure/ui/views/return/components/price/Price.style.ts +1 -0
  87. package/src/infrastructure/ui/views/return/components/price/Price.tsx +4 -4
  88. package/src/infrastructure/ui/views/return/components/price/__snapshots__/Price.test.tsx.snap +12 -19
  89. package/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.tsx +4 -4
  90. package/src/infrastructure/ui/views/return/components/productVariantPreview/__snapshots__/ProductVariantPreview.test.tsx.snap +18 -26
  91. package/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.tsx +4 -3
  92. package/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.tsx +5 -5
  93. package/src/infrastructure/ui/views/shared/components/productVariant/__snapshots__/ProductVariant.test.tsx.snap +80 -82
  94. package/src/infrastructure/ui/views/summary/Summary.tsx +3 -3
  95. package/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.tsx +3 -3
  96. package/src/infrastructure/ui/views/summary/components/collapsiblePricing/__snapshots__/CollapsiblePricing.test.tsx.snap +58 -54
  97. package/src/infrastructure/ui/views/summary/components/pricing/Pricing.tsx +2 -2
  98. package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/CheckoutItemsTabs.tsx +1 -1
  99. package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/__snapshots__/CheckoutItemsTabs.test.tsx.snap +197 -193
@@ -107,21 +107,29 @@ 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
113
  "color": "#0C0A0A",
116
114
  "fontFamily": "AreaNormal-Extrabold",
117
- "fontSize": 13,
115
+ "fontSize": 15,
116
+ "fontStyle": "normal",
117
+ "fontWeight": "normal",
118
118
  "letterSpacing": -0.2,
119
- "lineHeight": 17,
120
- "paddingBottom": 0,
121
- "paddingLeft": 0,
122
- "paddingRight": 0,
123
- "paddingTop": 0,
119
+ "lineHeight": 20,
124
120
  },
121
+ [
122
+ {
123
+ "color": "#837C7C",
124
+ },
125
+ {
126
+ "color": "#0C0A0A",
127
+ },
128
+ {
129
+ "fontSize": 13,
130
+ "lineHeight": 17,
131
+ },
132
+ ],
125
133
  ]
126
134
  }
127
135
  >
@@ -171,21 +179,27 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
171
179
  testID="tab"
172
180
  >
173
181
  <Text
174
- allowFontScaling={false}
175
- selectable={false}
176
182
  style={
177
183
  [
178
184
  {
179
- "color": "#837C7C",
185
+ "color": "#0C0A0A",
180
186
  "fontFamily": "AreaNormal-Extrabold",
181
- "fontSize": 13,
187
+ "fontSize": 15,
188
+ "fontStyle": "normal",
189
+ "fontWeight": "normal",
182
190
  "letterSpacing": -0.2,
183
- "lineHeight": 17,
184
- "paddingBottom": 0,
185
- "paddingLeft": 0,
186
- "paddingRight": 0,
187
- "paddingTop": 0,
191
+ "lineHeight": 20,
188
192
  },
193
+ [
194
+ {
195
+ "color": "#837C7C",
196
+ },
197
+ false,
198
+ {
199
+ "fontSize": 13,
200
+ "lineHeight": 17,
201
+ },
202
+ ],
189
203
  ]
190
204
  }
191
205
  >
@@ -499,20 +513,19 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
499
513
  }
500
514
  >
501
515
  <Text
502
- allowFontScaling={false}
503
- selectable={false}
504
516
  style={
505
517
  [
506
518
  {
507
- "color": "#837C7C",
519
+ "color": "#0C0A0A",
508
520
  "fontFamily": "AreaNormal-Semibold",
509
521
  "fontSize": 12,
522
+ "fontStyle": "normal",
523
+ "fontWeight": "normal",
510
524
  "letterSpacing": 0.1,
511
525
  "lineHeight": 16,
512
- "paddingBottom": 0,
513
- "paddingLeft": 0,
514
- "paddingRight": 0,
515
- "paddingTop": 0,
526
+ },
527
+ {
528
+ "color": "#837C7C",
516
529
  },
517
530
  ]
518
531
  }
@@ -520,41 +533,37 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
520
533
  CKS
521
534
  </Text>
522
535
  <Text
523
- allowFontScaling={false}
524
- selectable={false}
525
536
  style={
526
537
  [
527
538
  {
528
539
  "color": "#0C0A0A",
529
540
  "fontFamily": "AreaNormal-Semibold",
530
541
  "fontSize": 12,
542
+ "fontStyle": "normal",
543
+ "fontWeight": "normal",
531
544
  "letterSpacing": 0.1,
532
545
  "lineHeight": 16,
533
- "paddingBottom": 0,
534
- "paddingLeft": 0,
535
- "paddingRight": 0,
536
- "paddingTop": 0,
537
546
  },
547
+ undefined,
538
548
  ]
539
549
  }
540
550
  >
541
551
  Sari Tshirt lines
542
552
  </Text>
543
553
  <Text
544
- allowFontScaling={false}
545
- selectable={false}
546
554
  style={
547
555
  [
548
556
  {
549
- "color": "#837C7C",
557
+ "color": "#0C0A0A",
550
558
  "fontFamily": "AreaNormal-Semibold",
551
559
  "fontSize": 12,
560
+ "fontStyle": "normal",
561
+ "fontWeight": "normal",
552
562
  "letterSpacing": 0.1,
553
563
  "lineHeight": 16,
554
- "paddingBottom": 0,
555
- "paddingLeft": 0,
556
- "paddingRight": 0,
557
- "paddingTop": 0,
564
+ },
565
+ {
566
+ "color": "#837C7C",
558
567
  },
559
568
  ]
560
569
  }
@@ -573,21 +582,19 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
573
582
  testID="price"
574
583
  >
575
584
  <Text
576
- allowFontScaling={false}
577
- selectable={false}
585
+ detail={true}
578
586
  style={
579
587
  [
580
588
  {
581
589
  "color": "#0C0A0A",
582
590
  "fontFamily": "AreaNormal-Semibold",
583
- "fontSize": 12,
584
- "letterSpacing": 0.1,
585
- "lineHeight": 16,
586
- "paddingBottom": 0,
587
- "paddingLeft": 0,
588
- "paddingRight": 0,
589
- "paddingTop": 0,
591
+ "fontSize": 18,
592
+ "fontStyle": "normal",
593
+ "fontWeight": "300",
594
+ "letterSpacing": -0.2,
595
+ "lineHeight": 22,
590
596
  },
597
+ undefined,
591
598
  ]
592
599
  }
593
600
  testID="price-text"
@@ -606,21 +613,27 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
606
613
  [
607
614
  {
608
615
  "color": "#0C0A0A",
609
- "fontFamily": "auroraicons",
610
- "fontSize": 24,
616
+ "fontFamily": "AreaNormal-Semibold",
617
+ "fontSize": 15,
611
618
  "fontStyle": "normal",
612
- "fontWeight": "normal",
613
- "height": 24,
619
+ "fontWeight": "300",
614
620
  "letterSpacing": -0.2,
615
- "lineHeight": 24,
616
- "minHeight": 24,
617
- "minWidth": 24,
618
- "paddingBottom": 0,
619
- "paddingLeft": 0,
620
- "paddingRight": 0,
621
- "paddingTop": 0,
622
- "width": 24,
621
+ "lineHeight": 20,
623
622
  },
623
+ [
624
+ {
625
+ "fontFamily": "auroraicons",
626
+ "fontSize": 24,
627
+ "fontStyle": "normal",
628
+ "fontWeight": "normal",
629
+ "height": 24,
630
+ "lineHeight": 24,
631
+ "minHeight": 24,
632
+ "minWidth": 24,
633
+ "width": 24,
634
+ },
635
+ undefined,
636
+ ],
624
637
  ]
625
638
  }
626
639
  testID="icon"
@@ -831,20 +844,19 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
831
844
  }
832
845
  >
833
846
  <Text
834
- allowFontScaling={false}
835
- selectable={false}
836
847
  style={
837
848
  [
838
849
  {
839
- "color": "#837C7C",
850
+ "color": "#0C0A0A",
840
851
  "fontFamily": "AreaNormal-Semibold",
841
852
  "fontSize": 12,
853
+ "fontStyle": "normal",
854
+ "fontWeight": "normal",
842
855
  "letterSpacing": 0.1,
843
856
  "lineHeight": 16,
844
- "paddingBottom": 0,
845
- "paddingLeft": 0,
846
- "paddingRight": 0,
847
- "paddingTop": 0,
857
+ },
858
+ {
859
+ "color": "#837C7C",
848
860
  },
849
861
  ]
850
862
  }
@@ -852,41 +864,37 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
852
864
  CKS
853
865
  </Text>
854
866
  <Text
855
- allowFontScaling={false}
856
- selectable={false}
857
867
  style={
858
868
  [
859
869
  {
860
870
  "color": "#0C0A0A",
861
871
  "fontFamily": "AreaNormal-Semibold",
862
872
  "fontSize": 12,
873
+ "fontStyle": "normal",
874
+ "fontWeight": "normal",
863
875
  "letterSpacing": 0.1,
864
876
  "lineHeight": 16,
865
- "paddingBottom": 0,
866
- "paddingLeft": 0,
867
- "paddingRight": 0,
868
- "paddingTop": 0,
869
877
  },
878
+ undefined,
870
879
  ]
871
880
  }
872
881
  >
873
882
  Sari Tshirt lines
874
883
  </Text>
875
884
  <Text
876
- allowFontScaling={false}
877
- selectable={false}
878
885
  style={
879
886
  [
880
887
  {
881
- "color": "#837C7C",
888
+ "color": "#0C0A0A",
882
889
  "fontFamily": "AreaNormal-Semibold",
883
890
  "fontSize": 12,
891
+ "fontStyle": "normal",
892
+ "fontWeight": "normal",
884
893
  "letterSpacing": 0.1,
885
894
  "lineHeight": 16,
886
- "paddingBottom": 0,
887
- "paddingLeft": 0,
888
- "paddingRight": 0,
889
- "paddingTop": 0,
895
+ },
896
+ {
897
+ "color": "#837C7C",
890
898
  },
891
899
  ]
892
900
  }
@@ -908,21 +916,18 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
908
916
  }
909
917
  >
910
918
  <Text
911
- allowFontScaling={false}
912
- selectable={false}
913
919
  style={
914
920
  [
915
921
  {
916
922
  "color": "#0C0A0A",
917
923
  "fontFamily": "AreaNormal-Semibold",
918
924
  "fontSize": 12,
925
+ "fontStyle": "normal",
926
+ "fontWeight": "normal",
919
927
  "letterSpacing": 0.1,
920
928
  "lineHeight": 16,
921
- "paddingBottom": 0,
922
- "paddingLeft": 0,
923
- "paddingRight": 0,
924
- "paddingTop": 0,
925
929
  },
930
+ undefined,
926
931
  ]
927
932
  }
928
933
  >
@@ -939,21 +944,19 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
939
944
  testID="price"
940
945
  >
941
946
  <Text
942
- allowFontScaling={false}
943
- selectable={false}
947
+ detail={true}
944
948
  style={
945
949
  [
946
950
  {
947
951
  "color": "#0C0A0A",
948
952
  "fontFamily": "AreaNormal-Semibold",
949
- "fontSize": 12,
950
- "letterSpacing": 0.1,
951
- "lineHeight": 16,
952
- "paddingBottom": 0,
953
- "paddingLeft": 0,
954
- "paddingRight": 0,
955
- "paddingTop": 0,
953
+ "fontSize": 18,
954
+ "fontStyle": "normal",
955
+ "fontWeight": "300",
956
+ "letterSpacing": -0.2,
957
+ "lineHeight": 22,
956
958
  },
959
+ undefined,
957
960
  ]
958
961
  }
959
962
  testID="price-text"
@@ -972,21 +975,27 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
972
975
  [
973
976
  {
974
977
  "color": "#0C0A0A",
975
- "fontFamily": "auroraicons",
976
- "fontSize": 24,
978
+ "fontFamily": "AreaNormal-Semibold",
979
+ "fontSize": 15,
977
980
  "fontStyle": "normal",
978
- "fontWeight": "normal",
979
- "height": 24,
981
+ "fontWeight": "300",
980
982
  "letterSpacing": -0.2,
981
- "lineHeight": 24,
982
- "minHeight": 24,
983
- "minWidth": 24,
984
- "paddingBottom": 0,
985
- "paddingLeft": 0,
986
- "paddingRight": 0,
987
- "paddingTop": 0,
988
- "width": 24,
983
+ "lineHeight": 20,
989
984
  },
985
+ [
986
+ {
987
+ "fontFamily": "auroraicons",
988
+ "fontSize": 24,
989
+ "fontStyle": "normal",
990
+ "fontWeight": "normal",
991
+ "height": 24,
992
+ "lineHeight": 24,
993
+ "minHeight": 24,
994
+ "minWidth": 24,
995
+ "width": 24,
996
+ },
997
+ undefined,
998
+ ],
990
999
  ]
991
1000
  }
992
1001
  testID="icon"
@@ -1211,20 +1220,19 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1211
1220
  }
1212
1221
  >
1213
1222
  <Text
1214
- allowFontScaling={false}
1215
- selectable={false}
1216
1223
  style={
1217
1224
  [
1218
1225
  {
1219
- "color": "#837C7C",
1226
+ "color": "#0C0A0A",
1220
1227
  "fontFamily": "AreaNormal-Semibold",
1221
1228
  "fontSize": 12,
1229
+ "fontStyle": "normal",
1230
+ "fontWeight": "normal",
1222
1231
  "letterSpacing": 0.1,
1223
1232
  "lineHeight": 16,
1224
- "paddingBottom": 0,
1225
- "paddingLeft": 0,
1226
- "paddingRight": 0,
1227
- "paddingTop": 0,
1233
+ },
1234
+ {
1235
+ "color": "#837C7C",
1228
1236
  },
1229
1237
  ]
1230
1238
  }
@@ -1232,41 +1240,37 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1232
1240
  CKS
1233
1241
  </Text>
1234
1242
  <Text
1235
- allowFontScaling={false}
1236
- selectable={false}
1237
1243
  style={
1238
1244
  [
1239
1245
  {
1240
1246
  "color": "#0C0A0A",
1241
1247
  "fontFamily": "AreaNormal-Semibold",
1242
1248
  "fontSize": 12,
1249
+ "fontStyle": "normal",
1250
+ "fontWeight": "normal",
1243
1251
  "letterSpacing": 0.1,
1244
1252
  "lineHeight": 16,
1245
- "paddingBottom": 0,
1246
- "paddingLeft": 0,
1247
- "paddingRight": 0,
1248
- "paddingTop": 0,
1249
1253
  },
1254
+ undefined,
1250
1255
  ]
1251
1256
  }
1252
1257
  >
1253
1258
  Sari Tshirt lines
1254
1259
  </Text>
1255
1260
  <Text
1256
- allowFontScaling={false}
1257
- selectable={false}
1258
1261
  style={
1259
1262
  [
1260
1263
  {
1261
- "color": "#837C7C",
1264
+ "color": "#0C0A0A",
1262
1265
  "fontFamily": "AreaNormal-Semibold",
1263
1266
  "fontSize": 12,
1267
+ "fontStyle": "normal",
1268
+ "fontWeight": "normal",
1264
1269
  "letterSpacing": 0.1,
1265
1270
  "lineHeight": 16,
1266
- "paddingBottom": 0,
1267
- "paddingLeft": 0,
1268
- "paddingRight": 0,
1269
- "paddingTop": 0,
1271
+ },
1272
+ {
1273
+ "color": "#837C7C",
1270
1274
  },
1271
1275
  ]
1272
1276
  }
@@ -1285,21 +1289,19 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1285
1289
  testID="price"
1286
1290
  >
1287
1291
  <Text
1288
- allowFontScaling={false}
1289
- selectable={false}
1292
+ detail={true}
1290
1293
  style={
1291
1294
  [
1292
1295
  {
1293
1296
  "color": "#0C0A0A",
1294
1297
  "fontFamily": "AreaNormal-Semibold",
1295
- "fontSize": 12,
1296
- "letterSpacing": 0.1,
1297
- "lineHeight": 16,
1298
- "paddingBottom": 0,
1299
- "paddingLeft": 0,
1300
- "paddingRight": 0,
1301
- "paddingTop": 0,
1298
+ "fontSize": 18,
1299
+ "fontStyle": "normal",
1300
+ "fontWeight": "300",
1301
+ "letterSpacing": -0.2,
1302
+ "lineHeight": 22,
1302
1303
  },
1304
+ undefined,
1303
1305
  ]
1304
1306
  }
1305
1307
  testID="price-text"
@@ -1318,21 +1320,27 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1318
1320
  [
1319
1321
  {
1320
1322
  "color": "#0C0A0A",
1321
- "fontFamily": "auroraicons",
1322
- "fontSize": 24,
1323
+ "fontFamily": "AreaNormal-Semibold",
1324
+ "fontSize": 15,
1323
1325
  "fontStyle": "normal",
1324
- "fontWeight": "normal",
1325
- "height": 24,
1326
+ "fontWeight": "300",
1326
1327
  "letterSpacing": -0.2,
1327
- "lineHeight": 24,
1328
- "minHeight": 24,
1329
- "minWidth": 24,
1330
- "paddingBottom": 0,
1331
- "paddingLeft": 0,
1332
- "paddingRight": 0,
1333
- "paddingTop": 0,
1334
- "width": 24,
1328
+ "lineHeight": 20,
1335
1329
  },
1330
+ [
1331
+ {
1332
+ "fontFamily": "auroraicons",
1333
+ "fontSize": 24,
1334
+ "fontStyle": "normal",
1335
+ "fontWeight": "normal",
1336
+ "height": 24,
1337
+ "lineHeight": 24,
1338
+ "minHeight": 24,
1339
+ "minWidth": 24,
1340
+ "width": 24,
1341
+ },
1342
+ undefined,
1343
+ ],
1336
1344
  ]
1337
1345
  }
1338
1346
  testID="icon"
@@ -1543,20 +1551,19 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1543
1551
  }
1544
1552
  >
1545
1553
  <Text
1546
- allowFontScaling={false}
1547
- selectable={false}
1548
1554
  style={
1549
1555
  [
1550
1556
  {
1551
- "color": "#837C7C",
1557
+ "color": "#0C0A0A",
1552
1558
  "fontFamily": "AreaNormal-Semibold",
1553
1559
  "fontSize": 12,
1560
+ "fontStyle": "normal",
1561
+ "fontWeight": "normal",
1554
1562
  "letterSpacing": 0.1,
1555
1563
  "lineHeight": 16,
1556
- "paddingBottom": 0,
1557
- "paddingLeft": 0,
1558
- "paddingRight": 0,
1559
- "paddingTop": 0,
1564
+ },
1565
+ {
1566
+ "color": "#837C7C",
1560
1567
  },
1561
1568
  ]
1562
1569
  }
@@ -1564,41 +1571,37 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1564
1571
  CKS
1565
1572
  </Text>
1566
1573
  <Text
1567
- allowFontScaling={false}
1568
- selectable={false}
1569
1574
  style={
1570
1575
  [
1571
1576
  {
1572
1577
  "color": "#0C0A0A",
1573
1578
  "fontFamily": "AreaNormal-Semibold",
1574
1579
  "fontSize": 12,
1580
+ "fontStyle": "normal",
1581
+ "fontWeight": "normal",
1575
1582
  "letterSpacing": 0.1,
1576
1583
  "lineHeight": 16,
1577
- "paddingBottom": 0,
1578
- "paddingLeft": 0,
1579
- "paddingRight": 0,
1580
- "paddingTop": 0,
1581
1584
  },
1585
+ undefined,
1582
1586
  ]
1583
1587
  }
1584
1588
  >
1585
1589
  Sari Tshirt lines
1586
1590
  </Text>
1587
1591
  <Text
1588
- allowFontScaling={false}
1589
- selectable={false}
1590
1592
  style={
1591
1593
  [
1592
1594
  {
1593
- "color": "#837C7C",
1595
+ "color": "#0C0A0A",
1594
1596
  "fontFamily": "AreaNormal-Semibold",
1595
1597
  "fontSize": 12,
1598
+ "fontStyle": "normal",
1599
+ "fontWeight": "normal",
1596
1600
  "letterSpacing": 0.1,
1597
1601
  "lineHeight": 16,
1598
- "paddingBottom": 0,
1599
- "paddingLeft": 0,
1600
- "paddingRight": 0,
1601
- "paddingTop": 0,
1602
+ },
1603
+ {
1604
+ "color": "#837C7C",
1602
1605
  },
1603
1606
  ]
1604
1607
  }
@@ -1620,21 +1623,18 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1620
1623
  }
1621
1624
  >
1622
1625
  <Text
1623
- allowFontScaling={false}
1624
- selectable={false}
1625
1626
  style={
1626
1627
  [
1627
1628
  {
1628
1629
  "color": "#0C0A0A",
1629
1630
  "fontFamily": "AreaNormal-Semibold",
1630
1631
  "fontSize": 12,
1632
+ "fontStyle": "normal",
1633
+ "fontWeight": "normal",
1631
1634
  "letterSpacing": 0.1,
1632
1635
  "lineHeight": 16,
1633
- "paddingBottom": 0,
1634
- "paddingLeft": 0,
1635
- "paddingRight": 0,
1636
- "paddingTop": 0,
1637
1636
  },
1637
+ undefined,
1638
1638
  ]
1639
1639
  }
1640
1640
  >
@@ -1651,21 +1651,19 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1651
1651
  testID="price"
1652
1652
  >
1653
1653
  <Text
1654
- allowFontScaling={false}
1655
- selectable={false}
1654
+ detail={true}
1656
1655
  style={
1657
1656
  [
1658
1657
  {
1659
1658
  "color": "#0C0A0A",
1660
1659
  "fontFamily": "AreaNormal-Semibold",
1661
- "fontSize": 12,
1662
- "letterSpacing": 0.1,
1663
- "lineHeight": 16,
1664
- "paddingBottom": 0,
1665
- "paddingLeft": 0,
1666
- "paddingRight": 0,
1667
- "paddingTop": 0,
1660
+ "fontSize": 18,
1661
+ "fontStyle": "normal",
1662
+ "fontWeight": "300",
1663
+ "letterSpacing": -0.2,
1664
+ "lineHeight": 22,
1668
1665
  },
1666
+ undefined,
1669
1667
  ]
1670
1668
  }
1671
1669
  testID="price-text"
@@ -1684,21 +1682,27 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1684
1682
  [
1685
1683
  {
1686
1684
  "color": "#0C0A0A",
1687
- "fontFamily": "auroraicons",
1688
- "fontSize": 24,
1685
+ "fontFamily": "AreaNormal-Semibold",
1686
+ "fontSize": 15,
1689
1687
  "fontStyle": "normal",
1690
- "fontWeight": "normal",
1691
- "height": 24,
1688
+ "fontWeight": "300",
1692
1689
  "letterSpacing": -0.2,
1693
- "lineHeight": 24,
1694
- "minHeight": 24,
1695
- "minWidth": 24,
1696
- "paddingBottom": 0,
1697
- "paddingLeft": 0,
1698
- "paddingRight": 0,
1699
- "paddingTop": 0,
1700
- "width": 24,
1690
+ "lineHeight": 20,
1701
1691
  },
1692
+ [
1693
+ {
1694
+ "fontFamily": "auroraicons",
1695
+ "fontSize": 24,
1696
+ "fontStyle": "normal",
1697
+ "fontWeight": "normal",
1698
+ "height": 24,
1699
+ "lineHeight": 24,
1700
+ "minHeight": 24,
1701
+ "minWidth": 24,
1702
+ "width": 24,
1703
+ },
1704
+ undefined,
1705
+ ],
1702
1706
  ]
1703
1707
  }
1704
1708
  testID="icon"