@almadar/ui 2.48.6 → 2.48.9

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,3 @@
1
- import 'leaflet/dist/leaflet.css';
2
1
  export interface MapMarkerData {
3
2
  /** Unique marker identifier */
4
3
  id: string | number;
@@ -37,4 +36,9 @@ export interface MapViewProps {
37
36
  /** Show attribution (default true) */
38
37
  showAttribution?: boolean;
39
38
  }
40
- export declare function MapView({ markers, centerLat, centerLng, zoom, height, onMarkerClick, onMapClick, mapClickEvent, markerClickEvent, showClickedPin, className, showAttribution, }: MapViewProps): import("react/jsx-runtime").JSX.Element;
39
+ /**
40
+ * Server-safe wrapper. Renders an empty Box on the server (or until the
41
+ * lazy implementation finishes loading on the client) so SSR never reaches
42
+ * the leaflet code.
43
+ */
44
+ export declare function MapView(props: MapViewProps): import("react/jsx-runtime").JSX.Element;