@tap-payments/os-micro-frontend-shared 0.1.309 → 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.
- package/build/components/VerificationIcon/VerificationIcon.d.ts +2 -2
- package/build/components/VerificationIcon/VerificationIconWithBg.d.ts +2 -2
- 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/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/index.js
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/build/types/index.d.ts
CHANGED
package/build/types/index.js
CHANGED
package/package.json
CHANGED