@processmaker/modeler 1.39.22 → 1.39.23

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@processmaker/modeler",
3
- "version": "1.39.22",
3
+ "version": "1.39.23",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve --mode development",
6
6
  "test:unit": "vue-cli-service test:unit",
@@ -56,7 +56,7 @@
56
56
 
57
57
  <InspectorButton
58
58
  ref="inspector-button"
59
- v-if="showComponent && showInspectorButton"
59
+ v-show="showComponent && showInspectorButton"
60
60
  :showInspector="isOpenInspector"
61
61
  @toggleInspector="[handleToggleInspector($event), setInspectorButtonPosition($event)]"
62
62
  :style="{ right: inspectorButtonRight + 'px' }"
@@ -371,6 +371,11 @@ export default {
371
371
  canvasScale(canvasScale) {
372
372
  this.paperManager.scale = canvasScale;
373
373
  },
374
+ highlightedNodes() {
375
+ if (window.ProcessMaker?.EventBus) {
376
+ window.ProcessMaker.EventBus.$emit('modeler:highlightedNodes', this.highlightedNodes);
377
+ }
378
+ },
374
379
  },
375
380
  computed: {
376
381
  showWelcomeMessage() {
@@ -1,7 +1,7 @@
1
1
  $toolbar-background-color: #fff;
2
2
 
3
3
  .toolbar {
4
- z-index: 3;
4
+ z-index: 4;
5
5
  height: $toolbar-height;
6
6
  cursor: auto;
7
7
  width: 100%;