@tap-payments/os-micro-frontend-shared 0.1.29 → 0.1.30-test.3

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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Tap Payments
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Tap Payments
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
- # os-micro-frontend-shared
2
-
3
- ## Publishing Workflow
4
-
5
- 1. Update version in package.json
6
- 2. Commit changes
7
- 3. Create and push a tag:
8
-
9
- ```bash
10
- npm version patch # or minor, major
11
- git push origin main --tags
12
- ```
1
+ # os-micro-frontend-shared
2
+
3
+ ## Publishing Workflow
4
+
5
+ 1. Update version in package.json
6
+ 2. Commit changes
7
+ 3. Create and push a tag:
8
+
9
+ ```bash
10
+ npm version patch # or minor, major
11
+ git push origin main --tags
12
+ ```
@@ -147,7 +147,7 @@ export const SheetViewTableContainer = styled(Box)(() => ({
147
147
  height: 'calc(100vh - 300px)',
148
148
  paddingInline: '28px',
149
149
  borderRadius: '8px',
150
- marginBottom: '11px !important',
150
+ marginBottom: '16px !important',
151
151
  overflowY: 'hidden',
152
152
  }));
153
153
  export const StyledCardsBox = styled(Box, {
@@ -106,6 +106,8 @@ export declare const checkboxIcon: string;
106
106
  export declare const protectIcon: string;
107
107
  export declare const unisoIcon: string;
108
108
  export declare const addidasIcon: string;
109
+ export declare const RadioButtonCheckedIcon: string;
110
+ export declare const RadioButtonUncheckedIcon: string;
109
111
  export declare const macIcon: string;
110
112
  export declare const blueZigzagCheckIcon: string;
111
113
  export declare const greenZigzagCheckIcon: string;
@@ -110,6 +110,8 @@ export const checkboxIcon = `${appBaseUrl}/checkboxIcon.svg`;
110
110
  export const protectIcon = `${appBaseUrl}/checkboxIcon.svg`;
111
111
  export const unisoIcon = `${lightUrl}/Uniso.svg`;
112
112
  export const addidasIcon = `${lightUrl}/addidas.svg`;
113
+ export const RadioButtonCheckedIcon = `${lightUrl}/radioButtonChecked.svg`;
114
+ export const RadioButtonUncheckedIcon = `${lightUrl}/radioButtonUnchecked.svg`;
113
115
  export const macIcon = `${lightUrl}/Mac.svg`;
114
116
  export const blueZigzagCheckIcon = `${lightUrl}/blueCheckIconZigzag.svg`;
115
117
  export const greenZigzagCheckIcon = `${lightUrl}/greenCheckIconZigzag.svg`;
@@ -219,6 +219,11 @@ export declare const chargeTableCellWidth: {
219
219
  readonly text: "30px";
220
220
  readonly sheet: "30px";
221
221
  };
222
+ readonly consolidated_amount: {
223
+ readonly default: "180px";
224
+ readonly text: "180px";
225
+ readonly sheet: "180px";
226
+ };
222
227
  readonly customer_amount: {
223
228
  readonly default: "150px";
224
229
  readonly text: "150px";
@@ -219,6 +219,11 @@ export const chargeTableCellWidth = {
219
219
  text: '30px',
220
220
  sheet: '30px',
221
221
  },
222
+ consolidated_amount: {
223
+ default: '180px',
224
+ text: '180px',
225
+ sheet: '180px',
226
+ },
222
227
  customer_amount: {
223
228
  default: '150px',
224
229
  text: '150px',
@@ -17,6 +17,7 @@ export interface HttpMethodFilters {
17
17
  keyword?: string;
18
18
  merchants?: string[];
19
19
  merchantIds?: string[];
20
+ retailerIds?: string[];
20
21
  }
21
22
  export interface QueryConfig extends Omit<HttpMethodConfig, 'signal'> {
22
23
  }
@@ -129,7 +129,7 @@ export interface IVirtualTable<R = any> {
129
129
  dragControls?: DragControls;
130
130
  isSheetView?: boolean;
131
131
  }
132
- export type ColumnFilterValues = Record<string, string | string[] | Record<string, boolean> | {
132
+ export type ColumnFilterValues = Record<string, string | string[] | Record<string, boolean> | Record<string, string> | {
133
133
  phone: string;
134
134
  country: Country | undefined;
135
135
  }>;
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.29",
5
- "testVersion": 0,
4
+ "version": "0.1.30-test.3",
5
+ "testVersion": 3,
6
6
  "type": "module",
7
7
  "main": "build/index.js",
8
8
  "module": "build/index.js",
@@ -131,4 +131,4 @@
131
131
  "publishConfig": {
132
132
  "registry": "https://registry.npmjs.org/"
133
133
  }
134
- }
134
+ }