@tap-payments/os-micro-frontend-shared 0.1.357 → 0.1.358

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.
@@ -117,19 +117,21 @@ export const StatusCellContainer = styled('span')(({ theme }) => ({
117
117
  justifyContent: 'flex-start',
118
118
  gap: theme.spacing(1),
119
119
  }));
120
- export const StatusIconWrapper = styled('span')(() => ({
121
- width: '24px',
120
+ export const StatusIconWrapper = styled('span')(({ theme }) => ({
121
+ width: '36px',
122
122
  height: '24px',
123
- borderRadius: '50%',
124
- backgroundColor: 'transparent',
123
+ borderRadius: '23.1px',
124
+ backgroundColor: theme.palette.common.white,
125
+ border: `1.029px solid ${theme.palette.divider}`,
125
126
  display: 'flex',
126
127
  alignItems: 'center',
127
128
  justifyContent: 'center',
128
129
  flexShrink: 0,
129
130
  }));
130
131
  export const StatusIcon = styled('img')(() => ({
131
- width: '36px',
132
- height: '24px',
132
+ width: '16px',
133
+ height: '16px',
134
+ objectFit: 'contain',
133
135
  }));
134
136
  export const PiePercentage = styled('div')(({ percentage, isCapture, theme }) => ({
135
137
  background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}%, transparent 0.00%)`,
package/package.json CHANGED
@@ -1,7 +1,7 @@
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.357",
4
+ "version": "0.1.358",
5
5
  "testVersion": 0,
6
6
  "type": "module",
7
7
  "main": "build/index.js",