@tap-payments/os-micro-frontend-shared 0.1.412 → 0.1.414
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/VirtualTables/hooks/index.d.ts +1 -0
- package/build/components/VirtualTables/hooks/index.js +1 -0
- package/build/components/VirtualTables/index.d.ts +1 -0
- package/build/components/VirtualTables/index.js +1 -0
- package/build/constants/table/cell/authenticationsTableCellWidth.d.ts +10 -0
- package/build/constants/table/cell/authenticationsTableCellWidth.js +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as useColumnFilter } from './useColumnFilter';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as useColumnFilter } from './useColumnFilter';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import VirtualTable from './VirtualTable/VirtualTable';
|
|
2
2
|
import VirtualTableWithCard from './VirtualTableWithCard/VirtualTableWithCard';
|
|
3
3
|
export * from './components';
|
|
4
|
+
export * from './hooks';
|
|
4
5
|
export * from './SheetViewVirtualTable';
|
|
5
6
|
export { StyledCell } from './components/style';
|
|
6
7
|
export { VirtualTable, VirtualTableWithCard };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import VirtualTable from './VirtualTable/VirtualTable';
|
|
2
2
|
import VirtualTableWithCard from './VirtualTableWithCard/VirtualTableWithCard';
|
|
3
3
|
export * from './components';
|
|
4
|
+
export * from './hooks';
|
|
4
5
|
export * from './SheetViewVirtualTable';
|
|
5
6
|
export { StyledCell } from './components/style';
|
|
6
7
|
export { VirtualTable, VirtualTableWithCard };
|
|
@@ -4,6 +4,16 @@ export declare const authenticationsTableCellWidth: {
|
|
|
4
4
|
readonly text: "180px";
|
|
5
5
|
readonly sheet: "180px";
|
|
6
6
|
};
|
|
7
|
+
readonly merchant: {
|
|
8
|
+
readonly default: "115px";
|
|
9
|
+
readonly text: "150px";
|
|
10
|
+
readonly sheet: "138px";
|
|
11
|
+
};
|
|
12
|
+
readonly brand: {
|
|
13
|
+
readonly default: "125px";
|
|
14
|
+
readonly text: "116px";
|
|
15
|
+
readonly sheet: "116px";
|
|
16
|
+
};
|
|
7
17
|
readonly payouts: {
|
|
8
18
|
readonly default: "150px";
|
|
9
19
|
readonly text: "250px";
|
|
@@ -4,6 +4,16 @@ export const authenticationsTableCellWidth = {
|
|
|
4
4
|
text: '180px',
|
|
5
5
|
sheet: '180px',
|
|
6
6
|
},
|
|
7
|
+
merchant: {
|
|
8
|
+
default: '115px',
|
|
9
|
+
text: '150px',
|
|
10
|
+
sheet: '138px',
|
|
11
|
+
},
|
|
12
|
+
brand: {
|
|
13
|
+
default: '125px',
|
|
14
|
+
text: '116px',
|
|
15
|
+
sheet: '116px',
|
|
16
|
+
},
|
|
7
17
|
payouts: {
|
|
8
18
|
default: '150px',
|
|
9
19
|
text: '250px',
|
package/package.json
CHANGED