gotrip-fx-transaction-form 1.0.91 → 1.0.93

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gotrip-fx-transaction-form",
3
- "version": "1.0.91",
3
+ "version": "1.0.93",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -0,0 +1,3 @@
1
+ export declare const UserSourceBadge: ({ source }: {
2
+ source: string;
3
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -1 +1,3 @@
1
- export declare const SupervisorRegisterForm: () => import("react/jsx-runtime").JSX.Element;
1
+ export declare const SupervisorRegisterForm: ({ source }: {
2
+ source?: string;
3
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
- export declare const UserRegisterForm: ({ isTvp }: {
1
+ export declare const UserRegisterForm: ({ isTvp, source }: {
2
2
  isTvp?: boolean;
3
+ source?: string;
3
4
  }) => import("react/jsx-runtime").JSX.Element;
@@ -284,6 +284,7 @@ export type IUser = {
284
284
  roles?: IRole[];
285
285
  tenant?: ITenant;
286
286
  permissions?: EPermissionKey[];
287
+ source?: string;
287
288
  };
288
289
  export type IBid = {
289
290
  id: number;