@abi-software/mapintegratedvuer 1.3.5-beta.0 → 1.3.5-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.
- package/dist/ContentMixin-1Yjm8kTN.js +584 -0
- package/dist/Flatmap-CqrQReG-.js +156 -0
- package/dist/Iframe-CbFZpnko.js +19 -0
- package/dist/MultiFlatmap-CLmO9NBg.js +326 -0
- package/dist/Plot-CN0u81S_.js +24 -0
- package/dist/Scaffold-8pn7egS0.js +56177 -0
- package/dist/Simulation-CskJpFM_.js +10622 -0
- package/dist/favicon.ico +0 -0
- package/dist/index-xJex6qLr.js +56089 -0
- package/dist/index.html +18 -0
- package/dist/mapintegratedvuer.js +4 -0
- package/dist/mapintegratedvuer.umd.cjs +8343 -0
- package/dist/plotvuer-X4h-Lj3L.js +49187 -0
- package/dist/style-DtPUHjoN.js +109923 -0
- package/dist/style.css +1 -0
- package/package.json +2 -2
- package/src/components/ContentBar.vue +1 -1
- package/src/components/ContextCard.vue +29 -8
- package/src/components/FlatmapContextCard.vue +2 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@abi-software/mapintegratedvuer",
|
3
|
-
"version": "1.3.5-beta.
|
3
|
+
"version": "1.3.5-beta.1",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"scripts": {
|
6
6
|
"serve": "vite --host --force",
|
@@ -18,7 +18,7 @@
|
|
18
18
|
"release:beta": "npm version prerelease --force --preid=beta; npm publish --access public --tag beta",
|
19
19
|
"release:minor": "npm version minor --force; npm publish --access public",
|
20
20
|
"release:patch": "npm version patch --force; npm publish --access public",
|
21
|
-
"version": "npm run changelog; git add CHANGELOG.md",
|
21
|
+
"version": "npm run build-bundle; npm run changelog; git add CHANGELOG.md",
|
22
22
|
"vuese-gen": "node vuese-generator.js",
|
23
23
|
"vuese-watch": "node vuese-generator.js watch",
|
24
24
|
"docs:dev": "vitepress dev docs",
|
@@ -6,11 +6,14 @@
|
|
6
6
|
<img :src="banner" class="context-image">
|
7
7
|
</div>
|
8
8
|
<div class="card-right scrollbar">
|
9
|
-
<div
|
9
|
+
<div>
|
10
10
|
<div class="title">{{contextData.heading}}</div>
|
11
11
|
<div v-html="parseMarkdown(contextData.description)"/>
|
12
|
-
<br/>
|
13
|
-
|
12
|
+
<!-- <br/> -->
|
13
|
+
</div>
|
14
|
+
</div>
|
15
|
+
<div class="card-bottom">
|
16
|
+
<div>
|
14
17
|
<!-- Show sampeles and views seperately if they do not match -->
|
15
18
|
<template v-if="!samplesUnderViews">
|
16
19
|
<div v-if="contextData.views && contextData.views.length > 0" class="subtitle">Scaffold Views</div>
|
@@ -364,28 +367,38 @@ export default {
|
|
364
367
|
display: flex;
|
365
368
|
justify-content: center;
|
366
369
|
align-items: center;
|
370
|
+
// text-align: initial; // default is justify
|
371
|
+
word-break: initial;
|
367
372
|
}
|
368
373
|
|
369
374
|
.context-card{
|
370
375
|
background-color: white;
|
371
|
-
max-height: 10 50px;
|
372
376
|
font-size: 14px;
|
373
377
|
position: relative;
|
374
378
|
display: flex;
|
379
|
+
flex-wrap: wrap;
|
380
|
+
gap: 10px;
|
375
381
|
width: 100%;
|
376
382
|
max-height: 258px;
|
383
|
+
overflow-y: auto;
|
384
|
+
scrollbar-width: thin;
|
385
|
+
box-sizing: border-box;
|
386
|
+
|
387
|
+
&:not(.context-card-container) {
|
388
|
+
padding: 10px;
|
389
|
+
}
|
377
390
|
}
|
378
391
|
|
379
392
|
.context-card-view{
|
380
393
|
cursor: pointer;
|
381
394
|
margin-bottom: 8px;
|
382
395
|
display: flex;
|
396
|
+
gap: 8px;
|
383
397
|
}
|
384
398
|
|
385
399
|
.view-image {
|
386
400
|
width: 34px;
|
387
|
-
height:
|
388
|
-
flex: 1;
|
401
|
+
height: auto;
|
389
402
|
}
|
390
403
|
|
391
404
|
.view-descriptions {
|
@@ -418,8 +431,15 @@ export default {
|
|
418
431
|
.card-right {
|
419
432
|
flex: 1.5;
|
420
433
|
word-break: normal !important;
|
421
|
-
|
422
|
-
|
434
|
+
|
435
|
+
:deep(p:last-child) {
|
436
|
+
margin-bottom: 0;
|
437
|
+
}
|
438
|
+
}
|
439
|
+
|
440
|
+
.card-bottom {
|
441
|
+
flex: 0 0 100%;
|
442
|
+
max-width: 100%;
|
423
443
|
}
|
424
444
|
|
425
445
|
.cursor-pointer {
|
@@ -442,6 +462,7 @@ export default {
|
|
442
462
|
|
443
463
|
.subtitle{
|
444
464
|
font-weight: bold;
|
465
|
+
margin-bottom: 8px;
|
445
466
|
}
|
446
467
|
|
447
468
|
.scrollbar::-webkit-scrollbar-track {
|
@@ -141,19 +141,16 @@ export default {
|
|
141
141
|
|
142
142
|
.flatmap-context-card{
|
143
143
|
background-color: white;
|
144
|
-
max-height: 10 50px;
|
145
144
|
font-size: 12px;
|
146
145
|
position: relative;
|
147
146
|
display: flex;
|
148
147
|
width: 100%;
|
149
148
|
max-height: 258px;
|
149
|
+
padding: 10px;
|
150
150
|
}
|
151
151
|
|
152
152
|
.card-right {
|
153
|
-
flex: 1
|
154
|
-
padding-left: 6px;
|
155
|
-
// overflow-y: scroll;
|
156
|
-
scrollbar-width: thin;
|
153
|
+
flex: 1;
|
157
154
|
}
|
158
155
|
|
159
156
|
.cursor-pointer {
|