@snmt-react-ui/country-select 1.1.23 → 1.2.0

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,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  export interface CountrySelectProps {
3
2
  /** Sets value for the city select */
4
3
  value?: string;
@@ -10,6 +9,8 @@ export interface CountrySelectProps {
10
9
  width?: number;
11
10
  /** Sets city value if country select is used first */
12
11
  setSelectedCity?: (value: string) => void;
12
+ /** ID of the element */
13
+ id?: string;
13
14
  }
14
15
  export type Country = {
15
16
  id: string;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  declare const meta: {
3
2
  title: string;
4
3
  component: import('react').ForwardRefExoticComponent<import('./CountrySelect').CountrySelectProps & import('react').RefAttributes<any>>;