@tap-payments/os-micro-frontend-shared 0.1.261-test.2 → 0.1.261-test.3

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.
@@ -1,2 +1 @@
1
- export * from './CustomerForms';
2
1
  export { default as CustomerDropdown } from './CustomerDropdown';
@@ -1,2 +1 @@
1
- export * from './CustomerForms';
2
1
  export { default as CustomerDropdown } from './CustomerDropdown';
@@ -1,12 +1,13 @@
1
1
  /// <reference types="react" />
2
2
  import type { Country } from '../../../types/index.js';
3
- declare function CountriesDropdown({ defaultCountry, value: selectedCountry, onChangeCountry, required, countries, isLoading, }: {
3
+ type CountriesDropdownProps = {
4
4
  value?: Partial<Country>;
5
5
  defaultCountry?: string;
6
6
  onChangeCountry?: (country: Country) => void;
7
7
  required?: boolean;
8
8
  countries: Country[];
9
9
  isLoading: boolean;
10
- }): import("react/jsx-runtime").JSX.Element;
10
+ };
11
+ declare function CountriesDropdown({ defaultCountry, value: selectedCountry, onChangeCountry, required, countries, isLoading, }: Readonly<CountriesDropdownProps>): import("react/jsx-runtime").JSX.Element;
11
12
  declare const _default: import("react").MemoExoticComponent<typeof CountriesDropdown>;
12
13
  export default _default;
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.1.261-test.2",
5
- "testVersion": 2,
4
+ "version": "0.1.261-test.3",
5
+ "testVersion": 3,
6
6
  "type": "module",
7
7
  "main": "build/index.js",
8
8
  "module": "build/index.js",