bfg-common 1.4.78 → 1.4.80

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.
@@ -44,7 +44,7 @@ const enableCpuHotAddLocal = computed<boolean>({
44
44
  return props.enableCpuHotAdd
45
45
  },
46
46
  set(newValue) {
47
- emits('update:enable-cpu-hot-add', !newValue)
47
+ emits('update:enable-cpu-hot-add', newValue)
48
48
  },
49
49
  })
50
50
  </script>
@@ -162,7 +162,7 @@ const passthroughHostCpuLocal = computed<boolean>({
162
162
  return props.passthroughHostCpu
163
163
  },
164
164
  set(newValue) {
165
- emits('update:passthrough-host-cpu', !newValue)
165
+ emits('update:passthrough-host-cpu', newValue)
166
166
  },
167
167
  })
168
168
  const hostModelCpuLocal = computed<boolean>({
@@ -170,7 +170,7 @@ const hostModelCpuLocal = computed<boolean>({
170
170
  return props.hostModelCpu
171
171
  },
172
172
  set(newValue) {
173
- emits('update:host-model-cpu', !newValue)
173
+ emits('update:host-model-cpu', newValue)
174
174
  },
175
175
  })
176
176
 
@@ -73,7 +73,7 @@ const hardwareVirtualizationLocal = computed<boolean>({
73
73
  return props.hardwareVirtualization
74
74
  },
75
75
  set(newValue) {
76
- emits('update:hardware-virtualization', !newValue)
76
+ emits('update:hardware-virtualization', newValue)
77
77
  },
78
78
  })
79
79
 
@@ -43,7 +43,7 @@ const iommuLocal = computed<boolean>({
43
43
  return props.iommu
44
44
  },
45
45
  set(newValue) {
46
- emits('update:iommu', !newValue)
46
+ emits('update:iommu', newValue)
47
47
  },
48
48
  })
49
49
  </script>
@@ -43,7 +43,7 @@ const performanceCountersLocal = computed<boolean>({
43
43
  return props.performanceCounters
44
44
  },
45
45
  set(newValue) {
46
- emits('update:performance-counters', !newValue)
46
+ emits('update:performance-counters', newValue)
47
47
  },
48
48
  })
49
49
  </script>
@@ -42,7 +42,7 @@ const memoryHotPlugLocal = computed<boolean>({
42
42
  return props.memoryHotPlug
43
43
  },
44
44
  set(newValue) {
45
- emits('update:memory-hot-plug', !newValue)
45
+ emits('update:memory-hot-plug', newValue)
46
46
  },
47
47
  })
48
48
  </script>
@@ -38,7 +38,7 @@ const graphicsLocal = computed<boolean>({
38
38
  return props.graphics
39
39
  },
40
40
  set(newValue) {
41
- emits('update:graphics', !newValue)
41
+ emits('update:graphics', newValue)
42
42
  },
43
43
  })
44
44
  </script>
@@ -38,7 +38,7 @@ const bootMenuLocal = computed<boolean>({
38
38
  return props.bootMenu
39
39
  },
40
40
  set(newValue) {
41
- emits('update:boot-menu', !newValue)
41
+ emits('update:boot-menu', newValue)
42
42
  },
43
43
  })
44
44
  </script>
@@ -38,7 +38,7 @@ const secureBootLocal = computed<boolean>({
38
38
  return props.secureBoot
39
39
  },
40
40
  set(newValue) {
41
- emits('update:secure-boot', !newValue)
41
+ emits('update:secure-boot', newValue)
42
42
  },
43
43
  })
44
44
  </script>
@@ -40,7 +40,7 @@ const playbackCompressionLocal = computed<boolean>({
40
40
  return props.playbackCompression
41
41
  },
42
42
  set(newValue) {
43
- emits('update:playback-compression', !newValue)
43
+ emits('update:playback-compression', newValue)
44
44
  },
45
45
  })
46
46
  </script>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.78",
4
+ "version": "1.4.80",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",
@@ -13,8 +13,8 @@
13
13
  },
14
14
  "devDependencies": {
15
15
  "@novnc/novnc": "1.4.0",
16
- "@vueuse/core": "^10.1.2",
17
- "@vueuse/nuxt": "^10.1.2",
16
+ "@vueuse/core": "10.1.2",
17
+ "@vueuse/nuxt": "10.1.2",
18
18
  "eslint-config-prettier": "^8.5.0",
19
19
  "nuxt": "3.11.2",
20
20
  "prettier": "2.7.1",
@@ -34,7 +34,7 @@
34
34
  "@nuxtjs/eslint-config-typescript": "^12.0.0",
35
35
  "@vueuse/components": "^10.1.2",
36
36
  "date-fns": "^2.29.3",
37
- "bfg-nuxt-3-graph": "^1.0.15",
37
+ "bfg-nuxt-3-graph": "1.0.15",
38
38
  "bfg-uikit": "1.0.91",
39
39
  "html2canvas": "^1.4.1",
40
40
  "prettier-eslint": "^15.0.1"