@abi-software/map-side-bar 2.7.2-beta.7 → 2.7.2-beta.9
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/map-side-bar.js +2497 -2463
- package/dist/map-side-bar.umd.cjs +24 -24
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/components/ConnectivityInfo.vue +21 -0
- package/src/components/SideBar.vue +2 -0
- package/src/components.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abi-software/map-side-bar",
|
|
3
|
-
"version": "2.7.2-beta.
|
|
3
|
+
"version": "2.7.2-beta.9",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist/*",
|
|
6
6
|
"src/*",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@abi-software/gallery": "^1.1.2",
|
|
42
|
-
"@abi-software/map-utilities": "^1.4.3-beta.
|
|
42
|
+
"@abi-software/map-utilities": "^1.4.3-beta.2",
|
|
43
43
|
"@abi-software/svg-sprite": "^1.0.1",
|
|
44
44
|
"@element-plus/icons-vue": "^2.3.1",
|
|
45
45
|
"algoliasearch": "^4.10.5",
|
|
@@ -64,6 +64,21 @@
|
|
|
64
64
|
>
|
|
65
65
|
<div class="block attribute-title-container">
|
|
66
66
|
<span class="attribute-title">Population Display</span>
|
|
67
|
+
<el-popover
|
|
68
|
+
v-if="activeView === 'listView'"
|
|
69
|
+
width="250"
|
|
70
|
+
trigger="hover"
|
|
71
|
+
:teleported="false"
|
|
72
|
+
popper-class="popover-origin-help"
|
|
73
|
+
>
|
|
74
|
+
<template #reference>
|
|
75
|
+
<el-icon class="info"><el-icon-warning /></el-icon>
|
|
76
|
+
</template>
|
|
77
|
+
<span style="word-break: keep-all">
|
|
78
|
+
This list is ordered alphabetically,
|
|
79
|
+
switch to graph view for path details.
|
|
80
|
+
</span>
|
|
81
|
+
</el-popover>
|
|
67
82
|
</div>
|
|
68
83
|
<div class="block buttons-row">
|
|
69
84
|
<div v-if="dualConnectionSource">
|
|
@@ -735,6 +750,12 @@ export default {
|
|
|
735
750
|
padding: 1rem;
|
|
736
751
|
}
|
|
737
752
|
|
|
753
|
+
.info {
|
|
754
|
+
color: #8300bf;
|
|
755
|
+
transform: rotate(180deg);
|
|
756
|
+
margin-left: 8px;
|
|
757
|
+
}
|
|
758
|
+
|
|
738
759
|
.attribute-title-container {
|
|
739
760
|
margin-bottom: 0.5em;
|
|
740
761
|
}
|
package/src/components.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ declare module 'vue' {
|
|
|
25
25
|
ElIconArrowRight: typeof import('@element-plus/icons-vue')['ArrowRight']
|
|
26
26
|
ElIconDelete: typeof import('@element-plus/icons-vue')['Delete']
|
|
27
27
|
ElIconLocation: typeof import('@element-plus/icons-vue')['Location']
|
|
28
|
+
ElIconWarning: typeof import('@element-plus/icons-vue')['Warning']
|
|
28
29
|
ElIconWarnTriangleFilled: typeof import('@element-plus/icons-vue')['WarnTriangleFilled']
|
|
29
30
|
ElInput: typeof import('element-plus/es')['ElInput']
|
|
30
31
|
ElOption: typeof import('element-plus/es')['ElOption']
|