@tap-payments/os-micro-frontend-shared 0.1.303 → 0.1.305
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/Customer/CustomerDropdown/index.d.ts +1 -1
- package/build/components/TableCells/CustomCells/style.js +2 -2
- package/build/constants/table/cell/authenticationsTableCellWidth.d.ts +5 -0
- package/build/constants/table/cell/authenticationsTableCellWidth.js +5 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default, CustomerDropdownProps } from './CustomerDropdown';
|
|
1
|
+
export { default, type CustomerDropdownProps } from './CustomerDropdown';
|
|
@@ -128,8 +128,8 @@ export const StatusIconWrapper = styled('span')(() => ({
|
|
|
128
128
|
flexShrink: 0,
|
|
129
129
|
}));
|
|
130
130
|
export const StatusIcon = styled('img')(() => ({
|
|
131
|
-
width: '
|
|
132
|
-
height: '
|
|
131
|
+
width: '36px',
|
|
132
|
+
height: '24px',
|
|
133
133
|
}));
|
|
134
134
|
export const PiePercentage = styled('div')(({ percentage, isCapture, theme }) => ({
|
|
135
135
|
background: `conic-gradient(${isCapture ? theme.palette.info.dark : '#656565'} ${percentage}%, transparent 0.00%)`,
|
|
@@ -50,6 +50,11 @@ export declare const authenticationsTableCellWidth: {
|
|
|
50
50
|
readonly sheet: "250px";
|
|
51
51
|
};
|
|
52
52
|
readonly authentication_id: {
|
|
53
|
+
readonly default: "320px";
|
|
54
|
+
readonly text: "320px";
|
|
55
|
+
readonly sheet: "320px";
|
|
56
|
+
};
|
|
57
|
+
readonly charge_id: {
|
|
53
58
|
readonly default: "290px";
|
|
54
59
|
readonly text: "290px";
|
|
55
60
|
readonly sheet: "290px";
|
package/package.json
CHANGED