@macrostrat/map-interface 0.0.6 → 0.0.8

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": "@macrostrat/map-interface",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "Map interface for Macrostrat",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",
@@ -30,14 +30,13 @@
30
30
  "build": "parcel build"
31
31
  },
32
32
  "exports": {
33
- "typescript": "./src/index.ts",
34
33
  ".": {
35
34
  "import": "./dist/index.js",
36
35
  "require": "./dist/index.js"
37
36
  },
38
- "./src": {
39
- "import": "./src/index.css",
40
- "require": "./src/index.css"
37
+ "./dist/": {
38
+ "import": "./dist/",
39
+ "require": "./dist/"
41
40
  }
42
41
  },
43
42
  "files": [
package/src/container.ts CHANGED
@@ -15,10 +15,6 @@ import { Card } from "@blueprintjs/core";
15
15
 
16
16
  import { ReactNode } from "react";
17
17
 
18
- export * from "./location-panel";
19
- export * from "./context-panel";
20
- //export * from "./dev";
21
-
22
18
  export function MapInterface() {
23
19
  return h("div", "Hello world");
24
20
  }
@@ -136,5 +132,4 @@ export function MapStyledContainer({ className, children }: MapContainerProps) {
136
132
  return h("div", { className }, children);
137
133
  }
138
134
 
139
- export * from "./map-view";
140
135
  //const _MapPage = compose(HotkeysProvider, MapPage);