searchsmartly-ui 0.0.79 → 0.0.81

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
@@ -258,9 +258,12 @@ type CommuteWithId = Commute & {
258
258
 
259
259
  type CommuteFormProps = {
260
260
  clicked: boolean;
261
+ disableCheck?: boolean;
261
262
  scrollIntoSecondCommute?: boolean;
263
+ multiple?: boolean;
262
264
  commutes: CommuteWithId[];
263
265
  googleAutocompleteApiKey: string;
266
+ variant?: 'contained' | 'outlined';
264
267
  onRemove: (commuteToRemove: CommuteWithId) => () => void;
265
268
  onAdd: () => void;
266
269
  onChange: (commute: CommuteWithId) => (nextCommute: CommuteWithId) => void;