@tap-payments/os-micro-frontend-shared 0.0.65 → 0.0.69-sheetview-container-v1

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.
Files changed (46) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +12 -12
  3. package/build/components/VirtualTable/VirtualTable.d.ts +1 -1
  4. package/build/components/VirtualTable/VirtualTable.js +3 -3
  5. package/build/components/VirtualTable/style.d.ts +3 -1
  6. package/build/components/VirtualTable/style.js +4 -3
  7. package/build/constants/table/cell/authenticationsTableCellWidth.d.ts +11 -0
  8. package/build/constants/table/cell/authenticationsTableCellWidth.js +11 -0
  9. package/build/constants/table/cell/authorizationTableCellWidth.d.ts +32 -0
  10. package/build/constants/table/cell/authorizationTableCellWidth.js +32 -0
  11. package/build/constants/table/cell/chargeTableCellWidth.d.ts +32 -0
  12. package/build/constants/table/cell/chargeTableCellWidth.js +32 -0
  13. package/build/constants/table/cell/destinationsTableCellWidth.d.ts +21 -0
  14. package/build/constants/table/cell/destinationsTableCellWidth.js +21 -0
  15. package/build/constants/table/cell/intentsTableCellWidth.d.ts +6 -0
  16. package/build/constants/table/cell/intentsTableCellWidth.js +6 -0
  17. package/build/constants/table/cell/invoicesTableCellWidth.d.ts +17 -0
  18. package/build/constants/table/cell/invoicesTableCellWidth.js +17 -0
  19. package/build/constants/table/cell/leadsTableCellWidth.d.ts +7 -0
  20. package/build/constants/table/cell/leadsTableCellWidth.js +7 -0
  21. package/build/constants/table/cell/merchantsTableCellWidth.d.ts +11 -0
  22. package/build/constants/table/cell/merchantsTableCellWidth.js +11 -0
  23. package/build/constants/table/cell/ordersTableCellWidth.d.ts +11 -0
  24. package/build/constants/table/cell/ordersTableCellWidth.js +11 -0
  25. package/build/constants/table/cell/payoutsTableCellWidth.d.ts +11 -0
  26. package/build/constants/table/cell/payoutsTableCellWidth.js +11 -0
  27. package/build/constants/table/cell/protectAuthorizationsTableCellWidth.d.ts +14 -0
  28. package/build/constants/table/cell/protectAuthorizationsTableCellWidth.js +14 -0
  29. package/build/constants/table/cell/protectChargesTableCellWidth.d.ts +13 -0
  30. package/build/constants/table/cell/protectChargesTableCellWidth.js +13 -0
  31. package/build/constants/table/cell/refundTableCellWidth.d.ts +28 -0
  32. package/build/constants/table/cell/refundTableCellWidth.js +28 -0
  33. package/build/constants/table/cell/terminalsTableCellWidth.d.ts +14 -0
  34. package/build/constants/table/cell/terminalsTableCellWidth.js +14 -0
  35. package/build/constants/table/cell/tokensTableCellWidth.d.ts +9 -0
  36. package/build/constants/table/cell/tokensTableCellWidth.js +9 -0
  37. package/build/constants/table/cell/topupsTableCellWidth.d.ts +11 -0
  38. package/build/constants/table/cell/topupsTableCellWidth.js +11 -0
  39. package/build/constants/table/cell/walletDetailsTableCellWidth.d.ts +6 -0
  40. package/build/constants/table/cell/walletDetailsTableCellWidth.js +6 -0
  41. package/build/constants/table/cell/walletStatementTableCellWidth.d.ts +12 -0
  42. package/build/constants/table/cell/walletStatementTableCellWidth.js +12 -0
  43. package/build/constants/table/cell/walletTableCellWidth.d.ts +6 -0
  44. package/build/constants/table/cell/walletTableCellWidth.js +6 -0
  45. package/build/types/table.d.ts +2 -1
  46. package/package.json +129 -129
@@ -2,69 +2,86 @@ export const invoicesTableCellWidth = {
2
2
  id: {
3
3
  default: '180px',
4
4
  text: '180px',
5
+ sheet: '180px',
5
6
  },
6
7
  link: {
7
8
  default: '145px',
8
9
  text: '145px',
10
+ sheet: '145px',
9
11
  },
10
12
  date: {
11
13
  default: '150px',
12
14
  text: '150px',
15
+ sheet: '150px',
13
16
  },
14
17
  order: {
15
18
  default: '80px',
16
19
  text: '80px',
20
+ sheet: '80px',
17
21
  },
18
22
  customer: {
19
23
  default: '180px',
20
24
  text: '180px',
25
+ sheet: '180px',
21
26
  },
22
27
  amount: {
23
28
  default: '195px',
24
29
  text: '195px',
30
+ sheet: '195px',
25
31
  },
26
32
  channel: {
27
33
  default: '90px',
28
34
  text: '90px',
35
+ sheet: '90px',
29
36
  },
30
37
  due: {
31
38
  default: '92px',
32
39
  text: '340px',
40
+ sheet: '340px',
33
41
  },
34
42
  status: {
35
43
  default: '90px',
36
44
  text: '170px',
45
+ sheet: '170px',
37
46
  },
38
47
  actions: {
39
48
  default: '100px',
40
49
  text: '100px',
50
+ sheet: '100px',
41
51
  },
42
52
  paymentMethod: {
43
53
  default: '110px',
44
54
  text: '130px',
55
+ sheet: '130px',
45
56
  },
46
57
  cardNo: {
47
58
  default: '130px',
48
59
  text: '130px',
60
+ sheet: '130px',
49
61
  },
50
62
  chargeId: {
51
63
  default: '225px',
52
64
  text: '225px',
65
+ sheet: '225px',
53
66
  },
54
67
  receiptId: {
55
68
  default: '180px',
56
69
  text: '180px',
70
+ sheet: '180px',
57
71
  },
58
72
  reference_no: {
59
73
  default: '225px',
60
74
  text: '225px',
75
+ sheet: '225px',
61
76
  },
62
77
  invoice_number: {
63
78
  default: '160px',
64
79
  text: '160px',
80
+ sheet: '160px',
65
81
  },
66
82
  auth_code: {
67
83
  default: '80px',
68
84
  text: '80px',
85
+ sheet: '80px',
69
86
  },
70
87
  };
@@ -2,29 +2,36 @@ export declare const leadsTableCellWidth: {
2
2
  readonly id: {
3
3
  readonly default: "180px";
4
4
  readonly text: "180px";
5
+ readonly sheet: "180px";
5
6
  };
6
7
  readonly payouts: {
7
8
  readonly default: "150px";
8
9
  readonly text: "250px";
10
+ readonly sheet: "250px";
9
11
  };
10
12
  readonly customer: {
11
13
  readonly default: "180px";
12
14
  readonly text: "180px";
15
+ readonly sheet: "180px";
13
16
  };
14
17
  readonly brand: {
15
18
  readonly default: "150px";
16
19
  readonly text: "250px";
20
+ readonly sheet: "250px";
17
21
  };
18
22
  readonly source: {
19
23
  readonly default: "70px";
20
24
  readonly text: "125px";
25
+ readonly sheet: "125px";
21
26
  };
22
27
  readonly status: {
23
28
  readonly default: "150px";
24
29
  readonly text: "250px";
30
+ readonly sheet: "250px";
25
31
  };
26
32
  readonly actions: {
27
33
  readonly default: "100px";
28
34
  readonly text: "100px";
35
+ readonly sheet: "100px";
29
36
  };
30
37
  };
@@ -2,29 +2,36 @@ export const leadsTableCellWidth = {
2
2
  id: {
3
3
  default: '180px',
4
4
  text: '180px',
5
+ sheet: '180px',
5
6
  },
6
7
  payouts: {
7
8
  default: '150px',
8
9
  text: '250px',
10
+ sheet: '250px',
9
11
  },
10
12
  customer: {
11
13
  default: '180px',
12
14
  text: '180px',
15
+ sheet: '180px',
13
16
  },
14
17
  brand: {
15
18
  default: '150px',
16
19
  text: '250px',
20
+ sheet: '250px',
17
21
  },
18
22
  source: {
19
23
  default: '70px',
20
24
  text: '125px',
25
+ sheet: '125px',
21
26
  },
22
27
  status: {
23
28
  default: '150px',
24
29
  text: '250px',
30
+ sheet: '250px',
25
31
  },
26
32
  actions: {
27
33
  default: '100px',
28
34
  text: '100px',
35
+ sheet: '100px',
29
36
  },
30
37
  };
@@ -2,45 +2,56 @@ export declare const merchantsTableCellWidth: {
2
2
  readonly id: {
3
3
  readonly default: "225px";
4
4
  readonly text: "225px";
5
+ readonly sheet: "225px";
5
6
  };
6
7
  readonly entity: {
7
8
  readonly default: "150px";
8
9
  readonly text: "180px";
10
+ readonly sheet: "180px";
9
11
  };
10
12
  readonly created: {
11
13
  readonly default: "170px";
12
14
  readonly text: "170px";
15
+ readonly sheet: "170px";
13
16
  };
14
17
  readonly brands: {
15
18
  readonly default: "116px";
16
19
  readonly text: "120px";
20
+ readonly sheet: "120px";
17
21
  };
18
22
  readonly marketplace: {
19
23
  readonly default: "110px";
20
24
  readonly text: "110px";
25
+ readonly sheet: "110px";
21
26
  };
22
27
  readonly individuals: {
23
28
  readonly default: "116px";
24
29
  readonly text: "120px";
30
+ readonly sheet: "120px";
25
31
  };
26
32
  readonly segments: {
27
33
  readonly default: "70px";
28
34
  readonly text: "180px";
35
+ readonly sheet: "180px";
29
36
  };
30
37
  readonly status: {
31
38
  readonly default: "80px";
32
39
  readonly text: "100px";
40
+ readonly sheet: "100px";
33
41
  };
34
42
  readonly actions: {
35
43
  readonly default: "100px";
36
44
  readonly text: "100px";
45
+ readonly sheet: "100px";
37
46
  };
38
47
  readonly avatar: {
39
48
  readonly default: "40px";
40
49
  readonly text: "40px";
50
+ readonly sheet: "40px";
41
51
  };
42
52
  readonly user_name: {
43
53
  readonly default: "150px";
44
54
  readonly text: "180px";
55
+ readonly sheet: "180px";
45
56
  };
46
57
  };
@@ -2,45 +2,56 @@ export const merchantsTableCellWidth = {
2
2
  id: {
3
3
  default: '225px',
4
4
  text: '225px',
5
+ sheet: '225px',
5
6
  },
6
7
  entity: {
7
8
  default: '150px',
8
9
  text: '180px',
10
+ sheet: '180px',
9
11
  },
10
12
  created: {
11
13
  default: '170px',
12
14
  text: '170px',
15
+ sheet: '170px',
13
16
  },
14
17
  brands: {
15
18
  default: '116px',
16
19
  text: '120px',
20
+ sheet: '120px',
17
21
  },
18
22
  marketplace: {
19
23
  default: '110px',
20
24
  text: '110px',
25
+ sheet: '110px',
21
26
  },
22
27
  individuals: {
23
28
  default: '116px',
24
29
  text: '120px',
30
+ sheet: '120px',
25
31
  },
26
32
  segments: {
27
33
  default: '70px',
28
34
  text: '180px',
35
+ sheet: '180px',
29
36
  },
30
37
  status: {
31
38
  default: '80px',
32
39
  text: '100px',
40
+ sheet: '100px',
33
41
  },
34
42
  actions: {
35
43
  default: '100px',
36
44
  text: '100px',
45
+ sheet: '100px',
37
46
  },
38
47
  avatar: {
39
48
  default: '40px',
40
49
  text: '40px',
50
+ sheet: '40px',
41
51
  },
42
52
  user_name: {
43
53
  default: '150px',
44
54
  text: '180px',
55
+ sheet: '180px',
45
56
  },
46
57
  };
@@ -2,45 +2,56 @@ export declare const ordersTableCellWidth: {
2
2
  readonly id: {
3
3
  readonly default: "180px";
4
4
  readonly text: "180px";
5
+ readonly sheet: "180px";
5
6
  };
6
7
  readonly payouts: {
7
8
  readonly default: "150px";
8
9
  readonly text: "250px";
10
+ readonly sheet: "250px";
9
11
  };
10
12
  readonly reference: {
11
13
  readonly default: "150px";
12
14
  readonly text: "250px";
15
+ readonly sheet: "250px";
13
16
  };
14
17
  readonly customer: {
15
18
  readonly default: "180px";
16
19
  readonly text: "180px";
20
+ readonly sheet: "180px";
17
21
  };
18
22
  readonly authenticate: {
19
23
  readonly default: "150px";
20
24
  readonly text: "250px";
25
+ readonly sheet: "250px";
21
26
  };
22
27
  readonly payment_agreement: {
23
28
  readonly default: "50px";
24
29
  readonly text: "250px";
30
+ readonly sheet: "250px";
25
31
  };
26
32
  readonly amount: {
27
33
  readonly default: "195px";
28
34
  readonly text: "195px";
35
+ readonly sheet: "195px";
29
36
  };
30
37
  readonly destinations: {
31
38
  readonly default: "70px";
32
39
  readonly text: "240px";
40
+ readonly sheet: "240px";
33
41
  };
34
42
  readonly topup: {
35
43
  readonly default: "20px";
36
44
  readonly text: "95px";
45
+ readonly sheet: "95px";
37
46
  };
38
47
  readonly status: {
39
48
  readonly default: "150px";
40
49
  readonly text: "250px";
50
+ readonly sheet: "250px";
41
51
  };
42
52
  readonly actions: {
43
53
  readonly default: "100px";
44
54
  readonly text: "100px";
55
+ readonly sheet: "100px";
45
56
  };
46
57
  };
@@ -2,45 +2,56 @@ export const ordersTableCellWidth = {
2
2
  id: {
3
3
  default: '180px',
4
4
  text: '180px',
5
+ sheet: '180px',
5
6
  },
6
7
  payouts: {
7
8
  default: '150px',
8
9
  text: '250px',
10
+ sheet: '250px',
9
11
  },
10
12
  reference: {
11
13
  default: '150px',
12
14
  text: '250px',
15
+ sheet: '250px',
13
16
  },
14
17
  customer: {
15
18
  default: '180px',
16
19
  text: '180px',
20
+ sheet: '180px',
17
21
  },
18
22
  authenticate: {
19
23
  default: '150px',
20
24
  text: '250px',
25
+ sheet: '250px',
21
26
  },
22
27
  payment_agreement: {
23
28
  default: '50px',
24
29
  text: '250px',
30
+ sheet: '250px',
25
31
  },
26
32
  amount: {
27
33
  default: '195px',
28
34
  text: '195px',
35
+ sheet: '195px',
29
36
  },
30
37
  destinations: {
31
38
  default: '70px',
32
39
  text: '240px',
40
+ sheet: '240px',
33
41
  },
34
42
  topup: {
35
43
  default: '20px',
36
44
  text: '95px',
45
+ sheet: '95px',
37
46
  },
38
47
  status: {
39
48
  default: '150px',
40
49
  text: '250px',
50
+ sheet: '250px',
41
51
  },
42
52
  actions: {
43
53
  default: '100px',
44
54
  text: '100px',
55
+ sheet: '100px',
45
56
  },
46
57
  };
@@ -2,45 +2,56 @@ export declare const payoutsTableCellWidth: {
2
2
  readonly id: {
3
3
  readonly default: "225px";
4
4
  readonly text: "225px";
5
+ readonly sheet: "225px";
5
6
  };
6
7
  readonly date: {
7
8
  readonly default: "150px";
8
9
  readonly text: "150px";
10
+ readonly sheet: "150px";
9
11
  };
10
12
  readonly wallet: {
11
13
  readonly default: "150px";
12
14
  readonly text: "250px";
15
+ readonly sheet: "250px";
13
16
  };
14
17
  readonly bankAccount: {
15
18
  readonly default: "240px";
16
19
  readonly text: "250px";
20
+ readonly sheet: "250px";
17
21
  };
18
22
  readonly amount: {
19
23
  readonly default: "210px";
20
24
  readonly text: "210px";
25
+ readonly sheet: "210px";
21
26
  };
22
27
  readonly status: {
23
28
  readonly default: "50px";
24
29
  readonly text: "250px";
30
+ readonly sheet: "250px";
25
31
  };
26
32
  readonly report: {
27
33
  readonly default: "56px";
28
34
  readonly text: "100px";
35
+ readonly sheet: "100px";
29
36
  };
30
37
  readonly actions: {
31
38
  readonly default: "100px";
32
39
  readonly text: "100px";
40
+ readonly sheet: "100px";
33
41
  };
34
42
  readonly referenceId: {
35
43
  readonly default: "71px";
36
44
  readonly text: "140px";
45
+ readonly sheet: "100px";
37
46
  };
38
47
  readonly currency: {
39
48
  readonly default: "80px";
40
49
  readonly text: "80px";
50
+ readonly sheet: "80px";
41
51
  };
42
52
  readonly beneficiary_name: {
43
53
  readonly default: "180px";
44
54
  readonly text: "180px";
55
+ readonly sheet: "180px";
45
56
  };
46
57
  };
@@ -2,45 +2,56 @@ export const payoutsTableCellWidth = {
2
2
  id: {
3
3
  default: '225px',
4
4
  text: '225px',
5
+ sheet: '225px',
5
6
  },
6
7
  date: {
7
8
  default: '150px',
8
9
  text: '150px',
10
+ sheet: '150px',
9
11
  },
10
12
  wallet: {
11
13
  default: '150px',
12
14
  text: '250px',
15
+ sheet: '250px',
13
16
  },
14
17
  bankAccount: {
15
18
  default: '240px',
16
19
  text: '250px',
20
+ sheet: '250px',
17
21
  },
18
22
  amount: {
19
23
  default: '210px',
20
24
  text: '210px',
25
+ sheet: '210px',
21
26
  },
22
27
  status: {
23
28
  default: '50px',
24
29
  text: '250px',
30
+ sheet: '250px',
25
31
  },
26
32
  report: {
27
33
  default: '56px',
28
34
  text: '100px',
35
+ sheet: '100px',
29
36
  },
30
37
  actions: {
31
38
  default: '100px',
32
39
  text: '100px',
40
+ sheet: '100px',
33
41
  },
34
42
  referenceId: {
35
43
  default: '71px',
36
44
  text: '140px',
45
+ sheet: '100px',
37
46
  },
38
47
  currency: {
39
48
  default: '80px',
40
49
  text: '80px',
50
+ sheet: '80px',
41
51
  },
42
52
  beneficiary_name: {
43
53
  default: '180px',
44
54
  text: '180px',
55
+ sheet: '180px',
45
56
  },
46
57
  };
@@ -2,57 +2,71 @@ export declare const protectAuthorizationsTableCellWidth: {
2
2
  readonly id: {
3
3
  readonly default: "180px";
4
4
  readonly text: "180px";
5
+ readonly sheet: "180px";
5
6
  };
6
7
  readonly payouts: {
7
8
  readonly default: "150px";
8
9
  readonly text: "250px";
10
+ readonly sheet: "250px";
9
11
  };
10
12
  readonly reference: {
11
13
  readonly default: "150px";
12
14
  readonly text: "250px";
15
+ readonly sheet: "250px";
13
16
  };
14
17
  readonly customer: {
15
18
  readonly default: "180px";
16
19
  readonly text: "180px";
20
+ readonly sheet: "180px";
17
21
  };
18
22
  readonly device: {
19
23
  readonly default: "150px";
20
24
  readonly text: "250px";
25
+ readonly sheet: "250px";
21
26
  };
22
27
  readonly source: {
23
28
  readonly default: "70px";
24
29
  readonly text: "125px";
30
+ readonly sheet: "125px";
25
31
  };
26
32
  readonly authenticate: {
27
33
  readonly default: "18px";
28
34
  readonly text: "250px";
35
+ readonly sheet: "250px";
29
36
  };
30
37
  readonly payment_agreement: {
31
38
  readonly default: "50px";
32
39
  readonly text: "250px";
40
+ readonly sheet: "250px";
33
41
  };
34
42
  readonly amount: {
35
43
  readonly default: "195px";
36
44
  readonly text: "195px";
45
+ readonly sheet: "195px";
37
46
  };
38
47
  readonly topup: {
39
48
  readonly default: "20px";
40
49
  readonly text: "95px";
50
+ readonly sheet: "95px";
41
51
  };
42
52
  readonly status: {
43
53
  readonly default: "150px";
44
54
  readonly text: "250px";
55
+ readonly sheet: "250px";
45
56
  };
46
57
  readonly auto: {
47
58
  readonly default: "150px";
48
59
  readonly text: "250px";
60
+ readonly sheet: "250px";
49
61
  };
50
62
  readonly balance: {
51
63
  readonly default: "50px";
52
64
  readonly text: "250px";
65
+ readonly sheet: "250px";
53
66
  };
54
67
  readonly actions: {
55
68
  readonly default: "100px";
56
69
  readonly text: "100px";
70
+ readonly sheet: "100px";
57
71
  };
58
72
  };
@@ -2,57 +2,71 @@ export const protectAuthorizationsTableCellWidth = {
2
2
  id: {
3
3
  default: '180px',
4
4
  text: '180px',
5
+ sheet: '180px',
5
6
  },
6
7
  payouts: {
7
8
  default: '150px',
8
9
  text: '250px',
10
+ sheet: '250px',
9
11
  },
10
12
  reference: {
11
13
  default: '150px',
12
14
  text: '250px',
15
+ sheet: '250px',
13
16
  },
14
17
  customer: {
15
18
  default: '180px',
16
19
  text: '180px',
20
+ sheet: '180px',
17
21
  },
18
22
  device: {
19
23
  default: '150px',
20
24
  text: '250px',
25
+ sheet: '250px',
21
26
  },
22
27
  source: {
23
28
  default: '70px',
24
29
  text: '125px',
30
+ sheet: '125px',
25
31
  },
26
32
  authenticate: {
27
33
  default: '18px',
28
34
  text: '250px',
35
+ sheet: '250px',
29
36
  },
30
37
  payment_agreement: {
31
38
  default: '50px',
32
39
  text: '250px',
40
+ sheet: '250px',
33
41
  },
34
42
  amount: {
35
43
  default: '195px',
36
44
  text: '195px',
45
+ sheet: '195px',
37
46
  },
38
47
  topup: {
39
48
  default: '20px',
40
49
  text: '95px',
50
+ sheet: '95px',
41
51
  },
42
52
  status: {
43
53
  default: '150px',
44
54
  text: '250px',
55
+ sheet: '250px',
45
56
  },
46
57
  auto: {
47
58
  default: '150px',
48
59
  text: '250px',
60
+ sheet: '250px',
49
61
  },
50
62
  balance: {
51
63
  default: '50px',
52
64
  text: '250px',
65
+ sheet: '250px',
53
66
  },
54
67
  actions: {
55
68
  default: '100px',
56
69
  text: '100px',
70
+ sheet: '100px',
57
71
  },
58
72
  };