@abi-software/mapintegratedvuer 0.7.2-vue3.0-alpha.0 → 1.0.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.
Files changed (65) hide show
  1. package/LICENSE +201 -201
  2. package/README.md +150 -150
  3. package/assets/styleguide.css +19 -19
  4. package/cypress.config.js +23 -23
  5. package/dist/index.html +17 -17
  6. package/dist/mapintegratedvuer.js +74203 -73758
  7. package/dist/mapintegratedvuer.umd.cjs +878 -515
  8. package/dist/style.css +1 -1
  9. package/package.json +134 -135
  10. package/public/index.html +17 -17
  11. package/reporter-config.json +9 -9
  12. package/src/App.vue +245 -245
  13. package/src/assets/_variables.scss +43 -43
  14. package/src/assets/fonts/mapicon-species.eot +0 -0
  15. package/src/assets/fonts/mapicon-species.ttf +0 -0
  16. package/src/assets/fonts/mapicon-species.woff +0 -0
  17. package/src/assets/header-icon.scss +67 -67
  18. package/src/assets/mapicon-species-style.css +41 -41
  19. package/src/assets/styles.scss +9 -9
  20. package/src/components/ContentBar.vue +376 -376
  21. package/src/components/ContentVuer.vue +217 -217
  22. package/src/components/ContextCard.vue +385 -385
  23. package/src/components/ContextHelp.vue +73 -73
  24. package/src/components/CustomSplitter.vue +151 -151
  25. package/src/components/DatasetHeader.vue +97 -97
  26. package/src/components/DialogToolbarContent.vue +464 -464
  27. package/src/components/EventBus.js +3 -3
  28. package/src/components/FlatmapContextCard.vue +134 -134
  29. package/src/components/MapContent.vue +328 -333
  30. package/src/components/ResizeSensor.vue +47 -47
  31. package/src/components/SearchControls.vue +115 -115
  32. package/src/components/SimulatedData.js +721 -721
  33. package/src/components/SplitDialog.vue +287 -287
  34. package/src/components/SplitFlow.vue +414 -414
  35. package/src/components/index.js +7 -7
  36. package/src/components/markerZoomLevelsHardCoded.js +255 -255
  37. package/src/components/scripts/utilities.js +173 -173
  38. package/src/components/viewers/Flatmap.vue +145 -145
  39. package/src/components/viewers/Iframe.vue +31 -31
  40. package/src/components/viewers/MultiFlatmap.vue +384 -384
  41. package/src/components/viewers/Plot.vue +23 -23
  42. package/src/components/viewers/Scaffold.vue +198 -198
  43. package/src/components/viewers/Simulation.vue +21 -21
  44. package/src/icons/yellowstar.js +1 -1
  45. package/src/main.js +31 -31
  46. package/src/mixins/ContentMixin.js +438 -438
  47. package/src/mixins/DynamicMarkerMixin.js +88 -88
  48. package/src/mixins/S3Bucket.vue +37 -37
  49. package/src/stores/entries.js +40 -40
  50. package/src/stores/index.js +23 -23
  51. package/src/stores/settings.js +144 -144
  52. package/src/stores/splitFlow.js +523 -523
  53. package/static.json +7 -7
  54. package/vite.config.js +70 -70
  55. package/vite.static-build.js +12 -12
  56. package/vitest.workspace.js +3 -3
  57. package/vuese-generator.js +65 -65
  58. package/assets/gazelle-icons-no-background.css +0 -32
  59. package/dist/matterport.pdf +0 -0
  60. package/dist/test.txt +0 -0
  61. package/public/matterport.pdf +0 -0
  62. package/public/test.txt +0 -0
  63. package/q.json +0 -690
  64. package/src/mixins/RetrieveContextCardMixin.js +0 -82
  65. package/tsconfig.json +0 -19
package/package.json CHANGED
@@ -1,135 +1,134 @@
1
- {
2
- "name": "@abi-software/mapintegratedvuer",
3
- "version": "0.7.2-vue3.0-alpha.0",
4
- "license": "Apache-2.0",
5
- "scripts": {
6
- "serve": "vite --host --force",
7
- "build-bundle": "vite build",
8
- "test-unit": "mochapack --webpack-config test/unit/webpack.config.js --require test/unit/setup.js test/unit/**/*.spec.js",
9
- "test": "vitest --dom",
10
- "build-static": "vite build -c vite.static-build.js",
11
- "cypress": "cypress",
12
- "cypress-component": "cypress run --component",
13
- "report:merge": "mochawesome-merge cypress/results/json/*json > cypress/results/mochawesome-bundle.json",
14
- "report:generate": "marge cypress/results/mochawesome-bundle.json -o cypress/reports/html",
15
- "changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
16
- "release:beta": "npm version prerelease --force --preid=beta; npm publish --access public --tag beta",
17
- "release:minor": "npm version minor --force; npm publish --access public",
18
- "release:patch": "npm version patch --force; npm publish --access public",
19
- "version": "npm run changelog; git add CHANGELOG.md",
20
- "vuese-gen": "node vuese-generator.js",
21
- "vuese-watch": "node vuese-generator.js watch",
22
- "docs:dev": "vitepress dev docs",
23
- "docs:watch": "concurrently \"npm run vuese-watch\" \"npm run docs:dev\"",
24
- "docs:build": "npm run vuese-gen; vitepress build docs",
25
- "docs:preview": "vitepress preview docs"
26
- },
27
- "repository": {
28
- "type": "git",
29
- "url": "https://github.com/ABI-Software/mapintegratedvuer.git"
30
- },
31
- "type": "module",
32
- "main": "./dist/mapintegratedvuer.umd.cjs",
33
- "module": "./dist/mapintegratedvuer.js",
34
- "exports": {
35
- ".": {
36
- "import": "./dist/mapintegratedvuer.js",
37
- "require": "./dist/mapintegratedvuer.umd.cjs"
38
- },
39
- "./dist/style.css": "./dist/style.css",
40
- "./src/*": "./src/*"
41
- },
42
- "files": [
43
- "assets/*",
44
- "dist/*",
45
- "src/*",
46
- "public/*",
47
- "*.json",
48
- "*.js"
49
- ],
50
- "dependencies": {
51
- "@abi-software/flatmapvuer": "^0.6.1-vue3.9",
52
- "@abi-software/map-side-bar": "^1.7.0-vue3.4",
53
- "@abi-software/plotvuer": "^0.4.0-vue-3-alpha.10",
54
- "@abi-software/scaffoldvuer": "^0.4.0-vue3.6",
55
- "@abi-software/simulationvuer": "^0.7.0-vue-3-alpha.5",
56
- "@abi-software/svg-sprite": "^0.4.0-vue3.3",
57
- "@cypress/vite-dev-server": "^5.0.7",
58
- "@element-plus/icons-vue": "^2.3.1",
59
- "@pinia/testing": "^0.1.3",
60
- "css-element-queries": "^1.2.3",
61
- "element-plus": "^2.4.4",
62
- "marked": "^4.3.0",
63
- "mitt": "^3.0.1",
64
- "pinia": "^2.1.7",
65
- "splitpanes": "^3.1.5",
66
- "vue": "^3.4.15",
67
- "vue-router": "^4.2.5",
68
- "vuex": "^4.1.0",
69
- "xss": "^1.0.14"
70
- },
71
- "devDependencies": {
72
- "@cypress/webpack-dev-server": "^1.3.1",
73
- "@vitejs/plugin-vue": "^4.6.2",
74
- "@vue/test-utils": "^2.4.4",
75
- "@vuese/markdown-render": "^2.11.3",
76
- "@vuese/parser": "^2.10.3",
77
- "auto-changelog": "^2.4.0",
78
- "babel-eslint": "^10.0.3",
79
- "babel-plugin-component": "^1.1.1",
80
- "chai": "^4.1.2",
81
- "chokidar": "^3.6.0",
82
- "concurrently": "^8.2.2",
83
- "cypress": "^13.6.4",
84
- "cypress-multi-reporters": "^1.6.4",
85
- "cypress-wait-until": "^1.7.1",
86
- "dom-parser": "^0.1.6",
87
- "eslint": "^8.56.0",
88
- "eslint-plugin-cypress": "^2.15.1",
89
- "eslint-plugin-vue": "^9.19.2",
90
- "happy-dom": "^13.3.8",
91
- "jsdom": "^16.2.2",
92
- "jsdom-global": "^3.0.2",
93
- "mocha": "^8.1.3",
94
- "mochapack": "^2.1.4",
95
- "mochawesome": "^7.1.3",
96
- "mochawesome-merge": "^4.3.0",
97
- "mochawesome-report-generator": "^6.2.0",
98
- "sass": "^1.69.5",
99
- "vite": "^5.0.10",
100
- "vitepress": "^1.0.0-rc.45",
101
- "vitest": "^1.2.2"
102
- },
103
- "eslintConfig": {
104
- "root": true,
105
- "env": {
106
- "node": true
107
- },
108
- "extends": [
109
- "plugin:vue/essential",
110
- "eslint:recommended"
111
- ],
112
- "rules": {},
113
- "parserOptions": {
114
- "parser": "babel-eslint"
115
- },
116
- "overrides": [
117
- {
118
- "files": [
119
- "**/__tests__/*.{j,t}s?(x)",
120
- "**/tests/unit/**/*.spec.{j,t}s?(x)"
121
- ],
122
- "env": {
123
- "mocha": true
124
- }
125
- }
126
- ]
127
- },
128
- "overrides": {
129
- "@abi-software/flatmapvuer": "$@abi-software/flatmapvuer"
130
- },
131
- "browserslist": [
132
- "> 1%",
133
- "last 2 versions"
134
- ]
135
- }
1
+ {
2
+ "name": "@abi-software/mapintegratedvuer",
3
+ "version": "1.0.0",
4
+ "license": "Apache-2.0",
5
+ "scripts": {
6
+ "serve": "vite --host --force",
7
+ "build-bundle": "vite build",
8
+ "test-unit": "mochapack --webpack-config test/unit/webpack.config.js --require test/unit/setup.js test/unit/**/*.spec.js",
9
+ "test": "vitest --dom",
10
+ "build-static": "vite build -c vite.static-build.js",
11
+ "cypress": "cypress",
12
+ "cypress-component": "cypress run --component",
13
+ "report:merge": "mochawesome-merge cypress/results/json/*json > cypress/results/mochawesome-bundle.json",
14
+ "report:generate": "marge cypress/results/mochawesome-bundle.json -o cypress/reports/html",
15
+ "changelog": "auto-changelog -p --output CHANGELOG.md --template keepachangelog",
16
+ "release:beta": "npm version prerelease --force --preid=beta; npm publish --access public --tag beta",
17
+ "release:minor": "npm version minor --force; npm publish --access public",
18
+ "release:patch": "npm version patch --force; npm publish --access public",
19
+ "version": "npm run changelog; git add CHANGELOG.md",
20
+ "vuese-gen": "node vuese-generator.js",
21
+ "vuese-watch": "node vuese-generator.js watch",
22
+ "docs:dev": "vitepress dev docs",
23
+ "docs:watch": "concurrently \"npm run vuese-watch\" \"npm run docs:dev\"",
24
+ "docs:build": "npm run vuese-gen; vitepress build docs",
25
+ "docs:preview": "vitepress preview docs"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/ABI-Software/mapintegratedvuer.git"
30
+ },
31
+ "type": "module",
32
+ "main": "./dist/mapintegratedvuer.umd.cjs",
33
+ "module": "./dist/mapintegratedvuer.js",
34
+ "exports": {
35
+ ".": {
36
+ "import": "./dist/mapintegratedvuer.js",
37
+ "require": "./dist/mapintegratedvuer.umd.cjs"
38
+ },
39
+ "./dist/style.css": "./dist/style.css",
40
+ "./src/*": "./src/*"
41
+ },
42
+ "files": [
43
+ "assets/*",
44
+ "dist/*",
45
+ "src/*",
46
+ "public/*",
47
+ "*.json",
48
+ "*.js"
49
+ ],
50
+ "dependencies": {
51
+ "@abi-software/flatmapvuer": "1.0.0",
52
+ "@abi-software/map-side-bar": "2.0.0",
53
+ "@abi-software/plotvuer": "1.0.0",
54
+ "@abi-software/scaffoldvuer": "^1.0.0",
55
+ "@abi-software/simulationvuer": "1.0.0",
56
+ "@abi-software/svg-sprite": "1.0.0",
57
+ "@element-plus/icons-vue": "^2.3.1",
58
+ "@pinia/testing": "^0.1.3",
59
+ "css-element-queries": "^1.2.3",
60
+ "element-plus": "^2.4.4",
61
+ "marked": "^4.3.0",
62
+ "mitt": "^3.0.1",
63
+ "pinia": "^2.1.7",
64
+ "splitpanes": "^3.1.5",
65
+ "vue": "^3.4.15",
66
+ "vue-router": "^4.2.5",
67
+ "vuex": "^4.1.0",
68
+ "xss": "^1.0.14"
69
+ },
70
+ "devDependencies": {
71
+ "@cypress/webpack-dev-server": "^3.6.1",
72
+ "@vitejs/plugin-vue": "^4.6.2",
73
+ "@vue/test-utils": "^2.4.4",
74
+ "@vuese/markdown-render": "^2.11.3",
75
+ "@vuese/parser": "^2.10.3",
76
+ "auto-changelog": "^2.4.0",
77
+ "babel-eslint": "^10.0.3",
78
+ "babel-plugin-component": "^1.1.1",
79
+ "chai": "^4.1.2",
80
+ "chokidar": "^3.6.0",
81
+ "concurrently": "^8.2.2",
82
+ "cypress": "^13.6.6",
83
+ "cypress-multi-reporters": "^1.6.4",
84
+ "cypress-wait-until": "^1.7.1",
85
+ "dom-parser": "^0.1.6",
86
+ "eslint": "^8.56.0",
87
+ "eslint-plugin-cypress": "^2.15.1",
88
+ "eslint-plugin-vue": "^9.19.2",
89
+ "happy-dom": "^13.3.8",
90
+ "jsdom": "^16.2.2",
91
+ "jsdom-global": "^3.0.2",
92
+ "mocha": "^8.1.3",
93
+ "mochapack": "^2.1.4",
94
+ "mochawesome": "^7.1.3",
95
+ "mochawesome-merge": "^4.3.0",
96
+ "mochawesome-report-generator": "^6.2.0",
97
+ "sass": "^1.69.5",
98
+ "vite": "^5.0.10",
99
+ "vitepress": "^1.0.0-rc.45",
100
+ "vitest": "^1.2.2"
101
+ },
102
+ "eslintConfig": {
103
+ "root": true,
104
+ "env": {
105
+ "node": true
106
+ },
107
+ "extends": [
108
+ "plugin:vue/essential",
109
+ "eslint:recommended"
110
+ ],
111
+ "rules": {},
112
+ "parserOptions": {
113
+ "parser": "babel-eslint"
114
+ },
115
+ "overrides": [
116
+ {
117
+ "files": [
118
+ "**/__tests__/*.{j,t}s?(x)",
119
+ "**/tests/unit/**/*.spec.{j,t}s?(x)"
120
+ ],
121
+ "env": {
122
+ "mocha": true
123
+ }
124
+ }
125
+ ]
126
+ },
127
+ "overrides": {
128
+ "@abi-software/flatmapvuer": "$@abi-software/flatmapvuer"
129
+ },
130
+ "browserslist": [
131
+ "> 1%",
132
+ "last 2 versions"
133
+ ]
134
+ }
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>Physiome Portal</title>
9
- </head>
10
- <body>
11
- <noscript>
12
- <strong>We're sorry but Physiome Portal 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>Physiome Portal</title>
9
+ </head>
10
+ <body>
11
+ <noscript>
12
+ <strong>We're sorry but Physiome Portal 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,9 +1,9 @@
1
- {
2
- "reporterEnabled": "mochawesome",
3
- "mochawesomeReporterOptions": {
4
- "reportDir": "cypress/results/json",
5
- "overwrite": false,
6
- "html": false,
7
- "json": true
8
- }
9
- }
1
+ {
2
+ "reporterEnabled": "mochawesome",
3
+ "mochawesomeReporterOptions": {
4
+ "reportDir": "cypress/results/json",
5
+ "overwrite": false,
6
+ "html": false,
7
+ "json": true
8
+ }
9
+ }