Repository URL to install this package:
|
Version:
0.14.1 ▾
|
const item = {
userIdLabel: 'ID',
userIdValue: '0002',
userInformation: [
{
label: 'PO#',
value: '8764-00020987-2345678909-876443',
isColon: true,
},
{
label: 'Team',
value: 'Marketing Team',
isColon: true,
},
],
userName: {
label: 'User',
value: 'Calvin owen',
},
dateRequestedLabel: 'Date Requested',
dateRequestedValue: '07/03/2018',
statusInformation: [
{
label: 'Number of items',
value: '12 items',
isColon: true,
},
{
label: 'remaining budget',
value: '$8700.00',
isColon: true,
className: 'enable-green',
},
{
label: 'order total',
value: '$2041.59',
isColon: true,
className: 'enable-bold',
},
],
}
const ShippingAddressInformation = {
shippingAddressInfo: {
label: 'Shipping Address',
firstName: 'Peter',
lastName: 'England',
addressLine1: '3415 Green Ave',
addressLine2: '',
country: 'USA',
city: 'San Francsico',
state: 'TO',
zipCode: '52355',
},
shippingMethodInfo: {
label: 'Shipping Method',
value: `Standard - FREE + $100 for Oversized Items`,
},
paymentMethodInfo: {
label: 'Payment Method',
value: `Visa **** 1234`,
},
orderSummaryInfo: {
title: 'Order Summary',
list: [
{
label: 'Subtotal (4 Items)',
value: '$1623.80',
},
{
label: 'Standard Shipping',
value: 'FREE',
},
{
label: 'Estimated Sales Tax',
value: '$57.24',
},
{
label: 'Total',
value: '$1679.80',
className: 'enable-bold total-count',
},
],
},
}
const ProductItemList = [
{
image: 'https://raderain.sirv.com/T-Giant/129F_210044310_main.png',
title: 'Specialized',
// size: '48',
// color: 'Cali Fade/Tarmac Black',
options: [
{
label: 'color',
value: 'Cali Fade/Tarmac Black',
},
{
label: 'size',
value: '48',
}
],
quantity: '2',
price: '$692.00',
},
{
image: 'https://raderain.sirv.com/T-Giant/129F_210044310_main.png',
title: 'Specialized 2',
// size: '58',
// color: 'Tarmac Black',
options: [
{
label: 'color',
value: 'Tarmac Black',
},
{
label: 'size',
value: '58',
}
],
quantity: '5',
price: '$100.00',
},
{
image: 'https://raderain.sirv.com/T-Giant/129F_210044310_main.png',
title: 'Specialized 2',
// size: '68',
// color: 'Black',
options: [
{
label: 'color',
value: 'Black',
},
{
label: 'size',
value: '68',
}
],
quantity: '7',
price: '$200.00',
},
]
const ProductItemInformation = {
image: 'https://raderain.sirv.com/T-Giant/129F_210044310_main.png',
title: 'Specialized',
description: '',
ratings: '',
// size: '48',
// color: 'Cali Fade/Tarmac Black',
options: [
{
label: 'color',
value: 'Cali Fade/Tarmac Black',
},
{
label: 'size',
value: '48',
},
{
label: 'itemid #',
value: '310254',
}
],
// itemid: '310254',
quantity: '2',
price: '$692.00',
}
const ButtonInformation = {
primaryButton: 'Approve',
secondaryButton: 'Reject',
}
export {
item,
ShippingAddressInformation,
ProductItemList,
ProductItemInformation,
ButtonInformation,
}