@lookiero/checkout 14.2.0 → 14.2.2-beta.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.
Files changed (82) hide show
  1. package/dist/src/ExpoRoot.js +2 -2
  2. package/dist/src/infrastructure/ui/components/atoms/price/Price.js +5 -5
  3. package/dist/src/infrastructure/ui/components/atoms/price/Price.style.d.ts +1 -0
  4. package/dist/src/infrastructure/ui/components/atoms/price/Price.style.js +1 -0
  5. package/dist/src/infrastructure/ui/components/organisms/checkoutQuestions/components/buttonCheckoutQuestionItem/ButtonCheckoutQuestionItem.js +1 -1
  6. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.js +1 -1
  7. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostLegacyRadioGroupReturnQuestionItem/HostLegacyRadioGroupReturnQuestionItem.js +1 -1
  8. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostRadioGroupReturnQuestionItem/HostRadioGroupReturnQuestionItem.js +1 -1
  9. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.js +1 -1
  10. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.js +1 -1
  11. package/dist/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.js +2 -2
  12. package/dist/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.js +1 -1
  13. package/dist/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.js +1 -1
  14. package/dist/src/infrastructure/ui/components/templates/header/itemHeader/ItemHeader.js +1 -1
  15. package/dist/src/infrastructure/ui/views/checkout/Checkout.js +1 -1
  16. package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.js +1 -1
  17. package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.style.d.ts +3 -0
  18. package/dist/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.style.js +3 -0
  19. package/dist/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/GetOutOfCheckoutModal.js +2 -2
  20. package/dist/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.js +3 -3
  21. package/dist/src/infrastructure/ui/views/item/components/selectModal/SelectModal.js +1 -1
  22. package/dist/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/SizeWithoutStockModal.js +1 -1
  23. package/dist/src/infrastructure/ui/views/return/components/price/Price.js +3 -3
  24. package/dist/src/infrastructure/ui/views/return/components/price/Price.style.d.ts +1 -0
  25. package/dist/src/infrastructure/ui/views/return/components/price/Price.style.js +1 -0
  26. package/dist/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.js +3 -3
  27. package/dist/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.js +2 -2
  28. package/dist/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.js +4 -4
  29. package/dist/src/infrastructure/ui/views/summary/Summary.js +1 -1
  30. package/dist/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.js +1 -1
  31. package/dist/src/infrastructure/ui/views/summary/components/pricing/Pricing.js +1 -1
  32. package/dist/src/version.d.ts +2 -2
  33. package/dist/src/version.js +2 -2
  34. package/package.json +1 -1
  35. package/src/ExpoRoot.tsx +2 -2
  36. package/src/infrastructure/ui/components/atoms/price/Price.style.ts +1 -0
  37. package/src/infrastructure/ui/components/atoms/price/Price.tsx +8 -15
  38. package/src/infrastructure/ui/components/atoms/price/__snapshots__/Price.test.tsx.snap +4 -1
  39. package/src/infrastructure/ui/components/organisms/checkoutQuestions/components/buttonCheckoutQuestionItem/ButtonCheckoutQuestionItem.tsx +1 -1
  40. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostDefaultReturnQuestionItem/HostDefaultReturnQuestionItem.tsx +1 -1
  41. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostLegacyRadioGroupReturnQuestionItem/HostLegacyRadioGroupReturnQuestionItem.tsx +1 -1
  42. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostRadioGroupReturnQuestionItem/HostRadioGroupReturnQuestionItem.tsx +1 -1
  43. package/src/infrastructure/ui/components/organisms/returnQuestions/components/hostStackReturnQuestionItem/modal/HostStackReturnQuestionItem.tsx +1 -1
  44. package/src/infrastructure/ui/components/organisms/returnQuestions/components/radioReturnQuestionItem/RadioReturnQuestionItem.tsx +1 -1
  45. package/src/infrastructure/ui/components/organisms/returnQuestions/components/returnQuestionFeedbackItem/ReturnQuestionFeedbackItem.tsx +2 -2
  46. package/src/infrastructure/ui/components/templates/header/checkoutHeader/CheckoutHeader.tsx +1 -1
  47. package/src/infrastructure/ui/components/templates/header/checkoutHeader/__snapshots__/CheckoutHeader.test.tsx.snap +2 -0
  48. package/src/infrastructure/ui/components/templates/header/itemDetailHeader/ItemDetailHeader.tsx +1 -1
  49. package/src/infrastructure/ui/components/templates/header/itemDetailHeader/__snapshots__/ItemDetailHeader.test.tsx.snap +2 -0
  50. package/src/infrastructure/ui/components/templates/header/itemHeader/ItemHeader.tsx +1 -1
  51. package/src/infrastructure/ui/components/templates/header/itemHeader/__snapshots__/ItemHeader.test.tsx.snap +3 -0
  52. package/src/infrastructure/ui/views/checkout/Checkout.tsx +1 -1
  53. package/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.style.ts +3 -0
  54. package/src/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.tsx +1 -1
  55. package/src/infrastructure/ui/views/item/components/banner/__snapshots__/CustomerDecissionBanner.test.tsx.snap +9 -3
  56. package/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/GetOutOfCheckoutModal.tsx +12 -2
  57. package/src/infrastructure/ui/views/item/components/getOutOfCheckoutModal/__snapshots__/GetOutOfCheckoutModal.test.tsx.snap +4 -0
  58. package/src/infrastructure/ui/views/item/components/itemActions/__snapshots__/ItemActions.test.tsx.snap +4 -0
  59. package/src/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.tsx +3 -3
  60. package/src/infrastructure/ui/views/item/components/productVariantDescription/__snapshots__/ProductVariantDescription.test.tsx.snap +8 -0
  61. package/src/infrastructure/ui/views/item/components/selectModal/SelectModal.tsx +1 -1
  62. package/src/infrastructure/ui/views/item/components/selectModal/__snapshots__/SelecModal.test.tsx.snap +2 -0
  63. package/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/SizeWithoutStockModal.tsx +1 -1
  64. package/src/infrastructure/ui/views/item/components/sizeWithoutStockModal/__snapshots__/SizeWithoutStockModal.test.tsx.snap +3 -0
  65. package/src/infrastructure/ui/views/item/views/productVariant/__snapshots__/ProductVariant.test.tsx.snap +12 -0
  66. package/src/infrastructure/ui/views/return/components/price/Price.style.ts +1 -0
  67. package/src/infrastructure/ui/views/return/components/price/Price.tsx +3 -3
  68. package/src/infrastructure/ui/views/return/components/price/__snapshots__/Price.test.tsx.snap +4 -1
  69. package/src/infrastructure/ui/views/return/components/productVariantPreview/ProductVariantPreview.tsx +3 -3
  70. package/src/infrastructure/ui/views/return/components/productVariantPreview/__snapshots__/ProductVariantPreview.test.tsx.snap +4 -0
  71. package/src/infrastructure/ui/views/return/components/returnQuestionsForm/ReturnQuestionsForm.tsx +2 -2
  72. package/src/infrastructure/ui/views/shared/components/productVariant/ProductVariant.tsx +4 -4
  73. package/src/infrastructure/ui/views/shared/components/productVariant/__snapshots__/ProductVariant.test.tsx.snap +10 -0
  74. package/src/infrastructure/ui/views/summary/Summary.tsx +1 -1
  75. package/src/infrastructure/ui/views/summary/components/collapsiblePricing/CollapsiblePricing.tsx +1 -1
  76. package/src/infrastructure/ui/views/summary/components/collapsiblePricing/__snapshots__/CollapsiblePricing.test.tsx.snap +6 -0
  77. package/src/infrastructure/ui/views/summary/components/pricing/Pricing.tsx +1 -1
  78. package/src/infrastructure/ui/views/summaryTabs/components/checkoutItemsTabs/__snapshots__/CheckoutItemsTabs.test.tsx.snap +24 -0
  79. package/dist/src/projection/order/order.d.ts +0 -6
  80. package/dist/src/projection/order/order.js +0 -1
  81. package/dist/src/projection/subscription/subscription.d.ts +0 -2
  82. package/dist/src/projection/subscription/subscription.js +0 -1
@@ -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",
@@ -297,6 +300,7 @@ exports[`ProductVariant component matches the snapshot for a non-unique size: no
297
300
  style={
298
301
  [
299
302
  {
303
+ "color": "#0C0A0A",
300
304
  "fontFamily": "AreaNormal-Semibold",
301
305
  "fontSize": 12,
302
306
  "fontStyle": "normal",
@@ -322,6 +326,7 @@ exports[`ProductVariant component matches the snapshot for a non-unique size: no
322
326
  style={
323
327
  [
324
328
  {
329
+ "color": "#0C0A0A",
325
330
  "fontFamily": "AreaNormal-Semibold",
326
331
  "fontSize": 15,
327
332
  "fontStyle": "normal",
@@ -584,6 +589,7 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
584
589
  style={
585
590
  [
586
591
  {
592
+ "color": "#0C0A0A",
587
593
  "fontFamily": "AreaNormal-Semibold",
588
594
  "fontSize": 12,
589
595
  "fontStyle": "normal",
@@ -603,6 +609,7 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
603
609
  style={
604
610
  [
605
611
  {
612
+ "color": "#0C0A0A",
606
613
  "fontFamily": "AreaNormal-Semibold",
607
614
  "fontSize": 12,
608
615
  "fontStyle": "normal",
@@ -620,6 +627,7 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
620
627
  style={
621
628
  [
622
629
  {
630
+ "color": "#0C0A0A",
623
631
  "fontFamily": "AreaNormal-Semibold",
624
632
  "fontSize": 12,
625
633
  "fontStyle": "normal",
@@ -650,6 +658,7 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
650
658
  style={
651
659
  [
652
660
  {
661
+ "color": "#0C0A0A",
653
662
  "fontFamily": "AreaNormal-Semibold",
654
663
  "fontSize": 12,
655
664
  "fontStyle": "normal",
@@ -675,6 +684,7 @@ exports[`ProductVariant component matches the snapshot for an unique size: uniqu
675
684
  style={
676
685
  [
677
686
  {
687
+ "color": "#0C0A0A",
678
688
  "fontFamily": "AreaNormal-Semibold",
679
689
  "fontSize": 15,
680
690
  "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}>
@@ -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",
@@ -157,6 +159,7 @@ exports[`Pricing component matches the snapshot for collaped pricing: collapsed
157
159
  style={
158
160
  [
159
161
  {
162
+ "color": "#0C0A0A",
160
163
  "fontFamily": "AreaNormal-Semibold",
161
164
  "fontSize": 12,
162
165
  "fontStyle": "normal",
@@ -425,6 +428,7 @@ exports[`Pricing component matches the snapshot for non-collaped pricing: non-co
425
428
  style={
426
429
  [
427
430
  {
431
+ "color": "#0C0A0A",
428
432
  "fontFamily": "AreaNormal-Semibold",
429
433
  "fontSize": 15,
430
434
  "fontStyle": "normal",
@@ -478,6 +482,7 @@ exports[`Pricing component matches the snapshot for non-collaped pricing: non-co
478
482
  style={
479
483
  [
480
484
  {
485
+ "color": "#0C0A0A",
481
486
  "fontFamily": "AreaNormal-Semibold",
482
487
  "fontSize": 13,
483
488
  "fontStyle": "normal",
@@ -507,6 +512,7 @@ exports[`Pricing component matches the snapshot for non-collaped pricing: non-co
507
512
  style={
508
513
  [
509
514
  {
515
+ "color": "#0C0A0A",
510
516
  "fontFamily": "AreaNormal-Semibold",
511
517
  "fontSize": 12,
512
518
  "fontStyle": "normal",
@@ -19,7 +19,7 @@ const Row: FC<RowProps> = ({ action = false, text, level = 3, children }) => {
19
19
 
20
20
  return (
21
21
  <View style={style.row}>
22
- <Text action={action} level={level}>
22
+ <Text level={level} variant={action ? "action" : "body"}>
23
23
  {text}
24
24
  </Text>
25
25
  {children}
@@ -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",
@@ -580,6 +585,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
580
585
  style={
581
586
  [
582
587
  {
588
+ "color": "#0C0A0A",
583
589
  "fontFamily": "AreaNormal-Semibold",
584
590
  "fontSize": 12,
585
591
  "fontStyle": "normal",
@@ -605,6 +611,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
605
611
  style={
606
612
  [
607
613
  {
614
+ "color": "#0C0A0A",
608
615
  "fontFamily": "AreaNormal-Semibold",
609
616
  "fontSize": 15,
610
617
  "fontStyle": "normal",
@@ -839,6 +846,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
839
846
  style={
840
847
  [
841
848
  {
849
+ "color": "#0C0A0A",
842
850
  "fontFamily": "AreaNormal-Semibold",
843
851
  "fontSize": 12,
844
852
  "fontStyle": "normal",
@@ -858,6 +866,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
858
866
  style={
859
867
  [
860
868
  {
869
+ "color": "#0C0A0A",
861
870
  "fontFamily": "AreaNormal-Semibold",
862
871
  "fontSize": 12,
863
872
  "fontStyle": "normal",
@@ -875,6 +884,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
875
884
  style={
876
885
  [
877
886
  {
887
+ "color": "#0C0A0A",
878
888
  "fontFamily": "AreaNormal-Semibold",
879
889
  "fontSize": 12,
880
890
  "fontStyle": "normal",
@@ -908,6 +918,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
908
918
  style={
909
919
  [
910
920
  {
921
+ "color": "#0C0A0A",
911
922
  "fontFamily": "AreaNormal-Semibold",
912
923
  "fontSize": 12,
913
924
  "fontStyle": "normal",
@@ -935,6 +946,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
935
946
  style={
936
947
  [
937
948
  {
949
+ "color": "#0C0A0A",
938
950
  "fontFamily": "AreaNormal-Semibold",
939
951
  "fontSize": 12,
940
952
  "fontStyle": "normal",
@@ -960,6 +972,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
960
972
  style={
961
973
  [
962
974
  {
975
+ "color": "#0C0A0A",
963
976
  "fontFamily": "AreaNormal-Semibold",
964
977
  "fontSize": 15,
965
978
  "fontStyle": "normal",
@@ -1208,6 +1221,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1208
1221
  style={
1209
1222
  [
1210
1223
  {
1224
+ "color": "#0C0A0A",
1211
1225
  "fontFamily": "AreaNormal-Semibold",
1212
1226
  "fontSize": 12,
1213
1227
  "fontStyle": "normal",
@@ -1227,6 +1241,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1227
1241
  style={
1228
1242
  [
1229
1243
  {
1244
+ "color": "#0C0A0A",
1230
1245
  "fontFamily": "AreaNormal-Semibold",
1231
1246
  "fontSize": 12,
1232
1247
  "fontStyle": "normal",
@@ -1244,6 +1259,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1244
1259
  style={
1245
1260
  [
1246
1261
  {
1262
+ "color": "#0C0A0A",
1247
1263
  "fontFamily": "AreaNormal-Semibold",
1248
1264
  "fontSize": 12,
1249
1265
  "fontStyle": "normal",
@@ -1274,6 +1290,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1274
1290
  style={
1275
1291
  [
1276
1292
  {
1293
+ "color": "#0C0A0A",
1277
1294
  "fontFamily": "AreaNormal-Semibold",
1278
1295
  "fontSize": 12,
1279
1296
  "fontStyle": "normal",
@@ -1299,6 +1316,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1299
1316
  style={
1300
1317
  [
1301
1318
  {
1319
+ "color": "#0C0A0A",
1302
1320
  "fontFamily": "AreaNormal-Semibold",
1303
1321
  "fontSize": 15,
1304
1322
  "fontStyle": "normal",
@@ -1533,6 +1551,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1533
1551
  style={
1534
1552
  [
1535
1553
  {
1554
+ "color": "#0C0A0A",
1536
1555
  "fontFamily": "AreaNormal-Semibold",
1537
1556
  "fontSize": 12,
1538
1557
  "fontStyle": "normal",
@@ -1552,6 +1571,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1552
1571
  style={
1553
1572
  [
1554
1573
  {
1574
+ "color": "#0C0A0A",
1555
1575
  "fontFamily": "AreaNormal-Semibold",
1556
1576
  "fontSize": 12,
1557
1577
  "fontStyle": "normal",
@@ -1569,6 +1589,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1569
1589
  style={
1570
1590
  [
1571
1591
  {
1592
+ "color": "#0C0A0A",
1572
1593
  "fontFamily": "AreaNormal-Semibold",
1573
1594
  "fontSize": 12,
1574
1595
  "fontStyle": "normal",
@@ -1602,6 +1623,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1602
1623
  style={
1603
1624
  [
1604
1625
  {
1626
+ "color": "#0C0A0A",
1605
1627
  "fontFamily": "AreaNormal-Semibold",
1606
1628
  "fontSize": 12,
1607
1629
  "fontStyle": "normal",
@@ -1629,6 +1651,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1629
1651
  style={
1630
1652
  [
1631
1653
  {
1654
+ "color": "#0C0A0A",
1632
1655
  "fontFamily": "AreaNormal-Semibold",
1633
1656
  "fontSize": 12,
1634
1657
  "fontStyle": "normal",
@@ -1654,6 +1677,7 @@ exports[`CheckoutItemTabs component matches the snapshot 1`] = `
1654
1677
  style={
1655
1678
  [
1656
1679
  {
1680
+ "color": "#0C0A0A",
1657
1681
  "fontFamily": "AreaNormal-Semibold",
1658
1682
  "fontSize": 15,
1659
1683
  "fontStyle": "normal",
@@ -1,6 +0,0 @@
1
- interface Order {
2
- readonly orderNumber: number;
3
- readonly isFirstOrder: boolean;
4
- readonly coupon: string | null;
5
- }
6
- export type { Order as OrderProjection };
@@ -1 +0,0 @@
1
- export {};
@@ -1,2 +0,0 @@
1
- type Subscription = "o" | "m" | "b" | "q";
2
- export type { Subscription as SubscriptionProjection };
@@ -1 +0,0 @@
1
- export {};