@tap-payments/os-micro-frontend-shared 0.1.183-test.7 → 0.1.183
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/Chip/style.d.ts +1 -0
- package/build/components/CountBadge/style.d.ts +1 -0
- package/build/components/Dialog/style.d.ts +1 -0
- package/build/components/FlippingCard/style.d.ts +1 -0
- package/build/components/ImageWrapper/ImageWrapper.d.ts +1 -0
- package/build/components/JSONViewer/style.d.ts +1 -0
- package/build/components/LeftPeekRightExpandingChip/style.d.ts +1 -0
- package/build/components/RightLeftExpandingCenterChip/style.d.ts +1 -0
- package/build/components/SearchButton/styles.d.ts +1 -0
- package/build/components/StatusChip/style.js +1 -1
- package/build/components/StatusIcons/AuthIcons/style.d.ts +1 -0
- package/build/components/StatusIcons/AuthorizationAutoIcons/style.d.ts +1 -0
- package/build/components/StatusIcons/ChargeStatusIcon/style.d.ts +1 -0
- package/build/components/StatusIcons/SourceIcons/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/ActionCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/ApplicationStatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/AuthenticationCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/AuthenticationStatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/AuthenticationTypeCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/BalanceCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/ChannelsCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/CheckoutStatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/DestinationStatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/DueDateCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/IDButton/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/IntentsStatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/PayoutStatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/ProductsCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/ReferenceCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/RefundChargeCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/RefundStatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/SalesChannelCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/SegmentsCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/SourceCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/StatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/TokenStatusCell/style.d.ts +1 -0
- package/build/components/TableCells/CustomCells/style.d.ts +1 -0
- package/build/components/VirtualTables/components/style.d.ts +1 -0
- package/build/constants/assets.d.ts +2 -0
- package/build/constants/assets.js +2 -0
- package/build/constants/table/cell/merchantsTableCellWidth.d.ts +4 -74
- package/build/constants/table/cell/merchantsTableCellWidth.js +4 -74
- package/package.json +3 -3
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
import { GetSourceAnimationFunction } from './type';
|
|
3
4
|
export declare const ChipStyled: import("@emotion/styled").StyledComponent<import("react").RefAttributes<unknown> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
4
5
|
variant?: import("./type").ChipVariant | undefined;
|
|
@@ -3,7 +3,7 @@ import { styled } from '@mui/material/styles';
|
|
|
3
3
|
export const ChipStyled = styled(Box, {
|
|
4
4
|
shouldForwardProp: (prop) => !['textColor', 'bgColor', 'borderColor', 'disabled', 'minWidth', 'padding', 'maxWidth', 'isSelected', 'disableAnimation'].includes(prop),
|
|
5
5
|
})(({ theme, isSelected, textColor = theme.palette.text.primary, bgColor = '#EFF1F2', borderColor = '#EFF1F2', disabled = false, padding, minWidth, maxWidth, disableAnimation, }) => {
|
|
6
|
-
return Object.assign(Object.assign({ display: 'flex', justifyContent: 'center', alignItems: 'center', gap: '4px', height: '18px', padding: padding || '0px
|
|
6
|
+
return Object.assign(Object.assign({ display: 'flex', justifyContent: 'center', alignItems: 'center', gap: '4px', height: '18px', padding: padding || '0px 9.5px', borderRadius: '30px', border: `1px solid ${borderColor}`, backgroundColor: bgColor, color: textColor, cursor: disabled ? 'not-allowed' : 'pointer', opacity: disabled ? 0.5 : 1, whiteSpace: 'nowrap', fontSize: '11px', minWidth: minWidth || '67px', maxWidth: maxWidth || 'none', width: 'fit-content', overflow: 'hidden', textOverflow: maxWidth ? 'ellipsis' : 'unset', boxSizing: 'border-box' }, (isSelected && {
|
|
7
7
|
boxShadow: 'white 7px 0px 8px 2px',
|
|
8
8
|
})), (disableAnimation && {
|
|
9
9
|
transition: 'none !important',
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3
4
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
4
5
|
export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3
4
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
4
5
|
export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
import { TableMode } from '../../../../types/index.js';
|
|
3
4
|
export declare const ActionCellContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
|
|
4
5
|
tableMode?: TableMode | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const StyledAppsCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3
4
|
export declare const AppsStatusContainer: import("@emotion/styled").StyledComponent<{
|
|
4
5
|
hidden?: boolean | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const AuthIcon: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
3
4
|
export declare const AuthCellContainer: import("@emotion/styled").StyledComponent<{
|
|
4
5
|
hidden?: boolean | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3
4
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
4
5
|
export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3
4
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
4
5
|
export declare const ReferenceSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3
4
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
4
5
|
export declare const SalesChannelsContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3
4
|
export declare const ReferenceSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
4
5
|
hidden?: boolean | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
3
4
|
export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
|
|
4
5
|
export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
/// <reference types="react" />
|
|
2
3
|
export declare const GeographyBox: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
|
|
3
4
|
variant?: "Global" | "Regional" | "Local" | undefined;
|
|
4
5
|
}, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare const lightUrl: string;
|
|
2
2
|
export declare const appBaseUrl: string;
|
|
3
3
|
export declare const functionBaseUrl: string;
|
|
4
|
+
export declare const videosUrl: string;
|
|
4
5
|
export declare const getLightUrlIcon: (source: string) => string;
|
|
5
6
|
export declare const getPaymentMethodsIcon: (source: string) => string;
|
|
6
7
|
export declare const getPaymentIssuersIcon: (source: string) => string;
|
|
@@ -551,3 +552,4 @@ export declare const deactivatedOrangeCircle: string;
|
|
|
551
552
|
export declare const exclamationOutlinedOrangeCircle: string;
|
|
552
553
|
export declare const activeGreenIcon: string;
|
|
553
554
|
export declare const inActiveGreyIcon: string;
|
|
555
|
+
export declare const terminalLinkVideo: string;
|
|
@@ -2,6 +2,7 @@ const cdnUrl = 'https://cdn.tap.company/tap-assets';
|
|
|
2
2
|
export const lightUrl = `${cdnUrl}/icons/dashboard/light`;
|
|
3
3
|
export const appBaseUrl = `${lightUrl}/other`;
|
|
4
4
|
export const functionBaseUrl = `${lightUrl}/function`;
|
|
5
|
+
export const videosUrl = `${cdnUrl}/videos`;
|
|
5
6
|
// Icons getters
|
|
6
7
|
export const getLightUrlIcon = (source) => `${lightUrl}/${source}.svg`;
|
|
7
8
|
export const getPaymentMethodsIcon = (source) => `${lightUrl}/payment-method/v2/${source}.svg`;
|
|
@@ -559,3 +560,4 @@ export const deactivatedOrangeCircle = `${lightUrl}/deactivatedOrangeCircle.svg`
|
|
|
559
560
|
export const exclamationOutlinedOrangeCircle = `${lightUrl}/exclamationOutlinedOrangeCircle.svg`;
|
|
560
561
|
export const activeGreenIcon = `${lightUrl}/activeGreenIcon.svg`;
|
|
561
562
|
export const inActiveGreyIcon = `${lightUrl}/inActiveGreyIcon.svg`;
|
|
563
|
+
export const terminalLinkVideo = `${videosUrl}/terminal_link.mp4`;
|
|
@@ -4,80 +4,10 @@ export declare const merchantsTableCellWidth: {
|
|
|
4
4
|
readonly text: "225px";
|
|
5
5
|
readonly sheet: "225px";
|
|
6
6
|
};
|
|
7
|
-
readonly lead_id: {
|
|
8
|
-
readonly default: "180px";
|
|
9
|
-
readonly text: "180px";
|
|
10
|
-
readonly sheet: "225px";
|
|
11
|
-
};
|
|
12
|
-
readonly merchant_id: {
|
|
13
|
-
readonly default: "180px";
|
|
14
|
-
readonly text: "180px";
|
|
15
|
-
readonly sheet: "260px";
|
|
16
|
-
};
|
|
17
|
-
readonly brand_id: {
|
|
18
|
-
readonly default: "180px";
|
|
19
|
-
readonly text: "180px";
|
|
20
|
-
readonly sheet: "225px";
|
|
21
|
-
};
|
|
22
|
-
readonly individual_email: {
|
|
23
|
-
readonly default: "180px";
|
|
24
|
-
readonly text: "180px";
|
|
25
|
-
readonly sheet: "151px";
|
|
26
|
-
};
|
|
27
|
-
readonly personal_id_type: {
|
|
28
|
-
readonly default: "180px";
|
|
29
|
-
readonly text: "180px";
|
|
30
|
-
readonly sheet: "126px";
|
|
31
|
-
};
|
|
32
|
-
readonly wallet_currency: {
|
|
33
|
-
readonly default: "180px";
|
|
34
|
-
readonly text: "180px";
|
|
35
|
-
readonly sheet: "140px";
|
|
36
|
-
};
|
|
37
|
-
readonly wallet_id: {
|
|
38
|
-
readonly default: "180px";
|
|
39
|
-
readonly text: "180px";
|
|
40
|
-
readonly sheet: "235px";
|
|
41
|
-
};
|
|
42
|
-
readonly business_id: {
|
|
43
|
-
readonly default: "180px";
|
|
44
|
-
readonly text: "180px";
|
|
45
|
-
readonly sheet: "193px";
|
|
46
|
-
};
|
|
47
|
-
readonly board_id: {
|
|
48
|
-
readonly default: "180px";
|
|
49
|
-
readonly text: "180px";
|
|
50
|
-
readonly sheet: "219px";
|
|
51
|
-
};
|
|
52
|
-
readonly history: {
|
|
53
|
-
readonly default: "180px";
|
|
54
|
-
readonly text: "180px";
|
|
55
|
-
readonly sheet: "130px";
|
|
56
|
-
};
|
|
57
|
-
readonly bank_account: {
|
|
58
|
-
readonly default: "180px";
|
|
59
|
-
readonly text: "180px";
|
|
60
|
-
readonly sheet: "110px";
|
|
61
|
-
};
|
|
62
|
-
readonly individual_phone_number: {
|
|
63
|
-
readonly default: "180px";
|
|
64
|
-
readonly text: "180px";
|
|
65
|
-
readonly sheet: "175px";
|
|
66
|
-
};
|
|
67
|
-
readonly entity_legal_name: {
|
|
68
|
-
readonly default: "180px";
|
|
69
|
-
readonly text: "180px";
|
|
70
|
-
readonly sheet: "192px";
|
|
71
|
-
};
|
|
72
|
-
readonly entity_id: {
|
|
73
|
-
readonly default: "180px";
|
|
74
|
-
readonly text: "180px";
|
|
75
|
-
readonly sheet: "225px";
|
|
76
|
-
};
|
|
77
7
|
readonly entity: {
|
|
78
8
|
readonly default: "137px";
|
|
79
9
|
readonly text: "180px";
|
|
80
|
-
readonly sheet: "
|
|
10
|
+
readonly sheet: "235px";
|
|
81
11
|
};
|
|
82
12
|
readonly created: {
|
|
83
13
|
readonly default: "144px";
|
|
@@ -87,7 +17,7 @@ export declare const merchantsTableCellWidth: {
|
|
|
87
17
|
readonly brands: {
|
|
88
18
|
readonly default: "131px";
|
|
89
19
|
readonly text: "140px";
|
|
90
|
-
readonly sheet: "
|
|
20
|
+
readonly sheet: "170px";
|
|
91
21
|
};
|
|
92
22
|
readonly marketplace: {
|
|
93
23
|
readonly default: "110px";
|
|
@@ -97,7 +27,7 @@ export declare const merchantsTableCellWidth: {
|
|
|
97
27
|
readonly individuals: {
|
|
98
28
|
readonly default: "147px";
|
|
99
29
|
readonly text: "185px";
|
|
100
|
-
readonly sheet: "
|
|
30
|
+
readonly sheet: "200px";
|
|
101
31
|
};
|
|
102
32
|
readonly segments: {
|
|
103
33
|
readonly default: "70px";
|
|
@@ -142,6 +72,6 @@ export declare const merchantsTableCellWidth: {
|
|
|
142
72
|
readonly merchant: {
|
|
143
73
|
readonly default: "175px";
|
|
144
74
|
readonly text: "180px";
|
|
145
|
-
readonly sheet: "
|
|
75
|
+
readonly sheet: "235px";
|
|
146
76
|
};
|
|
147
77
|
};
|
|
@@ -4,80 +4,10 @@ export const merchantsTableCellWidth = {
|
|
|
4
4
|
text: '225px',
|
|
5
5
|
sheet: '225px',
|
|
6
6
|
},
|
|
7
|
-
lead_id: {
|
|
8
|
-
default: '180px',
|
|
9
|
-
text: '180px',
|
|
10
|
-
sheet: '225px',
|
|
11
|
-
},
|
|
12
|
-
merchant_id: {
|
|
13
|
-
default: '180px',
|
|
14
|
-
text: '180px',
|
|
15
|
-
sheet: '260px',
|
|
16
|
-
},
|
|
17
|
-
brand_id: {
|
|
18
|
-
default: '180px',
|
|
19
|
-
text: '180px',
|
|
20
|
-
sheet: '225px',
|
|
21
|
-
},
|
|
22
|
-
individual_email: {
|
|
23
|
-
default: '180px',
|
|
24
|
-
text: '180px',
|
|
25
|
-
sheet: '151px',
|
|
26
|
-
},
|
|
27
|
-
personal_id_type: {
|
|
28
|
-
default: '180px',
|
|
29
|
-
text: '180px',
|
|
30
|
-
sheet: '126px',
|
|
31
|
-
},
|
|
32
|
-
wallet_currency: {
|
|
33
|
-
default: '180px',
|
|
34
|
-
text: '180px',
|
|
35
|
-
sheet: '140px',
|
|
36
|
-
},
|
|
37
|
-
wallet_id: {
|
|
38
|
-
default: '180px',
|
|
39
|
-
text: '180px',
|
|
40
|
-
sheet: '235px',
|
|
41
|
-
},
|
|
42
|
-
business_id: {
|
|
43
|
-
default: '180px',
|
|
44
|
-
text: '180px',
|
|
45
|
-
sheet: '193px',
|
|
46
|
-
},
|
|
47
|
-
board_id: {
|
|
48
|
-
default: '180px',
|
|
49
|
-
text: '180px',
|
|
50
|
-
sheet: '219px',
|
|
51
|
-
},
|
|
52
|
-
history: {
|
|
53
|
-
default: '180px',
|
|
54
|
-
text: '180px',
|
|
55
|
-
sheet: '130px',
|
|
56
|
-
},
|
|
57
|
-
bank_account: {
|
|
58
|
-
default: '180px',
|
|
59
|
-
text: '180px',
|
|
60
|
-
sheet: '110px',
|
|
61
|
-
},
|
|
62
|
-
individual_phone_number: {
|
|
63
|
-
default: '180px',
|
|
64
|
-
text: '180px',
|
|
65
|
-
sheet: '175px',
|
|
66
|
-
},
|
|
67
|
-
entity_legal_name: {
|
|
68
|
-
default: '180px',
|
|
69
|
-
text: '180px',
|
|
70
|
-
sheet: '192px',
|
|
71
|
-
},
|
|
72
|
-
entity_id: {
|
|
73
|
-
default: '180px',
|
|
74
|
-
text: '180px',
|
|
75
|
-
sheet: '225px',
|
|
76
|
-
},
|
|
77
7
|
entity: {
|
|
78
8
|
default: '137px',
|
|
79
9
|
text: '180px',
|
|
80
|
-
sheet: '
|
|
10
|
+
sheet: '235px',
|
|
81
11
|
},
|
|
82
12
|
created: {
|
|
83
13
|
default: '144px',
|
|
@@ -87,7 +17,7 @@ export const merchantsTableCellWidth = {
|
|
|
87
17
|
brands: {
|
|
88
18
|
default: '131px',
|
|
89
19
|
text: '140px',
|
|
90
|
-
sheet: '
|
|
20
|
+
sheet: '170px',
|
|
91
21
|
},
|
|
92
22
|
marketplace: {
|
|
93
23
|
default: '110px',
|
|
@@ -97,7 +27,7 @@ export const merchantsTableCellWidth = {
|
|
|
97
27
|
individuals: {
|
|
98
28
|
default: '147px',
|
|
99
29
|
text: '185px',
|
|
100
|
-
sheet: '
|
|
30
|
+
sheet: '200px',
|
|
101
31
|
},
|
|
102
32
|
segments: {
|
|
103
33
|
default: '70px',
|
|
@@ -142,6 +72,6 @@ export const merchantsTableCellWidth = {
|
|
|
142
72
|
merchant: {
|
|
143
73
|
default: '175px',
|
|
144
74
|
text: '180px',
|
|
145
|
-
sheet: '
|
|
75
|
+
sheet: '235px',
|
|
146
76
|
},
|
|
147
77
|
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tap-payments/os-micro-frontend-shared",
|
|
3
3
|
"description": "Shared components and utilities for Tap Payments micro frontends",
|
|
4
|
-
"version": "0.1.183
|
|
5
|
-
"testVersion":
|
|
4
|
+
"version": "0.1.183",
|
|
5
|
+
"testVersion": 0,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "build/index.js",
|
|
8
8
|
"module": "build/index.js",
|
|
@@ -163,4 +163,4 @@
|
|
|
163
163
|
"publishConfig": {
|
|
164
164
|
"registry": "https://registry.npmjs.org/"
|
|
165
165
|
}
|
|
166
|
-
}
|
|
166
|
+
}
|