@abi-software/flatmapvuer 0.5.10 → 0.6.0-vue3-0
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 +105 -105
- package/babel.config.js +0 -14
- package/dist/favicon.ico +0 -0
- package/dist/flatmapvuer.js +69542 -0
- package/dist/flatmapvuer.umd.cjs +1021 -0
- package/dist/index.html +17 -0
- package/dist/style.css +1 -0
- package/package.json +87 -79
- package/public/index.html +17 -17
- package/src/App.vue +303 -228
- package/src/assets/_variables.scss +43 -43
- package/src/assets/styles.scss +6 -7
- package/src/components/AnnotationTool.vue +443 -403
- package/src/components/EventBus.js +3 -3
- package/src/components/ExternalResourceCard.vue +108 -99
- package/src/components/FlatmapVuer.vue +2117 -2070
- package/src/components/MultiFlatmapVuer.vue +603 -535
- package/src/components/ProvenancePopup.vue +496 -422
- package/src/components/SelectionsGroup.vue +258 -249
- package/src/components/Tooltip.vue +50 -52
- package/src/components/TreeControls.vue +234 -231
- package/src/components/index.js +6 -9
- package/src/components/legends/DynamicLegends.vue +106 -112
- package/src/components/legends/SvgLegends.vue +112 -67
- package/src/components.d.ts +46 -0
- package/src/icons/flatmap-marker.js +1 -1
- package/src/icons/fonts/mapicon-species.eot +0 -0
- package/src/icons/fonts/mapicon-species.svg +14 -14
- package/src/icons/fonts/mapicon-species.ttf +0 -0
- package/src/icons/fonts/mapicon-species.woff +0 -0
- package/src/icons/mapicon-species-style.css +42 -42
- package/src/icons/yellowstar.js +5 -5
- package/src/legends/legend.svg +25 -25
- package/src/main.js +4 -8
- package/src/services/flatmapQueries.js +451 -415
- package/vite.config.js +76 -0
- package/vue.config.js +45 -31
- package/CHANGELOG.md +0 -402
- package/package-lock.json +0 -18473
- package/src/nerve-map.js +0 -99
package/package.json
CHANGED
|
@@ -1,79 +1,87 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@abi-software/flatmapvuer",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"license": "Apache-2.0",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"*.
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"build": "
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"release:
|
|
24
|
-
"release:
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"@
|
|
43
|
-
"@vue/
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"vue
|
|
54
|
-
"
|
|
55
|
-
},
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@abi-software/flatmapvuer",
|
|
3
|
+
"version": "0.6.0-vue3-0",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist/*",
|
|
7
|
+
"src/*",
|
|
8
|
+
"public/*",
|
|
9
|
+
"*.json",
|
|
10
|
+
"*.js"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/ABI-Software/flatmapvuer.git"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"start": "vue-cli-service serve",
|
|
18
|
+
"serve": "vite --host",
|
|
19
|
+
"build": "vue-cli-service build --dest test_html --mode staging",
|
|
20
|
+
"build-bundle": "vite build",
|
|
21
|
+
"lint": "vue-cli-service lint",
|
|
22
|
+
"release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
|
|
23
|
+
"release:minor": "npm version minor; npm publish",
|
|
24
|
+
"release:patch": "npm version patch; npm publish",
|
|
25
|
+
"changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
|
|
26
|
+
"version": "npm run build-bundle;npm run changelog; git add CHANGELOG.md"
|
|
27
|
+
},
|
|
28
|
+
"type": "module",
|
|
29
|
+
"main": "./dist/flatmapvuer.umd.cjs",
|
|
30
|
+
"module": "./dist/flatmapvuer.js",
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"import": "./dist/flatmapvuer.js",
|
|
34
|
+
"require": "./dist/flatmapvuer.umd.cjs"
|
|
35
|
+
},
|
|
36
|
+
"./dist/style.css": "./dist/style.css"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@abi-software/flatmap-viewer": "^2.4.3",
|
|
40
|
+
"@abi-software/sparc-annotation": "0.0.5",
|
|
41
|
+
"@abi-software/svg-sprite": "^0.3.0",
|
|
42
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
43
|
+
"@vue/compat": "^3.3.13",
|
|
44
|
+
"core-js": "^3.6.5",
|
|
45
|
+
"css-element-queries": "^1.2.2",
|
|
46
|
+
"current-script-polyfill": "^1.0.0",
|
|
47
|
+
"element-plus": "^2.4.4",
|
|
48
|
+
"file-loader": "^5.0.2",
|
|
49
|
+
"lodash": "^4.17.21",
|
|
50
|
+
"mitt": "^3.0.1",
|
|
51
|
+
"unocss": "^0.58.0",
|
|
52
|
+
"unplugin-vue-components": "^0.26.0",
|
|
53
|
+
"vue": "^3.3.13",
|
|
54
|
+
"vue3-component-svg-sprite": "^0.0.1"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@vitejs/plugin-vue": "^4.6.2",
|
|
58
|
+
"@vue/compiler-sfc": "^3.3.13",
|
|
59
|
+
"auto-changelog": "^2.4.0",
|
|
60
|
+
"babel-eslint": "^10.1.0",
|
|
61
|
+
"babel-plugin-component": "^1.1.1",
|
|
62
|
+
"base64-inline-loader": "^2.0.1",
|
|
63
|
+
"eslint": "^8.56.0",
|
|
64
|
+
"eslint-plugin-vue": "^9.19.2",
|
|
65
|
+
"sass": "^1.69.5",
|
|
66
|
+
"vite": "^5.0.10",
|
|
67
|
+
"webpack-node-externals": "^2.5.2"
|
|
68
|
+
},
|
|
69
|
+
"eslintConfig": {
|
|
70
|
+
"root": true,
|
|
71
|
+
"env": {
|
|
72
|
+
"node": true
|
|
73
|
+
},
|
|
74
|
+
"extends": [
|
|
75
|
+
"plugin:vue/essential",
|
|
76
|
+
"eslint:recommended"
|
|
77
|
+
],
|
|
78
|
+
"rules": {},
|
|
79
|
+
"parserOptions": {
|
|
80
|
+
"parser": "babel-eslint"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"browserslist": [
|
|
84
|
+
"> 1%",
|
|
85
|
+
"last 2 versions"
|
|
86
|
+
]
|
|
87
|
+
}
|
package/public/index.html
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
|
-
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
|
8
|
-
<title>flatmapvuer</title>
|
|
9
|
-
</head>
|
|
10
|
-
<body>
|
|
11
|
-
<noscript>
|
|
12
|
-
<strong>We're sorry but scaffoldvuer doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
13
|
-
</noscript>
|
|
14
|
-
<div id="app"></div>
|
|
15
|
-
<!-- built files will be auto injected -->
|
|
16
|
-
</body>
|
|
17
|
-
</html>
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
7
|
+
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
|
8
|
+
<title>flatmapvuer</title>
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<noscript>
|
|
12
|
+
<strong>We're sorry but scaffoldvuer doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
|
13
|
+
</noscript>
|
|
14
|
+
<div id="app"></div>
|
|
15
|
+
<!-- built files will be auto injected -->
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|