@abi-software/map-utilities 0.0.0-beta.5 → 0.0.0-beta.6
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/LICENSE +201 -201
- package/README.md +27 -27
- package/dist/map-utilities.js +554 -560
- package/dist/map-utilities.umd.cjs +13 -13
- package/dist/style.css +1 -1
- package/jsconfig.json +8 -8
- package/package.json +40 -40
- package/src/App.vue +511 -506
- package/src/assets/_variables.scss +43 -43
- package/src/assets/styles.scss +5 -5
- package/src/components/DrawToolbar/ConnectionDialog.vue +118 -118
- package/src/components/DrawToolbar/DrawToolbar.vue +627 -627
- package/src/components/EventBus.js +3 -3
- package/src/components/HelpModeDialog/HelpModeDialog.vue +394 -413
- package/src/components/Tooltip/AnnotationPopup.vue +467 -467
- package/src/components/Tooltip/ExternalResourceCard.vue +108 -104
- package/src/components/Tooltip/ProvenancePopup.vue +518 -516
- package/src/components/Tooltip/Tooltip.vue +53 -45
- package/src/components/TreeControls/TreeControls.vue +350 -345
- package/src/components/index.js +6 -6
- package/src/main.js +16 -16
- package/vite.config.js +56 -56
package/jsconfig.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"paths": {
|
|
4
|
-
"@/*": ["./src/*"]
|
|
5
|
-
}
|
|
6
|
-
},
|
|
7
|
-
"exclude": ["node_modules", "dist"]
|
|
8
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"paths": {
|
|
4
|
+
"@/*": ["./src/*"]
|
|
5
|
+
}
|
|
6
|
+
},
|
|
7
|
+
"exclude": ["node_modules", "dist"]
|
|
8
|
+
}
|
package/package.json
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@abi-software/map-utilities",
|
|
3
|
-
"version": "0.0.0-beta.
|
|
4
|
-
"files": [
|
|
5
|
-
"dist/*",
|
|
6
|
-
"src/*",
|
|
7
|
-
"public/*",
|
|
8
|
-
"*.json",
|
|
9
|
-
"*.js"
|
|
10
|
-
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"serve": "vite",
|
|
13
|
-
"build-bundle": "vite build",
|
|
14
|
-
"preview": "vite preview"
|
|
15
|
-
},
|
|
16
|
-
"type": "module",
|
|
17
|
-
"main": "./dist/map-utilities.umd.cjs",
|
|
18
|
-
"module": "./dist/map-utilities.js",
|
|
19
|
-
"exports": {
|
|
20
|
-
".": {
|
|
21
|
-
"import": "./dist/map-utilities.js",
|
|
22
|
-
"require": "./dist/map-utilities.umd.cjs"
|
|
23
|
-
},
|
|
24
|
-
"./dist/style.css": "./dist/style.css",
|
|
25
|
-
"./src/*": "./src/*"
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"@abi-software/svg-sprite": "^1.0.0",
|
|
29
|
-
"@element-plus/icons-vue": "^2.3.1",
|
|
30
|
-
"element-plus": "^2.7.3",
|
|
31
|
-
"mitt": "^3.0.1",
|
|
32
|
-
"vue": "^3.4.21"
|
|
33
|
-
},
|
|
34
|
-
"devDependencies": {
|
|
35
|
-
"@vitejs/plugin-vue": "^5.0.4",
|
|
36
|
-
"sass": "^1.77.4",
|
|
37
|
-
"unplugin-vue-components": "^0.27.0",
|
|
38
|
-
"vite": "^5.2.8"
|
|
39
|
-
}
|
|
40
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@abi-software/map-utilities",
|
|
3
|
+
"version": "0.0.0-beta.6",
|
|
4
|
+
"files": [
|
|
5
|
+
"dist/*",
|
|
6
|
+
"src/*",
|
|
7
|
+
"public/*",
|
|
8
|
+
"*.json",
|
|
9
|
+
"*.js"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"serve": "vite --host",
|
|
13
|
+
"build-bundle": "vite build",
|
|
14
|
+
"preview": "vite preview"
|
|
15
|
+
},
|
|
16
|
+
"type": "module",
|
|
17
|
+
"main": "./dist/map-utilities.umd.cjs",
|
|
18
|
+
"module": "./dist/map-utilities.js",
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"import": "./dist/map-utilities.js",
|
|
22
|
+
"require": "./dist/map-utilities.umd.cjs"
|
|
23
|
+
},
|
|
24
|
+
"./dist/style.css": "./dist/style.css",
|
|
25
|
+
"./src/*": "./src/*"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@abi-software/svg-sprite": "^1.0.0",
|
|
29
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
30
|
+
"element-plus": "^2.7.3",
|
|
31
|
+
"mitt": "^3.0.1",
|
|
32
|
+
"vue": "^3.4.21"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@vitejs/plugin-vue": "^5.0.4",
|
|
36
|
+
"sass": "^1.77.4",
|
|
37
|
+
"unplugin-vue-components": "^0.27.0",
|
|
38
|
+
"vite": "^5.2.8"
|
|
39
|
+
}
|
|
40
|
+
}
|