diff --git a/CHANGELOG.md b/CHANGELOG.md index 053f66dd9..d8b7dacaf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ All notable, unreleased changes to this project will be documented in this file. - Update customer's details page design - #248 by @dominik-zeglen - Use Apollo Hooks - #254 by @dominik-zeglen - Fix disappearing products description - #259 by @dominik-zeglen +- Improve mobile appearance - #240 by @benekex2 and @dominik-zeglen ## 2.0.0 diff --git a/src/attributes/components/AttributeList/AttributeList.tsx b/src/attributes/components/AttributeList/AttributeList.tsx index 9b34c1272..caa17b28e 100644 --- a/src/attributes/components/AttributeList/AttributeList.tsx +++ b/src/attributes/components/AttributeList/AttributeList.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -8,6 +7,7 @@ import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import Checkbox from "@saleor/components/Checkbox"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -75,7 +75,7 @@ const AttributeList: React.FC = ({ const intl = useIntl(); return ( - + = ({ ) )} -
+ ); }; AttributeList.displayName = "AttributeList"; diff --git a/src/attributes/components/AttributeValues/AttributeValues.tsx b/src/attributes/components/AttributeValues/AttributeValues.tsx index f336e748f..c0e340d02 100644 --- a/src/attributes/components/AttributeValues/AttributeValues.tsx +++ b/src/attributes/components/AttributeValues/AttributeValues.tsx @@ -2,7 +2,6 @@ import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import IconButton from "@material-ui/core/IconButton"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableCell from "@material-ui/core/TableCell"; import TableHead from "@material-ui/core/TableHead"; import TableRow from "@material-ui/core/TableRow"; @@ -11,6 +10,7 @@ import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import { SortableTableBody, @@ -80,7 +80,7 @@ const AttributeValues: React.FC = ({ } /> - + @@ -138,7 +138,7 @@ const AttributeValues: React.FC = ({ ) )} -
+ ); }; diff --git a/src/categories/components/CategoryList/CategoryList.tsx b/src/categories/components/CategoryList/CategoryList.tsx index 8426d628b..216d092e6 100644 --- a/src/categories/components/CategoryList/CategoryList.tsx +++ b/src/categories/components/CategoryList/CategoryList.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -9,6 +8,7 @@ import { FormattedMessage } from "react-intl"; import { CategoryFragment } from "@saleor/categories/types/CategoryFragment"; import Checkbox from "@saleor/components/Checkbox"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -73,7 +73,7 @@ const CategoryList: React.FC = props => { const classes = useStyles(props); return ( - + = props => { ) )} -
+ ); }; diff --git a/src/categories/components/CategoryProductList/CategoryProductList.tsx b/src/categories/components/CategoryProductList/CategoryProductList.tsx index 82499e54f..50fe397a4 100644 --- a/src/categories/components/CategoryProductList/CategoryProductList.tsx +++ b/src/categories/components/CategoryProductList/CategoryProductList.tsx @@ -1,11 +1,11 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; import TableRow from "@material-ui/core/TableRow"; import Checkbox from "@saleor/components/Checkbox"; import Money from "@saleor/components/Money"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import StatusLabel from "@saleor/components/StatusLabel"; import { FormattedMessage, useIntl } from "react-intl"; @@ -98,7 +98,7 @@ export const CategoryProductList: React.FC< return (
- + @@ -229,7 +229,7 @@ export const CategoryProductList: React.FC< ) )} -
+
); }; diff --git a/src/collections/components/CollectionList/CollectionList.tsx b/src/collections/components/CollectionList/CollectionList.tsx index e54764f5d..46953f107 100644 --- a/src/collections/components/CollectionList/CollectionList.tsx +++ b/src/collections/components/CollectionList/CollectionList.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -8,6 +7,7 @@ import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import Checkbox from "@saleor/components/Checkbox"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import StatusLabel from "@saleor/components/StatusLabel"; import TableHead from "@saleor/components/TableHead"; @@ -68,7 +68,7 @@ const CollectionList: React.FC = props => { const intl = useIntl(); return ( - + = props => { ) )} -
+ ); }; diff --git a/src/collections/components/CollectionProducts/CollectionProducts.tsx b/src/collections/components/CollectionProducts/CollectionProducts.tsx index 871ba72b6..6d007651b 100644 --- a/src/collections/components/CollectionProducts/CollectionProducts.tsx +++ b/src/collections/components/CollectionProducts/CollectionProducts.tsx @@ -2,7 +2,6 @@ import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import IconButton from "@material-ui/core/IconButton"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -13,6 +12,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; import Checkbox from "@saleor/components/Checkbox"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import StatusLabel from "@saleor/components/StatusLabel"; import TableCellAvatar, { @@ -114,7 +114,7 @@ const CollectionProducts: React.FC = props => { } /> - + = props => { ) )} -
+ ); }; diff --git a/src/components/AppHeader/AppHeader.tsx b/src/components/AppHeader/AppHeader.tsx index 07f2e815e..f7e941fba 100644 --- a/src/components/AppHeader/AppHeader.tsx +++ b/src/components/AppHeader/AppHeader.tsx @@ -30,7 +30,10 @@ const useStyles = makeStyles(theme => ({ cursor: "pointer", display: "flex", marginTop: theme.spacing(0.5), - transition: theme.transitions.duration.standard + "ms" + transition: theme.transitions.duration.standard + "ms", + [theme.breakpoints.down("sm")]: { + display: "none" + } }, skeleton: { marginBottom: theme.spacing(2), @@ -40,9 +43,13 @@ const useStyles = makeStyles(theme => ({ color: "inherit", flex: 1, marginLeft: theme.spacing(), - textTransform: "uppercase" + textTransform: "uppercase", + [theme.breakpoints.down("sm")]: { + display: "none" + } } })); + const AppHeader: React.FC = props => { const { children, onBack } = props; diff --git a/src/components/AppLayout/AppLayout.tsx b/src/components/AppLayout/AppLayout.tsx index 0362dc578..32517e68e 100644 --- a/src/components/AppLayout/AppLayout.tsx +++ b/src/components/AppLayout/AppLayout.tsx @@ -64,6 +64,12 @@ const useStyles = makeStyles( marginLeft: theme.spacing(2), transition: theme.transitions.duration.standard + "ms" }, + avatar: { + "&&": { + height: 32, + width: 32 + } + }, content: { [theme.breakpoints.down("sm")]: { paddingLeft: 0 @@ -79,9 +85,16 @@ const useStyles = makeStyles( paddingLeft: drawerWidth }, darkThemeSwitch: { + [theme.breakpoints.down("sm")]: { + marginRight: -theme.spacing(1.5) + }, marginRight: theme.spacing(2) }, header: { + [theme.breakpoints.down("sm")]: { + height: 88, + marginBottom: 0 + }, display: "flex", height: 40, marginBottom: theme.spacing(3) @@ -179,6 +192,9 @@ const useStyles = makeStyles( [theme.breakpoints.up("md")]: { display: "none" }, + [theme.breakpoints.down("sm")]: { + left: 0 + }, background: theme.palette.background.paper, borderRadius: "50%", cursor: "pointer", @@ -239,12 +255,20 @@ const useStyles = makeStyles( flex: 1 }, userBar: { + [theme.breakpoints.down("sm")]: { + alignItems: "flex-end", + flexDirection: "column-reverse", + overflow: "hidden" + }, alignItems: "center", display: "flex" }, userChip: { backgroundColor: theme.palette.background.paper, - color: theme.palette.text.primary + borderRadius: 24, + color: theme.palette.text.primary, + height: 40, + padding: theme.spacing(0.5) }, userMenuContainer: { position: "relative" @@ -415,6 +439,9 @@ const AppLayout: React.FC = ({ children }) => { ) } + classes={{ + avatar: classes.avatar + }} className={classes.userChip} label={ <> @@ -433,7 +460,6 @@ const AppLayout: React.FC = ({ children }) => { open={isMenuOpened} anchorEl={anchor.current} transition - disablePortal placement="bottom-end" > {({ TransitionProps, placement }) => ( diff --git a/src/components/AppLayout/MenuList.tsx b/src/components/AppLayout/MenuList.tsx index 410ac2301..4e29d600b 100644 --- a/src/components/AppLayout/MenuList.tsx +++ b/src/components/AppLayout/MenuList.tsx @@ -101,7 +101,7 @@ const useStyles = makeStyles(theme => ({ content: "''", height: 0, position: "absolute", - right: -35, + right: -30, top: 15, width: 0 }, diff --git a/src/components/AppLayout/MenuNested.tsx b/src/components/AppLayout/MenuNested.tsx index 4b486f21d..978882807 100644 --- a/src/components/AppLayout/MenuNested.tsx +++ b/src/components/AppLayout/MenuNested.tsx @@ -8,7 +8,7 @@ import SVG from "react-inlinesvg"; import menuArrowIcon from "@assets/images/menu-arrow-icon.svg"; import useTheme from "@saleor/hooks/useTheme"; import { createHref } from "@saleor/misc"; -import { drawerWidthExpanded } from "./consts"; +import { drawerNestedMenuWidth, drawerWidthExpandedMobile } from "./consts"; import { IActiveSubMenu } from "./MenuList"; import { IMenuItem } from "./menuStructure"; @@ -20,15 +20,15 @@ const useStyles = makeStyles(theme => ({ right: 0, top: 0, transition: `right ${theme.transitions.duration.shorter}ms ease`, - width: 300, + width: drawerNestedMenuWidth, zIndex: -1 }, menuListNestedClose: { "& svg": { fill: theme.palette.primary.main, - left: 7, + left: 11, position: "relative", - top: -2 + top: 1 }, border: `solid 1px #EAEAEA`, borderRadius: "100%", @@ -71,10 +71,11 @@ const useStyles = makeStyles(theme => ({ menuListNestedOpen: { [theme.breakpoints.down("sm")]: { right: 0, - width: drawerWidthExpanded, + width: drawerWidthExpandedMobile, zIndex: 2 }, - right: -300, + right: -drawerNestedMenuWidth, + width: drawerNestedMenuWidth, zIndex: -1 }, subHeader: { diff --git a/src/components/AppLayout/ResponsiveDrawer.tsx b/src/components/AppLayout/ResponsiveDrawer.tsx index 6925a5076..86f1dbb83 100644 --- a/src/components/AppLayout/ResponsiveDrawer.tsx +++ b/src/components/AppLayout/ResponsiveDrawer.tsx @@ -2,7 +2,11 @@ import Drawer from "@material-ui/core/Drawer"; import Hidden from "@material-ui/core/Hidden"; import { makeStyles } from "@material-ui/core/styles"; import React from "react"; -import { drawerWidth, drawerWidthExpanded } from "./consts"; +import { + drawerWidth, + drawerWidthExpanded, + drawerWidthExpandedMobile +} from "./consts"; const useStyles = makeStyles( theme => ({ @@ -22,7 +26,7 @@ const useStyles = makeStyles( width: drawerWidth }, drawerMobile: { - width: drawerWidthExpanded + width: drawerWidthExpandedMobile } }), { name: "ResponsiveDrawer" } diff --git a/src/components/AppLayout/consts.ts b/src/components/AppLayout/consts.ts index 342ad7b55..b5184b016 100644 --- a/src/components/AppLayout/consts.ts +++ b/src/components/AppLayout/consts.ts @@ -1,4 +1,6 @@ export const drawerWidthExpanded = 210; +export const drawerWidthExpandedMobile = 250; export const drawerWidth = 80; +export const drawerNestedMenuWidth = 300; export const navigationBarHeight = 64; export const appLoaderHeight = 4; diff --git a/src/components/AssignCategoryDialog/AssignCategoryDialog.tsx b/src/components/AssignCategoryDialog/AssignCategoryDialog.tsx index d58a01ba8..cecd2b136 100644 --- a/src/components/AssignCategoryDialog/AssignCategoryDialog.tsx +++ b/src/components/AssignCategoryDialog/AssignCategoryDialog.tsx @@ -5,7 +5,6 @@ import DialogActions from "@material-ui/core/DialogActions"; import DialogContent from "@material-ui/core/DialogContent"; import DialogTitle from "@material-ui/core/DialogTitle"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableRow from "@material-ui/core/TableRow"; @@ -17,6 +16,7 @@ import ConfirmButton, { ConfirmButtonTransitionState } from "@saleor/components/ConfirmButton"; import FormSpacer from "@saleor/components/FormSpacer"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import useSearchQuery from "@saleor/hooks/useSearchQuery"; import { buttonMessages } from "@saleor/intl"; import { SearchCategories_search_edges_node } from "../../containers/SearchCategories/types/SearchCategories"; @@ -123,7 +123,7 @@ const AssignCategoriesDialog: React.FC = props => { }} /> - + {categories && categories.map(category => { @@ -156,7 +156,7 @@ const AssignCategoriesDialog: React.FC = props => { ); })} -
+ } /> - + @@ -143,7 +143,7 @@ const CustomerOrders: React.FC = props => { ) )} -
+ ); }; diff --git a/src/discounts/components/DiscountCategories/DiscountCategories.tsx b/src/discounts/components/DiscountCategories/DiscountCategories.tsx index c7e60843a..fb1263b77 100644 --- a/src/discounts/components/DiscountCategories/DiscountCategories.tsx +++ b/src/discounts/components/DiscountCategories/DiscountCategories.tsx @@ -2,7 +2,6 @@ import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import IconButton from "@material-ui/core/IconButton"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -13,6 +12,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; import Checkbox from "@saleor/components/Checkbox"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -84,7 +84,7 @@ const DiscountCategories: React.FC = props => { } /> - + = props => { ) )} -
+ ); }; diff --git a/src/discounts/components/DiscountCollections/DiscountCollections.tsx b/src/discounts/components/DiscountCollections/DiscountCollections.tsx index b903b2cee..0d196c4b2 100644 --- a/src/discounts/components/DiscountCollections/DiscountCollections.tsx +++ b/src/discounts/components/DiscountCollections/DiscountCollections.tsx @@ -2,7 +2,6 @@ import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import IconButton from "@material-ui/core/IconButton"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -13,6 +12,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; import Checkbox from "@saleor/components/Checkbox"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -84,7 +84,7 @@ const DiscountCollections: React.FC = props => { } /> - + = props => { ) )} -
+ ); }; diff --git a/src/discounts/components/DiscountCountrySelectDialog/DiscountCountrySelectDialog.tsx b/src/discounts/components/DiscountCountrySelectDialog/DiscountCountrySelectDialog.tsx index 5a865c866..160345883 100644 --- a/src/discounts/components/DiscountCountrySelectDialog/DiscountCountrySelectDialog.tsx +++ b/src/discounts/components/DiscountCountrySelectDialog/DiscountCountrySelectDialog.tsx @@ -4,7 +4,6 @@ import DialogActions from "@material-ui/core/DialogActions"; import DialogContent from "@material-ui/core/DialogContent"; import DialogTitle from "@material-ui/core/DialogTitle"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableRow from "@material-ui/core/TableRow"; @@ -21,6 +20,7 @@ import ConfirmButton, { import Form from "@saleor/components/Form"; import FormSpacer from "@saleor/components/FormSpacer"; import Hr from "@saleor/components/Hr"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; // tslint:disable no-submodule-imports import { ShopInfo_shop_countries } from "@saleor/components/Shop/types/ShopInfo"; import { buttonMessages } from "@saleor/intl"; @@ -122,7 +122,7 @@ const DiscountCountrySelectDialog: React.FC< description="country selection" /> - + {filter(countries, data.query, { key: "country" @@ -164,7 +164,7 @@ const DiscountCountrySelectDialog: React.FC< ); })} -
+ } /> - + = props => { ) )} -
+ ); }; diff --git a/src/discounts/components/SaleList/SaleList.tsx b/src/discounts/components/SaleList/SaleList.tsx index 5cdcedae1..c3a31884e 100644 --- a/src/discounts/components/SaleList/SaleList.tsx +++ b/src/discounts/components/SaleList/SaleList.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -11,6 +10,7 @@ import Checkbox from "@saleor/components/Checkbox"; import Date from "@saleor/components/Date"; import Money from "@saleor/components/Money"; import Percent from "@saleor/components/Percent"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -77,7 +77,7 @@ const SaleList: React.FC = props => { const classes = useStyles(props); return ( - + = props => { ) )} -
+ ); }; SaleList.displayName = "SaleList"; diff --git a/src/discounts/components/VoucherList/VoucherList.tsx b/src/discounts/components/VoucherList/VoucherList.tsx index 9ed3c1974..45afba2d3 100644 --- a/src/discounts/components/VoucherList/VoucherList.tsx +++ b/src/discounts/components/VoucherList/VoucherList.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -11,6 +10,7 @@ import Checkbox from "@saleor/components/Checkbox"; import Date from "@saleor/components/Date"; import Money from "@saleor/components/Money"; import Percent from "@saleor/components/Percent"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -92,7 +92,7 @@ const VoucherList: React.FC = props => { const classes = useStyles(props); return ( - + = props => { ) )} -
+ ); }; VoucherList.displayName = "VoucherList"; diff --git a/src/home/components/HomeNotificationTable/HomeNotificationTable.tsx b/src/home/components/HomeNotificationTable/HomeNotificationTable.tsx index f7c311d69..a7318cb5b 100644 --- a/src/home/components/HomeNotificationTable/HomeNotificationTable.tsx +++ b/src/home/components/HomeNotificationTable/HomeNotificationTable.tsx @@ -1,6 +1,5 @@ import Card from "@material-ui/core/Card"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableRow from "@material-ui/core/TableRow"; @@ -10,6 +9,7 @@ import React from "react"; import { FormattedMessage } from "react-intl"; import RequirePermissions from "@saleor/components/RequirePermissions"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import { UserPermissionProps } from "@saleor/types"; import { PermissionEnum } from "@saleor/types/globalTypes"; @@ -47,7 +47,7 @@ const HomeNotificationTable: React.FC = props => { return ( - + = props => { -
+
); }; diff --git a/src/home/components/HomeProductListCard/HomeProductListCard.tsx b/src/home/components/HomeProductListCard/HomeProductListCard.tsx index 215ad30d4..2854c922d 100644 --- a/src/home/components/HomeProductListCard/HomeProductListCard.tsx +++ b/src/home/components/HomeProductListCard/HomeProductListCard.tsx @@ -1,6 +1,5 @@ import Card from "@material-ui/core/Card"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableRow from "@material-ui/core/TableRow"; @@ -11,6 +10,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; import Money from "@saleor/components/Money"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableCellAvatar from "@saleor/components/TableCellAvatar"; import { maybe, renderCollection } from "../../../misc"; @@ -58,7 +58,7 @@ export const HomeProductList: React.FC = props => { id: "homeProductsListCardHeader" })} /> - + {renderCollection( topProducts, @@ -139,7 +139,7 @@ export const HomeProductList: React.FC = props => { ) )} -
+ ); }; diff --git a/src/navigation/components/MenuList/MenuList.tsx b/src/navigation/components/MenuList/MenuList.tsx index 191b0a19f..e5bb1343c 100644 --- a/src/navigation/components/MenuList/MenuList.tsx +++ b/src/navigation/components/MenuList/MenuList.tsx @@ -1,6 +1,5 @@ import Card from "@material-ui/core/Card"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -11,6 +10,7 @@ import { FormattedMessage } from "react-intl"; import Checkbox from "@saleor/components/Checkbox"; import IconButtonTableCell from "@saleor/components/IconButtonTableCell"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -65,7 +65,7 @@ const MenuList: React.FC = props => { return ( - + = props => { ) )} -
+
); }; diff --git a/src/orders/components/OrderDetailsPage/OrderDetailsPage.tsx b/src/orders/components/OrderDetailsPage/OrderDetailsPage.tsx index e26c1b47a..886d46d9c 100644 --- a/src/orders/components/OrderDetailsPage/OrderDetailsPage.tsx +++ b/src/orders/components/OrderDetailsPage/OrderDetailsPage.tsx @@ -23,15 +23,21 @@ import OrderHistory, { FormData as HistoryFormData } from "../OrderHistory"; import OrderPayment from "../OrderPayment/OrderPayment"; import OrderUnfulfilledItems from "../OrderUnfulfilledItems/OrderUnfulfilledItems"; -const useStyles = makeStyles(theme => ({ - date: { - marginBottom: theme.spacing(3), - marginTop: -theme.spacing(2) - }, - header: { - marginBottom: 0 +const useStyles = makeStyles( + theme => ({ + date: { + marginBottom: theme.spacing(3), + marginTop: -theme.spacing(2) + }, + header: { + display: "flex", + marginBottom: 0 + } + }), + { + name: "OrderDetailsPage" } -})); +); export interface OrderDetailsPageProps extends UserPermissionProps { order: OrderDetails_order; @@ -95,6 +101,7 @@ const OrderDetailsPage: React.FC = props => { order.number) ? "#" + order.number : undefined} > {canCancel && ( diff --git a/src/orders/components/OrderDraftDetailsProducts/OrderDraftDetailsProducts.tsx b/src/orders/components/OrderDraftDetailsProducts/OrderDraftDetailsProducts.tsx index 6b4d2d18d..cde3c7bf9 100644 --- a/src/orders/components/OrderDraftDetailsProducts/OrderDraftDetailsProducts.tsx +++ b/src/orders/components/OrderDraftDetailsProducts/OrderDraftDetailsProducts.tsx @@ -1,6 +1,5 @@ import IconButton from "@material-ui/core/IconButton"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableHead from "@material-ui/core/TableHead"; @@ -14,6 +13,7 @@ import { FormattedMessage } from "react-intl"; import { DebounceForm } from "@saleor/components/DebounceForm"; import Form from "@saleor/components/Form"; import Money from "@saleor/components/Money"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableCellAvatar, { AVATAR_MARGIN @@ -76,7 +76,7 @@ const OrderDraftDetailsProducts: React.FC< const classes = useStyles(props); return ( - + {maybe(() => !!lines.length) && ( @@ -187,7 +187,7 @@ const OrderDraftDetailsProducts: React.FC< )) )} -
+ ); }; OrderDraftDetailsProducts.displayName = "OrderDraftDetailsProducts"; diff --git a/src/orders/components/OrderDraftList/OrderDraftList.tsx b/src/orders/components/OrderDraftList/OrderDraftList.tsx index 41cbe6751..6e7cb3add 100644 --- a/src/orders/components/OrderDraftList/OrderDraftList.tsx +++ b/src/orders/components/OrderDraftList/OrderDraftList.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -10,6 +9,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import Checkbox from "@saleor/components/Checkbox"; import { DateTime } from "@saleor/components/Date"; import Money from "@saleor/components/Money"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -83,7 +83,7 @@ export const OrderDraftList: React.FC = props => { : undefined; return ( - + = props => { ) )} -
+ ); }; OrderDraftList.displayName = "OrderDraftList"; diff --git a/src/orders/components/OrderDraftPage/OrderDraftPage.tsx b/src/orders/components/OrderDraftPage/OrderDraftPage.tsx index 77cf46f3a..dbe3ea00c 100644 --- a/src/orders/components/OrderDraftPage/OrderDraftPage.tsx +++ b/src/orders/components/OrderDraftPage/OrderDraftPage.tsx @@ -25,10 +25,10 @@ import OrderHistory, { FormData as HistoryFormData } from "../OrderHistory"; const useStyles = makeStyles(theme => ({ date: { - marginBottom: theme.spacing(3), - marginLeft: theme.spacing(7) + marginBottom: theme.spacing(3) }, header: { + display: "flex", marginBottom: 0 } })); @@ -99,6 +99,7 @@ const OrderDraftPage: React.FC = props => { order.number) ? "#" + order.number : undefined} > = props => { ) } /> - + @@ -226,7 +226,7 @@ const OrderFulfillment: React.FC = props => { )} -
+ {status === FulfillmentStatus.FULFILLED && !fulfillment.trackingNumber && ( } /> - + = props => { ) )} -
+ ); }; diff --git a/src/productTypes/components/ProductTypeList/ProductTypeList.tsx b/src/productTypes/components/ProductTypeList/ProductTypeList.tsx index eb45189aa..17eb98f4d 100644 --- a/src/productTypes/components/ProductTypeList/ProductTypeList.tsx +++ b/src/productTypes/components/ProductTypeList/ProductTypeList.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -9,6 +8,7 @@ import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import Checkbox from "@saleor/components/Checkbox"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -61,7 +61,7 @@ const ProductTypeList: React.FC = props => { const intl = useIntl(); return ( - + = props => { ) )} -
+ ); }; ProductTypeList.displayName = "ProductTypeList"; diff --git a/src/products/components/ProductList/ProductList.tsx b/src/products/components/ProductList/ProductList.tsx index 2040e6235..14210ce09 100644 --- a/src/products/components/ProductList/ProductList.tsx +++ b/src/products/components/ProductList/ProductList.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -10,6 +9,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import Checkbox from "@saleor/components/Checkbox"; import Money from "@saleor/components/Money"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import StatusLabel from "@saleor/components/StatusLabel"; import TableCellAvatar, { @@ -131,7 +131,7 @@ export const ProductList: React.FC = props => { return (
- + @@ -392,7 +392,7 @@ export const ProductList: React.FC = props => { ) )} -
+
); }; diff --git a/src/products/components/ProductVariantNavigation/ProductVariantNavigation.tsx b/src/products/components/ProductVariantNavigation/ProductVariantNavigation.tsx index 8e3dc7661..4e1e7ae6a 100644 --- a/src/products/components/ProductVariantNavigation/ProductVariantNavigation.tsx +++ b/src/products/components/ProductVariantNavigation/ProductVariantNavigation.tsx @@ -1,7 +1,6 @@ import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableRow from "@material-ui/core/TableRow"; @@ -10,6 +9,7 @@ import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableCellAvatar from "@saleor/components/TableCellAvatar"; import { maybe, renderCollection } from "../../../misc"; @@ -64,7 +64,7 @@ const ProductVariantNavigation: React.FC< description: "section header" })} /> - + {renderCollection(variants, variant => ( )} -
+ ); }; diff --git a/src/products/components/ProductVariants/ProductVariants.tsx b/src/products/components/ProductVariants/ProductVariants.tsx index 3e81ee4f2..6e46489a9 100644 --- a/src/products/components/ProductVariants/ProductVariants.tsx +++ b/src/products/components/ProductVariants/ProductVariants.tsx @@ -3,7 +3,6 @@ import Card from "@material-ui/core/Card"; import CardContent from "@material-ui/core/CardContent"; import Hidden from "@material-ui/core/Hidden"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableRow from "@material-ui/core/TableRow"; @@ -14,6 +13,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; import Checkbox from "@saleor/components/Checkbox"; import Money from "@saleor/components/Money"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import StatusLabel from "@saleor/components/StatusLabel"; import TableHead from "@saleor/components/TableHead"; @@ -133,7 +133,7 @@ export const ProductVariants: React.FC = props => { )} {hasVariants && ( - + = props => { ); })} -
+ )} ); diff --git a/src/services/components/ServiceList/ServiceList.tsx b/src/services/components/ServiceList/ServiceList.tsx index 576b87f22..0a68c2216 100644 --- a/src/services/components/ServiceList/ServiceList.tsx +++ b/src/services/components/ServiceList/ServiceList.tsx @@ -1,6 +1,5 @@ import IconButton from "@material-ui/core/IconButton"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -12,6 +11,7 @@ import EditIcon from "@material-ui/icons/Edit"; import React from "react"; import { FormattedMessage } from "react-intl"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TablePagination from "@saleor/components/TablePagination"; import { maybe, renderCollection, stopPropagation } from "@saleor/misc"; @@ -68,7 +68,7 @@ const ServiceList: React.FC = props => { const classes = useStyles(props); return ( - + @@ -154,7 +154,7 @@ const ServiceList: React.FC = props => { ) )} -
+ ); }; ServiceList.displayName = "ServiceList"; diff --git a/src/services/components/ServiceTokens/ServiceTokens.tsx b/src/services/components/ServiceTokens/ServiceTokens.tsx index fee1fb703..7568847ea 100644 --- a/src/services/components/ServiceTokens/ServiceTokens.tsx +++ b/src/services/components/ServiceTokens/ServiceTokens.tsx @@ -2,7 +2,6 @@ import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import IconButton from "@material-ui/core/IconButton"; import makeStyles from "@material-ui/core/styles/makeStyles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableHead from "@material-ui/core/TableHead"; @@ -12,6 +11,7 @@ import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import { maybe, renderCollection } from "@saleor/misc"; import { ServiceDetailsFragment_tokens } from "@saleor/services/types/ServiceDetailsFragment"; @@ -64,7 +64,7 @@ const ServiceTokens: React.FC = props => { } /> - + @@ -117,7 +117,7 @@ const ServiceTokens: React.FC = props => { ) )} -
+ ); }; diff --git a/src/shipping/components/ShippingZoneCountriesAssignDialog/ShippingZoneCountriesAssignDialog.tsx b/src/shipping/components/ShippingZoneCountriesAssignDialog/ShippingZoneCountriesAssignDialog.tsx index 0503a31f0..9895bf892 100644 --- a/src/shipping/components/ShippingZoneCountriesAssignDialog/ShippingZoneCountriesAssignDialog.tsx +++ b/src/shipping/components/ShippingZoneCountriesAssignDialog/ShippingZoneCountriesAssignDialog.tsx @@ -4,7 +4,6 @@ import DialogActions from "@material-ui/core/DialogActions"; import DialogContent from "@material-ui/core/DialogContent"; import DialogTitle from "@material-ui/core/DialogTitle"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableRow from "@material-ui/core/TableRow"; @@ -21,6 +20,7 @@ import ConfirmButton, { import Form from "@saleor/components/Form"; import FormSpacer from "@saleor/components/FormSpacer"; import Hr from "@saleor/components/Hr"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import { ShopInfo_shop_countries } from "@saleor/components/Shop/types/ShopInfo"; import { buttonMessages } from "@saleor/intl"; @@ -122,7 +122,7 @@ const ShippingZoneCountriesAssignDialog: React.FC< - + @@ -149,7 +149,7 @@ const ShippingZoneCountriesAssignDialog: React.FC< -
+ @@ -159,7 +159,7 @@ const ShippingZoneCountriesAssignDialog: React.FC< description="country selection" /> - + {filter(countries, data.query, { key: "country" @@ -201,7 +201,7 @@ const ShippingZoneCountriesAssignDialog: React.FC< ); })} -
+
} /> - + @@ -172,7 +172,7 @@ const ShippingZoneRates: React.FC = props => { ) )} -
+ ); }; diff --git a/src/shipping/components/ShippingZonesList/ShippingZonesList.tsx b/src/shipping/components/ShippingZonesList/ShippingZonesList.tsx index aa7f12cd2..15c0ac7c2 100644 --- a/src/shipping/components/ShippingZonesList/ShippingZonesList.tsx +++ b/src/shipping/components/ShippingZonesList/ShippingZonesList.tsx @@ -2,7 +2,6 @@ import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import IconButton from "@material-ui/core/IconButton"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -13,6 +12,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; import Checkbox from "@saleor/components/Checkbox"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TableHead from "@saleor/components/TableHead"; import TablePagination from "@saleor/components/TablePagination"; @@ -88,7 +88,7 @@ const ShippingZonesList: React.FC = props => { } /> - + = props => { ) )} -
+ ); }; diff --git a/src/siteSettings/components/SiteSettingsKeys/SiteSettingsKeys.tsx b/src/siteSettings/components/SiteSettingsKeys/SiteSettingsKeys.tsx index 995cf39d3..fa3cb16a4 100644 --- a/src/siteSettings/components/SiteSettingsKeys/SiteSettingsKeys.tsx +++ b/src/siteSettings/components/SiteSettingsKeys/SiteSettingsKeys.tsx @@ -2,7 +2,6 @@ import Button from "@material-ui/core/Button"; import Card from "@material-ui/core/Card"; import IconButton from "@material-ui/core/IconButton"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableHead from "@material-ui/core/TableHead"; @@ -12,6 +11,7 @@ import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import CardTitle from "@saleor/components/CardTitle"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import { authorizationKeyTypes, maybe, renderCollection } from "../../../misc"; import { ICONBUTTON_SIZE } from "../../../theme"; @@ -58,7 +58,7 @@ const SiteSettingsKeys: React.FC = props => { } /> - + @@ -109,7 +109,7 @@ const SiteSettingsKeys: React.FC = props => { ) )} -
+ ); }; diff --git a/src/staff/components/StaffList/StaffList.tsx b/src/staff/components/StaffList/StaffList.tsx index 1c65cd16f..ede1d6b7d 100644 --- a/src/staff/components/StaffList/StaffList.tsx +++ b/src/staff/components/StaffList/StaffList.tsx @@ -1,5 +1,4 @@ import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -10,6 +9,7 @@ import classNames from "classnames"; import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TablePagination from "@saleor/components/TablePagination"; import { @@ -78,7 +78,7 @@ const StaffList: React.FC = props => { const intl = useIntl(); return ( - + @@ -167,7 +167,7 @@ const StaffList: React.FC = props => { ) )} -
+ ); }; StaffList.displayName = "StaffList"; diff --git a/src/storybook/__snapshots__/Stories.test.ts.snap b/src/storybook/__snapshots__/Stories.test.ts.snap index 2ee2c975f..21cc3a558 100644 --- a/src/storybook/__snapshots__/Stories.test.ts.snap +++ b/src/storybook/__snapshots__/Stories.test.ts.snap @@ -1245,61 +1245,65 @@ exports[`Storyshots Generics / EditableTableCell default 1`] = `
- - - - - - - - - - - - + + + + + - Some value - - - -
- Some header - - Some header - - Some header -
- Some value - -
+
- Some editable text - - - + + Some header + + Some header +
+ + Some value + + +
+ Some editable text +
+ + + Some value + + + + +
@@ -3069,7 +3073,7 @@ exports[`Storyshots Generics / PageHeader with title 1`] = ` style="padding:24px" >
- - - - - - - - - + + + - - - - -
-
- Name +
+ Name +
+
- -
-
-
+
- Type +
+ Type +
- -
- Apple Juice - - Juice -
+ + Apple Juice + + + Juice + + + + +
`; @@ -5672,83 +5680,87 @@ exports[`Storyshots Generics / Table header descending 1`] = ` class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id" style="margin:auto;width:400px" > - - - - - - - - - + + + - - - - -
-
- Name +
+ Name +
+
- -
-
-
+
- Type +
+ Type +
- -
- Apple Juice - - Juice -
+ + Apple Juice + + + Juice + + + + +
`; @@ -5761,83 +5773,87 @@ exports[`Storyshots Generics / Table header interactive 1`] = ` class="MuiPaper-root-id MuiPaper-elevation0-id MuiCard-root-id MuiPaper-rounded-id" style="margin:auto;width:400px" > - - - - - - - - - + + + - - - - -
-
- Name +
+ Name +
+
- -
-
-
+
- Type +
+ Type +
- -
- Apple Juice - - Juice -
+ + Apple Juice + + + Juice + + + + +
`; @@ -5853,82 +5869,86 @@ exports[`Storyshots Generics / TablePagination both previous and next pages are
- - - - + + - - -
-
+
-
- - + + + + +
- -
+ + + + +
@@ -5945,83 +5965,87 @@ exports[`Storyshots Generics / TablePagination next page available 1`] = `
- - - - + + - - -
-
+
-
- - + + + + +
- -
+ + + + +
@@ -6038,84 +6062,88 @@ exports[`Storyshots Generics / TablePagination no previous / next page 1`] = `
- - - - + + - - -
-
+
-
- - + + + + +
- -
+ + + + +
@@ -6132,83 +6160,87 @@ exports[`Storyshots Generics / TablePagination previous page available 1`] = `
- - - - + + - - -
-
+
-
- - + + + + +
- -
+ + + + +
@@ -7790,10 +7822,10 @@ exports[`Storyshots Views / Attributes / Attribute details create 1`] = ` >
- - - - - - - - - + + + + + - - - - - - - + - - - - - -
- - Admin - - Default Store View - -
- - - john-doe - - John Doe - - -
+ + + + + + + + + + + milionare-pirate + + + Milionare Pirate + + + + + + + +
@@ -8424,10 +8460,10 @@ exports[`Storyshots Views / Attributes / Attribute details default 1`] = ` >
- - - - - - - - - + + + + + - - - - - - - + - - - - - -
- - Admin - - Default Store View - -
- - - john-doe - - John Doe - - -
+ + + + + + + + + + + milionare-pirate + + + Milionare Pirate + + + + + + + +
@@ -9057,10 +9097,10 @@ exports[`Storyshots Views / Attributes / Attribute details form errors 1`] = ` >
- - - - - - - - - + + + + + - - - - - - - + - - - - - -
- - Admin - - Default Store View - -
- - - john-doe - - John Doe - - -
+ + + + + + + + + + + milionare-pirate + + + Milionare Pirate + + + + + + + +
@@ -9700,10 +9744,10 @@ exports[`Storyshots Views / Attributes / Attribute details loading 1`] = ` >
- - - - - - - - - + + + + + - - - - + - - -
- - Admin - - Default Store View - -
+ Admin + + Default Store View + +
- - - - ‌ - - - - ‌ - - - - + ‌ - -
+ + + + ‌ + + + + + + + + +
@@ -10284,10 +10332,10 @@ exports[`Storyshots Views / Attributes / Attribute details multiple select input >
- - - - - - - - - + + + + + - - - - - - - + - - - - - -
- - Admin - - Default Store View - -
- - - john-doe - - John Doe - - -
+ + + + + + + + + + + milionare-pirate + + + Milionare Pirate + + + + + + + +
@@ -10917,10 +10969,10 @@ exports[`Storyshots Views / Attributes / Attribute details no values 1`] = ` >
- - - - - - - - - + + + + + - - - - + - - -
- - Admin - - Default Store View - -
+ Admin + + Default Store View + +
- - - - ‌ - - - - ‌ - - - - + ‌ - -
+ + + + ‌ + + + + + + + + +
@@ -11481,10 +11537,10 @@ exports[`Storyshots Views / Attributes / Attribute list default 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - - + + + + + + + + + - - - - + + + - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - collar - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - size - - + + + + + + + - Size - - + + + + + + + - Yes - - + + + + + + + - Yes - - + + + + + + + - Yes - - - -
- - - Attribute Code - - Default Label - - Visible - - Searchable - - Use in faceted search -
- - - author - - Author - - Yes - - Yes - - No -
+ + + + + color + + + Color + + + Yes + + + No + + + No + + + + + + + + cover + + + Cover + + + No + + + Yes + + + No + + + + + + + + flavor + + + Flavor + + + Yes + + + Yes + + + Yes + + + + + + + + language + + + Language + + + Yes + + + No + + + Yes + + + + + + + + publisher + + + Publisher + + + Yes + + + Yes + + + Yes + + + + + + + + size + + + Size + + + Yes + + + Yes + + + Yes + + + + +
@@ -12397,10 +12457,10 @@ exports[`Storyshots Views / Attributes / Attribute list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - - - - - - + + + + + + + + + + - + + + + + - + - + - + - + - + - - -
- - - Attribute Code - - Default Label - - Visible - - Searchable - - Use in faceted search -
- + + + +
+ + ‌ + + + + + +
@@ -12729,10 +12793,10 @@ exports[`Storyshots Views / Attributes / Attribute list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - - - + Attribute Code + + + + + + + + - - - - - + + + - - - -
- Attribute Code - - Default Label - - Visible - - Searchable - - Use in faceted search -
- No attributes found -
+ + No attributes found + + + + +
@@ -13909,10 +13977,10 @@ exports[`Storyshots Views / Categories / Category list default 1`] = ` style="padding:24px" >
- - - - - - - - - - - + + + + + + + + + - + + + + - - - - - + - - - - - - - - - - - - - + - Excepteur sint occaecat cupidatat non proident - - - - - - - - - - - - + - - - - - - - + + - Neque porro quisquam est - - + + + + + - 11 - - + + + + + - 21 - - - -
- - - Category Name - - Subcategories - - No. of Products -
+ - - - -
- + - - - - Lorem ipsum dolor - - 2 - - 4 -
- - - - - Mauris vehicula tortor vulputate - - 54 - - 3 -
- - - - +
- 2 - - 6 -
- - - Ut enim ad minim veniam - - 6 - - 12 -
- + - - - - Duis aute irure dolor in reprehenderit - - 76 - - 43 -
- - - - + + 3 +
+ + + Excepteur sint occaecat cupidatat non proident + + 2 + + 6 +
+ + + Ut enim ad minim veniam + + 6 + + 12 +
+ + + + + Duis aute irure dolor in reprehenderit + + + 76 + + + 43 + + + + + + + + Neque porro quisquam est + + + 11 + + + 21 + + + + +
@@ -14411,10 +14483,10 @@ exports[`Storyshots Views / Categories / Category list empty 1`] = ` style="padding:24px" >
- - - - - - - - - - + Category Name + + + + + + - - - - - + + + - - - -
- Category Name - - Subcategories - - No. of Products -
- No categories found -
+ + No categories found + + + + +
@@ -14685,10 +14761,10 @@ exports[`Storyshots Views / Categories / Category list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - + + + + + + + + + - - - - - + + + - - + - + - + - - -
- - - Category Name - - Subcategories - - No. of Products -
- - - + + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -15014,10 +15094,10 @@ exports[`Storyshots Views / Categories / Create category When loading 1`] = ` >
- - - - - - - - - - + Category Name + + + + + + - - - - - + + + - - - -
- Category Name - - Subcategories - - No. of Products -
- No subcategories found -
+ + No subcategories found + + + + +
@@ -16896,10 +16980,10 @@ exports[`Storyshots Views / Categories / Update category loading 1`] = ` >
- - - - - - - - - - - - - - - - + + + + + + + + - + + + + + - + - + - + - - -
- - - Category Name - - Subcategories - - No. of Products -
+ Category Name + + Subcategories + + No. of Products +
- + + + +
+ - - + + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -17646,10 +17734,10 @@ exports[`Storyshots Views / Categories / Update category no background 1`] = ` >
- - - - - - - - - - + Category Name + + + + + + - - - - - + + + - - - -
- Category Name - - Subcategories - - No. of Products -
- No subcategories found -
+ + No subcategories found + + + + +
@@ -18571,10 +18663,10 @@ exports[`Storyshots Views / Categories / Update category no products 1`] = ` >
- - - - - - - - - - + + + + + + + - - - - - - - - - - - - - + + + + + + + - - - -
- - Name - - - Type - - Published - - Price -
+ Type + + Published + + Price +
- No products found -
+ +
+
+
+ + +
+
+ + + + + + + No products found + + + + +
@@ -19571,10 +19667,10 @@ exports[`Storyshots Views / Categories / Update category no subcategories 1`] = >
- - - - - - - - - - + Category Name + + + + + + - - - - - + + + - - - -
- Category Name - - Subcategories - - No. of Products -
- No subcategories found -
+ + No subcategories found + + + + +
@@ -20542,10 +20642,10 @@ exports[`Storyshots Views / Categories / Update category products 1`] = ` >
- - - - - - - - - - + + + + + + + - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + - - - - - -
- - - - Name - - - Type - - Published - - Price -
+ Coffee + + +
+ Published +
+ + + $48.66 + + + + +
@@ -22138,10 +22242,10 @@ exports[`Storyshots Views / Collections / Collection details default 1`] = ` >
- - - - - - - - - - - - + + + + + + + - - - - + + + - - + - - - - - - + - + + + + + - - - - - - + - + + + + + - - - - - - + - + + + + + - - - - - -
- - - - Name - - - Type - - Published - -
- - -
-
- -
+ +
- Murray Inc -
- -
- Mugs - -
- Published -
-
- -
- - - - -
+
- +
+ +
+ +
- Williams-Taylor -
- -
- Coffee - -
- Published -
-
- -
- - - - -
+
- +
+ +
+ +
- Hebert-Sherman -
- -
- Coffee - -
- Published -
-
- -
- - - - -
+
- +
+ +
+ +
- Estes, Johnson and Graham -
- -
- Books - -
- Published -
-
- -
+
+
+ Estes, Johnson and Graham +
+
+ + + Books + + +
+ Published +
+ + + + + + + +
- - - - - - - - - - - - - - - - - - - - - - -
- - - - Name - - - Type - - Published - -
- - -
-
- -
-
- - ‌ - -
-
-
- - ‌ - - - - ‌ - - - + + - + Name - - -
+ + + Type + + + Published + + + + + + + +
+
+
+ + +
+
+ + + + + + + + + +
+
+ +
+
+ + ‌ + +
+
+ + + + ‌ + + + + + ‌ + + + + + + + + +
- - - - - - - - - - - - - - - + + + + + + - - - -
- - Name - - - Type - - Published - -
+ Type + + Published + +
- - No products found -
+ +
+
+
+ + +
+
+ + + + + + + + No products found + + + + +
- - - - - - - - - - - + + + + + + + + + - + + + + + + + - - - - - + - - - - - + - - - - - - - - - + + - - - - - + - - - - - - - - - + + - - - - - + - - - - - - - - -
- - - Category Name - - No. of Products - - Availability -
+ - + + + + Summer collection + + 4 + +
+ Published
- -
+
- Summer collection - - 4 - -
+ + +
- Published - -
- - - - - Winter sale - - 4 - -
+
- Published - -
+ Published + +
- Vintage vibes - - 4 - -
+ + +
- Published - -
- - - - - Merry Christmas - - 4 - -
+
- Published - -
+ Published + +
- 80s Miami - - 4 - -
+ + +
- Published - -
- - - - - Yellow Submarine 2019 - - 4 - -
+
- Published - -
+
+ Published +
+ + + + + + + + 80s Miami + + + 4 + + +
+ Published +
+ + + + + + + + Yellow Submarine 2019 + + + 4 + + +
+ Published +
+ + + + +
@@ -26311,10 +26431,10 @@ exports[`Storyshots Views / Collections / Collection list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - + + + + + + + + + - - - - - + + + - - + - + - + - - -
- - - Category Name - - No. of Products - - Availability -
- - - + + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -26646,10 +26770,10 @@ exports[`Storyshots Views / Collections / Collection list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - + Category Name + + + + + + - - - - - + + + - - - -
- Category Name - - No. of Products - - Availability -
- No collections found -
+ + No collections found + + + + +
@@ -26921,10 +27049,10 @@ exports[`Storyshots Views / Collections / Create collection default 1`] = ` >
- - - - - - - - - - - + No. of Order + + + + + + + - - - - - - -
- No. of Order - - Date - - Status - - Total -
- #8234 - - - -
+
- Fully paid - - - $1,215.89 -
+ + + +
+ Fully paid +
+ + + $1,215.89 + + + + +
@@ -32284,10 +32416,10 @@ exports[`Storyshots Views / Customers / Customer details different addresses 1`] >
- - - - - - - - - - - + No. of Order + + + + + + + - - - - - - -
- No. of Order - - Date - - Status - - Total -
- #8234 - - - -
+
- Fully paid - - - $1,215.89 -
+ + + +
+ Fully paid +
+ + + $1,215.89 + + + + +
@@ -32849,10 +32985,10 @@ exports[`Storyshots Views / Customers / Customer details form errors 1`] = ` >
- - - - - - - - - - - + No. of Order + + + + + + + - - - - - - -
- No. of Order - - Date - - Status - - Total -
- #8234 - - - -
+
- Fully paid - - - $1,215.89 -
+ + + +
+ Fully paid +
+ + + $1,215.89 + + + + +
@@ -33392,10 +33532,10 @@ exports[`Storyshots Views / Customers / Customer details loading 1`] = ` >
- - - - - - - - - - - + No. of Order + + + + + + + - - + - + - + - - -
- No. of Order - - Date - - Status - - Total -
+ Date + + Status + + Total +
- - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -33911,10 +34055,10 @@ exports[`Storyshots Views / Customers / Customer details never logged 1`] = ` >
- - - - - - - - - - - + No. of Order + + + + + + + - - - - - - -
- No. of Order - - Date - - Status - - Total -
- #8234 - - - -
+
- Fully paid - - - $1,215.89 -
+ + + +
+ Fully paid +
+ + + $1,215.89 + + + + +
@@ -34433,10 +34581,10 @@ exports[`Storyshots Views / Customers / Customer details never placed order 1`] >
- - - - - - - - - - - + No. of Order + + + + + + + - - - - - - -
- No. of Order - - Date - - Status - - Total -
- #8234 - - - -
+
- Fully paid - - - $1,215.89 -
+ + + +
+ Fully paid +
+ + + $1,215.89 + + + + +
@@ -34955,10 +35107,10 @@ exports[`Storyshots Views / Customers / Customer details no address at all 1`] = >
- - - - - - - - - - - + No. of Order + + + + + + + - - - - - - -
- No. of Order - - Date - - Status - - Total -
- #8234 - - - -
+
- Fully paid - - - $1,215.89 -
+ + + +
+ Fully paid +
+ + + $1,215.89 + + + + +
@@ -35458,10 +35614,10 @@ exports[`Storyshots Views / Customers / Customer details no default billing addr >
- - - - - - - - - - - + No. of Order + + + + + + + - - - - - - -
- No. of Order - - Date - - Status - - Total -
- #8234 - - - -
+
- Fully paid - - - $1,215.89 -
+ + + +
+ Fully paid +
+ + + $1,215.89 + + + + +
@@ -35986,10 +36146,10 @@ exports[`Storyshots Views / Customers / Customer details no default shipping add >
- - - - - - - - - - - + No. of Order + + + + + + + - - - - - - -
- No. of Order - - Date - - Status - - Total -
- #8234 - - - -
+
- Fully paid - - - $1,215.89 -
+ + + +
+ Fully paid +
+ + + $1,215.89 + + + + +
@@ -36513,10 +36677,10 @@ exports[`Storyshots Views / Customers / Customer list default 1`] = ` style="padding:24px" >
- - - - - - - - - - - + + + + + + + + + - + + + + - - - - - + - - - - - - - - - - - - - + - Elizabeth Vaughn - - - - - - - - - - - - + - - - - - - - - - - - - - + - James Bqall - - - - - - - - - - - - + - - - - - - - - - - - - - + - Laura Stone - - - - - - - - - - - - + - - - - - - - - - - - - - + - Hanson Sharon - - - - - - - - - - - - + - - - - - - - - - - - - - + - David Lawson - - - - - - - - - - - - + - - - - - - - - - - - - - + - Jason Gray - - - - - - - + + + + + - Tom Cooper - - + + + + + - admin@example.com - - + + + + + - 6 - - - -
- - - Customer Name - - Customer Email - - No. of Orders -
+ - - - -
- + - - - - curtis Bailey - - Curtis.bailey@example.com - - 2 -
- - - - - Curtis Bailey - - curtis.bailey@example.com - - 2 -
- - - - +
- elizabeth.vaughn@example.com - - 1 -
- - - Michael Martinez - - michael.martinez@example.com - - 1 -
- + - - - - Kayla Griffin - - kayla.griffin@example.com - - 0 -
- - - - - Donna Robinson - - donna.robinson@example.com - - 0 -
- - - - +
- james.ball@example.com - - 1 -
- - - Anthony Gonzalez - - anthony.gonzalez@example.com - - 2 -
- + - - - - Anthony Gonzalez - - anthony.gonzalez@example.com - - 2 -
- - - - - Wesley Davis - - wesley.davis@example.com - - 1 -
- - - - +
- laura.stone@example.com - - 1 -
- - - William Miller - - william.miller@example.com - - 0 -
- + - - - - Donald Solomon - - donald.solomon@example.com - - 0 -
- - - - - Anthony Young - - anthony.young@example.com - - 0 -
- - - - +
- sharon.hanson@example.com - - 0 -
- - - Laura Jensen - - laura.jensen@example.com - - 1 -
- + - - - - Mark Lee - - mark.lee@example.com - - 1 -
- - - - - David Lawson - - david.lawson@example.com - - 2 -
- - - - +
- david.lawson@example.com - - 2 -
- - - Faith Smith - - faith.smith@example.com - - 0 -
- + - - - - John Jones - - john.jones@example.com - - 0 -
- - - - - Ronald Fisher - - ronald.fisher@example.com - - 0 -
- - - - +
- jason.gray@example.com - - 0 -
- - + + + + James Bqall + + james.ball@example.com + + 1 +
+ + + Anthony Gonzalez + + anthony.gonzalez@example.com + + 2 +
+ + + Anthony Gonzalez + + anthony.gonzalez@example.com + + 2 +
+ + + + + Wesley Davis + + + wesley.davis@example.com + + + 1 + + + + + + + + Laura Stone + + + laura.stone@example.com + + + 1 + + + + + + + + William Miller + + + william.miller@example.com + + + 0 + + + + + + + + Donald Solomon + + + donald.solomon@example.com + + + 0 + + + + + + + + Anthony Young + + + anthony.young@example.com + + + 0 + + + + + + + + Hanson Sharon + + + sharon.hanson@example.com + + + 0 + + + + + + + + Laura Jensen + + + laura.jensen@example.com + + + 1 + + + + + + + + Mark Lee + + + mark.lee@example.com + + + 1 + + + + + + + + David Lawson + + + david.lawson@example.com + + + 2 + + + + + + + + David Lawson + + + david.lawson@example.com + + + 2 + + + + + + + + Faith Smith + + + faith.smith@example.com + + + 0 + + + + + + + + John Jones + + + john.jones@example.com + + + 0 + + + + + + + + Ronald Fisher + + + ronald.fisher@example.com + + + 0 + + + + + + + + Jason Gray + + + jason.gray@example.com + + + 0 + + + + + + + + Tom Cooper + + + admin@example.com + + + 6 + + + + +
@@ -37609,10 +37777,10 @@ exports[`Storyshots Views / Customers / Customer list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - + + + + + + + + + - - - - - + + + - - + - + - - -
- - - Customer Name - - Customer Email - - No. of Orders -
- - - - + + + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -37935,10 +38107,10 @@ exports[`Storyshots Views / Customers / Customer list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - + Customer Name + + + + + + - - - - - + + + - - - -
- Customer Name - - Customer Email - - No. of Orders -
- No customers found -
+ + No customers found + + + + +
@@ -38210,10 +38386,10 @@ exports[`Storyshots Views / Discounts / Sale create default 1`] = ` >
- - - - - - - - - - - + + + + + + - - - - + + + - - - - + + + - - -
- - - Collection name - - Products - -
- - - Winter Collection - - 110 - - + + Winter Collection + + 110 + + -
+ + + + + + + +
- - - - - - - - - - - + + + + + + - - - - + + + - - - - + + + - - -
- - - Category name - - Products - -
- - - Apparel - - 18 - - + + Apparel + + 18 + + -
+ + + + + + + +
- - - - - - - - - - - + + + + + + - - - - + + + - - - - + + + - - -
- - - Category name - - Products - -
- - - Apparel - - 18 - - + + Apparel + + 18 + + -
+ + + + + + + +
- - - - - - - - - - - - - - - + + + + + + + - + + + + + - - - + - - -
- - - Category name - - Products - -
+ Category name + + Products + +
- + + + +
+ - - - ‌ - - - - ‌ - - - + - + ‌ - -
+ + + + ‌ + + + + + + + + +
- - - - - - - - - - - - + + + + + + + - - - - + + + - - + - - - - - - + - + + + + + - - - - - - + - + + + + + - - - - - - + - + + + + + - - - - - -
- - - - Product Name - - - Product Type - - Published - -
- - -
-
- -
+ +
- Orange Juice -
- -
- Juice - -
- Published -
-
- -
- - - - -
+
- +
+ +
+ +
- Carrot Juice -
- -
- Juice - -
- Published -
-
- -
- - - - -
+
- +
+ +
+ +
- Bean Juice -
- -
- Juice - -
- Published -
-
- -
- - - - -
+
- +
+ +
+ +
- Black Hoodie -
- -
- Top (clothing) - -
- Published -
-
- -
+
+
+ Black Hoodie +
+
+ + + Top (clothing) + + +
+ Published +
+ + + + + + + +
- - - - - - - - - - - - + + + + + + + + + + - + + + + - - - - - + - - - - - - - + - - - + - - - - - - - - - + - - - - - - - + - - - - - - + - Happy year day! - - - + + + + + + - - - - + + + + + + - 10% - - - -
- - - Name - - Starts - - Ends - - Value -
+ - - - -
- + - - - - Happy front day! - - - in 5 months - - - - - - 40% -
- - - - - Happy minute day! - - - in 5 months - - +
- $30.00 -
- - - Happy class day! - - - in 5 months - - - - - - 10% -
- - - - - Happy human day! - - + - in 5 months - - - - - - 20% -
- - - - +
- - + + + + Happy class day! + + + + - + + 10% +
+ + + Happy human day! + + + + - + + 20% +
+ + + + + Happy year day! + + + + + + - + + + 10% + + + + +
@@ -43887,10 +44087,10 @@ exports[`Storyshots Views / Discounts / Sale list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - - + + + + + + + + + + - - - - - + + + - - + - + - + - + - - -
- - - Name - - Starts - - Ends - - Value -
- - - + + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -44228,10 +44432,10 @@ exports[`Storyshots Views / Discounts / Sale list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Name + + + + + + + - - - - - + + + - - - -
- Name - - Starts - - Ends - - Value -
- No sales found -
+ + No sales found + + + + +
@@ -44509,10 +44717,10 @@ exports[`Storyshots Views / Discounts / Voucher create default 1`] = ` >
- - - - - - - - - - - - - - + + + + + + + + + + + + - + + + + - - - - - + - - - - - - - - - - - - + - + + + - - - - - - - -
- - - Code - - Min. Spent - - Starts - - Ends - - Value - - Uses -
+ - - - -
- + - - - - FREE2019 - - - - - - in 5 months - - - - - - 100% - - - -
- - - - - FREE2020 - - $200.00 - - + - in 5 months - - + + 100% + + - +
- $25.00 - - 150 -
+ + + + + FREE2020 + + + $200.00 + + + + + + - + + + $25.00 + + + 150 + + + + +
@@ -49801,10 +50013,10 @@ exports[`Storyshots Views / Discounts / Voucher list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - - + + + + + + + + + + + + - - - - - + + + - - + - + - + - + - + - + - - -
- - - Code - - Min. Spent - - Starts - - Ends - - Value - - Uses -
- - - + + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -50172,10 +50388,10 @@ exports[`Storyshots Views / Discounts / Voucher list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - + Code + + + + + + + + + - - - - - + + + - - - -
- Code - - Min. Spent - - Starts - - Ends - - Value - - Uses -
- No vouchers found -
+ + No vouchers found + + + + +
@@ -50523,7 +50743,7 @@ exports[`Storyshots Views / HomePage default 1`] = ` style="padding:24px" >
- - - - - + + + - - - - - + + + -
- No payments waiting for capture -
- - + - - - - - - -
-
- - 1 - - Orders are ready to fulfill -
-
+ + 1 + + Orders are ready to fulfill + + + +
+ No payments waiting for capture + + + +
- - - -
-
- No products out of stock -
-
- -
+ + + + + +
- - - - + - + - - - -
-
- + +
+
+
-
-
-
+ Gardner-Martin +
+
+ XS +
+
+ One ordered +
+
- Gardner-Martin - -
- XS -
-
- One ordered -
-
-
- $37.65 -
-
+
+ $37.65 +
+ + + + +
- - - - - + + + - - - - - + + + - - ‌ - - - + - - - - - - -
- - ‌ - - + ‌ + + + +
+ ‌ + + + +
- - - -
- - ‌ - - - -
+ + + + + +
- - - - - - - - -
-
- + +
+
-
-
-
- - ‌ - - -
+
- -
+ + +
+ + ‌ + +
+ + + + +
- - - - - + + + - - - - - + + + -
- No payments waiting for capture -
- - + - - - - - - -
-
- - 1 - - Orders are ready to fulfill -
-
+ + 1 + + Orders are ready to fulfill + + + +
+ No payments waiting for capture + + + +
- - - -
-
- No products out of stock -
-
- -
+ + + + + +
- - - - - - -
-
- No products found -
-
+
+ No products found +
+ + + + +
- - -
+ + +
+
- - - - - + + + - - - - - + - - - -
-
- - 1 - - Orders are ready to fulfill -
-
+ + 1 + + Orders are ready to fulfill + + + +
-
+ No payments waiting for capture +
+
- No payments waiting for capture - - - -
+ + + + + +
- - - - - + - - -
-
- No products out of stock -
-
- - - -
+ + + + + +
- - - - - - - - - - + + + + + + + + - - - - - + + + - - - - - - - + - - - - - -
- - - Menu Title - - Items - -
- - - navbar - - 3 - - -
- + - - - - footer - - 2 - - - + + -
+ + + + + + + + + + + footer + + + 2 + + + + + + + +
@@ -53920,10 +54180,10 @@ exports[`Storyshots Views / Navigation / Menu list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - + + + + + + + + - - - - - + + + - - - - + - - -
- - - Menu Title - - Items - -
- - - - ‌ - - - - ‌ - - - + - + ‌ - -
+ + + + ‌ + + + + + + + + +
@@ -54193,10 +54457,10 @@ exports[`Storyshots Views / Navigation / Menu list no data 1`] = ` style="padding:24px" >
- - - - - - - - - + Menu Title + + + + + - - - - - + + + - - - -
- Menu Title - - Items - -
- No menus found -
+ + No menus found + + + + +
@@ -54445,10 +54713,10 @@ exports[`Storyshots Views / Orders / Draft order list default 1`] = ` style="padding:24px" >
- - - - - - - - - - - - + + + + + + + + + + - + + + + - - - - - + - - - - - - - + - - - + - Elizabeth Vaughn - - - - - - - + - - - - - - - + - - - - - - + - #16 - - - - - - - + - - - - - - - + - - - + - Wesley Davis - - - - - - - + - - - - - - - + - - - - - - + - #11 - - - - - - - + - - - - - - - + - - - + - Melissa Simon - - - - - - - + - - - - - - - + - - - - - - + - #6 - - - - - - - + - - - - - - - + - - - + - Lauren Watson - - - - - - - + - - - - - - - + - - - - - - + - #1 - - - + + + + + + - Curtis Bailey - - + + + + + + - $557.00 - - - -
- - - No. of Order - - Date - - Customer - - Total -
+ + + + + #10 + + + + + + Michael Martinez + + + $280.41 + + + + + + + + #9 + + + + + + Melissa Simon + + + $234.93 + + + + + + + + #8 + + + + + + Justin Mccoy + + + $485.19 + + + + + + + + #7 + + + + + + Anthony Gonzalez + + + $223.54 + + + + + + + + #6 + + + + + + Bradley Ford + + + $237.55 + + + + + + + + #5 + + + + + + David Lawson + + + $453.55 + + + + + + + + #4 + + + + + + Lauren Watson + + + $812.67 + + + + + + + + #3 + + + + + + Mark Lee + + + $481.41 + + + + + + + + #2 + + + + + + Kara Murphy + + + $569.19 + + + + + + + + #1 + + + + + + Curtis Bailey + + + $557.00 + + + + +
@@ -55631,10 +55903,10 @@ exports[`Storyshots Views / Orders / Draft order list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - - + + + + + + + + + + - - - - - + + + - - + - + - + - + - - -
- - - No. of Order - - Date - - Customer - - Total -
- - - + + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -55978,10 +56254,10 @@ exports[`Storyshots Views / Orders / Draft order list when no data 1`] = ` style="padding:24px" >
- - - - - - - - - - - + No. of Order + + + + + + + - - - - - + + + - - - -
- No. of Order - - Date - - Customer - - Total -
- No draft orders found -
+ + No draft orders found + + + + +
@@ -56258,10 +56538,10 @@ exports[`Storyshots Views / Orders / Order details cancelled 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -57279,90 +57575,94 @@ exports[`Storyshots Views / Orders / Order details default 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -57438,90 +57738,94 @@ exports[`Storyshots Views / Orders / Order details default 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -58010,10 +58314,10 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -58257,90 +58565,94 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -58416,90 +58728,94 @@ exports[`Storyshots Views / Orders / Order details fulfilled 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -58988,10 +59304,10 @@ exports[`Storyshots Views / Orders / Order details loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - + - + - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- + +
+
+ + ‌ + +
-
+
+ - - ‌ - - - - - + - ‌ - - - + ‌ + + - ‌ - - - - ‌ - -
+ + ‌ + + + + + +
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -59779,90 +60103,94 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -59938,90 +60266,94 @@ exports[`Storyshots Views / Orders / Order details no customer note 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -60510,10 +60842,10 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -60757,90 +61093,94 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -60916,90 +61256,94 @@ exports[`Storyshots Views / Orders / Order details no payment 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -61488,10 +61832,10 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -61735,90 +62083,94 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -61894,90 +62246,94 @@ exports[`Storyshots Views / Orders / Order details no shipping address 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -62466,10 +62822,10 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -62713,90 +63073,94 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -62872,90 +63236,94 @@ exports[`Storyshots Views / Orders / Order details partially fulfilled 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -63444,10 +63812,10 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -63691,90 +64063,94 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -63850,90 +64226,94 @@ exports[`Storyshots Views / Orders / Order details payment confirmed 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -64422,10 +64802,10 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -64669,90 +65053,94 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -64828,90 +65216,94 @@ exports[`Storyshots Views / Orders / Order details payment error 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -65400,10 +65792,10 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -65647,90 +66043,94 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -65806,90 +66206,94 @@ exports[`Storyshots Views / Orders / Order details pending payment 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -66378,10 +66782,10 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -66625,90 +67033,94 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -66784,90 +67196,94 @@ exports[`Storyshots Views / Orders / Order details refunded payment 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -67356,10 +67772,10 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -67603,90 +68023,94 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -67762,90 +68186,94 @@ exports[`Storyshots Views / Orders / Order details rejected payment 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -68334,10 +68762,10 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = ` style="padding:24px" >
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Watkins-Gonzalez (Soft) +
-
- Watkins-Gonzalez (Soft) -
-
-
- 3 - - $18.51 - - $55.53 -
+ + + 3 + + + $18.51 + + + $55.53 + + + + +
@@ -68581,90 +69013,94 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -68740,90 +69176,94 @@ exports[`Storyshots Views / Orders / Order details unfulfilled 1`] = `
- - - - - - - - - - - + Product + + + + + + + + - - - - - - -
- - Product - - - Quantity - - Price - - Total -
+ Quantity + + Price + + Total +
-
- +
+ +
+
+ Williams, Garcia and Walker (XS) +
-
- Williams, Garcia and Walker (XS) -
-
-
- 1 - - $79.71 - - $79.71 -
+ + + 1 + + + $79.71 + + + $79.71 + + + + +
@@ -69312,10 +69752,10 @@ exports[`Storyshots Views / Orders / Order draft default 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - - - - - - + + + + + + - - - - - + + + + + + - - -
- - Product - - - Quantity - - Price - - Total - -
-
-
- -
-
-
- Davis Group (Hard) -
-
- 58-1338 -
-
-
-
- -
-
- - -
-
- -
- $65.95 - - $131.90 - - -
+ Quantity + + Price + + Total + +
-
- -
-
- Anderson PLC (15-1337) -
-
- 15-1337 -
-
-
-
-
-
-
- - + Davis Group (Hard) +
+
+ 58-1338 +
-
-
- $68.20 - - $136.40 - - - -
- + + +
+ + +
+ $65.95 + + $131.90 + + +
+
+
+ - - - -
+
+
+
+ Anderson PLC (15-1337) +
+
+ 15-1337 +
+
+
+ + +
+
+
+ + +
+
+
+ + + $68.20 + + + $136.40 + + + + + + + +
@@ -69927,10 +70371,10 @@ exports[`Storyshots Views / Orders / Order draft loading 1`] = ` style="padding:24px" >
- - - - - - - - - - -
-
- -
-
-
+
- ‌ - + + ‌ + +
- -
- - ‌ - - - - ‌ - - - - ‌ - - - - + ‌ - -
+ + + + ‌ + + + + + ‌ + + + + + + + + +
@@ -70321,10 +70769,10 @@ exports[`Storyshots Views / Orders / Order draft no user permissions 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - - - - - - + + + + + + - - - - - + + + + + + - - -
- - Product - - - Quantity - - Price - - Total - -
-
-
- -
-
-
- Davis Group (Hard) -
-
- 58-1338 -
-
-
-
-
-
-
- - -
-
-
-
- $65.95 - - $131.90 - - -
+ Quantity + + Price + + Total + +
-
- -
-
- Anderson PLC (15-1337) -
-
- 15-1337 -
-
-
-
-
-
-
- - + Davis Group (Hard) +
+
+ 58-1338 +
-
-
- $68.20 - - $136.40 - - - -
- + + +
+ + +
+ $65.95 + + $131.90 + + +
+
+
+ - - - -
+
+
+
+ Anderson PLC (15-1337) +
+
+ 15-1337 +
+
+
+ + +
+
+
+ + +
+
+
+ + + $68.20 + + + $136.40 + + + + + + + +
@@ -70924,10 +71376,10 @@ exports[`Storyshots Views / Orders / Order draft without lines 1`] = ` style="padding:24px" >
- - - - - - -
- No Products added to Order -
+ + No Products added to Order + + + + +
- - - - - - - - - - - - - - + + + + + + + + + + + + - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - No. of Order - - Date - - Customer - - Payment - - Fulfillment status - - Total -
+ + +
+ Cancelled +
+ + + $305.17 + + + + + + + + #19 + + + + + + Elizabeth Vaughn + + +
+ Fully paid +
+ + +
+ Cancelled +
+ + + $1,215.89 + + + + + + + + #18 + + + + + + david.lawson@example.com + + +
+ Unpaid +
+ + +
+ Draft +
+ + + $321.71 + + + + + + + + #17 + + + + + + Aaron Randall + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $271.95 + + + + + + + + #16 + + + + + + Laura Jensen + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $335.84 + + + + + + + + #15 + + + + + + Jenna Villa + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $1,042.15 + + + + + + + + #14 + + + + + + Wesley Davis + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $213.69 + + + + + + + + #13 + + + + + + Anthony Gonzalez + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $367.03 + + + + + + + + #12 + + + + + + Denise Freeman + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $298.76 + + + + + + + + #11 + + + + + + James Ball + + +
+ Fully paid +
+ + +
+ Unfulfilled +
+ + + $663.69 + + + + + + + + #10 + + + + + + Michael Martinez + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $280.41 + + + + + + + + #9 + + + + + + Melissa Simon + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $234.93 + + + + + + + + #8 + + + + + + Justin Mccoy + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $485.19 + + + + + + + + #7 + + + + + + Anthony Gonzalez + + +
+ Fully paid +
+ + +
+ Partially fulfilled +
+ + + $223.54 + + + + + + + + #6 + + + + + + Bradley Ford + + +
+ Unpaid +
+ + +
+ Fulfilled +
+ + + $237.55 + + + + + + + + #5 + + + + + + David Lawson + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $453.55 + + + + + + + + #4 + + + + + + Lauren Watson + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $812.67 + + + + + + + + #3 + + + + + + Mark Lee + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $481.41 + + + + + + + + #2 + + + + + + Kara Murphy + + +
+ Fully paid +
+ + +
+ Partially fulfilled +
+ + + $569.19 + + + + + + + + #1 + + + + + + Curtis Bailey + + +
+ Fully paid +
+ + +
+ Partially fulfilled +
+ + + $557.00 + + + + +
@@ -72838,10 +73298,10 @@ exports[`Storyshots Views / Orders / Order list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - - + + + + + + + + + + + + - - - - - + + + - - + - + - + - + - + - + - - -
- - - No. of Order - - Date - - Customer - - Payment - - Fulfillment status - - Total -
- - - + + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -73238,10 +73702,10 @@ exports[`Storyshots Views / Orders / Order list when no data 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - + No. of Order + + + + + + + + + - - - - - + + + - - - -
- No. of Order - - Date - - Customer - - Payment - - Fulfillment status - - Total -
- No orders found -
+ + No orders found + + + + +
@@ -73554,10 +74022,10 @@ exports[`Storyshots Views / Orders / Order list with custom filters 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - - + + + + + + + + + + + + - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - No. of Order - - Date - - Customer - - Payment - - Fulfillment status - - Total -
+ + +
+ Cancelled +
+ + + $305.17 + + + + + + + + #19 + + + + + + Elizabeth Vaughn + + +
+ Fully paid +
+ + +
+ Cancelled +
+ + + $1,215.89 + + + + + + + + #18 + + + + + + david.lawson@example.com + + +
+ Unpaid +
+ + +
+ Draft +
+ + + $321.71 + + + + + + + + #17 + + + + + + Aaron Randall + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $271.95 + + + + + + + + #16 + + + + + + Laura Jensen + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $335.84 + + + + + + + + #15 + + + + + + Jenna Villa + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $1,042.15 + + + + + + + + #14 + + + + + + Wesley Davis + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $213.69 + + + + + + + + #13 + + + + + + Anthony Gonzalez + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $367.03 + + + + + + + + #12 + + + + + + Denise Freeman + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $298.76 + + + + + + + + #11 + + + + + + James Ball + + +
+ Fully paid +
+ + +
+ Unfulfilled +
+ + + $663.69 + + + + + + + + #10 + + + + + + Michael Martinez + + +
+ Unpaid +
+ + +
+ Cancelled +
+ + + $280.41 + + + + + + + + #9 + + + + + + Melissa Simon + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $234.93 + + + + + + + + #8 + + + + + + Justin Mccoy + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $485.19 + + + + + + + + #7 + + + + + + Anthony Gonzalez + + +
+ Fully paid +
+ + +
+ Partially fulfilled +
+ + + $223.54 + + + + + + + + #6 + + + + + + Bradley Ford + + +
+ Unpaid +
+ + +
+ Fulfilled +
+ + + $237.55 + + + + + + + + #5 + + + + + + David Lawson + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $453.55 + + + + + + + + #4 + + + + + + Lauren Watson + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $812.67 + + + + + + + + #3 + + + + + + Mark Lee + + +
+ Unpaid +
+ + +
+ Partially fulfilled +
+ + + $481.41 + + + + + + + + #2 + + + + + + Kara Murphy + + +
+ Fully paid +
+ + +
+ Partially fulfilled +
+ + + $569.19 + + + + + + + + #1 + + + + + + Curtis Bailey + + +
+ Fully paid +
+ + +
+ Partially fulfilled +
+ + + $557.00 + + + + +
@@ -75532,10 +76004,10 @@ exports[`Storyshots Views / Pages / Page details default 1`] = ` >
- - - - - - - - - - - + + + + + + + + + - + + + + + + + - - - - - + - - - - - + - - - - - - - - - + + - - - - - + - - - - - - - - -
- - - Title - - Slug - - Visibility -
+
+ Published +
+ + + + + + + + About + + + about + + +
+ Published +
+ + + + +
@@ -78377,10 +78853,10 @@ exports[`Storyshots Views / Pages / Page list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - + + + + + + + + + - - - - - + + + - - + - + - + - - -
- - - Title - - Slug - - Visibility -
- - - + + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -78635,10 +79115,10 @@ exports[`Storyshots Views / Pages / Page list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - + Title + + + + + + - - - - - + + + - - - -
- Title - - Slug - - Visibility -
- No pages found -
+ + No pages found + + + + +
@@ -78848,10 +79332,10 @@ exports[`Storyshots Views / Plugins / Plugin details default 1`] = ` >
- - - - - - - - - - - + + + + + + -
-
- - No of Rows: - -
+
+
+ + No of Rows: +
- 20 -
- -
+ - + +
+
+ + +
+ +
+ + + + + - - - - - - - + + -
- -
- - - - - - - - -
- Name - - Active - - Action -
+ No +
+ + +
+ +
+ + + + +
@@ -80151,10 +80639,10 @@ exports[`Storyshots Views / Plugins / Plugin list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - + + + + + + -
-
- - No of Rows: - -
+
+
+ + No of Rows: +
- 20 -
- -
+ - + +
-
-
- - + + + + +
- - - - - - + + + - - - - - -
- Name - - Active - - Action -
- - ‌ - - - - ‌ - - -
- -
-
+ ‌ + + + + + ‌ + + + +
+ +
+ + + + +
@@ -80367,10 +80859,10 @@ exports[`Storyshots Views / Plugins / Plugin list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - - + + + + + + -
-
- - No of Rows: - -
+
+
+ + No of Rows: +
- 20 -
- -
+ - + +
-
-
- - + + + + +
- - - - - - + + + - - - -
- Name - - Active - - Action -
- No plugins found -
+ + No plugins found + + + + +
@@ -80554,10 +81050,10 @@ exports[`Storyshots Views / Product types / Create product type default 1`] = ` >
- - - - - - - - - - - - - - - - - + + + + + + + - - - - - - - - + - - - - + + + - - -
- - - - - - Attribute name - - Slug - -
- - - - - Language - - language - - -
+ + + + + + + + + + + + + + Language + + + language + + + + + + + + + + + + + + Publisher + + + publisher + + + + + + + +
- - - - - - - - - - - - - - - - - + + + + + + + - - - - - - - - + - - - - + + + - - -
- - - - - - Attribute name - - Slug - -
- - - - - Language - - language - - -
+ + + + + + + + + + + + + + Language + + + language + + + + + + + + + + + + + + Publisher + + + publisher + + + + + + + +
- - - - - - - - - - + + + + + + + + - - + - - - + - - -
- - - - - - Attribute name - - Slug - -
+ Attribute name + + Slug + +
- - - - - - - - ‌ - - - - ‌ - - - + - + ‌ - -
+ + + + ‌ + + + + + + + + +
- - - - - - - - - + Attribute name + + + + + - - - -
- Attribute name - - Slug - -
+ Slug + +
- No attributes found -
+ + No attributes found + + + + +
- - - - - - - - - - - - + + + + + + + - - - - + + + - - + + - - - - - - + - - E-books - -
+ + + +
- - - - - + - + + - - - - - + - + - + - Physical - - - - - - + + - + + - Physical - - - - -
- - - Type Name - - Type - - Tax -
- - - + + + - Candy - -
+ Candy + +
+ Configurable +
+
- Configurable - - - Physical - - PB100000 -
+ + + + + + T-Shirt + +
+ Configurable +
+ + + Physical + + + PH403970 + + + + +
@@ -83889,10 +84405,10 @@ exports[`Storyshots Views / Product types / Product types list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - - - - - - + + + + + + + + - + + + + + - + - + - + - - -
- - - Type Name - - Type - - Tax -
+ Type Name + + Type + + Tax +
- + + + +
+ - - + + + - ‌ - - - + ‌ + + - ‌ - - - + ‌ + + - ‌ - -
+ + ‌ + + + + + +
@@ -84185,10 +84705,10 @@ exports[`Storyshots Views / Product types / Product types list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - + Type Name + + + + + + - - - - - + + + - - - -
- Type Name - - Type - - Tax -
- No product types found -
+ + No product types found + + + + +
@@ -86714,10 +87238,10 @@ exports[`Storyshots Views / Products / Create product When loading 1`] = ` >
- - - - - - - -
-
- + +
+
-
-
-
- New Variant -
+ + + New Variant + + + + +
@@ -90367,10 +90895,10 @@ exports[`Storyshots Views / Products / Create product variant default 1`] = ` >
- - - - - - - - - - - - - + + - New Variant - - - -
-
-
- +
+
-
-
-
+ + Cordoba Oro +
+ +
+
+ +
+
+
+ + + silver + + + + +
+
+ +
+
+
+ + + New Variant + + + + +
@@ -90876,10 +91408,10 @@ exports[`Storyshots Views / Products / Create product variant when loading data >
- - - - - - - - - + + - New Variant - - - -
-
-
- -
-
-
-
+
+ +
+
+ +
+
+
+ + + New Variant + + + + +
@@ -91311,10 +91847,10 @@ exports[`Storyshots Views / Products / Create product variant with errors 1`] = >
- - - - - - - - - - - - - + + - New Variant - - - -
-
-
- +
+
-
-
-
+ + Cordoba Oro +
+ +
+
+ +
+
+
+ + + silver + + + + +
+
+ +
+
+
+ + + New Variant + + + + +
@@ -91838,10 +92378,10 @@ exports[`Storyshots Views / Products / Product edit no product attributes 1`] = >
- - - - - - - - - - - + + + + + + + + + - - - + - - - - - - + - + - 69055-15190 - - - -
- - - Name - - Status - - SKU -
- - - Cordoba Oro - -
+ + +
- Available - - - 87192-94370 -
+ + + + + silver + + +
+ Available +
+ + + 69055-15190 + + + + +
- - - - - - - - - - - + + + + + + + + + - - - + - - - - - - + - + - 69055-15190 - - - -
- - - Name - - Status - - SKU -
- - - Cordoba Oro - -
+ + +
- Available - - - 87192-94370 -
+ + + + + silver + + +
+ Available +
+ + + 69055-15190 + + + + +
- - - - - - - - - - - + + + + + + + + + - - - + - - - - - - + - + - 69055-15190 - - - -
- - - Name - - Status - - SKU -
- - - Cordoba Oro - -
+ + +
- Available - - - 87192-94370 -
+ + + + + silver + + +
+ Available +
+ + + 69055-15190 + + + + +
- - - - - - - - - - - + + + + + + + + + - - - + - - - - - - + - + - 69055-15190 - - - -
- - - Name - - Status - - SKU -
- - - Cordoba Oro - -
+ + +
- Available - - - 87192-94370 -
+ + + + + silver + + +
+ Available +
+ + + 69055-15190 + + + + +
- - - - - - - - - - + + + + + + + - - + - - + + + + + + + + + + + + + + + + -
+ + +
- - - - + + + + + + + - - - - - - + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + - - - - - - - - - - - - - - - - - - - -
- - -
+ + +
- - Name - + + Name + +
+ - - -
-
+
- Type +
+ Type +
- -
-
+
+
+ Published +
+
+
+
+
+ Price +
+
+
+ $20.00 + + + + +
@@ -103520,10 +104080,10 @@ exports[`Storyshots Views / Products / Product list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - + + + + + + + - - + - - - - - - - - - - - - - - + + + - - ‌ - - - - -
- - -
+ + +
- - Name - -
- - -
-
-
- Type -
-
-
-
-
- Published -
-
-
-
-
- Price -
-
-
+
+
+
+ + No of Rows: + +
+
+ 20 +
+ + +
+
+
+
+ + +
+
+ + + + + + + + + +
+
+ +
+
+ + ‌ + +
+
+ + + + ‌ + + + + + ‌ + + + + + ‌ + + + + + +
@@ -104018,10 +104582,10 @@ exports[`Storyshots Views / Products / Product list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - + + + + + + + - - - - - - - - - + - - - + + + + - - - -
-
- - Name - -
- -
-
-
-
- Type -
-
-
-
-
- Published -
-
-
-
-
- Price -
-
-
+
+
+ Price +
+
+
- No products found -
+ +
+
+
+ + No of Rows: + +
+
+ 20 +
+ + +
+
+
+
+ + +
+
+ + + + + + + No products found + + + + +
@@ -104423,10 +104991,10 @@ exports[`Storyshots Views / Products / Product list with custom filters 1`] = ` style="padding:24px" >
- - - - - - - - - - + + + + + + + - - + - - + + + + + + + + + + + + + + + + -
+ + +
- - - - + + + + + + + - - - - - - + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - + - - - - - - - - - - - - - - - - - - - -
- - -
+ + +
- - Name - + + Name + +
+ - - -
-
+
- Type +
+ Type +
- -
-
+
+
+ Published +
+
+
+
+
+ Price +
+
+
+ $20.00 + + + + +
@@ -106529,10 +107101,10 @@ exports[`Storyshots Views / Products / Product variant details attribute errors style="padding:24px" >
- - - - - + + - Extended Hard - - - - - + + - Extended Soft - - - - - + + - Normal Hard - - - - - - - - + + - - -
- - +
+ -
+ + Add variant + + + + + + +
@@ -107220,10 +107796,10 @@ exports[`Storyshots Views / Products / Product variant details when loaded data style="padding:24px" >
- - - - - + + - Extended Hard - - - - - + + - Extended Soft - - - - - + + - Normal Hard - - - - - - - - + + - - -
- - +
+ -
+ + Add variant + + + + + + +
@@ -107893,10 +108473,10 @@ exports[`Storyshots Views / Products / Product variant details when loading data style="padding:24px" >
- - - - - - - - - - -
- - Add variant + ‌ - -
+ + + + + + + + + +
@@ -108335,10 +108919,10 @@ exports[`Storyshots Views / Services / Create service default 1`] = ` >
- - - - - - - - - - - - - + + + + + + + + - - -
- Token Note - - Key - - Actions -
- default - - **** AK05 - - + Key + + Actions +
+ default + + **** AK05 + + -
+ + + + + + + +
@@ -110541,10 +111129,10 @@ exports[`Storyshots Views / Services / Service details default token 1`] = ` >
- - - - - - - - - - - - - + + + + + + + + - - -
- Token Note - - Key - - Actions -
- default - - **** AK05 - - + Key + + Actions +
+ default + + **** AK05 + + -
+ + + + + + + +
@@ -111249,10 +111841,10 @@ exports[`Storyshots Views / Services / Service details form errors 1`] = ` >
- - - - - - - - - - - - - + + + + + + + + - - -
- Token Note - - Key - - Actions -
- default - - **** AK05 - - + Key + + Actions +
+ default + + **** AK05 + + -
+ + + + + + + +
@@ -111879,10 +112475,10 @@ exports[`Storyshots Views / Services / Service details loading 1`] = ` >
- - - - - - - - - - + Token Note + + + + + + - - - - - -
- Token Note - - Key - - Actions -
+ Key + + Actions +
- - ‌ - - - - ‌ - - - -
+ + + + ‌ + + + + + + + + +
@@ -112547,10 +113147,10 @@ exports[`Storyshots Views / Services / Service list default 1`] = ` style="padding:24px" >
- - - - - - - - + Name + + + + - + + + + + - - - - - - + + - - - - - + + - - Facebook Market - -
- active -
- - - - - + - - - -
- Name - -
+ + Slack +
- - + active
- -
- + - Slack - -
- active -
-
+ + + + + +
- - - - -
- - -
- + - Magento Importer - -
- inactive -
-
- - + -
+ + + + + + + +
@@ -112998,10 +113602,10 @@ exports[`Storyshots Views / Services / Service list loading 1`] = ` style="padding:24px" >
- - - - - - - - + Name + + + + - - - - - + + + - - + - - -
- Name - -
- - ‌ - - -
-
- - - - - - -
+ + + + + + + + +
@@ -113322,10 +113930,10 @@ exports[`Storyshots Views / Services / Service list no data 1`] = ` style="padding:24px" >
- - - - - - - - + Name + + + + - - - - - + + + - - - -
- Name - -
- No service accounts found -
+ + No service accounts found + + + + +
@@ -113595,10 +114207,10 @@ exports[`Storyshots Views / Shipping / Create shipping zone default 1`] = ` >
- - - - - - - -
- 0 Countries - - + -
+ + + + + + + +
@@ -113774,10 +114390,10 @@ exports[`Storyshots Views / Shipping / Create shipping zone form errors 1`] = ` >
- - - - - - - -
- 0 Countries - - + -
+ + + + + + + +
@@ -113958,10 +114578,10 @@ exports[`Storyshots Views / Shipping / Shipping zone details default 1`] = ` >
- - - - - - - -
- 51 Countries - - + -
+ + + + + + + +
- - - - - - - - - - + Name + + + + + + - - - - - - - - - - - - - - -
- Name - - Value Range - - Price - - -
+ Value Range + + Price + + +
- UPS - - from $0.00 - - $48.11 - - - - - - - - -
- DHL - - from $0.00 - - $95.24 - - - - - - - - - - - - -
+ + + + + + + + + + + DHL + + + from $0.00 + + + $95.24 + + + + + + + + + + +
- - - - - - - - - - + Name + + + + + + - - - - - - - - - - - - - - -
- Name - - Weight Range - - Price - - -
+ Weight Range + + Price + + +
- DB Schenker - - 0 kg - 80 kg - - $45.93 - - - - - - - - -
- Registred priority - - from 0 kg - - $73.87 - - - - - - - - - - - - -
+ + + + + + + + + + + Registred priority + + + from 0 kg + + + $73.87 + + + + + + + + + + +
@@ -114571,10 +115203,10 @@ exports[`Storyshots Views / Shipping / Shipping zone details form errors 1`] = ` >
- - - - - - - -
- 51 Countries - - + -
+ + + + + + + +
- - - - - - - - - - + Name + + + + + + - - - - - - - - - - - - - - -
- Name - - Value Range - - Price - - -
+ Value Range + + Price + + +
- UPS - - from $0.00 - - $48.11 - - - - - - - - -
- DHL - - from $0.00 - - $95.24 - - - - - - - - - - - - -
+ + + + + + + + + + + DHL + + + from $0.00 + + + $95.24 + + + + + + + + + + +
- - - - - - - - - - + Name + + + + + + - - - - - - - - - - - - - - -
- Name - - Weight Range - - Price - - -
+ Weight Range + + Price + + +
- DB Schenker - - 0 kg - 80 kg - - $45.93 - - - - - - - - -
- Registred priority - - from 0 kg - - $73.87 - - - - - - - - - - - - -
+ + + + + + + + + + + Registred priority + + + from 0 kg + + + $73.87 + + + + + + + + + + +
@@ -115189,10 +115833,10 @@ exports[`Storyshots Views / Shipping / Shipping zone details loading 1`] = ` >
- - - - - - - -
- ... Countries - - + -
+ + + + + + + +
- - - - - - - - - - + Name + + + + + + - - - - - - - -
- Name - - Value Range - - Price - - -
+ Value Range + + Price + + +
- - ‌ - - - - ‌ - - - - ‌ - - - - - - + ‌ - -
+ + + + ‌ + + + + + + + + + + + +
- - - - - - - - - - + Name + + + + + + - - - - - - - -
- Name - - Weight Range - - Price - - -
+ Weight Range + + Price + + +
- - ‌ - - - - ‌ - - - - ‌ - - - - - - + ‌ - -
+ + + + ‌ + + + + + + + + + + + +
@@ -115696,10 +116352,10 @@ exports[`Storyshots Views / Shipping / Shipping zones list default 1`] = ` style="padding:24px" >
- - - - - - - - - - + + + + + + + + - - - - - + + + - - - - - - - + - - - - - - + + - - - - - - - - + - - - - - - + + - - - - - + + + - - -
- - - Name - - Countries - -
- - - Europe - - 51 - - -
- + - - - - Oceania - - 29 - - - + + -
- Asia - - 51 - - -
- + - - - - Americas - - 57 - - - + + -
- Africa - - 60 - - + + Asia + + 51 + + -
+ + + + + + + + + + + Americas + + + 57 + + + + + + + + + + + Africa + + + 60 + + + + + + + +
@@ -116301,10 +116961,10 @@ exports[`Storyshots Views / Shipping / Shipping zones list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - + + + + + + + + - - - - - + + + - - - - + - - -
- - - Name - - Countries - -
- - - - ‌ - - - - ‌ - - - + - + ‌ - -
+ + + + ‌ + + + + + + + + +
@@ -116703,10 +117367,10 @@ exports[`Storyshots Views / Shipping / Shipping zones list no data 1`] = ` style="padding:24px" >
- - - - - - - - - + Name + + + + + - - - - - + + + - - - -
- Name - - Countries - -
- No shipping zones found -
+ + No shipping zones found + + + + +
@@ -117032,10 +117700,10 @@ exports[`Storyshots Views / Shipping / Shipping zones list no site settings perm style="padding:24px" >
- - - - - - - - - - + + + + + + + + - - - - - + + + - - - - - - - + - - - - - - + + - - - - - - - - + - - - - - - + + - - - - - + + + - - -
- - - Name - - Countries - -
- - - Europe - - 51 - - -
- + - - - - Oceania - - 29 - - - + + -
- Asia - - 51 - - -
- + - - - - Americas - - 57 - - - + + -
- Africa - - 60 - - + + Asia + + 51 + + -
+ + + + + + + + + + + Americas + + + 57 + + + + + + + + + + + Africa + + + 60 + + + + + + + +
@@ -117532,10 +118204,10 @@ exports[`Storyshots Views / Site settings / Page default 1`] = ` >
- - - - - - - - - - - - + + + + + + + - - -
- Authentication Type - - Key - -
- Facebook - - n1n62jkn2123:123n - - + Key + +
+ Facebook + + n1n62jkn2123:123n + + -
+ + + + + + + +
@@ -118389,10 +119065,10 @@ exports[`Storyshots Views / Site settings / Page form errors 1`] = ` >
- - - - - - - - - - - - + + + + + + + - - -
- Authentication Type - - Key - -
- Facebook - - n1n62jkn2123:123n - - + Key + +
+ Facebook + + n1n62jkn2123:123n + + -
+ + + + + + + +
@@ -119256,10 +119936,10 @@ exports[`Storyshots Views / Site settings / Page loading 1`] = ` >
- - - - - - - - - + Authentication Type + + + + + - - - - - -
- Authentication Type - - Key - -
+ Key + +
- - ‌ - - - - ‌ - - - -
+ + + + ‌ + + + + + + + + +
@@ -120138,10 +120822,10 @@ exports[`Storyshots Views / Staff / Staff member details default 1`] = ` >
- - - - - - - - - + Name + + + + + - + + + + + - - - - - + + + -
- -
-
+ +
+
+ Jacob Smith +
+
+ Inactive +
+ + - + - admin@example.com - - - - + + + -
- -
-
+ +
+
+ Jacob Smith +
+
+ Active +
+ + - + - admin@example.com - - - - + + + -
- -
-
+ +
+
+ Jacob Smith +
+
+ Active +
+ + - + - admin@example.com - - - - + + + -
- -
-
+ +
+
+ Jacob Smith +
+
+ Active +
+ + - + - admin@example.com - - - - + + + -
- -
-
+ +
+
+ Jacob Smith +
+
+ Inactive +
+ + - + - admin@example.com - - - - + + + -
- -
-
+ +
+
+ Jacob Smith +
+
+ Active +
+ + - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Name - - Email Address -
+
+
- - + Chris Cooper
- -
+ Active + + + admin@example.com +
- Chris Cooper - -
- Active -
-
+
+
+ +
+
+ Jacob Smith +
+
+ Active +
+
+ admin@example.com +
- Jacob Smith - -
- Inactive -
-
+
+
+ +
+
+ Jacob Smith +
+
+ Active +
+
+ admin@example.com +
- Jacob Smith - -
- Active -
-
+
+
+ +
+
+ Jacob Smith +
+
+ Inactive +
+
+ admin@example.com +
- Jacob Smith - -
- Active -
-
+
+
+ +
+
+ Jacob Smith +
+
+ Active +
+
+ admin@example.com +
- Jacob Smith - -
- Active -
-
+
+
+ +
+
+ Jacob Smith +
+
+ Inactive +
+
+ admin@example.com +
- Jacob Smith - -
- Active -
-
- admin@example.com -
-
- -
-
- Jacob Smith -
-
- Inactive -
-
- admin@example.com -
-
- -
-
- Jacob Smith -
-
- Active -
-
- admin@example.com -
-
- -
-
- Jacob Smith -
-
- Active -
-
- admin@example.com -
-
- -
-
- Jacob Smith -
-
- Inactive -
-
- admin@example.com -
-
- -
-
- Jacob Smith -
-
- Inactive -
-
- admin@example.com -
-
- -
-
- Jacob Smith -
-
- Active -
-
- admin@example.com -
+ admin@example.com + + + + +
@@ -122670,10 +123358,10 @@ exports[`Storyshots Views / Staff / Staff members when loading 1`] = ` style="padding:24px" >
- - - - - - - - - + Name + + + + + - + + + + + - - - - - - - - -
- Name - - Email Address -
+
+
+
+
- - + ‌ +
-
-
-
-
+ + ‌ +
-
-
+
- -
- - ‌ - -
-
- - ‌ - -
+ + + + +
@@ -122976,10 +123668,10 @@ exports[`Storyshots Views / Taxes / Country List default 1`] = ` >
- - - - - - - - - - + Country Code + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Country Code - - Country Name - - Reduced Tax Rates -
+ Country Name + + Reduced Tax Rates +
- AT - - Austria - - 8 -
- BE - - Belgia - - 10 -
- BG - - Bułgaria - - 1 -
- CY - - Cypr - - 11 -
- CZ - - Czechy - - 11 -
- DE - - Niemcy - - 8 -
- DK - - Dania - - 0 -
- EE - - Estonia - - 4 -
- ES - - Hiszpania - - 8 -
- FI - - Finlandia - - 10 -
- FR - - Francja - - 13 -
- GB - - Wielka Brytania - - 8 -
- GR - - Grecja - - 9 -
- HR - - Chorwacja - - 2 -
- HU - - Węgry - - 5 -
- IE - - Irlandia - - 10 -
- IT - - Włochy - - 10 -
- LT - - Litwa - - 3 -
- LU - - Luksemburg - - 17 -
- LV - - Łotwa - - 5 -
- MT - - Malta - - 8 -
- NL - - Holandia - - 9 -
- PL - - Polska - - 10 -
- PT - - Portugalia - - 8 -
- RO - - Rumunia - - 9 -
- SE - - Szwecja - - 2 -
- SI - - Słowenia - - 9 -
- SK - - Słowacja - - 6 -
+ + + AT + + + Austria + + + 8 + + + + + BE + + + Belgia + + + 10 + + + + + BG + + + Bułgaria + + + 1 + + + + + CY + + + Cypr + + + 11 + + + + + CZ + + + Czechy + + + 11 + + + + + DE + + + Niemcy + + + 8 + + + + + DK + + + Dania + + + 0 + + + + + EE + + + Estonia + + + 4 + + + + + ES + + + Hiszpania + + + 8 + + + + + FI + + + Finlandia + + + 10 + + + + + FR + + + Francja + + + 13 + + + + + GB + + + Wielka Brytania + + + 8 + + + + + GR + + + Grecja + + + 9 + + + + + HR + + + Chorwacja + + + 2 + + + + + HU + + + Węgry + + + 5 + + + + + IE + + + Irlandia + + + 10 + + + + + IT + + + Włochy + + + 10 + + + + + LT + + + Litwa + + + 3 + + + + + LU + + + Luksemburg + + + 17 + + + + + LV + + + Łotwa + + + 5 + + + + + MT + + + Malta + + + 8 + + + + + NL + + + Holandia + + + 9 + + + + + PL + + + Polska + + + 10 + + + + + PT + + + Portugalia + + + 8 + + + + + RO + + + Rumunia + + + 9 + + + + + SE + + + Szwecja + + + 2 + + + + + SI + + + Słowenia + + + 9 + + + + + SK + + + Słowacja + + + 6 + + + + +
@@ -123699,10 +124395,10 @@ exports[`Storyshots Views / Taxes / Country List loading 1`] = ` >
+
+ + + + + + + + + + + + + + + +
+ Country Code + + Country Name + + Reduced Tax Rates +
+ + ‌ + + + + ‌ + + + + ‌ + +
+
+
+
+
+
+ +
+`; + +exports[`Storyshots Views / Taxes / Reduced Tax Categories default 1`] = ` +
+
+
+
+ Tax Rates in Austria +
+
+
+
+
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- Country Code + Category - Country Name + Tax Rate
+ Admission to cultural events + + 10 +
+ Admission to entertainment events + + 10 +
+ Books + + 10 +
+ Foodstuffs + + 10 +
+ Hotels + + 10 +
+ Newspapers + + 10 +
+ Passenger transport + + 10 +
+ Pharmaceuticals + + 10 +
+
+
+
+
+
+
+`; + +exports[`Storyshots Views / Taxes / Reduced Tax Categories loading 1`] = ` +
+
+
+
+ + ‌ + +
+
+
+
+
+
+
+
+
+ + + + @@ -123902,15 +124888,6 @@ exports[`Storyshots Views / Taxes / Country List loading 1`] = ` ‌ -
- Reduced Tax Rates + Category + + Tax Rate
- - ‌ - -
@@ -123918,275 +124895,6 @@ exports[`Storyshots Views / Taxes / Country List loading 1`] = `
- -
-`; - -exports[`Storyshots Views / Taxes / Reduced Tax Categories default 1`] = ` -
-
-
-
- Tax Rates in Austria -
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Category - - Tax Rate -
- Admission to cultural events - - 10 -
- Admission to entertainment events - - 10 -
- Books - - 10 -
- Foodstuffs - - 10 -
- Hotels - - 10 -
- Newspapers - - 10 -
- Passenger transport - - 10 -
- Pharmaceuticals - - 10 -
-
-
-
-
-
-`; - -exports[`Storyshots Views / Taxes / Reduced Tax Categories loading 1`] = ` -
-
-
-
- - ‌ - -
-
-
-
-
-
-
-
- - - - - - - - - - - - - -
- Category - - Tax Rate -
- - ‌ - - - - ‌ - -
-
-
-
`; @@ -124196,10 +124904,10 @@ exports[`Storyshots Views / Translations / Entity list default 1`] = ` style="padding:24px" >
- - - - - - - - - + Name + + + + + - - - - - + + + - - + + + - 1 of 3 - - - - - - - -
- Name - - Completed Translations -
- White Hoodie - + White Hoodie + + 1 of 3 +
- Brown Supreme Hoodie - - 2 of 3 -
+ + Brown Supreme Hoodie + + + 2 of 3 + + + + +
@@ -124494,10 +125206,10 @@ exports[`Storyshots Views / Translations / Language list default 1`] = ` style="padding:24px" >
- - - - - - - - + Language + + + + - - - - + + - angielski - - - - + + - hiszpański - - - - + + - polski - - - -
- Language -
- niemiecki -
+ + polski + + + + +
@@ -124583,10 +125299,10 @@ exports[`Storyshots Views / Translations / Language list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - - -
- Language -
- - ‌ - -
+ Language + + + + + + + + ‌ + + + + + +
@@ -124649,10 +125369,10 @@ exports[`Storyshots Views / Translations / Language list no data 1`] = ` style="padding:24px" >
- - - - - - - - + Language + + + + - - - -
- Language -
- No languages found -
+ + No languages found + + + + +
@@ -124713,10 +125437,10 @@ exports[`Storyshots Views / Webhooks / Create webhook default 1`] = ` >
- - - - - - - - - - + Name + + + + + + - - - - - + + + - - - - - - - - + + + + - - -
- Name - - Service Account - - Action -
- Webhook Test - - Test Account - - - - - - - -
- Webhook Test 2 - - Test Account 2 - - - - - - - + +
- + + Test Account 2 + + -
+ + + + + + + + +
@@ -128351,10 +129079,10 @@ exports[`Storyshots Views / Webhooks / Webhook list loading 1`] = ` style="padding:24px" >
- - - - - - - - - - + Name + + + + + + - - - - - + + + - - - - - -
- Name - - Service Account - - Action -
- - ‌ - - - - ‌ - - - - - + ‌ - -
+ + + + + + + + +
@@ -128684,10 +129416,10 @@ exports[`Storyshots Views / Webhooks / Webhook list no data 1`] = ` style="padding:24px" >
- - - - - - - - - - + Name + + + + + + - - - - - + + + - - - -
- Name - - Service Account - - Action -
- No webhooks found -
+ + No webhooks found + + + + +
diff --git a/src/storybook/stories/components/EditableTableCell.tsx b/src/storybook/stories/components/EditableTableCell.tsx index e9d7a87e4..90b6171d6 100644 --- a/src/storybook/stories/components/EditableTableCell.tsx +++ b/src/storybook/stories/components/EditableTableCell.tsx @@ -1,4 +1,3 @@ -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableHead from "@material-ui/core/TableHead"; @@ -7,6 +6,7 @@ import { storiesOf } from "@storybook/react"; import React from "react"; import EditableTableCell from "@saleor/components/EditableTableCell"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import CardDecorator from "../../CardDecorator"; import Decorator from "../../Decorator"; @@ -14,7 +14,7 @@ storiesOf("Generics / EditableTableCell", module) .addDecorator(CardDecorator) .addDecorator(Decorator) .add("default", () => ( - + Some header Some header @@ -30,5 +30,5 @@ storiesOf("Generics / EditableTableCell", module) Some value -
+ )); diff --git a/src/storybook/stories/components/TablePagination.tsx b/src/storybook/stories/components/TablePagination.tsx index 9151647ee..e25557a7e 100644 --- a/src/storybook/stories/components/TablePagination.tsx +++ b/src/storybook/stories/components/TablePagination.tsx @@ -1,7 +1,7 @@ -import Table from "@material-ui/core/Table"; import { storiesOf } from "@storybook/react"; import React from "react"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import TablePagination from "@saleor/components/TablePagination"; import CardDecorator from "../../CardDecorator"; import Decorator from "../../Decorator"; @@ -10,7 +10,7 @@ storiesOf("Generics / TablePagination", module) .addDecorator(CardDecorator) .addDecorator(Decorator) .add("no previous / next page", () => ( - + -
+ )) .add("previous page available", () => ( - + -
+ )) .add("next page available", () => ( - + -
+ )) .add("both previous and next pages are available", () => ( - + -
+ )); diff --git a/src/taxes/components/CountryList/CountryList.tsx b/src/taxes/components/CountryList/CountryList.tsx index 97235b2cd..6eeeabb88 100644 --- a/src/taxes/components/CountryList/CountryList.tsx +++ b/src/taxes/components/CountryList/CountryList.tsx @@ -1,6 +1,5 @@ import Card from "@material-ui/core/Card"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableHead from "@material-ui/core/TableHead"; @@ -9,6 +8,7 @@ import classNames from "classnames"; import React from "react"; import { FormattedMessage } from "react-intl"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import { maybe, renderCollection } from "../../../misc"; import { CountryList_shop_countries } from "../../types/CountryList"; @@ -34,7 +34,7 @@ const CountryList: React.FC = props => { return ( - + @@ -83,7 +83,7 @@ const CountryList: React.FC = props => { ) )} -
+
); }; diff --git a/src/taxes/components/CountryTaxesPage/CountryTaxesPage.tsx b/src/taxes/components/CountryTaxesPage/CountryTaxesPage.tsx index 9cd0a2e76..93c988c28 100644 --- a/src/taxes/components/CountryTaxesPage/CountryTaxesPage.tsx +++ b/src/taxes/components/CountryTaxesPage/CountryTaxesPage.tsx @@ -1,6 +1,5 @@ import Card from "@material-ui/core/Card"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableHead from "@material-ui/core/TableHead"; @@ -12,6 +11,7 @@ import AppHeader from "@saleor/components/AppHeader"; import { Container } from "@saleor/components/Container"; import Grid from "@saleor/components/Grid"; import PageHeader from "@saleor/components/PageHeader"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import { sectionNames } from "@saleor/intl"; import { TaxRateType } from "@saleor/types/globalTypes"; @@ -165,7 +165,7 @@ const CountryTaxesPage: React.FC = props => {
- + @@ -206,7 +206,7 @@ const CountryTaxesPage: React.FC = props => { ) )} -
+
diff --git a/src/translations/components/TranslationsEntitiesList/TranslationsEntitiesList.tsx b/src/translations/components/TranslationsEntitiesList/TranslationsEntitiesList.tsx index dc2751710..2b58938f7 100644 --- a/src/translations/components/TranslationsEntitiesList/TranslationsEntitiesList.tsx +++ b/src/translations/components/TranslationsEntitiesList/TranslationsEntitiesList.tsx @@ -1,6 +1,5 @@ import { Omit } from "@material-ui/core"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -12,6 +11,7 @@ import { FormattedMessage, useIntl } from "react-intl"; import { ListProps } from "../../../types"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TablePagination from "@saleor/components/TablePagination"; import { maybe, renderCollection } from "../../../misc"; @@ -58,7 +58,7 @@ const TranslationsEntitiesList: React.FC< const intl = useIntl(); return ( - + @@ -126,7 +126,7 @@ const TranslationsEntitiesList: React.FC< ) )} -
+ ); }; TranslationsEntitiesList.displayName = "TranslationsEntitiesList"; diff --git a/src/translations/components/TranslationsLanguageList/TranslationsLanguageList.tsx b/src/translations/components/TranslationsLanguageList/TranslationsLanguageList.tsx index 7400c15ea..e613d7a72 100644 --- a/src/translations/components/TranslationsLanguageList/TranslationsLanguageList.tsx +++ b/src/translations/components/TranslationsLanguageList/TranslationsLanguageList.tsx @@ -1,6 +1,5 @@ import Card from "@material-ui/core/Card"; import { makeStyles } from "@material-ui/core/styles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableHead from "@material-ui/core/TableHead"; @@ -8,6 +7,7 @@ import TableRow from "@material-ui/core/TableRow"; import React from "react"; import { FormattedMessage } from "react-intl"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import { ShopInfo_shop_languages } from "@saleor/components/Shop/types/ShopInfo"; import Skeleton from "@saleor/components/Skeleton"; import { maybe, renderCollection } from "../../../misc"; @@ -35,7 +35,7 @@ const TranslationsLanguageList: React.FC< return ( - + @@ -70,7 +70,7 @@ const TranslationsLanguageList: React.FC< ) )} -
+
); }; diff --git a/src/webhooks/components/WebhooksList/WebhooksList.tsx b/src/webhooks/components/WebhooksList/WebhooksList.tsx index 69f409036..2b9015983 100644 --- a/src/webhooks/components/WebhooksList/WebhooksList.tsx +++ b/src/webhooks/components/WebhooksList/WebhooksList.tsx @@ -1,6 +1,5 @@ import IconButton from "@material-ui/core/IconButton"; import makeStyles from "@material-ui/core/styles/makeStyles"; -import Table from "@material-ui/core/Table"; import TableBody from "@material-ui/core/TableBody"; import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; @@ -11,6 +10,7 @@ import EditIcon from "@material-ui/icons/Edit"; import React from "react"; import { useIntl } from "react-intl"; +import ResponsiveTable from "@saleor/components/ResponsiveTable"; import Skeleton from "@saleor/components/Skeleton"; import TablePagination from "@saleor/components/TablePagination"; import { maybe, renderCollection, stopPropagation } from "@saleor/misc"; @@ -68,7 +68,7 @@ const WebhooksList: React.FC = ({ const classes = useStyles({}); return ( - + @@ -156,7 +156,7 @@ const WebhooksList: React.FC = ({ ) )} -
+ ); }; WebhooksList.displayName = "WebhooksList";