@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.
- package/LICENSE +201 -201
- package/README.md +150 -142
- package/assets/gazelle-icons-no-background.css +32 -0
- package/assets/styleguide.css +19 -19
- package/cypress.config.js +23 -23
- package/dist/index.html +17 -17
- package/dist/mapintegratedvuer.js +60394 -59859
- package/dist/mapintegratedvuer.umd.cjs +515 -907
- package/dist/matterport.pdf +0 -0
- package/dist/style.css +1 -1
- package/dist/test.txt +0 -0
- package/package.json +135 -136
- package/public/index.html +17 -17
- package/public/matterport.pdf +0 -0
- package/public/test.txt +0 -0
- package/q.json +690 -0
- package/reporter-config.json +9 -9
- package/src/App.vue +245 -245
- package/src/assets/_variables.scss +43 -43
- package/src/assets/fonts/mapicon-species.eot +0 -0
- package/src/assets/fonts/mapicon-species.ttf +0 -0
- package/src/assets/fonts/mapicon-species.woff +0 -0
- package/src/assets/header-icon.scss +67 -67
- package/src/assets/mapicon-species-style.css +41 -41
- package/src/assets/styles.scss +9 -9
- package/src/components/ContentBar.vue +376 -376
- package/src/components/ContentVuer.vue +217 -217
- package/src/components/ContextCard.vue +385 -385
- package/src/components/ContextHelp.vue +73 -73
- package/src/components/CustomSplitter.vue +151 -151
- package/src/components/DatasetHeader.vue +97 -97
- package/src/components/DialogToolbarContent.vue +464 -464
- package/src/components/EventBus.js +3 -3
- package/src/components/FlatmapContextCard.vue +134 -134
- package/src/components/MapContent.vue +333 -285
- package/src/components/ResizeSensor.vue +47 -47
- package/src/components/SearchControls.vue +115 -115
- package/src/components/SimulatedData.js +721 -721
- package/src/components/SplitDialog.vue +287 -287
- package/src/components/SplitFlow.vue +414 -414
- package/src/components/index.js +7 -7
- package/src/components/markerZoomLevelsHardCoded.js +255 -255
- package/src/components/scripts/utilities.js +173 -173
- package/src/components/viewers/Flatmap.vue +145 -145
- package/src/components/viewers/Iframe.vue +31 -31
- package/src/components/viewers/MultiFlatmap.vue +384 -384
- package/src/components/viewers/Plot.vue +23 -23
- package/src/components/viewers/Scaffold.vue +198 -198
- package/src/components/viewers/Simulation.vue +21 -21
- package/src/icons/yellowstar.js +1 -1
- package/src/main.js +32 -22
- package/src/mixins/ContentMixin.js +438 -438
- package/src/mixins/DynamicMarkerMixin.js +88 -88
- package/src/mixins/RetrieveContextCardMixin.js +82 -0
- package/src/mixins/S3Bucket.vue +37 -37
- package/src/stores/entries.js +40 -40
- package/src/stores/index.js +24 -16
- package/src/stores/settings.js +144 -144
- package/src/stores/splitFlow.js +523 -523
- package/static.json +7 -7
- package/tsconfig.json +19 -0
- package/vite.config.js +70 -66
- package/vite.static-build.js +12 -12
- package/vitest.workspace.js +3 -3
- 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.
|
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
|
-
|
22
|
-
"
|
23
|
-
"
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
"
|
28
|
-
|
29
|
-
"
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
"
|
40
|
-
"
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
"
|
46
|
-
"
|
47
|
-
"
|
48
|
-
"
|
49
|
-
|
50
|
-
|
51
|
-
"@
|
52
|
-
"@
|
53
|
-
"@
|
54
|
-
"@
|
55
|
-
"
|
56
|
-
"
|
57
|
-
"
|
58
|
-
"element-plus": "^2.
|
59
|
-
"
|
60
|
-
"
|
61
|
-
"
|
62
|
-
"marked": "^4.3.0",
|
63
|
-
"mitt": "^3.0.1",
|
64
|
-
"pinia": "^2.1.7",
|
65
|
-
"
|
66
|
-
"
|
67
|
-
"
|
68
|
-
"
|
69
|
-
"
|
70
|
-
|
71
|
-
|
72
|
-
"
|
73
|
-
"
|
74
|
-
|
75
|
-
|
76
|
-
"@
|
77
|
-
"
|
78
|
-
"
|
79
|
-
"
|
80
|
-
"
|
81
|
-
"
|
82
|
-
"
|
83
|
-
"
|
84
|
-
"
|
85
|
-
"cypress": "^
|
86
|
-
"
|
87
|
-
"
|
88
|
-
"
|
89
|
-
"eslint": "^
|
90
|
-
"
|
91
|
-
"
|
92
|
-
"
|
93
|
-
"
|
94
|
-
"
|
95
|
-
"
|
96
|
-
"
|
97
|
-
"mochawesome": "^
|
98
|
-
"
|
99
|
-
"
|
100
|
-
"
|
101
|
-
"
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
"
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
"
|
111
|
-
|
112
|
-
|
113
|
-
"
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
"**/
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
"
|
134
|
-
|
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
|
package/public/test.txt
ADDED
File without changes
|