@snmt-react-ui/city-select 2.2.0 → 2.2.2

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,8 +1,8 @@
1
1
  export interface CitySelectProps {
2
2
  /** Sets value for the city select */
3
- value?: string;
3
+ value?: string | null;
4
4
  /** Callback to handle change event */
5
- onChange: (value: string) => void;
5
+ onChange: (value: string | null) => void;
6
6
  /** Sets country value if city select is used first */
7
7
  selectedCountry?: string;
8
8
  /** Custom width of a date picker */