@abi-software/scaffoldvuer 1.9.1-beta.0 → 1.9.1-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/package.json
CHANGED
|
@@ -337,7 +337,7 @@
|
|
|
337
337
|
class="settings-group"
|
|
338
338
|
:class="{ open: drawerOpen, close: !drawerOpen }"
|
|
339
339
|
>
|
|
340
|
-
<el-row>
|
|
340
|
+
<el-row v-if="showOpenMapButton">
|
|
341
341
|
<el-popover
|
|
342
342
|
:visible="hoverVisibilities[3].value"
|
|
343
343
|
content="Open new map"
|
|
@@ -714,6 +714,13 @@ export default {
|
|
|
714
714
|
type: Boolean,
|
|
715
715
|
default: true,
|
|
716
716
|
},
|
|
717
|
+
/**
|
|
718
|
+
* The option to show open new map button
|
|
719
|
+
*/
|
|
720
|
+
showOpenMapButton: {
|
|
721
|
+
type: Boolean,
|
|
722
|
+
default: true,
|
|
723
|
+
},
|
|
717
724
|
},
|
|
718
725
|
provide() {
|
|
719
726
|
return {
|