@abi-software/flatmapvuer 0.6.0-vue3.8 → 0.6.1-vue3.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.
Files changed (35) hide show
  1. package/LICENSE +201 -201
  2. package/README.md +107 -107
  3. package/dist/flatmapvuer.js +17 -17
  4. package/dist/flatmapvuer.umd.cjs +2 -2
  5. package/dist/index.html +17 -17
  6. package/dist/style.css +1 -1
  7. package/package.json +84 -84
  8. package/public/index.html +17 -17
  9. package/src/App.vue +319 -318
  10. package/src/assets/_variables.scss +43 -43
  11. package/src/assets/styles.scss +5 -5
  12. package/src/components/AnnotationTool.vue +437 -437
  13. package/src/components/EventBus.js +3 -3
  14. package/src/components/ExternalResourceCard.vue +106 -106
  15. package/src/components/FlatmapVuer.vue +2129 -2129
  16. package/src/components/MultiFlatmapVuer.vue +613 -613
  17. package/src/components/ProvenancePopup.vue +490 -490
  18. package/src/components/SelectionsGroup.vue +255 -255
  19. package/src/components/Tooltip.vue +50 -50
  20. package/src/components/TreeControls.vue +231 -231
  21. package/src/components/index.js +7 -7
  22. package/src/components/legends/DynamicLegends.vue +106 -106
  23. package/src/components/legends/SvgLegends.vue +112 -112
  24. package/src/icons/flatmap-marker.js +1 -1
  25. package/src/icons/fonts/mapicon-species.svg +14 -14
  26. package/src/icons/fonts/mapicon-species.ttf +0 -0
  27. package/src/icons/fonts/mapicon-species.woff +0 -0
  28. package/src/icons/mapicon-species-style.css +42 -42
  29. package/src/icons/yellowstar.js +5 -5
  30. package/src/legends/legend.svg +25 -25
  31. package/src/main.js +4 -4
  32. package/src/nerve-map.js +99 -0
  33. package/src/services/flatmapQueries.js +451 -451
  34. package/vite.config.js +66 -66
  35. package/vite.static-build.js +12 -12
package/package.json CHANGED
@@ -1,84 +1,84 @@
1
- {
2
- "name": "@abi-software/flatmapvuer",
3
- "version": "0.6.0-vue3.8",
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
- "serve": "vite --host",
18
- "build-bundle": "vite build",
19
- "build-static": "vite build -c vite.static-build.js",
20
- "release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
21
- "release:minor": "npm version minor; npm publish",
22
- "release:patch": "npm version patch; npm publish",
23
- "changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
24
- "version": "npm run build-bundle;npm run changelog; git add CHANGELOG.md"
25
- },
26
- "type": "module",
27
- "main": "./dist/flatmapvuer.umd.cjs",
28
- "module": "./dist/flatmapvuer.js",
29
- "exports": {
30
- ".": {
31
- "import": "./dist/flatmapvuer.js",
32
- "require": "./dist/flatmapvuer.umd.cjs"
33
- },
34
- "./dist/style.css": "./dist/style.css",
35
- "./src/*": "./src/*"
36
- },
37
- "dependencies": {
38
- "@abi-software/flatmap-viewer": "^2.4.4",
39
- "@abi-software/sparc-annotation": "0.0.5",
40
- "@abi-software/svg-sprite": "^0.4.0-vue3-beta.0",
41
- "@element-plus/icons-vue": "^2.3.1",
42
- "@vue/compat": "^3.3.13",
43
- "core-js": "^3.22.5",
44
- "css-element-queries": "^1.2.2",
45
- "current-script-polyfill": "^1.0.0",
46
- "element-plus": "^2.4.4",
47
- "file-loader": "^5.0.2",
48
- "lodash": "^4.17.21",
49
- "mitt": "^3.0.1",
50
- "unplugin-vue-components": "^0.26.0",
51
- "vue": "^3.3.13"
52
- },
53
- "devDependencies": {
54
- "@vitejs/plugin-vue": "^4.6.2",
55
- "@vue/compiler-sfc": "^3.3.13",
56
- "auto-changelog": "^2.4.0",
57
- "babel-eslint": "^10.1.0",
58
- "babel-plugin-component": "^1.1.1",
59
- "base64-inline-loader": "^2.0.1",
60
- "eslint": "^8.56.0",
61
- "eslint-plugin-vue": "^9.19.2",
62
- "sass": "^1.69.5",
63
- "vite": "^5.0.10",
64
- "webpack-node-externals": "^2.5.2"
65
- },
66
- "eslintConfig": {
67
- "root": true,
68
- "env": {
69
- "node": true
70
- },
71
- "extends": [
72
- "plugin:vue/essential",
73
- "eslint:recommended"
74
- ],
75
- "rules": {},
76
- "parserOptions": {
77
- "parser": "babel-eslint"
78
- }
79
- },
80
- "browserslist": [
81
- "> 1%",
82
- "last 2 versions"
83
- ]
84
- }
1
+ {
2
+ "name": "@abi-software/flatmapvuer",
3
+ "version": "0.6.1-vue3.8",
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
+ "serve": "vite --host",
18
+ "build-bundle": "vite build",
19
+ "build-static": "vite build -c vite.static-build.js",
20
+ "release:beta": "npm version prerelease --preid=beta; npm publish --tag beta",
21
+ "release:minor": "npm version minor; npm publish",
22
+ "release:patch": "npm version patch; npm publish",
23
+ "changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
24
+ "version": "npm run build-bundle;npm run changelog; git add CHANGELOG.md"
25
+ },
26
+ "type": "module",
27
+ "main": "./dist/flatmapvuer.umd.cjs",
28
+ "module": "./dist/flatmapvuer.js",
29
+ "exports": {
30
+ ".": {
31
+ "import": "./dist/flatmapvuer.js",
32
+ "require": "./dist/flatmapvuer.umd.cjs"
33
+ },
34
+ "./dist/style.css": "./dist/style.css",
35
+ "./src/*": "./src/*"
36
+ },
37
+ "dependencies": {
38
+ "@abi-software/flatmap-viewer": "^2.4.4",
39
+ "@abi-software/sparc-annotation": "0.0.5",
40
+ "@abi-software/svg-sprite": "^0.4.0-vue3-beta.0",
41
+ "@element-plus/icons-vue": "^2.3.1",
42
+ "@vue/compat": "^3.3.13",
43
+ "core-js": "^3.22.5",
44
+ "css-element-queries": "^1.2.2",
45
+ "current-script-polyfill": "^1.0.0",
46
+ "element-plus": "^2.4.4",
47
+ "file-loader": "^5.0.2",
48
+ "lodash": "^4.17.21",
49
+ "mitt": "^3.0.1",
50
+ "unplugin-vue-components": "^0.26.0",
51
+ "vue": "^3.3.13"
52
+ },
53
+ "devDependencies": {
54
+ "@vitejs/plugin-vue": "^4.6.2",
55
+ "@vue/compiler-sfc": "^3.3.13",
56
+ "auto-changelog": "^2.4.0",
57
+ "babel-eslint": "^10.1.0",
58
+ "babel-plugin-component": "^1.1.1",
59
+ "base64-inline-loader": "^2.0.1",
60
+ "eslint": "^8.56.0",
61
+ "eslint-plugin-vue": "^9.19.2",
62
+ "sass": "^1.69.5",
63
+ "vite": "^5.0.10",
64
+ "webpack-node-externals": "^2.5.2"
65
+ },
66
+ "eslintConfig": {
67
+ "root": true,
68
+ "env": {
69
+ "node": true
70
+ },
71
+ "extends": [
72
+ "plugin:vue/essential",
73
+ "eslint:recommended"
74
+ ],
75
+ "rules": {},
76
+ "parserOptions": {
77
+ "parser": "babel-eslint"
78
+ }
79
+ },
80
+ "browserslist": [
81
+ "> 1%",
82
+ "last 2 versions"
83
+ ]
84
+ }
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>