searchsmartly-ui 0.0.161 → 0.0.162
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 +4 -1
- package/dist/index.esm.js +1 -1
- 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/Map/Map.d.ts +3 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ import { TypographyProps } from '@mui/material/Typography/Typography';
|
|
|
14
14
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
15
15
|
import { Theme as Theme$1 } from '@mui/material/styles';
|
|
16
16
|
import { TransitionProps } from '@mui/material/transitions';
|
|
17
|
+
import { MapRef } from 'react-map-gl';
|
|
18
|
+
export { MapRef } from 'react-map-gl';
|
|
17
19
|
import { FillPaint, LinePaint, MapboxGeoJSONFeature } from 'mapbox-gl';
|
|
18
20
|
import { Feature, Properties } from '@turf/helpers';
|
|
19
21
|
import { Geometry } from 'geojson';
|
|
@@ -586,7 +588,8 @@ type PinFeature = {
|
|
|
586
588
|
url?: string;
|
|
587
589
|
icon: string;
|
|
588
590
|
};
|
|
589
|
-
|
|
591
|
+
|
|
592
|
+
declare const MapWrapper: react.ForwardRefExoticComponent<MapProps & react.RefAttributes<MapRef>>;
|
|
590
593
|
|
|
591
594
|
type PolygonType = {
|
|
592
595
|
tagIndex: number | null;
|