@omnic/widget-locations 1.1.81 → 1.1.83

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omnic/widget-locations",
3
- "version": "1.1.81",
3
+ "version": "1.1.83",
4
4
  "description": "Simple map widget for Omnic Delivery applications",
5
5
  "files": [
6
6
  "@types",
@@ -74,5 +74,5 @@
74
74
  "lerna": "8.1.2",
75
75
  "sass": "1.72.0"
76
76
  },
77
- "gitHead": "5be1861250e7293a26ac7530d8b881850c2735c9"
77
+ "gitHead": "bceb954d8746cf458df5246ea8d981e4a2951d04"
78
78
  }
@@ -1,5 +0,0 @@
1
- import { type FC, type ReactNode } from "react";
2
- export interface MapApiProviderProps {
3
- children: ReactNode;
4
- }
5
- export declare const MapApiProvider: FC<MapApiProviderProps>;
@@ -1 +0,0 @@
1
- export * from "./MapApiProvider";
@@ -1,11 +0,0 @@
1
- import type { FC, ReactNode } from "react";
2
- interface Props {
3
- children: ReactNode;
4
- }
5
- interface MapKeyContextValue {
6
- mapKey: string;
7
- mapId: string;
8
- }
9
- export declare const MapKeyProvider: FC<Props>;
10
- export declare const useMapKeyContext: () => MapKeyContextValue;
11
- export {};