bfg-common 1.4.761 → 1.4.763

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.
@@ -73,6 +73,9 @@ const setCurrentPositionsPopup = (): void => {
73
73
  const windowMousedown = (): void => {
74
74
  emits('hide')
75
75
  }
76
+ const windowResize = (): void => {
77
+ emits('hide')
78
+ }
76
79
  watch(
77
80
  () => props.contextMenu.y,
78
81
  (newValue: number) => {
@@ -80,8 +83,10 @@ watch(
80
83
 
81
84
  if (newValue < 0) {
82
85
  window.removeEventListener('mousedown', windowMousedown)
86
+ window.removeEventListener('resize', windowResize)
83
87
  } else {
84
88
  window.addEventListener('mousedown', windowMousedown)
89
+ window.addEventListener('resize', windowResize)
85
90
  }
86
91
 
87
92
  setTimeout(() => {
@@ -342,5 +342,5 @@ export const capabilities: UI_I_Compatibility = {
342
342
  bus: {},
343
343
  cdromBus: {},
344
344
  maxCpus: 140,
345
- maxMemory: 262144, // 256 GB
345
+ maxMemory: 1_048_576, // 1024 GB
346
346
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.761",
4
+ "version": "1.4.763",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",