@snmt-react-ui/city-select 1.3.4 → 1.4.1

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 CitySelectProps {
3
2
  /** Sets value for the city select */
4
3
  value?: string;
@@ -8,6 +7,8 @@ export interface CitySelectProps {
8
7
  selectedCountry?: string;
9
8
  /** Custom width of a date picker */
10
9
  width?: number;
10
+ /** ID of the element */
11
+ id?: string;
11
12
  }
12
13
  export type City = {
13
14
  geoNameId: 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('./CitySelect').CitySelectProps & import('react').RefAttributes<any>>;