@tap-payments/os-micro-frontend-shared 0.1.66 → 0.1.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/components/FilteredIds/FilteredIds.js +1 -1
- package/build/components/FilteredIds/style.d.ts +1 -0
- package/build/components/FilteredIds/style.js +5 -4
- package/build/components/RadioGroup/style.js +0 -1
- package/build/components/StatusIcons/SourceIcons/components/SourceIcon.d.ts +6 -2
- package/build/components/StatusIcons/SourceIcons/components/SourceIcon.js +2 -2
- package/build/components/TableCells/CustomCells/BrandsCell/BrandsCell.js +1 -1
- package/build/components/TableCells/CustomCells/IndividualsCell/IndividualsCell.js +1 -1
- package/build/components/TableCells/CustomCells/TerminalsPlatformCell/TerminalsPlatformCell.d.ts +3 -2
- package/build/components/TableCells/CustomCells/TerminalsPlatformCell/TerminalsPlatformCell.js +14 -2
- package/build/constants/assets.d.ts +4 -0
- package/build/constants/assets.js +4 -0
- package/build/constants/table/cell/merchantsTableCellWidth.d.ts +12 -17
- package/build/constants/table/cell/merchantsTableCellWidth.js +12 -17
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ function FilteredIds({ Ids, onCancelClick, isShown, cardNumber }) {
|
|
|
8
8
|
var _a;
|
|
9
9
|
if (!isShown)
|
|
10
10
|
return null;
|
|
11
|
-
return (_jsxs(FilteredIdsContainer, Object.assign({ isLongerString: ((_a = cardNumber === null || cardNumber === void 0 ? void 0 : cardNumber.length) !== null && _a !== void 0 ? _a : 0) > 11 }, { children: [cardNumber ? _jsx(StyledFilterName, { children: cardNumber }) : _jsx("span", { children: Ids === null || Ids === void 0 ? void 0 : Ids.join(',') }), _jsx(StyledBadge, Object.assign({ pointer: true, round: true, onClick: onCancelClick, variant: BadgeVariants.ACTIVE
|
|
11
|
+
return (_jsxs(FilteredIdsContainer, Object.assign({ centered: !!cardNumber, isLongerString: ((_a = cardNumber === null || cardNumber === void 0 ? void 0 : cardNumber.length) !== null && _a !== void 0 ? _a : 0) > 11 }, { children: [cardNumber ? _jsx(StyledFilterName, { children: cardNumber }) : _jsx("span", { children: Ids === null || Ids === void 0 ? void 0 : Ids.join(',') }), _jsx(StyledBadge, Object.assign({ pointer: true, round: true, onClick: onCancelClick, variant: BadgeVariants.ACTIVE }, { children: _jsx("img", { src: whiteCloseIcon, alt: "close", style: {
|
|
12
12
|
width: '8px',
|
|
13
13
|
height: '7px',
|
|
14
14
|
} }) }))] })));
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
interface FilteredIdsContainerProps {
|
|
3
|
+
centered: boolean;
|
|
3
4
|
isLongerString: boolean;
|
|
4
5
|
}
|
|
5
6
|
export declare const FilteredIdsContainer: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { Box, styled } from '@mui/material';
|
|
2
2
|
export const FilteredIdsContainer = styled(Box, {
|
|
3
|
-
shouldForwardProp: (props) => props !== 'isLongerString',
|
|
4
|
-
})(({ theme, isLongerString }) => ({
|
|
3
|
+
shouldForwardProp: (props) => props !== 'centered' && props !== 'isLongerString',
|
|
4
|
+
})(({ theme, centered, isLongerString }) => ({
|
|
5
5
|
display: 'flex',
|
|
6
|
-
justifyContent: '
|
|
6
|
+
justifyContent: centered ? 'space-between' : 'flex-start',
|
|
7
7
|
alignItems: 'center',
|
|
8
|
-
|
|
8
|
+
paddingRight: theme.spacing(1.3),
|
|
9
|
+
paddingLeft: theme.spacing(3),
|
|
9
10
|
height: '32px',
|
|
10
11
|
background: theme.palette.background.gradient.shadedBlue,
|
|
11
12
|
color: theme.palette.common.white,
|
|
@@ -5,7 +5,6 @@ export const StyledFormControlLabel = styled(FormControlLabel, {
|
|
|
5
5
|
})(({ size = 'small', showHoverEffects = true, labelSx }) => (Object.assign(Object.assign({ margin: '0', width: '100%', cursor: 'pointer', padding: size === 'small' ? '7.5px 16px 7.5px 8px' : size === 'medium' ? '9px 16px 9px 10px' : '11px 16px 11px 12px', maxHeight: size === 'small' ? '35px' : size === 'medium' ? '40px' : '45px' }, (showHoverEffects && {
|
|
6
6
|
'&:hover': {
|
|
7
7
|
boxShadow: '0px 0px 16px 0px #00000021',
|
|
8
|
-
borderLeft: '1px solid transparent',
|
|
9
8
|
},
|
|
10
9
|
})), { '& .MuiFormControlLabel-label': Object.assign({ fontSize: size === 'small' ? '11px' : size === 'medium' ? '13px' : '15px', fontWeight: '500', color: '#20232B', width: '100%', cursor: 'pointer' }, labelSx), '& .MuiRadio-root': {
|
|
11
10
|
cursor: 'pointer',
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
type SourceIconProps = {
|
|
2
2
|
source: string;
|
|
3
3
|
isTextShown?: boolean;
|
|
4
4
|
title?: string;
|
|
5
|
-
|
|
5
|
+
width?: number | string;
|
|
6
|
+
height?: number | string;
|
|
7
|
+
};
|
|
8
|
+
export declare function SourceIcon({ source, isTextShown, title, width, height }: SourceIconProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -4,10 +4,10 @@ import { useTranslation } from 'react-i18next';
|
|
|
4
4
|
import Tooltip from '../../../Tooltip';
|
|
5
5
|
import { getPaymentMethodsIcon } from '../../../../constants/index.js';
|
|
6
6
|
import { StyledBadgeTextWrapper, StyledSourceImage, TextLabel } from '../style';
|
|
7
|
-
export function SourceIcon({ source, isTextShown, title }) {
|
|
7
|
+
export function SourceIcon({ source, isTextShown, title, width, height }) {
|
|
8
8
|
const { t } = useTranslation();
|
|
9
9
|
const ImageSrc = getPaymentMethodsIcon(source);
|
|
10
|
-
return (_jsx(Tooltip, Object.assign({ title: title }, { children: isTextShown ? (_jsx(StyledBadgeTextWrapper, Object.assign({ "data-testid": "SourceCell_BadgeTextWrapper" }, { children: _jsx(TextLabel, Object.assign({ "data-testid": "SourceCell_TextLabel", "data-source": source }, { children: t(camelCase(source)) })) }))) : (_jsx(StyledSourceImage, { src: ImageSrc, alt: source, onError: (e) => {
|
|
10
|
+
return (_jsx(Tooltip, Object.assign({ title: title }, { children: isTextShown ? (_jsx(StyledBadgeTextWrapper, Object.assign({ "data-testid": "SourceCell_BadgeTextWrapper" }, { children: _jsx(TextLabel, Object.assign({ "data-testid": "SourceCell_TextLabel", "data-source": source }, { children: t(camelCase(source)) })) }))) : (_jsx(StyledSourceImage, { src: ImageSrc, alt: source, width: width, height: height, onError: (e) => {
|
|
11
11
|
e.currentTarget.src = getPaymentMethodsIcon('card');
|
|
12
12
|
} })) })));
|
|
13
13
|
}
|
|
@@ -19,5 +19,5 @@ import IconWithBadge from '../../../IconWithBadge';
|
|
|
19
19
|
export default function BrandsCell(_a) {
|
|
20
20
|
var { brand, verificationStatus, hideStatus } = _a, props = __rest(_a, ["brand", "verificationStatus", "hideStatus"]);
|
|
21
21
|
const icon = verificationIcon[verificationStatus !== null && verificationStatus !== void 0 ? verificationStatus : 'incomplete'];
|
|
22
|
-
return (_jsx(TableCell, Object.assign({}, props, { children: _jsx(BrandsWrapper, Object.assign({ sx: { cursor: props.onClick ? 'pointer' : 'default' } }, { children: _jsx(Tooltip, Object.assign({ title: brand.name }, { children: _jsxs(Box, Object.assign({ display: "flex", alignItems: "center", gap: '5px', sx: { overflow: 'hidden', width: '100%' } }, { children: [_jsx(IconWithBadge, { mainIcon: brand.logo, mainIconSize: 16, containerSize: 16, borderColor: "transparent" }), _jsx(Label, Object.assign({ sx: Object.assign({}, (!brand.name && { color: '#B1B1B1' })) }, { children: brand.name || 'Not Available' })), !hideStatus && (_jsx(IconWithBadge, { mainIcon: icon, mainIconSize:
|
|
22
|
+
return (_jsx(TableCell, Object.assign({}, props, { children: _jsx(BrandsWrapper, Object.assign({ sx: { cursor: props.onClick ? 'pointer' : 'default' } }, { children: _jsx(Tooltip, Object.assign({ title: brand.name }, { children: _jsxs(Box, Object.assign({ display: "flex", alignItems: "center", gap: '5px', sx: { overflow: 'hidden', width: '100%' } }, { children: [_jsx(IconWithBadge, { mainIcon: brand.logo, mainIconSize: 16, containerSize: 16, borderColor: "transparent" }), _jsx(Label, Object.assign({ sx: Object.assign({}, (!brand.name && { color: '#B1B1B1' })) }, { children: brand.name || 'Not Available' })), !hideStatus && (_jsx(IconWithBadge, { mainIcon: icon, mainIconSize: 16, containerSize: 16, borderColor: "transparent", containerSx: { marginLeft: 'auto' } }))] })) })) })) })));
|
|
23
23
|
}
|
|
@@ -17,5 +17,5 @@ import Tooltip from '../../../Tooltip';
|
|
|
17
17
|
export default function IndividualsCell(_a) {
|
|
18
18
|
var { id, status, count, name } = _a, props = __rest(_a, ["id", "status", "count", "name"]);
|
|
19
19
|
const icon = verificationIcons[status !== null && status !== void 0 ? status : 'incomplete'];
|
|
20
|
-
return (_jsx(TableCell, Object.assign({}, props, { sx: { cursor: 'pointer' } }, { children: _jsx(IndividualsWrapper, { children: id ? (_jsxs(IndividualContainer, { children: [_jsx(Tooltip, Object.assign({ title: name }, { children: _jsx(IndividualName, { children: id }) })), _jsxs(VerificationContainer, { children: [_jsx(VerificationIcon, { src: icon }), count >
|
|
20
|
+
return (_jsx(TableCell, Object.assign({}, props, { sx: { cursor: 'pointer' } }, { children: _jsx(IndividualsWrapper, { children: id ? (_jsxs(IndividualContainer, { children: [_jsx(Tooltip, Object.assign({ title: name }, { children: _jsx(IndividualName, { children: id }) })), _jsxs(VerificationContainer, { children: [_jsx(VerificationIcon, { src: icon }), count > 1 && (_jsx("div", { children: _jsxs(Count, { children: ["+", count] }) }))] })] })) : (_jsx(EmptyCell, { children: "Not Available" })) }) })));
|
|
21
21
|
}
|
package/build/components/TableCells/CustomCells/TerminalsPlatformCell/TerminalsPlatformCell.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { StackProps } from '@mui/material/Stack';
|
|
2
3
|
import { TextAndLang } from '../../../../types/index.js';
|
|
3
|
-
type TerminalsPlatformCellProps = {
|
|
4
|
+
type TerminalsPlatformCellProps = StackProps & {
|
|
4
5
|
name: TextAndLang[];
|
|
5
6
|
icon?: React.ReactNode;
|
|
6
7
|
displayRules?: {
|
|
@@ -8,5 +9,5 @@ type TerminalsPlatformCellProps = {
|
|
|
8
9
|
showLabel?: boolean;
|
|
9
10
|
};
|
|
10
11
|
};
|
|
11
|
-
declare const _default: import("react").MemoExoticComponent<({ name, icon, displayRules }: TerminalsPlatformCellProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
12
|
+
declare const _default: import("react").MemoExoticComponent<({ name, icon, displayRules, ...props }: TerminalsPlatformCellProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
12
13
|
export default _default;
|
package/build/components/TableCells/CustomCells/TerminalsPlatformCell/TerminalsPlatformCell.js
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
2
|
+
var t = {};
|
|
3
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
4
|
+
t[p] = s[p];
|
|
5
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
6
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
7
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
8
|
+
t[p[i]] = s[p[i]];
|
|
9
|
+
}
|
|
10
|
+
return t;
|
|
11
|
+
};
|
|
1
12
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
13
|
import { memo } from 'react';
|
|
3
14
|
import { useTranslation } from 'react-i18next';
|
|
@@ -6,7 +17,8 @@ import Typography from '@mui/material/Typography';
|
|
|
6
17
|
import Box from '@mui/material/Box';
|
|
7
18
|
import { Chip, Tooltip } from '../../../index.js';
|
|
8
19
|
import { getNameText } from '../../../../utils/index.js';
|
|
9
|
-
const TerminalsPlatformCell = (
|
|
20
|
+
const TerminalsPlatformCell = (_a) => {
|
|
21
|
+
var { name, icon, displayRules } = _a, props = __rest(_a, ["name", "icon", "displayRules"]);
|
|
10
22
|
const { i18n } = useTranslation();
|
|
11
23
|
const { showIcon = true, showLabel = true } = displayRules || {};
|
|
12
24
|
const platformName = getNameText(name, i18n.language);
|
|
@@ -14,6 +26,6 @@ const TerminalsPlatformCell = ({ name, icon, displayRules }) => {
|
|
|
14
26
|
const displayLabel = showLabel || !!platformName;
|
|
15
27
|
if (!displayIcon && !displayLabel)
|
|
16
28
|
return null;
|
|
17
|
-
return (_jsxs(Stack, Object.assign({ "data-testid": "TerminalsPlatformCell", direction: "row", alignItems: "center", spacing: 1, color: "text.primary" }, { children: [displayIcon && (_jsx(Chip, Object.assign({ variant: "circular", sx: { '&.CustomVariant_circular': { minWidth: 32, height: 32 } } }, { children: icon }))), displayLabel && (_jsx(Tooltip, Object.assign({ title: platformName }, { children: _jsx(Typography, Object.assign({ noWrap: true, fontSize: 12, fontWeight: 500 }, { children: platformName || (_jsx(Box, Object.assign({ component: "span", sx: { opacity: 0.2 } }, { children: "Unavailable" }))) })) })))] })));
|
|
29
|
+
return (_jsxs(Stack, Object.assign({ "data-testid": "TerminalsPlatformCell", direction: "row", alignItems: "center", spacing: 1, color: "text.primary" }, props, { children: [displayIcon && (_jsx(Chip, Object.assign({ variant: "circular", sx: { '&.CustomVariant_circular': { minWidth: 32, height: 32 } } }, { children: icon }))), displayLabel && (_jsx(Tooltip, Object.assign({ title: platformName }, { children: _jsx(Typography, Object.assign({ noWrap: true, fontSize: 12, fontWeight: 500 }, { children: platformName || (_jsx(Box, Object.assign({ component: "span", sx: { opacity: 0.2 } }, { children: "Unavailable" }))) })) })))] })));
|
|
18
30
|
};
|
|
19
31
|
export default memo(TerminalsPlatformCell);
|
|
@@ -534,3 +534,7 @@ export declare const gradientSettings: string;
|
|
|
534
534
|
export declare const gradientWallet: string;
|
|
535
535
|
export declare const manyCurrencyCoin: string;
|
|
536
536
|
export declare const manyCurrencyCoinGradient: string;
|
|
537
|
+
export declare const blackMobileBatteryIcon: string;
|
|
538
|
+
export declare const blackMobileSignalIcon: string;
|
|
539
|
+
export declare const emptyMobileWifiIcon: string;
|
|
540
|
+
export declare const deemaWithLabel: string;
|
|
@@ -538,3 +538,7 @@ export const gradientSettings = `${lightUrl}/gradientSettings.svg`;
|
|
|
538
538
|
export const gradientWallet = `${lightUrl}/gradientWallet.svg`;
|
|
539
539
|
export const manyCurrencyCoin = `${lightUrl}/manyCurrencyCoin.svg`;
|
|
540
540
|
export const manyCurrencyCoinGradient = `${lightUrl}/manyCurrencyCoinGradient.svg`;
|
|
541
|
+
export const blackMobileBatteryIcon = `${lightUrl}/blackMobileBatteryIcon.svg`;
|
|
542
|
+
export const blackMobileSignalIcon = `${lightUrl}/blackMobileSignalIcon.svg`;
|
|
543
|
+
export const emptyMobileWifiIcon = `${lightUrl}/emptyMobileWifiIcon.svg`;
|
|
544
|
+
export const deemaWithLabel = `${lightUrl}/deemaWithLabel.svg`;
|
|
@@ -5,19 +5,19 @@ export declare const merchantsTableCellWidth: {
|
|
|
5
5
|
readonly sheet: "225px";
|
|
6
6
|
};
|
|
7
7
|
readonly entity: {
|
|
8
|
-
readonly default: "
|
|
8
|
+
readonly default: "150px";
|
|
9
9
|
readonly text: "180px";
|
|
10
10
|
readonly sheet: "180px";
|
|
11
11
|
};
|
|
12
12
|
readonly created: {
|
|
13
|
-
readonly default: "
|
|
13
|
+
readonly default: "170px";
|
|
14
14
|
readonly text: "170px";
|
|
15
15
|
readonly sheet: "170px";
|
|
16
16
|
};
|
|
17
17
|
readonly brands: {
|
|
18
|
-
readonly default: "
|
|
19
|
-
readonly text: "
|
|
20
|
-
readonly sheet: "
|
|
18
|
+
readonly default: "116px";
|
|
19
|
+
readonly text: "120px";
|
|
20
|
+
readonly sheet: "120px";
|
|
21
21
|
};
|
|
22
22
|
readonly marketplace: {
|
|
23
23
|
readonly default: "110px";
|
|
@@ -25,9 +25,9 @@ export declare const merchantsTableCellWidth: {
|
|
|
25
25
|
readonly sheet: "110px";
|
|
26
26
|
};
|
|
27
27
|
readonly individuals: {
|
|
28
|
-
readonly default: "
|
|
29
|
-
readonly text: "
|
|
30
|
-
readonly sheet: "
|
|
28
|
+
readonly default: "116px";
|
|
29
|
+
readonly text: "120px";
|
|
30
|
+
readonly sheet: "120px";
|
|
31
31
|
};
|
|
32
32
|
readonly segments: {
|
|
33
33
|
readonly default: "70px";
|
|
@@ -35,17 +35,17 @@ export declare const merchantsTableCellWidth: {
|
|
|
35
35
|
readonly sheet: "180px";
|
|
36
36
|
};
|
|
37
37
|
readonly psp: {
|
|
38
|
-
readonly default: "
|
|
38
|
+
readonly default: "60px";
|
|
39
39
|
readonly text: "180px";
|
|
40
40
|
readonly sheet: "180px";
|
|
41
41
|
};
|
|
42
42
|
readonly status: {
|
|
43
|
-
readonly default: "
|
|
43
|
+
readonly default: "80px";
|
|
44
44
|
readonly text: "100px";
|
|
45
45
|
readonly sheet: "100px";
|
|
46
46
|
};
|
|
47
47
|
readonly partners: {
|
|
48
|
-
readonly default: "
|
|
48
|
+
readonly default: "75px";
|
|
49
49
|
readonly text: "100px";
|
|
50
50
|
readonly sheet: "100px";
|
|
51
51
|
};
|
|
@@ -65,13 +65,8 @@ export declare const merchantsTableCellWidth: {
|
|
|
65
65
|
readonly sheet: "180px";
|
|
66
66
|
};
|
|
67
67
|
readonly channels: {
|
|
68
|
-
readonly default: "
|
|
68
|
+
readonly default: "110px";
|
|
69
69
|
readonly text: "120px";
|
|
70
70
|
readonly sheet: "120px";
|
|
71
71
|
};
|
|
72
|
-
readonly merchant: {
|
|
73
|
-
readonly default: "175px";
|
|
74
|
-
readonly text: "180px";
|
|
75
|
-
readonly sheet: "180px";
|
|
76
|
-
};
|
|
77
72
|
};
|
|
@@ -5,19 +5,19 @@ export const merchantsTableCellWidth = {
|
|
|
5
5
|
sheet: '225px',
|
|
6
6
|
},
|
|
7
7
|
entity: {
|
|
8
|
-
default: '
|
|
8
|
+
default: '150px',
|
|
9
9
|
text: '180px',
|
|
10
10
|
sheet: '180px',
|
|
11
11
|
},
|
|
12
12
|
created: {
|
|
13
|
-
default: '
|
|
13
|
+
default: '170px',
|
|
14
14
|
text: '170px',
|
|
15
15
|
sheet: '170px',
|
|
16
16
|
},
|
|
17
17
|
brands: {
|
|
18
|
-
default: '
|
|
19
|
-
text: '
|
|
20
|
-
sheet: '
|
|
18
|
+
default: '116px',
|
|
19
|
+
text: '120px',
|
|
20
|
+
sheet: '120px',
|
|
21
21
|
},
|
|
22
22
|
marketplace: {
|
|
23
23
|
default: '110px',
|
|
@@ -25,9 +25,9 @@ export const merchantsTableCellWidth = {
|
|
|
25
25
|
sheet: '110px',
|
|
26
26
|
},
|
|
27
27
|
individuals: {
|
|
28
|
-
default: '
|
|
29
|
-
text: '
|
|
30
|
-
sheet: '
|
|
28
|
+
default: '116px',
|
|
29
|
+
text: '120px',
|
|
30
|
+
sheet: '120px',
|
|
31
31
|
},
|
|
32
32
|
segments: {
|
|
33
33
|
default: '70px',
|
|
@@ -35,17 +35,17 @@ export const merchantsTableCellWidth = {
|
|
|
35
35
|
sheet: '180px',
|
|
36
36
|
},
|
|
37
37
|
psp: {
|
|
38
|
-
default: '
|
|
38
|
+
default: '60px',
|
|
39
39
|
text: '180px',
|
|
40
40
|
sheet: '180px',
|
|
41
41
|
},
|
|
42
42
|
status: {
|
|
43
|
-
default: '
|
|
43
|
+
default: '80px',
|
|
44
44
|
text: '100px',
|
|
45
45
|
sheet: '100px',
|
|
46
46
|
},
|
|
47
47
|
partners: {
|
|
48
|
-
default: '
|
|
48
|
+
default: '75px',
|
|
49
49
|
text: '100px',
|
|
50
50
|
sheet: '100px',
|
|
51
51
|
},
|
|
@@ -65,13 +65,8 @@ export const merchantsTableCellWidth = {
|
|
|
65
65
|
sheet: '180px',
|
|
66
66
|
},
|
|
67
67
|
channels: {
|
|
68
|
-
default: '
|
|
68
|
+
default: '110px',
|
|
69
69
|
text: '120px',
|
|
70
70
|
sheet: '120px',
|
|
71
71
|
},
|
|
72
|
-
merchant: {
|
|
73
|
-
default: '175px',
|
|
74
|
-
text: '180px',
|
|
75
|
-
sheet: '180px',
|
|
76
|
-
},
|
|
77
72
|
};
|
package/package.json
CHANGED