@smart-factor/gem-ui-map-component 0.0.32 → 0.0.33

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.
@@ -1,4 +1,6 @@
1
- declare const LayersTree: ({ onlyGemLayers }: {
1
+ interface LayersTreeProps {
2
2
  onlyGemLayers: boolean;
3
- }) => import("react/jsx-runtime").JSX.Element;
3
+ disableTreeConfig?: boolean;
4
+ }
5
+ declare const LayersTree: ({ onlyGemLayers, disableTreeConfig }: LayersTreeProps) => import("react/jsx-runtime").JSX.Element;
4
6
  export default LayersTree;
@@ -1,3 +1,3 @@
1
1
  import { MapExternalProps } from './types';
2
- declare const MapWithProviders: ({ id, mapLayers, caseObjectId, sidebarConfig, mapButtonsConfig, mapElementsConfig, setOuterDrawnGeometries, setOuterSelectedMapObjects, selectedFeatures, multiSelectEnabled, initialDrawnGeometries, disableEditNonUserDrawnGeometries, enforceWithinRoad, }: MapExternalProps) => import("react/jsx-runtime").JSX.Element;
2
+ declare const MapWithProviders: ({ id, mapLayers, caseObjectId, sidebarConfig, mapButtonsConfig, mapElementsConfig, setOuterDrawnGeometries, setOuterSelectedMapObjects, selectedFeatures, multiSelectEnabled, initialDrawnGeometries, disableEditNonUserDrawnGeometries, enforceWithinRoad, disableTreeConfig, }: MapExternalProps) => import("react/jsx-runtime").JSX.Element;
3
3
  export default MapWithProviders;
@@ -17,5 +17,6 @@ export interface MapConfig {
17
17
  mapElementsConfig: MapElementsConfig;
18
18
  disableEditNonUserDrawnGeometries: boolean;
19
19
  enforceWithinRoad: boolean;
20
+ disableTreeConfig?: boolean;
20
21
  }
21
22
  export {};
@@ -1,2 +1,2 @@
1
1
  import { MapExternalProps } from '../Map/types';
2
- export declare const MapSidebar: ({ sidebarConfig, }: Pick<MapExternalProps, 'sidebarConfig'>) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const MapSidebar: ({ sidebarConfig, disableTreeConfig, }: Pick<MapExternalProps, 'sidebarConfig' | 'disableTreeConfig'>) => import("react/jsx-runtime").JSX.Element;