@tap-payments/os-micro-frontend-shared 0.1.111 → 0.1.112
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/StatusIcons/AuthorizationAutoIcons/style.js +1 -1
- package/build/components/TableCells/CustomCells/BalanceCell/style.js +1 -1
- package/build/components/TableCells/CustomCells/ProductsCell/style.js +1 -1
- package/build/components/TableCells/CustomCells/RefundChargeCell/style.js +1 -1
- package/build/components/TableCells/CustomCells/RefundStatusCell/style.js +1 -1
- package/build/components/TableCells/CustomCells/style.js +1 -1
- package/package.json +1 -1
|
@@ -33,7 +33,7 @@ export const PercentageContainer = styled('div')(({ theme, percentage, isCapture
|
|
|
33
33
|
gap: theme.spacing(0.5),
|
|
34
34
|
}));
|
|
35
35
|
export const PiePercentage = styled('div')(({ percentage, isCapture, theme }) => ({
|
|
36
|
-
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}
|
|
36
|
+
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}%, transparent 0.00%)`,
|
|
37
37
|
borderRadius: '50%',
|
|
38
38
|
width: '8.333px',
|
|
39
39
|
height: '8.333px',
|
|
@@ -31,7 +31,7 @@ export const PercentageContainer = styled('div')(({ theme, percentage }) => ({
|
|
|
31
31
|
gap: theme.spacing(0.5),
|
|
32
32
|
}));
|
|
33
33
|
export const PiePercentage = styled('div')(({ percentage, isCapture, theme }) => ({
|
|
34
|
-
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}
|
|
34
|
+
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}%, transparent 0.00%)`,
|
|
35
35
|
borderRadius: '50%',
|
|
36
36
|
width: '8.333px',
|
|
37
37
|
height: '8.333px',
|
|
@@ -34,7 +34,7 @@ export const PercentageContainer = styled('div')(({ theme }) => ({
|
|
|
34
34
|
lineHeight: 0,
|
|
35
35
|
}));
|
|
36
36
|
export const PiePercentage = styled('div')(({ percentage, isCapture, theme }) => ({
|
|
37
|
-
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}
|
|
37
|
+
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}%, transparent 0.00%)`,
|
|
38
38
|
borderRadius: '50%',
|
|
39
39
|
width: '8.333px',
|
|
40
40
|
height: '8.333px',
|
|
@@ -31,7 +31,7 @@ export const PercentageContainer = styled(motion.div)(({ theme, percentage }) =>
|
|
|
31
31
|
minWidth: '44px',
|
|
32
32
|
}));
|
|
33
33
|
export const PiePercentage = styled('div')(({ percentage, isCapture, theme }) => ({
|
|
34
|
-
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}
|
|
34
|
+
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}%, transparent 0.00%)`,
|
|
35
35
|
borderRadius: '50%',
|
|
36
36
|
width: '8.333px',
|
|
37
37
|
height: '8.333px',
|
|
@@ -38,7 +38,7 @@ export const DateContainer = styled(DateCell)(({ theme }) => ({
|
|
|
38
38
|
color: theme.palette.secondary.main,
|
|
39
39
|
}));
|
|
40
40
|
export const PiePercentage = styled('div')(({ percentage, isCapture, theme }) => ({
|
|
41
|
-
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}
|
|
41
|
+
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}%, transparent 0.00%)`,
|
|
42
42
|
borderRadius: '50%',
|
|
43
43
|
width: '8.333px',
|
|
44
44
|
height: '8.333px',
|
|
@@ -136,7 +136,7 @@ export const StatusIcon = styled('img')(() => ({
|
|
|
136
136
|
height: '16px',
|
|
137
137
|
}));
|
|
138
138
|
export const PiePercentage = styled('div')(({ percentage, isCapture, theme }) => ({
|
|
139
|
-
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}
|
|
139
|
+
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}%, transparent 0.00%)`,
|
|
140
140
|
borderRadius: '50%',
|
|
141
141
|
width: '8.333px',
|
|
142
142
|
height: '8.333px',
|
package/package.json
CHANGED