From 4d1fbc19f84d18623dd329c7c58aa08bc8b4e41c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20=C5=BBegle=C5=84?= Date: Mon, 17 Jan 2022 09:55:57 +0100 Subject: [PATCH] Update to new design theme (#1631) * Update macaw to 0.3.0 (#1623) * Update macaw to 0.3 * Use proper pagination component * Fix type errors * Remove leftover import * Remove variant and color from confirm button * Remove alias * Update macaw * Fix button type * Random fixes (#1633) * Improve layout components * Use colored svgs * Minor fixes * Fix autocomplete loaders * Fix padding * Fix button variant * Remove codegen file * Fixes after bumping macaw to 0.3 part 2 (#1638) * Fix various visual bugs * Fix type errors * Bump macaw * Random fixes part 3 (#1647) * wip * Fix mismatched paddings * Fix actions container padding * Put story in the right directory * Fix shipping zone picker * Fix minor visual bugs * Remove unused imports * Move styles to separate file * Random fixes part 4 (#1641) * Fix various visual bugs * Fix type errors * Fix last table item padding * Add outline on hover * Fix spaces * Fix spaces * Remove dead code * Fix elevation * Remove dead code * Fix shadows * Add outline to expand button * Fix spacing * Fix spacings * Fix selectable tables hover * Use proper delete icon * Fix ConfirmButtonTransitionState imports * Update src/apps/components/CustomApps/CustomApps.tsx Co-authored-by: Wojciech Mista Co-authored-by: Wojciech Mista * Rework error page (#1670) * Remake error page * Fix types * Update error id styles * Fix types * Login page rework (#1703) * Rework login page * Remove outline * Fix logo and footer placement * Sort imports * Random fixes part 5 (#1669) * Fix text color in dark mode * Update password reset pages (#1714) * Update password reset pages * Update src/auth/components/ResetPasswordPage/ResetPasswordPage.tsx Co-authored-by: Jakub Majorek Co-authored-by: Jakub Majorek * Fix collection page * Update dark mode logo * Bring back "create app" button * Fix spacings * Fix selects * Fix login e2e test * Fix not found page displaying * Update selector * Add missing package * Let dropdown overflow through card * Fix scroll * Fix scroll * Fix overflow on grid element * Fix e2e tests * Fix data-test-id * Update snapshots * Update messages * Update macaw * Update snapshots * Use stable macaw version Co-authored-by: Wojciech Mista Co-authored-by: Jakub Majorek --- .../DeleteIconButton/DeleteIconButton.tsx | 7 +- src/components/Money/Money.tsx | 60 +- src/components/Timeline/Timeline.tsx | 1 - .../CustomerOrders/CustomerOrders.tsx | 4 +- .../GiftCardCreateDialogCodeContent.tsx | 36 +- .../GiftCardCreateDialogForm.tsx | 7 +- src/giftCards/GiftCardCreateDialog/styles.ts | 17 +- .../GiftCardUpdateDetailsBalanceSection.tsx | 8 +- .../GiftCardUpdateDetailsCard.tsx | 12 +- .../GiftCardUpdateDetailsCard/messages.ts | 2 +- .../GiftCardUpdateDetailsCard/styles.ts | 3 - .../GiftCardUpdateExpirySelect.tsx | 2 +- .../GiftCardUpdateExpirySelect/styles.ts | 4 +- .../GiftCardUpdatePageHeader.tsx | 9 +- .../GiftCardsListHeader.tsx | 5 +- .../GiftCardsListTable/GiftCardsListTable.tsx | 9 +- .../BulkEnableDisableSection.tsx | 4 +- .../GiftCardListDialogsProvider.tsx | 14 +- src/giftCards/GiftCardsList/styles.ts | 15 +- src/giftCards/index.tsx | 4 +- src/giftCards/urls.ts | 4 +- .../OrderDraftList/OrderDraftList.tsx | 4 +- .../OrderFulfilledProductsCard.tsx | 4 +- .../OrderFulfilledProductsCard/styles.ts | 8 +- .../OrderFulfillmentApproveDialog.tsx | 11 +- src/orders/components/OrderList/OrderList.tsx | 4 +- .../components/OrderPayment/OrderPayment.tsx | 96 +- .../OrderPriceLabel/OrderPriceLabel.tsx | 7 +- .../OrderProductsTableRow.tsx | 7 +- .../OrderUnfulfilledProductsCard.tsx | 2 +- .../ProductTypeVariantAttributes.tsx | 15 +- .../ProductExportDialogInfo.tsx | 153 +- .../ProductListPage/ProductListPage.tsx | 1 - .../ProductStocks/ProductStocks.tsx | 12 +- .../ProductVariantEndPreorderDialog.tsx | 2 +- .../__snapshots__/Stories.test.ts.snap | 15340 ++++++---------- .../WebhookDetailsPage/WebhookDetailsPage.tsx | 3 +- 37 files changed, 5846 insertions(+), 10050 deletions(-) diff --git a/src/components/DeleteIconButton/DeleteIconButton.tsx b/src/components/DeleteIconButton/DeleteIconButton.tsx index 659b43ed71a..4dbcd7798ea 100644 --- a/src/components/DeleteIconButton/DeleteIconButton.tsx +++ b/src/components/DeleteIconButton/DeleteIconButton.tsx @@ -1,10 +1,9 @@ -import { IconButton, IconButtonProps } from "@material-ui/core"; -import TrashIcon from "@saleor/icons/Trash"; +import { DeleteIcon, IconButton, IconButtonProps } from "@saleor/macaw-ui"; import React from "react"; const DeleteIconButton: React.FC = ({ onClick }) => ( - - + + ); diff --git a/src/components/Money/Money.tsx b/src/components/Money/Money.tsx index 25c799b14be..dea0fd76f4c 100644 --- a/src/components/Money/Money.tsx +++ b/src/components/Money/Money.tsx @@ -1,49 +1,49 @@ -import { makeStyles, Typography, TypographyProps } from "@material-ui/core"; -import HorizontalSpacer from "@saleor/apps/components/HorizontalSpacer"; -import classNames from "classnames"; +import useLocale from "@saleor/hooks/useLocale"; +import { makeStyles } from "@saleor/macaw-ui"; import React from "react"; +const useStyles = makeStyles( + { + currency: { + fontSize: "0.875em", + marginRight: "0.5rem" + } + }, + { name: "Money" } +); + export interface IMoney { amount: number; currency: string; } -export interface MoneyProps extends TypographyProps { +export interface MoneyProps { money: IMoney | null; } -const useStyles = makeStyles( - () => ({ - container: { - display: "flex", - alignItems: "baseline" - }, - containerRight: { - justifyContent: "end" - } - }), - { name: "Money" } -); - -export const Money: React.FC = ({ money, ...rest }) => { - const classes = useStyles({}); +export const Money: React.FC = ({ money }) => { + const { locale } = useLocale(); + const classes = useStyles(); if (!money) { return null; } + const currencyFractionDigits = new Intl.NumberFormat(locale, { + style: "currency", + currency: money.currency + }).resolvedOptions().maximumFractionDigits; + + const amount = (12345.678).toLocaleString(locale, { + maximumFractionDigits: currencyFractionDigits, + minimumFractionDigits: currencyFractionDigits + }); + return ( -
- - {money.currency} - - - {money.amount.toFixed(2)} -
+ <> + {money.currency} + {amount} + ); }; diff --git a/src/components/Timeline/Timeline.tsx b/src/components/Timeline/Timeline.tsx index 109fae9c7af..6a5e84f6f55 100644 --- a/src/components/Timeline/Timeline.tsx +++ b/src/components/Timeline/Timeline.tsx @@ -117,7 +117,6 @@ export const TimelineAddNote: React.FC = props => { className={classes.button} disabled={disabled} onClick={e => submit(e)} - disabled={disabled} > = props => { )} - + {maybe(() => order.total.gross) ? ( - + ) : ( )} diff --git a/src/giftCards/GiftCardCreateDialog/GiftCardCreateDialogCodeContent.tsx b/src/giftCards/GiftCardCreateDialog/GiftCardCreateDialogCodeContent.tsx index e25d607b03c..a0265691fd4 100644 --- a/src/giftCards/GiftCardCreateDialog/GiftCardCreateDialogCodeContent.tsx +++ b/src/giftCards/GiftCardCreateDialog/GiftCardCreateDialogCodeContent.tsx @@ -1,9 +1,10 @@ -import { Button, DialogContent, Typography } from "@material-ui/core"; +import { DialogActions, DialogContent, Typography } from "@material-ui/core"; import HorizontalSpacer from "@saleor/apps/components/HorizontalSpacer"; import VerticalSpacer from "@saleor/apps/components/VerticalSpacer"; import useClipboard from "@saleor/hooks/useClipboard"; import useNotifier from "@saleor/hooks/useNotifier"; import { buttonMessages } from "@saleor/intl"; +import { Button } from "@saleor/macaw-ui"; import React from "react"; import { useIntl } from "react-intl"; @@ -33,30 +34,27 @@ const GiftCardCreateDialogCodeContent: React.FC - - {intl.formatMessage(messages.createdGiftCardLabel)} - - - - {cardCode} - - -
+
+ + + {intl.formatMessage(messages.createdGiftCardLabel)} + + + + {cardCode} + + + + - -
- + +
); }; diff --git a/src/giftCards/GiftCardCreateDialog/GiftCardCreateDialogForm.tsx b/src/giftCards/GiftCardCreateDialog/GiftCardCreateDialogForm.tsx index 979823f9f11..a2cffb76f64 100644 --- a/src/giftCards/GiftCardCreateDialog/GiftCardCreateDialogForm.tsx +++ b/src/giftCards/GiftCardCreateDialog/GiftCardCreateDialogForm.tsx @@ -147,12 +147,7 @@ const GiftCardCreateDialogForm: React.FC = ({ return ( <> - + ({ - buttonsContainer: { - display: "flex", - justifyContent: "flex-end", - minWidth: 450 + content: { + ...contentStyles } }), { name: "GiftCardCreateDialogCodeContent" } @@ -21,9 +26,7 @@ export const useGiftCardCreateFormStyles = makeStyles( }, fullWidthContainer: { width: "100%" }, dialogContent: { - minWidth: 550, - overflowY: "auto", - overflowX: "hidden" + ...contentStyles } }), { name: "GiftCardCreateDialogForm" } diff --git a/src/giftCards/GiftCardUpdate/GiftCardUpdateDetailsCard/GiftCardUpdateDetailsBalanceSection.tsx b/src/giftCards/GiftCardUpdate/GiftCardUpdateDetailsCard/GiftCardUpdateDetailsBalanceSection.tsx index 6b647091509..147496251e7 100644 --- a/src/giftCards/GiftCardUpdate/GiftCardUpdateDetailsCard/GiftCardUpdateDetailsBalanceSection.tsx +++ b/src/giftCards/GiftCardUpdate/GiftCardUpdateDetailsCard/GiftCardUpdateDetailsBalanceSection.tsx @@ -28,13 +28,15 @@ const GiftCardUpdateDetailsBalanceSection: React.FC = () => { className={classNames(classes.labelsContainer, classes.wideContainer)} > {intl.formatMessage(messages.cardBalanceLabel)} -
+ / - -
+ + + +
diff --git a/src/giftCards/GiftCardUpdate/GiftCardUpdateDetailsCard/GiftCardUpdateDetailsCard.tsx b/src/giftCards/GiftCardUpdate/GiftCardUpdateDetailsCard/GiftCardUpdateDetailsCard.tsx index 1d499235c8c..4832d036780 100644 --- a/src/giftCards/GiftCardUpdate/GiftCardUpdateDetailsCard/GiftCardUpdateDetailsCard.tsx +++ b/src/giftCards/GiftCardUpdate/GiftCardUpdateDetailsCard/GiftCardUpdateDetailsCard.tsx @@ -1,16 +1,11 @@ -import { - Button, - Card, - CardContent, - Divider, - Typography -} from "@material-ui/core"; +import { Card, CardContent, Divider, Typography } from "@material-ui/core"; import VerticalSpacer from "@saleor/apps/components/VerticalSpacer"; import CardSpacer from "@saleor/components/CardSpacer"; import CardTitle from "@saleor/components/CardTitle"; import Skeleton from "@saleor/components/Skeleton"; import GiftCardTagInput from "@saleor/giftCards/components/GiftCardTagInput"; import GiftCardUpdateExpirySelect from "@saleor/giftCards/GiftCardUpdate/GiftCardUpdateExpirySelect"; +import { Button } from "@saleor/macaw-ui"; import React from "react"; import { useIntl } from "react-intl"; @@ -40,7 +35,6 @@ const GiftCardUpdateDetailsCard: React.FC = () => { !giftCard?.isExpired && ( )} diff --git a/src/giftCards/GiftCardsList/GiftCardsListHeader/GiftCardsListHeader.tsx b/src/giftCards/GiftCardsList/GiftCardsListHeader/GiftCardsListHeader.tsx index 57ecae180bf..03c9975d882 100644 --- a/src/giftCards/GiftCardsList/GiftCardsListHeader/GiftCardsListHeader.tsx +++ b/src/giftCards/GiftCardsList/GiftCardsListHeader/GiftCardsListHeader.tsx @@ -1,10 +1,10 @@ -import { Button } from "@material-ui/core"; import HorizontalSpacer from "@saleor/apps/components/HorizontalSpacer"; import VerticalSpacer from "@saleor/apps/components/VerticalSpacer"; import CardMenu, { CardMenuItem } from "@saleor/components/CardMenu"; import PageHeader from "@saleor/components/PageHeader"; import useNavigator from "@saleor/hooks/useNavigator"; import { sectionNames } from "@saleor/intl"; +import { Button } from "@saleor/macaw-ui"; import React from "react"; import { useIntl } from "react-intl"; @@ -49,8 +49,7 @@ const GiftCardsListHeader: React.FC = () => { + )} + {canRefund && ( + + )} + {canVoid && ( + + )} + {canMarkAsPaid && ( + + )} +
+ )} + ) } /> @@ -309,50 +355,6 @@ const OrderPayment: React.FC = props => { - {maybe(() => order.status) !== OrderStatus.CANCELED && - (canCapture || canRefund || canVoid || canMarkAsPaid) && ( - <> -
- - {canCapture && ( - - )} - {canRefund && ( - - )} - {canVoid && ( - - )} - {canMarkAsPaid && ( - - )} - - - )} ); }; diff --git a/src/orders/components/OrderPriceLabel/OrderPriceLabel.tsx b/src/orders/components/OrderPriceLabel/OrderPriceLabel.tsx index 34528548204..1177b6f9794 100644 --- a/src/orders/components/OrderPriceLabel/OrderPriceLabel.tsx +++ b/src/orders/components/OrderPriceLabel/OrderPriceLabel.tsx @@ -1,3 +1,4 @@ +import { Typography } from "@material-ui/core"; import DiscountedPrice from "@saleor/components/DiscountedPrice/DiscountedPrice"; import Money from "@saleor/components/Money"; import { SearchOrderVariant_search_edges_node_variants_pricing } from "@saleor/orders/types/SearchOrderVariant"; @@ -24,7 +25,11 @@ const OrderPriceLabel: React.FC = ({ pricing }) => { ); } - return ; + return ( + + + + ); }; export default OrderPriceLabel; diff --git a/src/orders/components/OrderProductsCardElements/OrderProductsTableRow.tsx b/src/orders/components/OrderProductsCardElements/OrderProductsTableRow.tsx index 942a753bea5..f3faf42bad7 100644 --- a/src/orders/components/OrderProductsCardElements/OrderProductsTableRow.tsx +++ b/src/orders/components/OrderProductsCardElements/OrderProductsTableRow.tsx @@ -96,20 +96,19 @@ const TableLine: React.FC = ({ {quantityToDisplay || } - + {maybe(() => line.orderLine.unitPrice.gross) ? ( - + ) : ( )} - + diff --git a/src/orders/components/OrderUnfulfilledProductsCard/OrderUnfulfilledProductsCard.tsx b/src/orders/components/OrderUnfulfilledProductsCard/OrderUnfulfilledProductsCard.tsx index b3aedf64f1c..fb32f675500 100644 --- a/src/orders/components/OrderUnfulfilledProductsCard/OrderUnfulfilledProductsCard.tsx +++ b/src/orders/components/OrderUnfulfilledProductsCard/OrderUnfulfilledProductsCard.tsx @@ -1,4 +1,4 @@ -import { Card, CardActions, TableBody } from "@material-ui/core"; +import { Card, CardActions, TableBody, Typography } from "@material-ui/core"; import CardSpacer from "@saleor/components/CardSpacer"; import ResponsiveTable from "@saleor/components/ResponsiveTable"; import { commonMessages } from "@saleor/intl"; diff --git a/src/productTypes/components/ProductTypeVariantAttributes/ProductTypeVariantAttributes.tsx b/src/productTypes/components/ProductTypeVariantAttributes/ProductTypeVariantAttributes.tsx index ef28220505d..8979184f9e3 100644 --- a/src/productTypes/components/ProductTypeVariantAttributes/ProductTypeVariantAttributes.tsx +++ b/src/productTypes/components/ProductTypeVariantAttributes/ProductTypeVariantAttributes.tsx @@ -1,12 +1,4 @@ -import { - Button, - Card, - IconButton, - TableCell, - TableRow, - Tooltip -} from "@material-ui/core"; -import DeleteIcon from "@material-ui/icons/Delete"; +import { Card, TableCell, TableRow, Tooltip } from "@material-ui/core"; import HelpOutline from "@material-ui/icons/HelpOutline"; import CardTitle from "@saleor/components/CardTitle"; import Checkbox from "@saleor/components/Checkbox"; @@ -17,7 +9,7 @@ import { SortableTableRow } from "@saleor/components/SortableTable"; import TableHead from "@saleor/components/TableHead"; -import { makeStyles } from "@saleor/macaw-ui"; +import { Button, DeleteIcon, IconButton, makeStyles } from "@saleor/macaw-ui"; import { maybe, renderCollection, stopPropagation } from "@saleor/misc"; import { ListActions, ReorderAction } from "@saleor/types"; import { ProductAttributeType } from "@saleor/types/globalTypes"; @@ -146,8 +138,7 @@ const ProductTypeVariantAttributes: React.FC toolbar={ - )} - {loading && } - - )} - - - 0 || - selectedInventoryFields.length > 0) && ( -
- {selectedInventoryFields.slice(0, maxChips).map(field => ( - - onChange({ - target: { - name: field, - value: false - } - }) - } - /> - ))} - {data.exportInfo.warehouses - .slice(0, maxChips - selectedInventoryFields.length) - .map(warehouseId => ( + 0 || + selectedInventoryFields.length > 0) && ( +
+ {selectedInventoryFields.slice(0, maxChips).map(field => ( = ({ {warehouse.label} ))} -
-
- - - -
- -
-
- - - - {warehouses.map(warehouse => ( - - ))} -
- -
+
+ + + ); }; diff --git a/src/products/components/ProductListPage/ProductListPage.tsx b/src/products/components/ProductListPage/ProductListPage.tsx index b7c35b2a7fd..b61161ee577 100644 --- a/src/products/components/ProductListPage/ProductListPage.tsx +++ b/src/products/components/ProductListPage/ProductListPage.tsx @@ -194,7 +194,6 @@ export const ProductListPage: React.FC = props => { data-test="add-product" disabled={limitReached} onClick={onAdd} - data-test="add-product" > = ({ )} @@ -10069,23 +10055,12 @@ exports[`Storyshots Generics / Money formatting default 1`] = `
-
-
- EUR -
-
-
- 14.00 -
-
+ EUR + + 12,345.68
@@ -18614,12 +18589,6 @@ exports[`Storyshots Shipping / Order value rates default 1`] = ` -
-
@@ -18649,9 +18618,28 @@ exports[`Storyshots Shipping / Order value rates default 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -18850,12 +18838,6 @@ exports[`Storyshots Shipping / Order value rates loading 1`] = `
-
-
@@ -18887,9 +18869,28 @@ exports[`Storyshots Shipping / Order value rates loading 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -19082,6 +19083,19 @@ exports[`Storyshots Shipping / Order weight rates default 1`] = ` >
+ + Order Weight + +
+
+
+
+ + +`; + +exports[`Storyshots Shipping / Order weight rates form errors 1`] = ` +
+
+
+
+ + Order Weight + +
+
@@ -19236,9 +19293,28 @@ exports[`Storyshots Shipping / Order weight rates default 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -19405,9 +19481,28 @@ exports[`Storyshots Shipping / Order weight rates loading 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -19564,9 +19659,28 @@ exports[`Storyshots Shipping / Order weight rates new 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -20443,12 +20557,6 @@ exports[`Storyshots Shipping / ShippingZoneRatesCreatePage page create price 1`]
-
-
@@ -20478,9 +20586,28 @@ exports[`Storyshots Shipping / ShippingZoneRatesCreatePage page create price 1`] focusable="false" viewBox="0 0 24 24" > - + + + + @@ -21365,9 +21492,28 @@ exports[`Storyshots Shipping / ShippingZoneRatesCreatePage page create weight 1` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -22242,12 +22388,6 @@ exports[`Storyshots Shipping / ShippingZoneRatesCreatePage page loading 1`] = `
-
-
@@ -22279,9 +22419,28 @@ exports[`Storyshots Shipping / ShippingZoneRatesCreatePage page loading 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -23203,21 +23362,12 @@ exports[`Storyshots Shipping zones card with options selected 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - +
@@ -23243,21 +23393,12 @@ exports[`Storyshots Shipping zones card with options selected 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - +
@@ -25545,23 +25686,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details default 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Events -
+ class="MuiCardHeader-content-id" + > + + Events + +
-
-
@@ -25739,23 +25875,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details default 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Webhook Status -
+ class="MuiCardHeader-content-id" + > + + Webhook Status + +
-
-
@@ -25787,9 +25918,28 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details default 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -25821,7 +25971,7 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details form errors 1`] = data-test-id="page-header" >
Webhook Test 2 Details
@@ -25841,23 +25991,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details form errors 1`] = class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Webhook Information -
+ class="MuiCardHeader-content-id" + > + + Webhook Information + +
-
-
@@ -26011,89 +26156,104 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details form errors 1`] = - Webhook Status + Events
+
+ Synchronous events +
+
- If you want to disable this webhook please uncheck the box below. + Assign permissions to register synchronous events for this webhook.
-
-
-
-
-
- - Events - + + + Registered events + + + +
+
-
-
+
+
+
+
- Synchronous events + Asynchronous events
- Assign permissions to register synchronous events for this webhook. + Assign permissions to register asynchronous events for this webhook.
-
- - -
-
-
-
-
-
-
- Asynchronous events -
-
-
- Assign permissions to register asynchronous events for this webhook. -
-
-
- - Webhook Status -
+ class="MuiCardHeader-content-id" + > + + Webhook Status + +
-
-
@@ -26312,9 +26380,28 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details form errors 1`] = focusable="false" viewBox="0 0 24 24" > - + + + + @@ -26346,7 +26433,7 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details loading 1`] = ` data-test-id="page-header" >
Create Webhook
@@ -26366,23 +26453,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details loading 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Webhook Information -
+ class="MuiCardHeader-content-id" + > + + Webhook Information + +
-
-
@@ -26526,23 +26608,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details loading 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Events -
+ class="MuiCardHeader-content-id" + > + + Events + +
-
-
@@ -26720,23 +26797,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details loading 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Webhook Status -
+ class="MuiCardHeader-content-id" + > + + Webhook Status + +
-
-
@@ -26769,8 +26841,17 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details loading 1`] = ` focusable="false" viewBox="0 0 24 24" > - @@ -26835,12 +26916,6 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details undefined 1`] = `
-
-
@@ -26981,23 +27056,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details undefined 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Events -
+ class="MuiCardHeader-content-id" + > + + Events + +
-
-
@@ -27175,23 +27245,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details undefined 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Webhook Status -
+ class="MuiCardHeader-content-id" + > + + Webhook Status + +
-
-
@@ -27222,8 +27287,17 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details undefined 1`] = ` focusable="false" viewBox="0 0 24 24" > - @@ -27256,7 +27330,7 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details unnamed 1`] = ` data-test-id="page-header" >
Unnamed Webhook Details
@@ -27276,23 +27350,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details unnamed 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Webhook Information -
+ class="MuiCardHeader-content-id" + > + + Webhook Information + +
-
-
@@ -27433,23 +27502,18 @@ exports[`Storyshots Views / Apps / Webhooks / Webhook details unnamed 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Events -
+ class="MuiCardHeader-content-id" + > + + Events + +
-
-
@@ -36446,20 +36510,6 @@ exports[`Storyshots Views / Authentication / Log in disabled 1`] = `
-
- Forgot password? - - Use this link to recover it - -
-

@@ -36594,102 +36644,9 @@ exports[`Storyshots Views / Authentication / Log in error external login 1`] = `
-
-
-
- Forgot password? - - Use this link to recover it - -
-
-
-
-
- or login using -
-
- - -
-
-
-`; - -exports[`Storyshots Views / Authentication / Log in error external login 1`] = ` -
-
-
-
-
-
- Sorry, login went wrong. Please try again. -
-
-
- -
-
- Forgot password? - - Use this link to recover it - -
-

@@ -36920,20 +36863,6 @@ exports[`Storyshots Views / Authentication / Log in error login 1`] = `
-
- Forgot password? - - Use this link to recover it - -
-

@@ -37093,7 +37022,7 @@ exports[`Storyshots Views / Authentication / Reset password default 1`] = ` class="FormSpacer-spacer-id" />
@@ -46358,21 +46278,12 @@ exports[`Storyshots Views / Channels / Channel details default 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - +
@@ -46834,21 +46745,12 @@ exports[`Storyshots Views / Channels / Channel details disabled 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - +
@@ -46874,21 +46776,12 @@ exports[`Storyshots Views / Channels / Channel details disabled 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - +
@@ -47346,21 +47239,12 @@ exports[`Storyshots Views / Channels / Channel details loading 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - +
@@ -47386,21 +47270,12 @@ exports[`Storyshots Views / Channels / Channel details loading 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - +
@@ -47858,21 +47733,12 @@ exports[`Storyshots Views / Channels / Channel details with data 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - +
@@ -47898,21 +47764,12 @@ exports[`Storyshots Views / Channels / Channel details with data 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - +
@@ -48376,37 +48233,30 @@ exports[`Storyshots Views / Channels / Channel details with errors 1`] = ` focusable="false" viewBox="0 0 24 24" > - - - + -
+

USA
-
-
+

@@ -48491,23 +48329,18 @@ exports[`Storyshots Views / Channels / Channel details without editable currency class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - General Information -
+ class="MuiCardHeader-content-id" + > + + General Information + +
-
-
@@ -48597,23 +48430,18 @@ exports[`Storyshots Views / Channels / Channel details without editable currency class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Channel Settings -
+ class="MuiCardHeader-content-id" + > + + Channel Settings + +
-
-
@@ -48697,23 +48525,18 @@ exports[`Storyshots Views / Channels / Channel details without editable currency class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Channel Status -
+ class="MuiCardHeader-content-id" + > + + Channel Status + +
-
-
@@ -48728,7 +48551,7 @@ exports[`Storyshots Views / Channels / Channel details without editable currency Active
@@ -48898,21 +48709,12 @@ exports[`Storyshots Views / Channels / Channel details without editable currency focusable="false" viewBox="0 0 24 24" > - - - +
@@ -66826,25 +66628,14 @@ exports[`Storyshots Views / Customers / Customer details default 1`] = `
-
-
- USD -
-
-
- 1215.89 -
-
+ USD + + 12,345.68 @@ -67030,7 +66821,7 @@ exports[`Storyshots Views / Customers / Customer details default 1`] = ` class="MuiCardHeader-action-id" > +
+
+
+
+
+
+ +
+
+
- USD -
-
-
- 18.51 + Fulfilled (1) +
+ #9-2 +
+
+ Fulfilled from Be stocked +
- +
+
+ +
+
+ +
+
+
+ + + + + + + + + + + + + + + +
+ Product + + SKU + + Quantity + + Price + + Total +
- USD +
-
- 55.53 + Williams, Garcia and Walker (XS)
+ 5-1337 + + 1 + + + USD + + 12,345.68 + + + USD + + 12,345.68 +
@@ -113862,244 +112966,22 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1) -
- #9-2 -
-
- Fulfilled from Be stocked -
-
-
-
- -
-
- -
-
-
- - - - - - - - - - - - - - - - - - - -
- Product - - SKU - - Quantity - - Price - - Total -
-
-
- -
-
- Williams, Garcia and Walker (XS) -
-
-
- 5-1337 - - 1 - -
-
- USD -
-
-
- 79.71 -
-
-
-
-
- USD -
-
-
- 79.71 -
-
-
-
-
- -
-
-
-
-
-
- -
-
-
-
- Fulfilled (1) -
- #9-1 -
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -114110,37 +112992,33 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="MuiCardHeader-action-id" >
@@ -114228,46 +113106,24 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -114336,20 +113192,71 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Unpaid +
+ Unpaid +
+
+ + + + +
@@ -114371,23 +113278,12 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -114400,23 +113296,12 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -114429,23 +113314,12 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -114497,23 +113360,12 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -114523,23 +113375,12 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -114549,23 +113390,12 @@ exports[`Storyshots Views / Orders / Order details default 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -115901,56 +114672,34 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -116009,37 +114762,33 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="MuiCardHeader-action-id" >
@@ -116127,46 +114876,24 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -116213,18 +114940,22 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -116235,37 +114966,33 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="MuiCardHeader-action-id" >
@@ -116353,46 +115080,24 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -116461,20 +115166,71 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Unpaid +
+ Unpaid +
+
+ + + + +
@@ -116496,23 +115252,12 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -116525,23 +115270,12 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -116554,23 +115288,12 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -116622,23 +115334,12 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -116648,23 +115349,12 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -116674,23 +115364,12 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -118661,56 +117281,34 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -118769,37 +117371,33 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="MuiCardHeader-action-id" >
@@ -118887,46 +117485,24 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -118973,18 +117549,22 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -118995,37 +117575,33 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="MuiCardHeader-action-id" >
@@ -119113,46 +117689,24 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -119221,20 +117775,71 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Unpaid +
+ Unpaid +
+
+ + + + +
@@ -119256,23 +117861,12 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -119285,23 +117879,12 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -119314,23 +117897,12 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -119382,23 +117943,12 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -119408,23 +117958,12 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -119434,23 +117973,12 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -120786,56 +119255,34 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -120894,37 +119345,33 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="MuiCardHeader-action-id" >
@@ -121012,46 +119459,24 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -121098,18 +119523,22 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -121120,37 +119549,33 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="MuiCardHeader-action-id" >
@@ -121238,46 +119663,24 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -121346,17 +119749,68 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
+
+
+
+
+ + + +
@@ -121379,23 +119833,12 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -121408,23 +119851,12 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -121437,23 +119869,12 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -121505,23 +119915,12 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -121531,23 +119930,12 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -121557,23 +119945,12 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -122909,56 +121227,34 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -123017,37 +121317,33 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="MuiCardHeader-action-id" >
@@ -123135,46 +121431,24 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -123221,18 +121495,22 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -123243,37 +121521,33 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="MuiCardHeader-action-id" >
@@ -123361,46 +121635,24 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -123469,20 +121721,71 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Unpaid +
+ Unpaid +
+
+ + + + +
@@ -123504,23 +121807,12 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -123533,23 +121825,12 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -123562,23 +121843,12 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -123630,23 +121889,12 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -123656,23 +121904,12 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -123682,23 +121919,12 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -125026,56 +123193,34 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -125134,37 +123283,33 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="MuiCardHeader-action-id" >
@@ -125252,46 +123397,24 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -125338,18 +123461,22 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -125360,37 +123487,33 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="MuiCardHeader-action-id" >
@@ -125478,46 +123601,24 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -125586,20 +123687,71 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Unpaid +
+ Unpaid +
+
+ + + + +
@@ -125621,23 +123773,12 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -125650,23 +123791,12 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -125679,23 +123809,12 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -125747,23 +123855,12 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -125773,23 +123870,12 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -125799,23 +123885,12 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -127151,56 +125167,34 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -127259,37 +125257,33 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="MuiCardHeader-action-id" >
@@ -127377,46 +125371,24 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -127463,18 +125435,22 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1) -
- #9-1 -
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -127485,37 +125461,33 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="MuiCardHeader-action-id" >
@@ -127603,46 +125575,24 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -127711,20 +125661,71 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Fully paid +
+ Fully paid +
+
+ + + + +
@@ -127746,23 +125747,12 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -127775,23 +125765,12 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -127804,23 +125783,12 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -127872,23 +125829,12 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -127898,23 +125844,12 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -127924,23 +125859,12 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -129276,56 +127141,34 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -129384,37 +127231,33 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="MuiCardHeader-action-id" >
@@ -129502,46 +127345,24 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -129588,18 +127409,22 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -129610,37 +127435,33 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="MuiCardHeader-action-id" >
@@ -129728,46 +127549,24 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -129836,20 +127635,71 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Unpaid +
+ Unpaid +
+
+ + + + +
@@ -129871,23 +127721,12 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -129900,23 +127739,12 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -129929,23 +127757,12 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -129997,23 +127803,12 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -130023,23 +127818,12 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -130049,23 +127833,12 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -131401,56 +129115,34 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -131509,37 +129205,33 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="MuiCardHeader-action-id" >
@@ -131627,46 +129319,24 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -131713,18 +129383,22 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -131735,37 +129409,33 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="MuiCardHeader-action-id" >
@@ -131853,46 +129523,24 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -131961,20 +129609,71 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Unpaid +
+ Unpaid +
+
+ + + + +
@@ -131996,23 +129695,12 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -132025,23 +129713,12 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -132054,23 +129731,12 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -132122,23 +129777,12 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -132148,23 +129792,12 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -132174,23 +129807,12 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -133526,56 +131089,34 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -133634,37 +131179,33 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="MuiCardHeader-action-id" >
@@ -133752,46 +131293,24 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -133838,18 +131357,22 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -133860,37 +131383,33 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="MuiCardHeader-action-id" >
@@ -133978,46 +131497,24 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -134086,20 +131583,71 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Fully refunded +
+ Fully refunded +
+
+ + + + +
@@ -134121,23 +131669,12 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -134150,23 +131687,12 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -134179,23 +131705,12 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -134247,23 +131751,12 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -134273,23 +131766,12 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -134299,23 +131781,12 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -135651,56 +133063,34 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -135759,37 +133153,33 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="MuiCardHeader-action-id" >
@@ -135877,46 +133267,24 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -135963,18 +133331,22 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -135985,37 +133357,33 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="MuiCardHeader-action-id" >
@@ -136103,46 +133471,24 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -136211,20 +133557,71 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Unpaid +
+ Unpaid +
+
+ + + + +
@@ -136246,23 +133643,12 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -136275,23 +133661,12 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -136304,23 +133679,12 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -136372,23 +133725,12 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -136398,23 +133740,12 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -136424,23 +133755,12 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
- Unfulfilled
+ class="CardTitle-title-id" + > + Unfulfilled +
+
@@ -137776,56 +135037,34 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` 3 -
-
- USD -
-
-
- 18.51 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 55.53 -
-
+ USD + + 12,345.68
@@ -137884,37 +135127,33 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="MuiCardHeader-action-id" >
@@ -138002,46 +135241,24 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -138088,18 +135305,22 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="StatusLabel-textContainer-id" >
- Fulfilled (1)
- #9-1 -
-
- Fulfilled from C our wares + Fulfilled (1) +
+ #9-1 +
+
+ Fulfilled from C our wares +
@@ -138110,37 +135331,33 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="MuiCardHeader-action-id" >
@@ -138228,46 +135445,24 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` 1 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 79.71 -
-
+ USD + + 12,345.68 @@ -138336,20 +135531,71 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` class="MuiTypography-root-id MuiCardHeader-title-id MuiTypography-h5-id MuiTypography-displayBlock-id" >
-
+
- Unpaid +
+ Unpaid +
+
+ + + + +
@@ -138371,23 +135617,12 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` -
-
- USD -
-
-
- 214.95 -
-
+ USD + + 12,345.68 @@ -138400,23 +135635,12 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -138429,23 +135653,12 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` -
-
- USD -
-
-
- 19.98 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -138497,23 +135699,12 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 @@ -138523,23 +135714,12 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -138549,23 +135729,12 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68
-
-
- - - - -
-
-
- USD -
-
-
- 168.30 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 336.60 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 168.30 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 336.60 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 168.30 -
-
+ USD + + 12,345.68 @@ -140189,23 +137240,12 @@ exports[`Storyshots Views / Orders / Order draft default 1`] = ` -
-
- USD -
-
-
- 68.30 -
-
+ USD + + 12,345.68 @@ -140215,23 +137255,12 @@ exports[`Storyshots Views / Orders / Order draft default 1`] = ` -
-
- USD -
-
-
- 168.30 -
-
+ USD + + 12,345.68 @@ -140998,45 +138027,23 @@ exports[`Storyshots Views / Orders / Order draft no user permissions 1`] = ` -
-
- USD -
-
-
- 168.30 -
-
+ USD + + 12,345.68
-
-
- USD -
-
-
- 336.60 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 168.30 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 336.60 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 168.30 -
-
+ USD + + 12,345.68 @@ -141272,23 +138246,12 @@ exports[`Storyshots Views / Orders / Order draft no user permissions 1`] = ` -
-
- USD -
-
-
- 68.30 -
-
+ USD + + 12,345.68 @@ -141298,23 +138261,12 @@ exports[`Storyshots Views / Orders / Order draft no user permissions 1`] = ` -
-
- USD -
-
-
- 168.30 -
-
+ USD + + 12,345.68 @@ -142331,25 +139283,14 @@ exports[`Storyshots Views / Orders / Order list default 1`] = `
-
-
- USD -
-
-
- 305.17 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 1215.89 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 321.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 271.95 -
-
- - - - - #16 - - - - - - Laura Jensen - - -
-
-
-
- Unpaid -
-
-
- - -
-
-
-
- Cancelled -
-
-
- - + + USD + + 12,345.68 + + + + + #16 + + + + + + Laura Jensen + +
+
- USD +
+ Unpaid +
+
+ + +
- 335.84 +
+ Cancelled +
+ + + USD + + 12,345.68 + -
-
- USD -
-
-
- 1042.15 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 213.69 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 367.03 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 298.76 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 663.69 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 280.41 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 485.19 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 223.54 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 237.55 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 453.55 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 812.67 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 481.41 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 569.19 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 557.00 -
-
+ USD + + 12,345.68 @@ -144508,25 +141240,14 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = `
-
-
- USD -
-
-
- 305.17 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 1215.89 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 321.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 271.95 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 335.84 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 1042.15 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 213.69 -
-
- - - - - #13 - - - - - - Anthony Gonzalez - - -
-
-
-
- Unpaid -
-
-
- - -
-
-
-
- Cancelled -
-
-
- - -
-
- USD -
-
-
- 367.03 -
-
- - - - - #12 - - - - - - Denise Freeman - - -
-
-
-
- Unpaid -
-
-
- - -
-
-
-
- Cancelled -
-
-
- - + + USD + + 12,345.68 + + + + + #13 + + + + + + Anthony Gonzalez + +
+
- USD +
+ Unpaid +
+
+ + +
- 298.76 +
+ Cancelled +
+ + + USD + + 12,345.68 + - #11 + #12
@@ -145285,32 +141842,97 @@ exports[`Storyshots Views / Orders / Order list limits reached 1`] = `
- Unfulfilled + Cancelled
+ + USD + + 12,345.68 + + + + + #11 + + + + + + James Ball + +
+
- USD +
+ Fully paid +
+
+ + +
- 663.69 +
+ Unfulfilled +
+ + + USD + + 12,345.68 + -
-
- USD -
-
-
- 280.41 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 485.19 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 223.54 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 237.55 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 453.55 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 812.67 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 481.41 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 569.19 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 557.00 -
-
+ USD + + 12,345.68 @@ -146606,7 +143118,7 @@ exports[`Storyshots Views / Orders / Order list loading 1`] = ` -
-
- USD -
-
-
- 305.17 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 1215.89 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 321.71 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 271.95 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 335.84 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 1042.15 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 213.69 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 367.03 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 298.76 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 663.69 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 280.41 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 234.93 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 485.19 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 223.54 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 237.55 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 453.55 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 812.67 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 481.41 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 569.19 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 557.00 -
-
+ USD + + 12,345.68 @@ -149231,8 +145523,17 @@ exports[`Storyshots Views / Orders / Order settings default 1`] = ` focusable="false" viewBox="0 0 24 24" > - @@ -149256,23 +145557,18 @@ exports[`Storyshots Views / Orders / Order settings default 1`] = ` data-test="OrderFulfillmentSettings" >
- - Fulfillment settings -
+ class="MuiCardHeader-content-id" + > + + Fulfillment settings + +
-
-
@@ -149300,9 +145596,28 @@ exports[`Storyshots Views / Orders / Order settings default 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -149344,9 +145659,28 @@ exports[`Storyshots Views / Orders / Order settings default 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -149510,8 +145844,17 @@ exports[`Storyshots Views / Orders / Order settings loading 1`] = ` focusable="false" viewBox="0 0 24 24" > - @@ -149535,23 +145878,18 @@ exports[`Storyshots Views / Orders / Order settings loading 1`] = ` data-test="OrderFulfillmentSettings" >
- - Fulfillment settings -
+ class="MuiCardHeader-content-id" + > + + Fulfillment settings + +
-
-
@@ -149580,8 +145918,17 @@ exports[`Storyshots Views / Orders / Order settings loading 1`] = ` focusable="false" viewBox="0 0 24 24" > - @@ -149625,8 +145972,17 @@ exports[`Storyshots Views / Orders / Order settings loading 1`] = ` focusable="false" viewBox="0 0 24 24" > - @@ -150161,23 +146517,12 @@ exports[`Storyshots Views / Orders / Refund order miscellaneous 1`] = ` > Authorized Amount
-
-
- USD -
-
-
- 744.38 -
-
+ USD + + 12,345.68
Previously refunded
-
-
- USD -
-
-
- -100.00 -
-
+ USD + + 12,345.68
Max Refund
-
-
- USD -
-
-
- 644.38 -
-
+ USD + + 12,345.68
@@ -150549,23 +146872,12 @@ exports[`Storyshots Views / Orders / Refund order products 1`] = ` -
-
- USD -
-
-
- 26.02 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 10.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -150853,23 +147132,12 @@ exports[`Storyshots Views / Orders / Refund order products 1`] = ` -
-
- USD -
-
-
- 26.02 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 10.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -151157,23 +147392,12 @@ exports[`Storyshots Views / Orders / Refund order products 1`] = ` -
-
- USD -
-
-
- 26.02 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 10.00 -
-
+ USD + + 12,345.68 -
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68 @@ -151476,23 +147667,12 @@ exports[`Storyshots Views / Orders / Refund order products 1`] = ` > Authorized Amount
-
-
- USD -
-
-
- 744.38 -
-
+ USD + + 12,345.68
Selected Products Value
-
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68
Previously refunded
-
-
- USD -
-
-
- -100.00 -
-
+ USD + + 12,345.68
Max Refund
-
-
- USD -
-
-
- 644.38 -
-
+ USD + + 12,345.68
Refund total amount
-
-
- USD -
-
-
- 0.00 -
-
+ USD + + 12,345.68
@@ -158542,17 +154678,17 @@ exports[`Storyshots Views / Pages / Page list default 1`] = ` About about
About about
About about
About about
-
-
-
-
-
-
- + + + - + + - + + + - + + - + + + - + + - + + + - + + - + + + - + + - + + + - + + - + + + - + + - - Checkout limits -
+ class="MuiCardHeader-content-id" + > + + Checkout limits + +
-
-
@@ -185060,13 +181075,8 @@ exports[`Storyshots Views / Products / Create product variant add first variant class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Shipping -
@@ -185239,8 +181249,17 @@ exports[`Storyshots Views / Products / Create product variant add first variant focusable="false" viewBox="0 0 24 24" > - @@ -186019,21 +182038,16 @@ exports[`Storyshots Views / Products / Create product variant default 1`] = `
- - Checkout limits -
+ class="MuiCardHeader-content-id" + > + + Checkout limits + +
-
-
@@ -186086,13 +182100,8 @@ exports[`Storyshots Views / Products / Create product variant default 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Shipping -
@@ -186265,8 +182274,17 @@ exports[`Storyshots Views / Products / Create product variant default 1`] = ` focusable="false" viewBox="0 0 24 24" > - @@ -187045,21 +183063,16 @@ exports[`Storyshots Views / Products / Create product variant no warehouses 1`]
- - Checkout limits -
+ class="MuiCardHeader-content-id" + > + + Checkout limits + +
-
-
@@ -187112,13 +183125,8 @@ exports[`Storyshots Views / Products / Create product variant no warehouses 1`] class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Shipping -
@@ -187291,8 +183299,17 @@ exports[`Storyshots Views / Products / Create product variant no warehouses 1`] focusable="false" viewBox="0 0 24 24" > - @@ -187830,21 +183847,16 @@ exports[`Storyshots Views / Products / Create product variant when loading data
- - Checkout limits -
+ class="MuiCardHeader-content-id" + > + + Checkout limits + +
-
-
@@ -187898,13 +183910,8 @@ exports[`Storyshots Views / Products / Create product variant when loading data class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Shipping -
@@ -188081,8 +184088,17 @@ exports[`Storyshots Views / Products / Create product variant when loading data focusable="false" viewBox="0 0 24 24" > - @@ -188868,21 +184884,16 @@ exports[`Storyshots Views / Products / Create product variant with errors 1`] =
- - Checkout limits -
+ class="MuiCardHeader-content-id" + > + + Checkout limits + +
-
-
@@ -188935,13 +184946,8 @@ exports[`Storyshots Views / Products / Create product variant with errors 1`] = class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Shipping -
@@ -189119,8 +185125,17 @@ exports[`Storyshots Views / Products / Create product variant with errors 1`] = focusable="false" viewBox="0 0 24 24" > - @@ -196911,7 +192926,7 @@ exports[`Storyshots Views / Products / Product edit no stock and no variants 1`] Set up an end date of preorder. When end date will be reached product will be automatically taken from preorder to standard selling
-
-
@@ -224389,13 +220408,8 @@ exports[`Storyshots Views / Products / Product variant details attribute errors class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Shipping -
@@ -224589,7 +220603,7 @@ exports[`Storyshots Views / Products / Product variant details attribute errors Set up an end date of preorder. When end date will be reached product will be automatically taken from preorder to standard selling
-
-
@@ -226248,13 +222257,8 @@ exports[`Storyshots Views / Products / Product variant details no warehouses 1`] class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Shipping -
@@ -226443,7 +222447,7 @@ exports[`Storyshots Views / Products / Product variant details no warehouses 1`] Set up an end date of preorder. When end date will be reached product will be automatically taken from preorder to standard selling
-
-
@@ -228102,13 +224101,8 @@ exports[`Storyshots Views / Products / Product variant details when loaded data class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Shipping -
@@ -228297,7 +224291,7 @@ exports[`Storyshots Views / Products / Product variant details when loaded data Set up an end date of preorder. When end date will be reached product will be automatically taken from preorder to standard selling
-
-
@@ -229243,13 +225232,8 @@ exports[`Storyshots Views / Products / Product variant details when loading data class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Shipping -
@@ -229397,8 +225381,17 @@ exports[`Storyshots Views / Products / Product variant details when loading data focusable="false" viewBox="0 0 24 24" > - @@ -230570,12 +226563,6 @@ exports[`Storyshots Views / Shipping / Shipping rate create price rate 1`] = `
-
-
@@ -230605,9 +226592,28 @@ exports[`Storyshots Views / Shipping / Shipping rate create price rate 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -231855,9 +227861,28 @@ exports[`Storyshots Views / Shipping / Shipping rate create weight rate 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -233018,12 +229043,6 @@ exports[`Storyshots Views / Shipping / Shipping rate loading 1`] = `
-
-
@@ -233983,12 +230002,6 @@ exports[`Storyshots Views / Shipping / Shipping rate update price rate 1`] = `
-
-
@@ -235208,9 +231221,28 @@ exports[`Storyshots Views / Shipping / Shipping rate update weight rate 1`] = ` focusable="false" viewBox="0 0 24 24" > - + + + + @@ -241514,23 +237546,18 @@ exports[`Storyshots Views / Site settings / Page default 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Reserved stock -
+ class="MuiCardHeader-content-id" + > + + Reserved stock + +
-
-
@@ -241625,23 +237652,18 @@ exports[`Storyshots Views / Site settings / Page default 1`] = `
- - Checkout limits -
+ class="MuiCardHeader-content-id" + > + + Checkout limits + +
-
-
@@ -242272,23 +238294,18 @@ exports[`Storyshots Views / Site settings / Page form errors 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Reserved stock -
+ class="MuiCardHeader-content-id" + > + + Reserved stock + +
-
-
@@ -242383,23 +238400,18 @@ exports[`Storyshots Views / Site settings / Page form errors 1`] = `
- - Checkout limits -
+ class="MuiCardHeader-content-id" + > + + Checkout limits + +
-
-
@@ -243028,23 +239040,18 @@ exports[`Storyshots Views / Site settings / Page loading 1`] = ` class="MuiPaper-root-id MuiCard-root-id MuiPaper-elevation0-id MuiPaper-rounded-id" >
- - Reserved stock -
+ class="MuiCardHeader-content-id" + > + + Reserved stock + +
-
-
@@ -243141,23 +239148,18 @@ exports[`Storyshots Views / Site settings / Page loading 1`] = `
- - Checkout limits -
+ class="MuiCardHeader-content-id" + > + + Checkout limits + +
-
-
@@ -250959,18 +246961,13 @@ exports[`Storyshots Views / Warehouses / Warehouse details default 1`] = `
- - Settings -
- Shipping Zones + Settings
@@ -251057,30 +247054,25 @@ exports[`Storyshots Views / Warehouses / Warehouse details default 1`] = ` type="radio" value="true" /> - + + + - + + - + + + - + + - - Settings -
- Shipping Zones + Settings
@@ -251880,30 +247844,25 @@ exports[`Storyshots Views / Warehouses / Warehouse details form errors 1`] = ` type="radio" value="true" /> - + + + - + + - + + + - + + - - Settings -
- Shipping Zones + Settings
@@ -252635,30 +248566,21 @@ exports[`Storyshots Views / Warehouses / Warehouse details loading 1`] = ` type="radio" value="true" /> - + + - + + + - + + + - + + - + +