@abi-software/mapintegratedvuer 0.7.1-demo.0 → 0.7.2-vue3.0-alpha.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 -142
  3. package/assets/gazelle-icons-no-background.css +32 -0
  4. package/assets/styleguide.css +19 -19
  5. package/cypress.config.js +23 -23
  6. package/dist/index.html +17 -17
  7. package/dist/mapintegratedvuer.js +60394 -59859
  8. package/dist/mapintegratedvuer.umd.cjs +515 -907
  9. package/dist/matterport.pdf +0 -0
  10. package/dist/style.css +1 -1
  11. package/dist/test.txt +0 -0
  12. package/package.json +135 -136
  13. package/public/index.html +17 -17
  14. package/public/matterport.pdf +0 -0
  15. package/public/test.txt +0 -0
  16. package/q.json +690 -0
  17. package/reporter-config.json +9 -9
  18. package/src/App.vue +245 -245
  19. package/src/assets/_variables.scss +43 -43
  20. package/src/assets/fonts/mapicon-species.eot +0 -0
  21. package/src/assets/fonts/mapicon-species.ttf +0 -0
  22. package/src/assets/fonts/mapicon-species.woff +0 -0
  23. package/src/assets/header-icon.scss +67 -67
  24. package/src/assets/mapicon-species-style.css +41 -41
  25. package/src/assets/styles.scss +9 -9
  26. package/src/components/ContentBar.vue +376 -376
  27. package/src/components/ContentVuer.vue +217 -217
  28. package/src/components/ContextCard.vue +385 -385
  29. package/src/components/ContextHelp.vue +73 -73
  30. package/src/components/CustomSplitter.vue +151 -151
  31. package/src/components/DatasetHeader.vue +97 -97
  32. package/src/components/DialogToolbarContent.vue +464 -464
  33. package/src/components/EventBus.js +3 -3
  34. package/src/components/FlatmapContextCard.vue +134 -134
  35. package/src/components/MapContent.vue +333 -285
  36. package/src/components/ResizeSensor.vue +47 -47
  37. package/src/components/SearchControls.vue +115 -115
  38. package/src/components/SimulatedData.js +721 -721
  39. package/src/components/SplitDialog.vue +287 -287
  40. package/src/components/SplitFlow.vue +414 -414
  41. package/src/components/index.js +7 -7
  42. package/src/components/markerZoomLevelsHardCoded.js +255 -255
  43. package/src/components/scripts/utilities.js +173 -173
  44. package/src/components/viewers/Flatmap.vue +145 -145
  45. package/src/components/viewers/Iframe.vue +31 -31
  46. package/src/components/viewers/MultiFlatmap.vue +384 -384
  47. package/src/components/viewers/Plot.vue +23 -23
  48. package/src/components/viewers/Scaffold.vue +198 -198
  49. package/src/components/viewers/Simulation.vue +21 -21
  50. package/src/icons/yellowstar.js +1 -1
  51. package/src/main.js +32 -22
  52. package/src/mixins/ContentMixin.js +438 -438
  53. package/src/mixins/DynamicMarkerMixin.js +88 -88
  54. package/src/mixins/RetrieveContextCardMixin.js +82 -0
  55. package/src/mixins/S3Bucket.vue +37 -37
  56. package/src/stores/entries.js +40 -40
  57. package/src/stores/index.js +24 -16
  58. package/src/stores/settings.js +144 -144
  59. package/src/stores/splitFlow.js +523 -523
  60. package/static.json +7 -7
  61. package/tsconfig.json +19 -0
  62. package/vite.config.js +70 -66
  63. package/vite.static-build.js +12 -12
  64. package/vitest.workspace.js +3 -3
  65. package/vuese-generator.js +65 -0
package/dist/test.txt ADDED
File without changes
package/package.json CHANGED
@@ -1,136 +1,135 @@
1
- {
2
- "name": "@abi-software/mapintegratedvuer",
3
- "version": "0.7.1-demo.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
- },
21
- "repository": {
22
- "type": "git",
23
- "url": "https://github.com/ABI-Software/mapintegratedvuer.git"
24
- },
25
- "type": "module",
26
- "main": "./dist/mapintegratedvuer.umd.cjs",
27
- "module": "./dist/mapintegratedvuer.js",
28
- "exports": {
29
- ".": {
30
- "import": "./dist/mapintegratedvuer.js",
31
- "require": "./dist/mapintegratedvuer.umd.cjs"
32
- },
33
- "./dist/style.css": "./dist/style.css",
34
- "./src/*": "./src/*"
35
- },
36
- "files": [
37
- "assets/*",
38
- "dist/*",
39
- "src/*",
40
- "public/*",
41
- "*.json",
42
- "*.js"
43
- ],
44
- "dependencies": {
45
- "@abi-software/flatmapvuer": "0.6.1-demo-0",
46
- "@abi-software/map-side-bar": "^1.7.0-vue3.4",
47
- "@abi-software/plotvuer": "^0.4.0-vue-3-alpha.10",
48
- "@abi-software/scaffoldvuer": "^0.4.0-vue3.6",
49
- "@abi-software/simulationvuer": "^0.7.0-vue-3-alpha.5",
50
- "@abi-software/svg-sprite": "0.4.0-vue3.3",
51
- "@cypress/vite-dev-server": "^5.0.7",
52
- "@element-plus/icons-vue": "^2.3.1",
53
- "@pinia/testing": "^0.1.3",
54
- "@soda/get-current-script": "^1.0.2",
55
- "core-js": "^3.22.5",
56
- "css-element-queries": "^1.2.3",
57
- "d3-time-format": "^3.0.0",
58
- "element-plus": "^2.4.4",
59
- "es6-promise": "^4.2.8",
60
- "jsonschema": "^1.4.0",
61
- "lodash": "^4.17.21",
62
- "marked": "^4.3.0",
63
- "mitt": "^3.0.1",
64
- "pinia": "^2.1.7",
65
- "postcss-prefix-selector": "^1.7.2",
66
- "shepherd.js": "^7.1.5",
67
- "splitpanes": "^3.1.5",
68
- "svg-inline-loader": "^0.8.2",
69
- "vue": "^3.4.15",
70
- "vue-cli-plugin-webpack-bundle-analyzer": "^2.0.0",
71
- "vue-router": "^4.2.5",
72
- "vuex": "^4.1.0",
73
- "xss": "^1.0.14"
74
- },
75
- "devDependencies": {
76
- "@cypress/webpack-dev-server": "^1.3.1",
77
- "@vitejs/plugin-vue": "^4.6.2",
78
- "@vue/test-utils": "^2.4.4",
79
- "auto-changelog": "^2.4.0",
80
- "babel-eslint": "^10.0.3",
81
- "babel-plugin-component": "^1.1.1",
82
- "base64-inline-loader": "^2.0.1",
83
- "canvas": "^2.8.0",
84
- "chai": "^4.1.2",
85
- "cypress": "^13.6.4",
86
- "cypress-multi-reporters": "^1.6.4",
87
- "cypress-wait-until": "^1.7.1",
88
- "dom-parser": "^0.1.6",
89
- "eslint": "^8.56.0",
90
- "eslint-plugin-cypress": "^2.15.1",
91
- "eslint-plugin-vue": "^9.19.2",
92
- "happy-dom": "^13.3.8",
93
- "jsdom": "^16.2.2",
94
- "jsdom-global": "^3.0.2",
95
- "mocha": "^8.1.3",
96
- "mochapack": "^2.1.4",
97
- "mochawesome": "^7.1.3",
98
- "mochawesome-merge": "^4.3.0",
99
- "mochawesome-report-generator": "^6.2.0",
100
- "sass": "^1.69.5",
101
- "vite": "^5.0.10",
102
- "vitest": "^1.2.2"
103
- },
104
- "eslintConfig": {
105
- "root": true,
106
- "env": {
107
- "node": true
108
- },
109
- "extends": [
110
- "plugin:vue/essential",
111
- "eslint:recommended"
112
- ],
113
- "rules": {},
114
- "parserOptions": {
115
- "parser": "babel-eslint"
116
- },
117
- "overrides": [
118
- {
119
- "files": [
120
- "**/__tests__/*.{j,t}s?(x)",
121
- "**/tests/unit/**/*.spec.{j,t}s?(x)"
122
- ],
123
- "env": {
124
- "mocha": true
125
- }
126
- }
127
- ]
128
- },
129
- "overrides": {
130
- "@abi-software/flatmapvuer": "$@abi-software/flatmapvuer"
131
- },
132
- "browserslist": [
133
- "> 1%",
134
- "last 2 versions"
135
- ]
136
- }
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
+ }
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>
Binary file
File without changes