@tactics/lokaal-loket 0.0.163 → 0.0.165

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -1187,6 +1187,9 @@ declare const Map: {
1187
1187
  Location: ({ points, showLoader, loader, origin, onRadiusChange, onZoomChange, onAreaChange, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
1188
1188
  Direction: ({ routes, origin, destination, travelModeLabels, points, showLoader, loader, onTravelModeChange, onRouteChange, onZoomChange, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
1189
1189
  Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
1190
+ Loading: ({ loader }: {
1191
+ loader: React$1.ReactNode;
1192
+ }) => react_jsx_runtime.JSX.Element | null;
1190
1193
  };
1191
1194
 
1192
1195
  interface IWizard {
@@ -1209,6 +1212,7 @@ declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
1209
1212
 
1210
1213
  interface ISearchBase {
1211
1214
  children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
1215
+ onSubmit?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>) => void;
1212
1216
  }
1213
1217
  interface ISearch extends ISearchBase {
1214
1218
  mobileLabel: string;
@@ -1222,6 +1226,7 @@ interface ISearchStep {
1222
1226
  }
1223
1227
  interface ISearchAutocomplete<T> {
1224
1228
  children: ReactElement<ISearchStepAutocomplete<T>>;
1229
+ onSubmit?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>, value: string) => void;
1225
1230
  }
1226
1231
  interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
1227
1232
  withFigure: ReactElement<IFigure>;
package/build/index.d.ts CHANGED
@@ -1187,6 +1187,9 @@ declare const Map: {
1187
1187
  Location: ({ points, showLoader, loader, origin, onRadiusChange, onZoomChange, onAreaChange, }: ILocationBasedMap) => react_jsx_runtime.JSX.Element | null;
1188
1188
  Direction: ({ routes, origin, destination, travelModeLabels, points, showLoader, loader, onTravelModeChange, onRouteChange, onZoomChange, }: IDirectionBasedMapBase) => react_jsx_runtime.JSX.Element | null;
1189
1189
  Failed: ({ message }: IFailureMap) => react_jsx_runtime.JSX.Element | null;
1190
+ Loading: ({ loader }: {
1191
+ loader: React$1.ReactNode;
1192
+ }) => react_jsx_runtime.JSX.Element | null;
1190
1193
  };
1191
1194
 
1192
1195
  interface IWizard {
@@ -1209,6 +1212,7 @@ declare const Wizard: ({ children }: IWizard) => react_jsx_runtime.JSX.Element;
1209
1212
 
1210
1213
  interface ISearchBase {
1211
1214
  children: ReactElement<ISearchStep> | ReactElement<ISearchStep>[];
1215
+ onSubmit?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>) => void;
1212
1216
  }
1213
1217
  interface ISearch extends ISearchBase {
1214
1218
  mobileLabel: string;
@@ -1222,6 +1226,7 @@ interface ISearchStep {
1222
1226
  }
1223
1227
  interface ISearchAutocomplete<T> {
1224
1228
  children: ReactElement<ISearchStepAutocomplete<T>>;
1229
+ onSubmit?: (e: React$1.MouseEvent<HTMLDivElement, MouseEvent>, value: string) => void;
1225
1230
  }
1226
1231
  interface ISearchStepAutocomplete<T> extends AutocompleteI<T> {
1227
1232
  withFigure: ReactElement<IFigure>;