gotrip-fx-transaction-form 1.0.149 → 1.0.150

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.149",
3
+ "version": "1.0.150",
4
4
  "description": "FX Transaction Form ES6 module",
5
5
  "main": "index.js",
6
6
  "types": "types/index.d.ts",
@@ -4,5 +4,5 @@ type CountrySelectorProps = {
4
4
  searchPlaceholder?: string;
5
5
  noResultsText?: string;
6
6
  };
7
- declare const CountrySelector: ({ onCountrySelect }: CountrySelectorProps) => import("react/jsx-runtime").JSX.Element;
7
+ declare const CountrySelector: ({ onCountrySelect, placeholder, }: CountrySelectorProps) => import("react/jsx-runtime").JSX.Element;
8
8
  export default CountrySelector;
@@ -5,6 +5,7 @@ interface SearchTextInputProps {
5
5
  placeholder?: string;
6
6
  debounceTime?: number;
7
7
  size?: 'sm' | 'md' | 'lg' | 'xs';
8
+ width?: string | number;
8
9
  }
9
10
  declare const SearchTextInput: React.FC<SearchTextInputProps>;
10
11
  export default SearchTextInput;
@@ -9,10 +9,11 @@ type SortSelectorProps = {
9
9
  label?: string;
10
10
  minWidth?: number;
11
11
  maxWidth?: number;
12
+ size?: 'xs' | 'sm' | 'md' | 'lg';
12
13
  mr?: number;
13
14
  ml?: number;
14
15
  mb?: number;
15
16
  mt?: number;
16
17
  };
17
- declare const SortSelector: ({ options: inputOptions, onSortChange, defaultValue, minWidth, maxWidth, label: selectLabel, mr, ml, mb, mt, }: SortSelectorProps) => import("react/jsx-runtime").JSX.Element;
18
+ declare const SortSelector: ({ options: inputOptions, onSortChange, defaultValue, minWidth, maxWidth, size, label: selectLabel, mr, ml, mb, mt, }: SortSelectorProps) => import("react/jsx-runtime").JSX.Element;
18
19
  export default SortSelector;
@@ -10,7 +10,7 @@ export declare const useESimList: ({ defaultLimit, defaultFilter }: Props) => {
10
10
  refetchBalance: () => void;
11
11
  total: number;
12
12
  loading: boolean;
13
- refetchData: () => void;
13
+ refetchData: () => Promise<void>;
14
14
  page: number;
15
15
  limit: number;
16
16
  setPage: import('react').Dispatch<import('react').SetStateAction<number>>;