@abi-software/map-utilities 0.0.0-beta.0 → 0.0.0-beta.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/main.js +11 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/map-utilities",
3
- "version": "0.0.0-beta.0",
3
+ "version": "0.0.0-beta.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "serve": "vite",
package/src/main.js CHANGED
@@ -1,5 +1,16 @@
1
1
  import { createApp } from "vue";
2
2
  import App from "./App.vue";
3
3
 
4
+ import DrawToolbar from "./DrawToolbar/DrawToolbar.vue";
5
+ import HelpModeDialog from "./HelpModeDialog/HelpModeDialog.vue";
6
+ import Tooltip from "./Tooltip/Tooltip.vue";
7
+ import TreeControls from "./TreeControls/TreeControls.vue";
8
+
4
9
  const app = createApp(App);
10
+
11
+ app.component("DrawToolbar", DrawToolbar);
12
+ app.component("HelpModeDialog", HelpModeDialog);
13
+ app.component("Tooltip", Tooltip);
14
+ app.component("TreeControls", TreeControls);
15
+
5
16
  app.mount("#app");