gotrip-fx-transaction-form 1.0.96 → 1.0.98

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.96",
3
+ "version": "1.0.98",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -0,0 +1,11 @@
1
+ export type BankAccountFormData = {
2
+ accounts: {
3
+ id?: number;
4
+ bankName: string;
5
+ branch?: string;
6
+ accountName: string;
7
+ accountNumber: string;
8
+ isActive: boolean;
9
+ }[];
10
+ };
11
+ export declare const BankAccountForm: () => import("react/jsx-runtime").JSX.Element;
@@ -140,4 +140,8 @@ export declare const ApiUrls: {
140
140
  list: string;
141
141
  send: string;
142
142
  };
143
+ bankAccountHandlers: {
144
+ list: string;
145
+ update: string;
146
+ };
143
147
  };
@@ -4,8 +4,8 @@ export type Option = {
4
4
  };
5
5
  type ChakraSelectSearchableProps = {
6
6
  options: Option[];
7
- value?: string;
8
- onChange: (value: string) => void;
7
+ value?: string | number | Option;
8
+ onChange: (value: Option) => void;
9
9
  placeholder?: string;
10
10
  styles?: {
11
11
  container?: (base: React.CSSProperties) => React.CSSProperties;
@@ -0,0 +1 @@
1
+ export declare const EContractPage: () => import("react/jsx-runtime").JSX.Element;