@abi-software/flatmapvuer 0.5.6 → 0.5.7-alpha

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 (36) hide show
  1. package/CHANGELOG.md +385 -385
  2. package/LICENSE +201 -201
  3. package/README.md +105 -105
  4. package/babel.config.js +14 -14
  5. package/dist/flatmapvuer.common.js +80 -74
  6. package/dist/flatmapvuer.common.js.map +1 -1
  7. package/dist/flatmapvuer.umd.js +80 -74
  8. package/dist/flatmapvuer.umd.js.map +1 -1
  9. package/dist/flatmapvuer.umd.min.js +2 -2
  10. package/dist/flatmapvuer.umd.min.js.map +1 -1
  11. package/package-lock.json +14390 -14390
  12. package/package.json +78 -78
  13. package/public/index.html +17 -17
  14. package/src/App.vue +226 -226
  15. package/src/assets/_variables.scss +43 -43
  16. package/src/assets/styles.scss +7 -7
  17. package/src/components/EventBus.js +2 -2
  18. package/src/components/ExternalResourceCard.vue +98 -98
  19. package/src/components/FlatmapVuer.vue +1837 -1837
  20. package/src/components/MultiFlatmapVuer.vue +523 -523
  21. package/src/components/SelectionsGroup.vue +249 -249
  22. package/src/components/Tooltip.vue +422 -422
  23. package/src/components/TreeControls.vue +231 -231
  24. package/src/components/index.js +9 -9
  25. package/src/components/legends/DynamicLegends.vue +112 -112
  26. package/src/components/legends/SvgLegends.vue +66 -66
  27. package/src/icons/fonts/mapicon-species.eot +0 -0
  28. package/src/icons/fonts/mapicon-species.svg +14 -14
  29. package/src/icons/fonts/mapicon-species.ttf +0 -0
  30. package/src/icons/fonts/mapicon-species.woff +0 -0
  31. package/src/icons/mapicon-species-style.css +42 -42
  32. package/src/legends/legend.svg +25 -25
  33. package/src/main.js +8 -8
  34. package/src/nerve-map.js +99 -0
  35. package/src/services/flatmapQueries.js +420 -412
  36. package/vue.config.js +31 -31
package/vue.config.js CHANGED
@@ -1,31 +1,31 @@
1
- const nodeExternals = require('webpack-node-externals');
2
-
3
- module.exports = {
4
- configureWebpack: config => {
5
- if(process.env.NODE_ENV === 'production') {
6
- config.externals = [nodeExternals({allowlist: [/^element-ui/]}) ];
7
- }
8
- },
9
- chainWebpack: config => {
10
- const fontsRule = config.module.rule('fonts')
11
- fontsRule.uses.clear()
12
- config.module
13
- .rule('fonts')
14
- .test(/\.(ttf|otf|eot|woff|woff2)$/)
15
- .use('base64-inline-loader')
16
- .loader('base64-inline-loader')
17
- .tap(options => {
18
- // modify the options...
19
- return options
20
- })
21
- .end()
22
- },
23
- css: {
24
- //Import variables into all stylesheets.
25
- loaderOptions: {
26
- sass: {
27
- prependData: `@import '@/assets/styles';`
28
- }
29
- }
30
- }
31
- }
1
+ const nodeExternals = require('webpack-node-externals');
2
+
3
+ module.exports = {
4
+ configureWebpack: config => {
5
+ if(process.env.NODE_ENV === 'production') {
6
+ config.externals = [nodeExternals({allowlist: [/^element-ui/]}) ];
7
+ }
8
+ },
9
+ chainWebpack: config => {
10
+ const fontsRule = config.module.rule('fonts')
11
+ fontsRule.uses.clear()
12
+ config.module
13
+ .rule('fonts')
14
+ .test(/\.(ttf|otf|eot|woff|woff2)$/)
15
+ .use('base64-inline-loader')
16
+ .loader('base64-inline-loader')
17
+ .tap(options => {
18
+ // modify the options...
19
+ return options
20
+ })
21
+ .end()
22
+ },
23
+ css: {
24
+ //Import variables into all stylesheets.
25
+ loaderOptions: {
26
+ sass: {
27
+ prependData: `@import '@/assets/styles';`
28
+ }
29
+ }
30
+ }
31
+ }