@opensystemslab/map 1.0.0-alpha.12 → 1.0.0-alpha.2

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/types/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
1
  export { MyMap } from "./components/my-map/index";
2
2
  export { AddressAutocomplete } from "./components/address-autocomplete/index";
3
- export { GeocodeAutocomplete } from "./components/geocode-autocomplete/index";
4
3
  export { PostcodeSearch } from "./components/postcode-search/index";
@@ -1,4 +1,4 @@
1
- type OSServices = "xyz" | "vectorTile" | "vectorTileStyle" | "places" | "find" | "features";
1
+ type OSServices = "xyz" | "vectorTile" | "vectorTileStyle" | "places" | "features";
2
2
  interface ServiceOptions {
3
3
  service: OSServices;
4
4
  apiKey: string;
@@ -1,4 +1,3 @@
1
1
  export declare function getShadowRoot(customEl: string): ShadowRoot | null | undefined;
2
2
  export declare function getShadowRootEl(customEl: string, el: string): Element | null | undefined;
3
- export declare function waitForElement(customEl: string): Promise<void>;
4
3
  export declare function setupMap(mapElement: any): Promise<void>;