@omnic/widget-locations 1.1.6 → 1.1.7

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.
@@ -6,5 +6,5 @@ type AsyncSelectProps<Option, IsMulti extends boolean, Group extends GroupBase<O
6
6
  className?: string;
7
7
  customDropdownIcon?: React.ReactNode;
8
8
  };
9
- export declare const AsyncSelect: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>({ label, className, customDropdownIcon, ...props }: AsyncSelectProps<Option, IsMulti, Group>) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const AsyncSelect: <Option, IsMulti extends boolean, Group extends GroupBase<Option>>({ className, customDropdownIcon, label, ...props }: AsyncSelectProps<Option, IsMulti, Group>) => import("react/jsx-runtime").JSX.Element;
10
10
  export {};
@@ -7,4 +7,4 @@ export type CheckboxGroupProps<T> = Omit<HTMLAttributes<HTMLDivElement>, "onChan
7
7
  children: React.ReactElement<RadioProps<T>>[];
8
8
  onChange?: (value: T) => void;
9
9
  };
10
- export declare const CheckboxGroup: <T extends Dictionary<unknown>>({ label, value, onChange, children, className, ...props }: CheckboxGroupProps<T>) => import("react/jsx-runtime").JSX.Element;
10
+ export declare const CheckboxGroup: <T extends Dictionary<unknown>>({ children, className, label, onChange, value, ...props }: CheckboxGroupProps<T>) => import("react/jsx-runtime").JSX.Element;
@@ -25,5 +25,5 @@ export type DeliveryDetailsModalAction = {
25
25
  type: "SET_APARTMENT_NUMBER";
26
26
  payload: string;
27
27
  };
28
- export declare const createReducer: ({ set, hideDeliveryTime }: ReducerParams) => Reducer<DeliveryDetailsModalState, DeliveryDetailsModalAction>;
28
+ export declare const createReducer: ({ hideDeliveryTime, set }: ReducerParams) => Reducer<DeliveryDetailsModalState, DeliveryDetailsModalAction>;
29
29
  export {};
@@ -5,4 +5,4 @@ export type RadioProps<T> = InputHTMLAttributes<HTMLInputElement> & {
5
5
  label?: string;
6
6
  labelProps?: LabelHTMLAttributes<HTMLLabelElement>;
7
7
  };
8
- export declare const Radio: <T>({ label, className, labelProps, ...props }: RadioProps<T>) => import("react/jsx-runtime").JSX.Element;
8
+ export declare const Radio: <T>({ className, label, labelProps, ...props }: RadioProps<T>) => import("react/jsx-runtime").JSX.Element;
@@ -7,4 +7,4 @@ export type RadioGroupProps<T> = Omit<HTMLAttributes<HTMLDivElement>, "onChange"
7
7
  children: React.ReactElement<RadioProps<T>>[];
8
8
  onChange?: (value: T) => void;
9
9
  };
10
- export declare const RadioGroup: <T>({ label, value, onChange, children, className, ...props }: RadioGroupProps<T>) => import("react/jsx-runtime").JSX.Element;
10
+ export declare const RadioGroup: <T>({ children, className, label, onChange, value, ...props }: RadioGroupProps<T>) => import("react/jsx-runtime").JSX.Element;
@@ -8,5 +8,5 @@ interface FetchPointsRequestParams {
8
8
  interface FetchPointsRequestOptions {
9
9
  controller?: AbortController;
10
10
  }
11
- export declare function fetchPointsRequest({ q, filter, bounds }?: FetchPointsRequestParams, { controller }?: FetchPointsRequestOptions): AsyncGenerator<import("axios").AxiosResponse<HttpResponse<PointsList>, any>, import("axios").AxiosResponse<HttpResponse<PointsList>, any>, unknown>;
11
+ export declare function fetchPointsRequest({ bounds, filter, q }?: FetchPointsRequestParams, { controller }?: FetchPointsRequestOptions): AsyncGenerator<import("axios").AxiosResponse<HttpResponse<PointsList>, any>, import("axios").AxiosResponse<HttpResponse<PointsList>, any>, unknown>;
12
12
  export {};