@abi-software/flatmapvuer 1.1.3 → 1.2.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 +120 -120
- package/cypress.config.js +23 -23
- package/dist/flatmapvuer.js +43580 -38546
- package/dist/flatmapvuer.umd.cjs +189 -181
- package/dist/index.html +17 -17
- package/dist/style.css +1 -1
- package/package.json +95 -95
- package/public/index.html +17 -17
- package/reporter-config.json +9 -9
- package/src/App.vue +379 -379
- package/src/assets/_variables.scss +43 -43
- package/src/assets/styles.scss +5 -5
- package/src/components/AnnotationTool.vue +501 -501
- package/src/components/ConnectionDialog.vue +134 -134
- package/src/components/DrawTool.vue +502 -502
- package/src/components/EventBus.js +3 -3
- package/src/components/ExternalResourceCard.vue +109 -109
- package/src/components/FlatmapVuer.vue +3515 -3455
- package/src/components/HelpModeDialog.vue +360 -360
- package/src/components/MultiFlatmapVuer.vue +814 -814
- package/src/components/ProvenancePopup.vue +530 -530
- package/src/components/SelectionsGroup.vue +363 -363
- package/src/components/Tooltip.vue +50 -50
- package/src/components/TreeControls.vue +236 -236
- package/src/components/index.js +8 -8
- package/src/components/legends/DynamicLegends.vue +106 -106
- package/src/components/legends/SvgLegends.vue +112 -112
- package/src/icons/flatmap-marker.js +9 -1
- 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 +19 -19
- package/src/services/flatmapQueries.js +475 -475
- package/src/store/index.js +23 -23
- package/vite.config.js +73 -73
- package/vite.static-build.js +12 -12
- package/vuese-generator.js +64 -64
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;
|