@tap-payments/os-micro-frontend-shared 0.1.70-test.30-test.31 → 0.1.70-test.33
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.
|
@@ -69,6 +69,6 @@ function VoidAutoIcon({ voidPercentage, capturePercentage, voidCount, autoType,
|
|
|
69
69
|
}
|
|
70
70
|
return voidStatus;
|
|
71
71
|
}, [isTextShown, voidStatus, isSheetViewShown, selectionProps]);
|
|
72
|
-
return voidContent ? _jsx("div", Object.assign({ style: { zIndex: 11 } }, { children: voidContent })) : null;
|
|
72
|
+
return voidContent ? _jsx("div", Object.assign({ style: Object.assign({}, (!isSheetViewShown && { zIndex: 11 })) }, { children: voidContent })) : null;
|
|
73
73
|
}
|
|
74
74
|
export default VoidAutoIcon;
|
|
@@ -18,7 +18,7 @@ function StatusCell(_a) {
|
|
|
18
18
|
const statusesFilteredObject = statuses ? getStatusesFilteredObject(statuses) : {};
|
|
19
19
|
const statusesList = Object.values(statusesFilteredObject).filter(Boolean);
|
|
20
20
|
if (tableMode === 'sheet') {
|
|
21
|
-
return (_jsx(TableCell, Object.assign({}, props, { children: _jsx(StatusContainer, { children: statusesList.map((status) => status) }) })));
|
|
21
|
+
return (_jsx(TableCell, Object.assign({}, props, { children: _jsx(StatusContainer, Object.assign({ sx: { paddingRight: '30px' } }, { children: statusesList.map((status) => status) })) })));
|
|
22
22
|
}
|
|
23
23
|
const xGapValue = isTextShown ? xGap || 120 : 40;
|
|
24
24
|
const centerIconIndex = centerIconKey ? Object.entries(statusesFilteredObject).findIndex(([key]) => key === centerIconKey) : 0;
|
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.70-test.
|
|
5
|
-
"testVersion":
|
|
4
|
+
"version": "0.1.70-test.33",
|
|
5
|
+
"testVersion": 33,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "build/index.js",
|
|
8
8
|
"module": "build/index.js",
|