bfg-common 1.3.22 → 1.3.24

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.
@@ -6,10 +6,10 @@
6
6
 
7
7
  /* _____BACKGROUND IMAGE_____ */
8
8
  .network-lib-ui-icon-path-dead {
9
- background-image: url('@/assets/img/icons/lib-ui-icons-light.png');
9
+ background-image: url('assets/img/icons/lib-ui-icons-light.png');
10
10
 
11
11
  html.dark-theme & {
12
- background-image: url('@/assets/img/icons/lib-ui-icons-light.png');
12
+ background-image: url('assets/img/icons/lib-ui-icons-light.png');
13
13
  }
14
14
  }
15
15
 
@@ -19,5 +19,4 @@
19
19
  height: 16px;
20
20
  min-width: 16px;
21
21
  min-height: 16px;
22
- background-size: 100% auto;
23
22
  }
@@ -27,7 +27,7 @@
27
27
  'tree-node-text-drag',
28
28
  { 'no-child': !node.hasNodes, 'dark-mode': hasDarkMode },
29
29
  ]"
30
- @contextmenu="showContextMenuAndSelectNode($event, node)"
30
+ @contextmenu.prevent="showContextMenuAndSelectNode($event, node)"
31
31
  >
32
32
  <div
33
33
  :class="[
@@ -113,7 +113,9 @@ const showContextMenuAndSelectNode = (
113
113
  ): void => {
114
114
  selectNode(node)
115
115
 
116
- showContextMenu(event, node)
116
+ setTimeout(() => {
117
+ showContextMenu(event, node)
118
+ }, 0)
117
119
  }
118
120
  </script>
119
121
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.22",
4
+ "version": "1.3.24",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",