@omnic/widget-locations 1.0.85 → 1.0.88

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.
@@ -58,6 +58,7 @@ export interface WidgetConfig {
58
58
  hideHeader?: boolean;
59
59
  hideFilters?: boolean;
60
60
  hideSearchInput?: boolean;
61
+ hideMapControls?: boolean;
61
62
  inputs?: WidgetInputs;
62
63
  handlers?: WidgetHandlers;
63
64
  startScreen?: StartScreenType;
@@ -1,4 +1,4 @@
1
- import type { FC } from "react";
1
+ import { type FC } from "react";
2
2
  import type { WidgetConfig, WidgetOptions } from '../../types/config';
3
3
  interface WidgetProps {
4
4
  config?: WidgetConfig;
@@ -6,4 +6,4 @@ export declare const usePaletteUpdateWatcher: (palette: Nullable<Palette>) => vo
6
6
  export declare const useButtonRadiusUpdateWatcher: (radius: Nullable<number>) => void;
7
7
  export declare const useFontUpdateWatcher: (font: Nullable<string>) => void;
8
8
  export declare const useStartScreenUpdateWatcher: (startScreen: Nullable<StartScreenType>) => void;
9
- export declare const useSetCityByCoordinates: (center: Coordinates, locale: Locale, zoom: number) => void;
9
+ export declare const useSetCityByCoordinates: (center: Coordinates, zoom: number, loaded: boolean) => void;