@tap-payments/os-micro-frontend-shared 0.1.309 → 0.1.311

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 {};
@@ -23,7 +23,7 @@ export declare const API_LIST_CONSTANTS: {
23
23
  readonly limit: 50;
24
24
  };
25
25
  readonly AuthenticationsList: {
26
- readonly limit: 50;
26
+ readonly limit: 25;
27
27
  };
28
28
  readonly InvoicesList: {
29
29
  readonly limit: 50;
@@ -23,7 +23,7 @@ export const API_LIST_CONSTANTS = {
23
23
  limit: API_BASE_LIMIT,
24
24
  },
25
25
  AuthenticationsList: {
26
- limit: API_BASE_LIMIT,
26
+ limit: 25,
27
27
  },
28
28
  InvoicesList: {
29
29
  limit: API_BASE_LIMIT,
@@ -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';
@@ -60,12 +60,12 @@ export declare const authenticationsTableCellWidth: {
60
60
  readonly sheet: "250px";
61
61
  };
62
62
  readonly authentication_id: {
63
- readonly default: "320px";
63
+ readonly default: "260px";
64
64
  readonly text: "320px";
65
65
  readonly sheet: "320px";
66
66
  };
67
67
  readonly charge_id: {
68
- readonly default: "290px";
68
+ readonly default: "245px";
69
69
  readonly text: "290px";
70
70
  readonly sheet: "290px";
71
71
  };
@@ -60,12 +60,12 @@ export const authenticationsTableCellWidth = {
60
60
  sheet: '250px',
61
61
  },
62
62
  authentication_id: {
63
- default: '320px',
63
+ default: '260px',
64
64
  text: '320px',
65
65
  sheet: '320px',
66
66
  },
67
67
  charge_id: {
68
- default: '290px',
68
+ default: '245px',
69
69
  text: '290px',
70
70
  sheet: '290px',
71
71
  },
@@ -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.309",
4
+ "version": "0.1.311",
5
5
  "testVersion": 0,
6
6
  "type": "module",
7
7
  "main": "build/index.js",