@abi-software/map-side-bar 1.3.30 → 1.3.32
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.common.js +3206 -137
- package/dist/map-side-bar.common.js.map +1 -1
- package/dist/map-side-bar.css +1 -1
- package/dist/map-side-bar.umd.js +3206 -137
- package/dist/map-side-bar.umd.js.map +1 -1
- package/dist/map-side-bar.umd.min.js +1 -1
- package/dist/map-side-bar.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/SideBar.vue +13 -15
- package/vue.config.js +1 -1
package/package.json
CHANGED
|
@@ -185,26 +185,25 @@ export default {
|
|
|
185
185
|
top: calc(50vh - 80px);
|
|
186
186
|
right: 0px;
|
|
187
187
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
|
|
188
|
-
border: solid 1px #
|
|
189
|
-
background-color: #
|
|
188
|
+
border: solid 1px #8300BF;
|
|
189
|
+
background-color: #f9f2fc;
|
|
190
190
|
text-align: center;
|
|
191
191
|
vertical-align: middle;
|
|
192
192
|
cursor: pointer;
|
|
193
193
|
pointer-events: auto;
|
|
194
194
|
}
|
|
195
195
|
|
|
196
|
-
.el-icon-arrow-left
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
.el-icon-arrow-right{
|
|
203
|
-
font-size: 20px;
|
|
204
|
-
padding-top: 8px;
|
|
205
|
-
color: #292b66;
|
|
196
|
+
.el-icon-arrow-left,
|
|
197
|
+
.el-icon-arrow-right
|
|
198
|
+
{
|
|
199
|
+
font-weight: 600;
|
|
200
|
+
margin-top: 12px;
|
|
201
|
+
color: #8300BF;
|
|
206
202
|
cursor: pointer;
|
|
207
203
|
pointer-events: auto;
|
|
204
|
+
transform: scaleY(2.0);
|
|
205
|
+
text-align: center;
|
|
206
|
+
vertical-align: middle;
|
|
208
207
|
}
|
|
209
208
|
|
|
210
209
|
.close-tab{
|
|
@@ -215,9 +214,8 @@ export default {
|
|
|
215
214
|
z-index: 8;
|
|
216
215
|
margin-top: calc(50vh - 80px);
|
|
217
216
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
|
|
218
|
-
border: solid 1px #
|
|
219
|
-
|
|
220
|
-
background-color: #F7FAFF;
|
|
217
|
+
border: solid 1px #8300BF;
|
|
218
|
+
background-color: #f9f2fc;
|
|
221
219
|
text-align: center;
|
|
222
220
|
vertical-align: middle;
|
|
223
221
|
cursor: pointer;
|
package/vue.config.js
CHANGED
|
@@ -5,7 +5,7 @@ module.exports = {
|
|
|
5
5
|
if(process.env.NODE_ENV === 'production') {
|
|
6
6
|
//By including element-ui and all abi projects, the problem with element-ui
|
|
7
7
|
//stylesheet can be avoided.
|
|
8
|
-
config.externals =
|
|
8
|
+
config.externals = [ nodeExternals({allowlist: [/^marked/]}) ];
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
}
|