@abi-software/flatmapvuer 0.4.1 → 0.4.3

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 +105 -105
  3. package/babel.config.js +14 -14
  4. package/dist/flatmapvuer.common.js +114 -92
  5. package/dist/flatmapvuer.common.js.map +1 -1
  6. package/dist/flatmapvuer.css +1 -1
  7. package/dist/flatmapvuer.umd.js +114 -92
  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 +14228 -14228
  12. package/package.json +72 -72
  13. package/public/index.html +17 -17
  14. package/src/App.vue +221 -221
  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 +1627 -1610
  20. package/src/components/MultiFlatmapVuer.vue +509 -509
  21. package/src/components/SelectionsGroup.vue +248 -248
  22. package/src/components/Tooltip.vue +405 -405
  23. package/src/components/index.js +9 -9
  24. package/src/components/legends/DynamicLegends.vue +112 -112
  25. package/src/components/legends/SvgLegends.vue +66 -66
  26. package/src/icons/fonts/mapicon-species.eot +0 -0
  27. package/src/icons/fonts/mapicon-species.svg +14 -14
  28. package/src/icons/fonts/mapicon-species.ttf +0 -0
  29. package/src/icons/fonts/mapicon-species.woff +0 -0
  30. package/src/icons/mapicon-species-style.css +42 -42
  31. package/src/legends/legend.svg +25 -25
  32. package/src/main.js +8 -8
  33. package/src/nerve-map.js +99 -0
  34. package/src/services/flatmapQueries.js +384 -380
  35. 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
+ }