This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'customer_id': [ | |
'1', | |
'2', | |
'3', | |
'4', | |
'5', | |
'6', | |
'7', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'customer_id': [ | |
'1', | |
'2', | |
'3', | |
'4', | |
'5', | |
'6', | |
'7', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"payload": { | |
"nodes": [ | |
{"id": 0, "label": "Silver"}, | |
{"id": 1, "label": "Titanium"}, | |
{"id": 2, "label": "Platinum"}, | |
{"id": 3, "label": "Gold"}, | |
{"id": 4, "label": "Angel"}, | |
{"id": 5, "label": "Silver (suggestion)"}, | |
{"id": 6, "label": "Titanium (suggestion)"}, | |
{"id": 7, "label": "Platinum (suggestion)"}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const StyledCardElementContainer = styled.div<{ isfocused: string }>` | |
border-bottom: 0.5px solid gray; | |
padding: 6px; | |
height: 33px; | |
::after { | |
content: ""; | |
position: absolute; | |
width: 0px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {FC, useEffect, useState} from 'react'; | |
import {Divider, Paper} from "@material-ui/core"; | |
import styled from "styled-components"; | |
import {VisorLayersEnum} from "../../../State/Reducers/visor"; | |
import {VoronoiLayer} from "./VoronoiLayer"; | |
const StyledLayersSelectContainer = styled(Paper)` | |
position: absolute; | |
bottom: 0; | |
right: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {FC, ReactElement} from 'react'; | |
import styled from 'styled-components'; | |
import DialogActions from '@material-ui/core/DialogActions'; | |
import {Button, Tooltip, Typography, withStyles} from '@material-ui/core'; | |
import {Theme} from '@material-ui/core/styles'; | |
import {TooltipProps} from "@material-ui/core/Tooltip/Tooltip"; | |
const StyledTooltipTitle = styled(Typography)` | |
font-size: 18px; | |
font-weight: 600; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum OrderStatusEnum { | |
OPEN = 'open', | |
CLOSED = 'closed', | |
ANY = 'any' | |
} | |
enum OrderCancelReason { | |
CUSTOMER = 'customer', | |
FRAUD = 'fraud', |