searchsmartly-ui 0.0.77 → 0.0.79
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 +3 -0
- package/dist/index.esm.js +5 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/src/components/forms/AreasForm/AreasForm.d.ts +2 -0
- package/dist/src/components/forms/CommuteForm/CommuteForm.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -258,6 +258,7 @@ type CommuteWithId = Commute & {
|
|
|
258
258
|
|
|
259
259
|
type CommuteFormProps = {
|
|
260
260
|
clicked: boolean;
|
|
261
|
+
scrollIntoSecondCommute?: boolean;
|
|
261
262
|
commutes: CommuteWithId[];
|
|
262
263
|
googleAutocompleteApiKey: string;
|
|
263
264
|
onRemove: (commuteToRemove: CommuteWithId) => () => void;
|
|
@@ -273,6 +274,8 @@ type Area = {
|
|
|
273
274
|
};
|
|
274
275
|
|
|
275
276
|
type AreasFormProps = {
|
|
277
|
+
scrollIntoArea?: boolean;
|
|
278
|
+
index?: number;
|
|
276
279
|
clicked: boolean;
|
|
277
280
|
allAreas: string[];
|
|
278
281
|
areas: Area[];
|