@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.
- package/build/components/VerificationIcon/VerificationIcon.d.ts +2 -2
- package/build/components/VerificationIcon/VerificationIconWithBg.d.ts +2 -2
- package/build/constants/api.d.ts +1 -1
- package/build/constants/api.js +1 -1
- package/build/constants/document.d.ts +5 -0
- package/build/constants/document.js +5 -0
- package/build/constants/index.d.ts +1 -0
- package/build/constants/index.js +1 -0
- package/build/constants/table/cell/authenticationsTableCellWidth.d.ts +2 -2
- package/build/constants/table/cell/authenticationsTableCellWidth.js +2 -2
- package/build/types/document.d.ts +2 -0
- package/build/types/document.js +1 -0
- package/build/types/index.d.ts +1 -0
- package/build/types/index.js +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
type
|
|
1
|
+
type VerificationIconProps = {
|
|
2
2
|
status: string;
|
|
3
3
|
};
|
|
4
|
-
export declare const VerificationIcon: ({ status }:
|
|
4
|
+
export declare const VerificationIcon: ({ status }: VerificationIconProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
type
|
|
1
|
+
type VerificationIconWithBgProps = {
|
|
2
2
|
status: string;
|
|
3
3
|
};
|
|
4
|
-
export declare const VerificationIconWithBg: ({ status }:
|
|
4
|
+
export declare const VerificationIconWithBg: ({ status }: VerificationIconWithBgProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export {};
|
package/build/constants/api.d.ts
CHANGED
package/build/constants/api.js
CHANGED
package/build/constants/index.js
CHANGED
|
@@ -60,12 +60,12 @@ export declare const authenticationsTableCellWidth: {
|
|
|
60
60
|
readonly sheet: "250px";
|
|
61
61
|
};
|
|
62
62
|
readonly authentication_id: {
|
|
63
|
-
readonly default: "
|
|
63
|
+
readonly default: "260px";
|
|
64
64
|
readonly text: "320px";
|
|
65
65
|
readonly sheet: "320px";
|
|
66
66
|
};
|
|
67
67
|
readonly charge_id: {
|
|
68
|
-
readonly default: "
|
|
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: '
|
|
63
|
+
default: '260px',
|
|
64
64
|
text: '320px',
|
|
65
65
|
sheet: '320px',
|
|
66
66
|
},
|
|
67
67
|
charge_id: {
|
|
68
|
-
default: '
|
|
68
|
+
default: '245px',
|
|
69
69
|
text: '290px',
|
|
70
70
|
sheet: '290px',
|
|
71
71
|
},
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/build/types/index.d.ts
CHANGED
package/build/types/index.js
CHANGED
package/package.json
CHANGED