@movmo_app/react-common 0.10.2 → 0.10.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.
package/dist/index.d.ts CHANGED
@@ -86,7 +86,7 @@ export declare interface CurrencyOption {
86
86
  symbol: string;
87
87
  }
88
88
 
89
- export declare const DateDropdowns: ({ value, onChange, travelerType: _travelerType, departureDate: _departureDate, uniqueId, label, yearDirection, errorState, labelClassName, className, }: DateDropdownsProps) => JSX_2.Element;
89
+ export declare const DateDropdowns: ({ value, onChange, travelerType: _travelerType, departureDate: _departureDate, uniqueId, label, yearDirection, errorState, labelClassName, className, monthSearchable, }: DateDropdownsProps) => JSX_2.Element;
90
90
 
91
91
  export declare interface DateDropdownsProps {
92
92
  value?: string;
@@ -108,6 +108,8 @@ export declare interface DateDropdownsProps {
108
108
  labelClassName?: string;
109
109
  /** Custom CSS classes for the wrapper div. Default: "mt-7" */
110
110
  className?: string;
111
+ /** Whether the Month dropdown supports type-to-search. Default: false (prevents letter keyboard on mobile). */
112
+ monthSearchable?: boolean;
111
113
  }
112
114
 
113
115
  export declare const DEFAULT_LOCALE: LocaleOption;