merchi_cart 0.0.2-c → 0.0.2-d

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.
@@ -6,8 +6,6 @@ import { CheckoutContainer, InnerContainer, } from '../components/containers';
6
6
  import CartClient from '../components/CartClient';
7
7
  import CartShipment from '../components/CartShipment';
8
8
  import { CartBody, CartTabPanel, Title, } from '../components';
9
- import FormNewCustomer from '../forms/FormNewCustomer';
10
- import FormReturningCustomer from '../forms/FormReturningCustomer';
11
9
  import FormSquarePayment from '../forms/FormSquarePayment';
12
10
  import FormStripePayment from '../forms/FormStripePayment';
13
11
  import { faUserPlus, faUserTag } from '@fortawesome/free-solid-svg-icons';
@@ -20,6 +18,6 @@ function PanelClientCheckout() {
20
18
  _jsx(CheckoutContainer, { children: _jsx(InnerContainer, { paddingBottom: '3rem', children: _jsx(CartShipment, { cart: cart }) }) }), Boolean(company) && company.acceptSquare &&
21
19
  _jsx(CheckoutContainer, { children: _jsx(InnerContainer, { paddingBottom: '3rem', children: _jsx(FormSquarePayment, {}) }) }), _jsx(CheckoutContainer, { children: _jsx(InnerContainer, { children: _jsx(FormStripePayment, {}) }) })] })
22
20
  :
23
- _jsxs(_Fragment, { children: [_jsx(CheckoutContainer, { children: _jsxs(InnerContainer, { paddingBottom: '3rem', children: [_jsx(Title, { icon: faUserPlus, Title: 'Checkout as new customer' }), _jsx(FormNewCustomer, {})] }) }), _jsx(CheckoutContainer, { children: _jsxs(InnerContainer, { paddingBottom: '3rem', children: [_jsx(Title, { icon: faUserTag, Title: 'Checkout as returning customer' }), _jsx(FormReturningCustomer, {})] }) })] }) })] }));
21
+ _jsxs(_Fragment, { children: [_jsx(CheckoutContainer, { children: _jsx(InnerContainer, { paddingBottom: '3rem', children: _jsx(Title, { icon: faUserPlus, Title: 'Checkout as new customer' }) }) }), _jsx(CheckoutContainer, { children: _jsx(InnerContainer, { paddingBottom: '3rem', children: _jsx(Title, { icon: faUserTag, Title: 'Checkout as returning customer' }) }) })] }) })] }));
24
22
  }
25
23
  export default PanelClientCheckout;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "merchi_cart",
3
- "version": "0.0.2c",
3
+ "version": "0.0.2d",
4
4
  "description": "Merchi's cart",
5
5
  "main": "lib/index.js",
6
6
  "module": "src/index.tsx",