@tap-payments/os-micro-frontend-shared 0.1.308 → 0.1.310

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.
@@ -1,5 +1,5 @@
1
- type UserVerificationProps = {
1
+ type VerificationIconProps = {
2
2
  status: string;
3
3
  };
4
- export declare const VerificationIcon: ({ status }: UserVerificationProps) => import("react/jsx-runtime").JSX.Element;
4
+ export declare const VerificationIcon: ({ status }: VerificationIconProps) => import("react/jsx-runtime").JSX.Element;
5
5
  export {};
@@ -1,5 +1,5 @@
1
- type Props = {
1
+ type VerificationIconWithBgProps = {
2
2
  status: string;
3
3
  };
4
- export declare const VerificationIconWithBg: ({ status }: Props) => import("react/jsx-runtime").JSX.Element;
4
+ export declare const VerificationIconWithBg: ({ status }: VerificationIconWithBgProps) => import("react/jsx-runtime").JSX.Element;
5
5
  export {};
@@ -0,0 +1,5 @@
1
+ export declare const BUSINESS_DOCUMENT_TYPE_MAP: {
2
+ readonly COMMERCIAL_REGISTRATION: "commercial_registration";
3
+ readonly FREELANCER: "freelancer";
4
+ readonly ARTICLE_OF_ASSOCIATION: "article_of_association";
5
+ };
@@ -0,0 +1,5 @@
1
+ export const BUSINESS_DOCUMENT_TYPE_MAP = {
2
+ COMMERCIAL_REGISTRATION: 'commercial_registration',
3
+ FREELANCER: 'freelancer',
4
+ ARTICLE_OF_ASSOCIATION: 'article_of_association',
5
+ };
@@ -15,3 +15,4 @@ export * from './segment';
15
15
  export * from './chips';
16
16
  export * from './rate';
17
17
  export * from './reports';
18
+ export * from './document';
@@ -15,3 +15,4 @@ export * from './segment';
15
15
  export * from './chips';
16
16
  export * from './rate';
17
17
  export * from './reports';
18
+ export * from './document';
@@ -25,7 +25,7 @@ export declare const authorizationTableCellWidth: {
25
25
  readonly sheet: "85px";
26
26
  };
27
27
  readonly date: {
28
- readonly default: "140px";
28
+ readonly default: "150px";
29
29
  readonly text: "170px";
30
30
  readonly sheet: "130px";
31
31
  };
@@ -25,7 +25,7 @@ export const authorizationTableCellWidth = {
25
25
  sheet: '85px',
26
26
  },
27
27
  date: {
28
- default: '140px',
28
+ default: '150px',
29
29
  text: '170px',
30
30
  sheet: '130px',
31
31
  },
@@ -20,7 +20,7 @@ export declare const chargeTableCellWidth: {
20
20
  readonly sheet: "85px";
21
21
  };
22
22
  readonly date: {
23
- readonly default: "140px";
23
+ readonly default: "150px";
24
24
  readonly text: "170px";
25
25
  readonly sheet: "130px";
26
26
  };
@@ -20,7 +20,7 @@ export const chargeTableCellWidth = {
20
20
  sheet: '85px',
21
21
  },
22
22
  date: {
23
- default: '140px',
23
+ default: '150px',
24
24
  text: '170px',
25
25
  sheet: '130px',
26
26
  },
@@ -10,7 +10,7 @@ export declare const destinationsTableCellWidth: {
10
10
  readonly sheet: "255px";
11
11
  };
12
12
  readonly created: {
13
- readonly default: "140px";
13
+ readonly default: "150px";
14
14
  readonly text: "170px";
15
15
  readonly sheet: "130px";
16
16
  };
@@ -10,7 +10,7 @@ export const destinationsTableCellWidth = {
10
10
  sheet: '255px',
11
11
  },
12
12
  created: {
13
- default: '140px',
13
+ default: '150px',
14
14
  text: '170px',
15
15
  sheet: '130px',
16
16
  },
@@ -10,7 +10,7 @@ export declare const refundTableCellWidth: {
10
10
  readonly sheet: "250px";
11
11
  };
12
12
  readonly date: {
13
- readonly default: "140px";
13
+ readonly default: "150px";
14
14
  readonly text: "170px";
15
15
  readonly sheet: "130px";
16
16
  };
@@ -10,7 +10,7 @@ export const refundTableCellWidth = {
10
10
  sheet: '250px',
11
11
  },
12
12
  date: {
13
- default: '140px',
13
+ default: '150px',
14
14
  text: '170px',
15
15
  sheet: '130px',
16
16
  },
@@ -0,0 +1,2 @@
1
+ import { BUSINESS_DOCUMENT_TYPE_MAP } from '../constants/index.js';
2
+ export type BusinessDocumentType = (typeof BUSINESS_DOCUMENT_TYPE_MAP)[keyof typeof BUSINESS_DOCUMENT_TYPE_MAP];
@@ -0,0 +1 @@
1
+ export {};
@@ -31,3 +31,4 @@ export * from './receipt';
31
31
  export * from './filter';
32
32
  export * from './utilities';
33
33
  export * from './reports';
34
+ export * from './document';
@@ -31,3 +31,4 @@ export * from './receipt';
31
31
  export * from './filter';
32
32
  export * from './utilities';
33
33
  export * from './reports';
34
+ export * from './document';
package/package.json CHANGED
@@ -1,7 +1,7 @@
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.308",
4
+ "version": "0.1.310",
5
5
  "testVersion": 0,
6
6
  "type": "module",
7
7
  "main": "build/index.js",