@dropins/storefront-order 0.1.0-alpha10 → 0.1.0-alpha12

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 (80) hide show
  1. package/api/getCustomerOrdersReturn/getCustomerOrdersReturn.d.ts +4 -0
  2. package/api/getCustomerOrdersReturn/graphql/getCustomerOrdersReturn.graphql.d.ts +2 -0
  3. package/api/getCustomerOrdersReturn/index.d.ts +2 -0
  4. package/api/getOrderDetailsById/graphql/orderItemsFragment.graphql.d.ts +5 -1
  5. package/api/getOrderDetailsById/graphql/orderSummaryFragment.graphql.d.ts +1 -1
  6. package/api/getStoreConfig/graphql/StoreConfigQuery.d.ts +1 -1
  7. package/api/index.d.ts +1 -0
  8. package/api.js +70 -56
  9. package/chunks/OrderLoaders.js +1 -1
  10. package/chunks/convertCase.js +1 -0
  11. package/chunks/customerAddressFragment.graphql.js +55 -0
  12. package/chunks/fetch-graphql.js +1 -1
  13. package/chunks/getAttributesForm.js +3 -3
  14. package/chunks/getCustomer.js +34 -27
  15. package/chunks/getCustomerOrdersReturn.js +52 -0
  16. package/chunks/getStoreConfig.js +9 -2
  17. package/chunks/setTaxStatus.js +1 -0
  18. package/chunks/transform-order-details.js +77 -72
  19. package/components/EmptyList/EmptyList.d.ts +5 -0
  20. package/components/EmptyList/index.d.ts +3 -0
  21. package/components/OrderCancelReasonsForm/OrderCancelReasonsForm.d.ts +5 -0
  22. package/components/OrderCancelReasonsForm/index.d.ts +3 -0
  23. package/components/OrderCostSummaryContent/Blocks.d.ts +38 -0
  24. package/components/OrderCostSummaryContent/OrderCostSummaryContent.d.ts +5 -0
  25. package/components/OrderCostSummaryContent/index.d.ts +3 -0
  26. package/components/OrderLoaders/OrderLoaders.d.ts +2 -0
  27. package/components/OrderProductListContent/CartSummaryItem.d.ts +5 -0
  28. package/components/OrderProductListContent/OrderProductListContent.d.ts +5 -0
  29. package/components/OrderProductListContent/index.d.ts +4 -0
  30. package/components/ReturnsListContent/ReturnsListContent.d.ts +5 -0
  31. package/components/ReturnsListContent/index.d.ts +3 -0
  32. package/components/index.d.ts +5 -1
  33. package/configs/mock.config.d.ts +786 -0
  34. package/containers/CustomerDetails.js +1 -1
  35. package/containers/OrderCancel/OrderCancel.d.ts +5 -0
  36. package/containers/OrderCancel.d.ts +3 -0
  37. package/containers/OrderCancel.js +87 -0
  38. package/containers/OrderCostSummary/OrderCostSummary.d.ts +5 -0
  39. package/containers/OrderCostSummary/index.d.ts +3 -0
  40. package/containers/OrderCostSummary.d.ts +3 -0
  41. package/containers/OrderCostSummary.js +1 -0
  42. package/containers/OrderProductList/OrderProductList.d.ts +5 -0
  43. package/containers/OrderProductList/index.d.ts +3 -0
  44. package/containers/OrderProductList.d.ts +3 -0
  45. package/containers/OrderProductList.js +1 -0
  46. package/containers/OrderSearch.js +1 -1
  47. package/containers/OrderStatus.js +1 -80
  48. package/containers/ReturnsList/ReturnsList.d.ts +5 -0
  49. package/containers/ReturnsList/index.d.ts +3 -0
  50. package/containers/ReturnsList.d.ts +3 -0
  51. package/containers/ReturnsList.js +1 -0
  52. package/containers/ShippingStatus.js +1 -1
  53. package/containers/index.d.ts +4 -0
  54. package/data/models/customer-orders-return.d.ts +36 -0
  55. package/data/models/index.d.ts +2 -0
  56. package/data/models/order-details.d.ts +44 -8
  57. package/data/models/store-config.d.ts +7 -0
  58. package/data/transforms/index.d.ts +2 -0
  59. package/data/transforms/transform-customer-orders-return.d.ts +5 -0
  60. package/data/transforms/transform-order-details.d.ts +11 -1
  61. package/hooks/containers/useOrderCostSummary.d.ts +9 -0
  62. package/hooks/containers/useOrderProductList.d.ts +9 -0
  63. package/hooks/containers/useReturnsList.d.ts +14 -0
  64. package/hooks/index.d.ts +4 -0
  65. package/hooks/useIsMobile.d.ts +2 -0
  66. package/i18n/en_US.json.d.ts +67 -4
  67. package/lib/setTaxStatus.d.ts +4 -0
  68. package/package.json +1 -1
  69. package/render.js +2 -2
  70. package/types/api/getCustomerOrdersReturn.types.d.ts +46 -0
  71. package/types/api/getOrderDetails.types.d.ts +24 -5
  72. package/types/emptyList.types.d.ts +7 -0
  73. package/types/index.d.ts +5 -0
  74. package/types/orderCancel.types.d.ts +8 -4
  75. package/types/orderCostSummary.types.d.ts +28 -0
  76. package/types/orderProductList.types.d.ts +30 -0
  77. package/types/returnsList.types.d.ts +42 -0
  78. package/components/OrderCancel/OrderCancel.d.ts +0 -5
  79. /package/chunks/{CustomerDetailsContent.js → OrderCancelReasonsForm.js} +0 -0
  80. /package/{components → containers}/OrderCancel/index.d.ts +0 -0
@@ -1,79 +1,12 @@
1
- import{d as G}from"./fetch-graphql.js";const z=`
2
- fragment OrderSummary on OrderTotal {
3
- grand_total {
4
- value
5
- currency
6
- }
7
- subtotal {
8
- currency
9
- value
10
- }
11
- taxes {
12
- amount {
13
- currency
14
- value
15
- }
16
- rate
17
- title
18
- }
19
- total_tax {
20
- currency
21
- value
22
- }
23
- total_shipping {
24
- currency
25
- value
26
- }
27
- discounts {
28
- amount {
29
- currency
30
- value
31
- }
32
- label
33
- }
34
- }`,B=`
35
- fragment AddressesList on OrderAddress {
36
- city
37
- company
38
- country_code
39
- fax
40
- firstname
41
- lastname
42
- middlename
43
- postcode
44
- prefix
45
- region
46
- region_id
47
- street
48
- suffix
49
- telephone
50
- vat_id
51
- }`,F=`
52
- fragment OrderItems on OrderItem {
53
- __typename
54
- status
55
- product_name
56
- id
57
- quantity_ordered
58
- quantity_shipped
59
- quantity_canceled
60
- quantity_invoiced
61
- quantity_refunded
62
- quantity_returned
63
- product_sale_price {
64
- value
65
- currency
66
- }
67
- selected_options {
68
- label
69
- value
70
- }
71
- product {
1
+ import{a as F}from"./convertCase.js";const H=`
2
+ fragment ProductDetails on ProductInterface {
72
3
  __typename
73
4
  canonical_url
74
5
  uid
75
6
  name
76
7
  sku
8
+ only_x_left_in_stock
9
+ stock_status
77
10
  thumbnail {
78
11
  label
79
12
  url
@@ -87,4 +20,76 @@ fragment OrderItems on OrderItem {
87
20
  }
88
21
  }
89
22
  }
90
- }`,K=n=>n||0,L=n=>{var a,u,i;return{canonicalUrl:(n==null?void 0:n.canonical_url)||"",id:(n==null?void 0:n.uid)||"",name:(n==null?void 0:n.name)||"",sku:(n==null?void 0:n.sku)||"",image:((a=n==null?void 0:n.image)==null?void 0:a.url)||"",productType:(n==null?void 0:n.__typename)||"",thumbnail:{label:((u=n==null?void 0:n.thumbnail)==null?void 0:u.label)||"",url:((i=n==null?void 0:n.thumbnail)==null?void 0:i.url)||""}}},P=n=>{if(!n||!("selected_options"in n))return;const a={};for(const u of n.selected_options)a[u.label]=u.value;return a},Y=n=>n==null?void 0:n.map(a=>{var u,i,l,c,_,s,p,y,t,f,g,v,q,b,h,O,x,C,N,R,S,E,A,T,k,M,Q,U,D;return{type:a==null?void 0:a.__typename,productName:a.product_name,quantityCanceled:a==null?void 0:a.quantity_canceled,quantityInvoiced:a==null?void 0:a.quantity_invoiced,quantityOrdered:a==null?void 0:a.quantity_ordered,quantityRefunded:a==null?void 0:a.quantity_refunded,quantityReturned:a==null?void 0:a.quantity_returned,quantityShipped:a==null?void 0:a.quantity_shipped,id:a==null?void 0:a.id,discounted:((c=(l=(i=(u=a==null?void 0:a.product)==null?void 0:u.price_range)==null?void 0:i.maximum_price)==null?void 0:l.regular_price)==null?void 0:c.value)*(a==null?void 0:a.quantity_ordered)!==((_=a==null?void 0:a.product_sale_price)==null?void 0:_.value)*(a==null?void 0:a.quantity_ordered),total:{value:((s=a==null?void 0:a.product_sale_price)==null?void 0:s.value)*(a==null?void 0:a.quantity_ordered),currency:(p=a==null?void 0:a.product_sale_price)==null?void 0:p.currency},totalInclTax:{value:((y=a==null?void 0:a.product_sale_price)==null?void 0:y.value)*(a==null?void 0:a.quantity_ordered),currency:(t=a==null?void 0:a.product_sale_price)==null?void 0:t.currency},price:{value:(f=a==null?void 0:a.product_sale_price)==null?void 0:f.value,currency:(g=a==null?void 0:a.product_sale_price)==null?void 0:g.currency},priceInclTax:{value:(v=a==null?void 0:a.product_sale_price)==null?void 0:v.value,currency:(q=a==null?void 0:a.product_sale_price)==null?void 0:q.currency},totalQuantity:K(a==null?void 0:a.quantity_ordered),regularPrice:{value:(x=(O=(h=(b=a==null?void 0:a.product)==null?void 0:b.price_range)==null?void 0:h.maximum_price)==null?void 0:O.regular_price)==null?void 0:x.value,currency:(S=(R=(N=(C=a==null?void 0:a.product)==null?void 0:C.price_range)==null?void 0:N.maximum_price)==null?void 0:R.regular_price)==null?void 0:S.currency},product:L(a==null?void 0:a.product),thumbnail:{label:((A=(E=a==null?void 0:a.product)==null?void 0:E.thumbnail)==null?void 0:A.label)||"",url:((k=(T=a==null?void 0:a.product)==null?void 0:T.thumbnail)==null?void 0:k.url)||""},giftCard:(a==null?void 0:a.__typename)==="GiftCardOrderItem"?{senderName:((M=a.gift_card)==null?void 0:M.sender_name)||"",senderEmail:((Q=a.gift_card)==null?void 0:Q.sender_email)||"",recipientEmail:((U=a.gift_card)==null?void 0:U.recipient_email)||"",recipientName:((D=a.gift_card)==null?void 0:D.recipient_name)||""}:void 0,configurableOptions:P(a)}}),j=n=>{var y,t,f,g,v;const a=Y(n.items),{total:u,...i}=G({...n,items:a},"camelCase",{applied_coupons:"coupons",__typename:"__typename",firstname:"firstName",middlename:"middleName",lastname:"lastName",postcode:"postCode",payment_methods:"payments"}),l=(y=n==null?void 0:n.payment_methods)==null?void 0:y[0],c=(l==null?void 0:l.type)||"",_=(l==null?void 0:l.name)||"",s=(t=i==null?void 0:i.items)==null?void 0:t.reduce((q,b)=>q+b.totalQuantity,0);return{...u,...i,totalQuantity:s,shipping:{amount:((f=i==null?void 0:i.total)==null?void 0:f.totalShipping.value)??0,currency:((v=(g=i.total)==null?void 0:g.totalShipping)==null?void 0:v.currency)||"",code:i.shippingMethod??""},payments:[{code:c,name:_}]}},H=(n,a)=>{var u,i,l,c,_,s,p;if((c=(l=(i=(u=a==null?void 0:a.data)==null?void 0:u.customer)==null?void 0:i.orders)==null?void 0:l.items)!=null&&c.length&&n==="orderData"){const y=(p=(s=(_=a==null?void 0:a.data)==null?void 0:_.customer)==null?void 0:s.orders)==null?void 0:p.items[0];return j(y)}return null};export{B as A,z as O,F as a,H as b,j as t};
23
+ `,J=`
24
+ fragment PriceDetails on OrderItemInterface {
25
+ prices {
26
+ price_including_tax {
27
+ value
28
+ currency
29
+ }
30
+ original_price {
31
+ value
32
+ currency
33
+ }
34
+ original_price_including_tax {
35
+ value
36
+ currency
37
+ }
38
+ price {
39
+ value
40
+ currency
41
+ }
42
+ }
43
+ }
44
+ `,V=`
45
+ fragment GiftCardDetails on GiftCardOrderItem {
46
+ ...PriceDetails
47
+ gift_message {
48
+ message
49
+ }
50
+ gift_card {
51
+ recipient_name
52
+ recipient_email
53
+ sender_name
54
+ sender_email
55
+ message
56
+ }
57
+ }
58
+ `,W=`
59
+ fragment OrderItemDetails on OrderItemInterface {
60
+ __typename
61
+ status
62
+ product_name
63
+ id
64
+ quantity_ordered
65
+ quantity_shipped
66
+ quantity_canceled
67
+ quantity_invoiced
68
+ quantity_refunded
69
+ quantity_returned
70
+ product_sale_price {
71
+ value
72
+ currency
73
+ }
74
+ selected_options {
75
+ label
76
+ value
77
+ }
78
+ product {
79
+ ...ProductDetails
80
+ }
81
+ ...PriceDetails
82
+ }
83
+ `,X=`
84
+ fragment BundleOrderItemDetails on BundleOrderItem {
85
+ ...PriceDetails
86
+ bundle_options {
87
+ uid
88
+ label
89
+ values {
90
+ uid
91
+ product_name
92
+ }
93
+ }
94
+ }
95
+ `,j=n=>n||0,k=n=>{var a,l,i;return{...n,canonicalUrl:(n==null?void 0:n.canonical_url)||"",id:(n==null?void 0:n.uid)||"",name:(n==null?void 0:n.name)||"",sku:(n==null?void 0:n.sku)||"",image:((a=n==null?void 0:n.image)==null?void 0:a.url)||"",productType:(n==null?void 0:n.__typename)||"",thumbnail:{label:((l=n==null?void 0:n.thumbnail)==null?void 0:l.label)||"",url:((i=n==null?void 0:n.thumbnail)==null?void 0:i.url)||""}}},w=n=>{if(!n||!("selected_options"in n))return;const a={};for(const l of n.selected_options)a[l.label]=l.value;return a},Q=n=>{const a=n==null?void 0:n.map(i=>({uid:i.uid,label:i.label,values:i.values.map(c=>c.product_name).join(", ")})),l={};return a==null||a.forEach(i=>{l[i.label]=i.values}),Object.keys(l).length>0?l:null},U=n=>(n==null?void 0:n.length)>0?{count:n.length,result:n.map(a=>a.title).join(", ")}:null,e=n=>n==null?void 0:n.filter(a=>a.__typename).map(a=>{var l,i,c,u,_,s,p,y,g,f,b,v,O,t,q,h,E,D,T,N,R,C,P,A,x,G,L,S,M,B;return{type:a==null?void 0:a.__typename,productName:a.product_name,quantityCanceled:(a==null?void 0:a.quantity_canceled)||0,quantityInvoiced:(a==null?void 0:a.quantity_invoiced)||0,quantityOrdered:(a==null?void 0:a.quantity_ordered)||0,quantityRefunded:(a==null?void 0:a.quantity_refunded)||0,quantityReturned:(a==null?void 0:a.quantity_returned)||0,quantityShipped:(a==null?void 0:a.quantity_shipped)||0,id:a==null?void 0:a.id,discounted:((u=(c=(i=(l=a==null?void 0:a.product)==null?void 0:l.price_range)==null?void 0:i.maximum_price)==null?void 0:c.regular_price)==null?void 0:u.value)*(a==null?void 0:a.quantity_ordered)!==((_=a==null?void 0:a.product_sale_price)==null?void 0:_.value)*(a==null?void 0:a.quantity_ordered),total:{value:((s=a==null?void 0:a.product_sale_price)==null?void 0:s.value)*(a==null?void 0:a.quantity_ordered)||0,currency:((p=a==null?void 0:a.product_sale_price)==null?void 0:p.currency)||""},totalInclTax:{value:((y=a==null?void 0:a.product_sale_price)==null?void 0:y.value)*(a==null?void 0:a.quantity_ordered)||0,currency:(g=a==null?void 0:a.product_sale_price)==null?void 0:g.currency},price:{value:((f=a==null?void 0:a.product_sale_price)==null?void 0:f.value)||0,currency:(b=a==null?void 0:a.product_sale_price)==null?void 0:b.currency},priceInclTax:{value:((v=a==null?void 0:a.product_sale_price)==null?void 0:v.value)||0,currency:(O=a==null?void 0:a.product_sale_price)==null?void 0:O.currency},totalQuantity:j(a==null?void 0:a.quantity_ordered),regularPrice:{value:(E=(h=(q=(t=a==null?void 0:a.product)==null?void 0:t.price_range)==null?void 0:q.maximum_price)==null?void 0:h.regular_price)==null?void 0:E.value,currency:(R=(N=(T=(D=a==null?void 0:a.product)==null?void 0:D.price_range)==null?void 0:T.maximum_price)==null?void 0:N.regular_price)==null?void 0:R.currency},product:k(a==null?void 0:a.product),thumbnail:{label:((P=(C=a==null?void 0:a.product)==null?void 0:C.thumbnail)==null?void 0:P.label)||"",url:((x=(A=a==null?void 0:a.product)==null?void 0:A.thumbnail)==null?void 0:x.url)||""},giftCard:(a==null?void 0:a.__typename)==="GiftCardOrderItem"?{senderName:((G=a.gift_card)==null?void 0:G.sender_name)||"",senderEmail:((L=a.gift_card)==null?void 0:L.sender_email)||"",recipientEmail:((S=a.gift_card)==null?void 0:S.recipient_email)||"",recipientName:((M=a.gift_card)==null?void 0:M.recipient_name)||"",message:((B=a.gift_card)==null?void 0:B.message)||""}:void 0,configurableOptions:w(a),bundleOptions:a.__typename==="BundleOrderItem"?Q(a.bundle_options):null,itemPrices:a.prices,downloadableLinks:a.__typename==="DownloadableOrderItem"?U(a==null?void 0:a.downloadable_links):null}}),K=n=>{var y,g,f,b,v;const a=e(n.items),{total:l,...i}=F({...n,items:a},"camelCase",{applied_coupons:"coupons",__typename:"__typename",firstname:"firstName",middlename:"middleName",lastname:"lastName",postcode:"postCode",payment_methods:"payments"}),c=(y=n==null?void 0:n.payment_methods)==null?void 0:y[0],u=(c==null?void 0:c.type)||"",_=(c==null?void 0:c.name)||"",s=(g=i==null?void 0:i.items)==null?void 0:g.reduce((O,t)=>O+(t==null?void 0:t.totalQuantity),0);return{...l,...i,totalQuantity:s,shipping:{amount:((f=i==null?void 0:i.total)==null?void 0:f.totalShipping.value)??0,currency:((v=(b=i.total)==null?void 0:b.totalShipping)==null?void 0:v.currency)||"",code:i.shippingMethod??""},payments:[{code:u,name:_}]}},Y=(n,a)=>{var l,i,c,u,_,s,p;if((u=(c=(i=(l=a==null?void 0:a.data)==null?void 0:l.customer)==null?void 0:i.orders)==null?void 0:c.items)!=null&&u.length&&n==="orderData"){const y=(p=(s=(_=a==null?void 0:a.data)==null?void 0:_.customer)==null?void 0:s.orders)==null?void 0:p.items[0];return K(y)}return null};export{X as B,V as G,W as O,H as P,J as a,Y as b,e as c,K as t};
@@ -0,0 +1,5 @@
1
+ import { FunctionComponent } from 'preact';
2
+ import { EmptyListProps } from '../../types';
3
+
4
+ export declare const EmptyList: FunctionComponent<EmptyListProps>;
5
+ //# sourceMappingURL=EmptyList.d.ts.map
@@ -0,0 +1,3 @@
1
+ export * from './EmptyList';
2
+ export { EmptyList as default } from './EmptyList';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,5 @@
1
+ import { FunctionComponent } from 'preact';
2
+ import { OrderCancelReasonFormProps } from '../../types';
3
+
4
+ export declare const OrderCancelReasonsForm: FunctionComponent<OrderCancelReasonFormProps>;
5
+ //# sourceMappingURL=OrderCancelReasonsForm.d.ts.map
@@ -0,0 +1,3 @@
1
+ export * from './OrderCancelReasonsForm';
2
+ export { OrderCancelReasonsForm as default } from './OrderCancelReasonsForm';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,38 @@
1
+ import { OrderDataModel } from '../../data/models';
2
+ import { TaxTypes } from '../../types';
3
+
4
+ type translationsTypes = Record<string, string>;
5
+ export declare const Subtotal: ({ translations, order, subTotalValue, shoppingOrdersDisplaySubtotal, }: {
6
+ translations: translationsTypes;
7
+ order?: OrderDataModel | undefined;
8
+ subTotalValue: number;
9
+ shoppingOrdersDisplaySubtotal: TaxTypes;
10
+ }) => import("preact").JSX.Element;
11
+ export declare const Shipping: ({ translations, shoppingOrdersDisplayShipping, order, totalShipping, }: {
12
+ totalShipping: number;
13
+ shoppingOrdersDisplayShipping: TaxTypes;
14
+ order: OrderDataModel;
15
+ translations: translationsTypes;
16
+ }) => import("preact").JSX.Element;
17
+ export declare const Discounts: ({ translations, order, totalGiftcardValue, totalGiftcardCurrency, }: {
18
+ totalGiftcardValue: number;
19
+ totalGiftcardCurrency: string;
20
+ order: OrderDataModel;
21
+ translations: translationsTypes;
22
+ }) => import("preact").JSX.Element | null;
23
+ export declare const Coupons: ({ order }: {
24
+ order: OrderDataModel;
25
+ }) => import("preact").JSX.Element;
26
+ export declare const AccordionTax: ({ translations, renderTaxAccordion, totalAccordionTaxValue, order, }: {
27
+ translations: translationsTypes;
28
+ order: OrderDataModel;
29
+ renderTaxAccordion: boolean;
30
+ totalAccordionTaxValue: number;
31
+ }) => import("preact").JSX.Element;
32
+ export declare const Total: ({ translations, shoppingOrdersDisplaySubtotal, order, }: {
33
+ translations: translationsTypes;
34
+ order?: OrderDataModel | undefined;
35
+ shoppingOrdersDisplaySubtotal: TaxTypes;
36
+ }) => import("preact").JSX.Element;
37
+ export {};
38
+ //# sourceMappingURL=Blocks.d.ts.map
@@ -0,0 +1,5 @@
1
+ import { FunctionComponent } from 'preact';
2
+ import { OrderCostSummaryContentProps } from '../../types';
3
+
4
+ export declare const OrderCostSummaryContent: FunctionComponent<OrderCostSummaryContentProps>;
5
+ //# sourceMappingURL=OrderCostSummaryContent.d.ts.map
@@ -0,0 +1,3 @@
1
+ export * from './OrderCostSummaryContent';
2
+ export { OrderCostSummaryContent as default } from './OrderCostSummaryContent';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -4,4 +4,6 @@ export declare const CardLoader: ({ testId, withCard, }: {
4
4
  withCard?: boolean | undefined;
5
5
  }) => import("preact").JSX.Element;
6
6
  export declare const DetailsSkeleton: (props: any) => import("preact").JSX.Element;
7
+ export declare const OrderProductListSkeleton: () => import("preact").JSX.Element;
8
+ export declare const OrderSummarySkeleton: () => import("preact").JSX.Element;
7
9
  //# sourceMappingURL=OrderLoaders.d.ts.map
@@ -0,0 +1,5 @@
1
+ import { FunctionComponent } from 'preact';
2
+ import { CartSummaryItemProps } from '../../types';
3
+
4
+ export declare const CartSummaryItem: FunctionComponent<CartSummaryItemProps>;
5
+ //# sourceMappingURL=CartSummaryItem.d.ts.map
@@ -0,0 +1,5 @@
1
+ import { FunctionComponent } from 'preact';
2
+ import { OrderProductListContentProps } from '../../types';
3
+
4
+ export declare const OrderProductListContent: FunctionComponent<OrderProductListContentProps>;
5
+ //# sourceMappingURL=OrderProductListContent.d.ts.map
@@ -0,0 +1,4 @@
1
+ export * from './OrderProductListContent';
2
+ export * from './CartSummaryItem';
3
+ export { OrderProductListContent as default } from './OrderProductListContent';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,5 @@
1
+ import { FunctionComponent } from 'preact';
2
+ import { ReturnsListContentProps } from '../../types';
3
+
4
+ export declare const ReturnsListContent: FunctionComponent<ReturnsListContentProps>;
5
+ //# sourceMappingURL=ReturnsListContent.d.ts.map
@@ -0,0 +1,3 @@
1
+ export * from './ReturnsListContent';
2
+ export { ReturnsListContent as default } from './ReturnsListContent';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -5,5 +5,9 @@ export * from './ShippingStatusCard';
5
5
  export * from './OrderLoaders';
6
6
  export * from './OrderActions';
7
7
  export * from './CustomerDetailsContent';
8
- export * from './OrderCancel';
8
+ export * from './EmptyList';
9
+ export * from './ReturnsListContent';
10
+ export * from './OrderProductListContent';
11
+ export * from './OrderCostSummaryContent';
12
+ export * from './OrderCancelReasonsForm';
9
13
  //# sourceMappingURL=index.d.ts.map