@abi-software/flatmapvuer 1.1.4 → 1.2.0-beta.1

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 (43) hide show
  1. package/LICENSE +201 -201
  2. package/README.md +120 -120
  3. package/cypress.config.js +23 -23
  4. package/dist/flatmapvuer.js +44509 -43153
  5. package/dist/flatmapvuer.umd.cjs +171 -171
  6. package/dist/index.html +17 -17
  7. package/dist/style.css +1 -1
  8. package/package.json +96 -95
  9. package/public/index.html +17 -17
  10. package/reporter-config.json +9 -9
  11. package/src/App.vue +378 -379
  12. package/src/assets/_variables.scss +43 -43
  13. package/src/assets/styles.scss +5 -5
  14. package/src/components/EventBus.js +3 -3
  15. package/src/components/FlatmapVuer.vue +3616 -3461
  16. package/src/components/MultiFlatmapVuer.vue +830 -814
  17. package/src/components/SelectionsGroup.vue +363 -363
  18. package/src/components/index.js +6 -8
  19. package/src/components/legends/DynamicLegends.vue +106 -106
  20. package/src/components/legends/SvgLegends.vue +112 -112
  21. package/src/components.d.ts +0 -18
  22. package/src/icons/flatmap-marker.js +9 -9
  23. package/src/icons/fonts/mapicon-species.svg +14 -14
  24. package/src/icons/fonts/mapicon-species.ttf +0 -0
  25. package/src/icons/fonts/mapicon-species.woff +0 -0
  26. package/src/icons/mapicon-species-style.css +42 -42
  27. package/src/icons/yellowstar.js +5 -5
  28. package/src/legends/legend.svg +25 -25
  29. package/src/main.js +19 -19
  30. package/src/services/flatmapQueries.js +475 -475
  31. package/src/store/flatmap.js +22 -0
  32. package/src/store/index.js +23 -23
  33. package/vite.config.js +74 -73
  34. package/vite.static-build.js +12 -12
  35. package/vuese-generator.js +64 -64
  36. package/src/components/AnnotationTool.vue +0 -501
  37. package/src/components/ConnectionDialog.vue +0 -134
  38. package/src/components/DrawTool.vue +0 -502
  39. package/src/components/ExternalResourceCard.vue +0 -109
  40. package/src/components/HelpModeDialog.vue +0 -360
  41. package/src/components/ProvenancePopup.vue +0 -530
  42. package/src/components/Tooltip.vue +0 -50
  43. package/src/components/TreeControls.vue +0 -236
package/cypress.config.js CHANGED
@@ -1,24 +1,24 @@
1
- import { defineConfig } from "cypress";
2
-
3
- const config = defineConfig({
4
- "viewportWidth": 1920,
5
- "viewportHeight": 1080,
6
- defaultCommandTimeout: 30000,
7
- // reporter: "junit",
8
- experimentalMemoryManagement: true,
9
- numTestsKeptInMemory: 0,
10
- reporter: "cypress-multi-reporters",
11
- reporterOptions: {
12
- configFile: "reporter-config.json"
13
- },
14
-
15
- component: {
16
- specPattern: "cypress/component/*.cy.js",
17
- devServer: {
18
- framework: "vue",
19
- bundler: "vite",
20
- },
21
- },
22
- });
23
-
1
+ import { defineConfig } from "cypress";
2
+
3
+ const config = defineConfig({
4
+ "viewportWidth": 1920,
5
+ "viewportHeight": 1080,
6
+ defaultCommandTimeout: 30000,
7
+ // reporter: "junit",
8
+ experimentalMemoryManagement: true,
9
+ numTestsKeptInMemory: 0,
10
+ reporter: "cypress-multi-reporters",
11
+ reporterOptions: {
12
+ configFile: "reporter-config.json"
13
+ },
14
+
15
+ component: {
16
+ specPattern: "cypress/component/*.cy.js",
17
+ devServer: {
18
+ framework: "vue",
19
+ bundler: "vite",
20
+ },
21
+ },
22
+ });
23
+
24
24
  export default config;