bfg-common 1.4.79 → 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.
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuHotPlug.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuModel.vue +2 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Iommu.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Pc.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryHotPlug.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/Graphics.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Menu.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Secure.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PlaybackCompression.vue +1 -1
- package/package.json +4 -4
package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuModel.vue
CHANGED
|
@@ -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',
|
|
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',
|
|
173
|
+
emits('update:host-model-cpu', newValue)
|
|
174
174
|
},
|
|
175
175
|
})
|
|
176
176
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bfg-common",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.4.
|
|
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": "
|
|
17
|
-
"@vueuse/nuxt": "
|
|
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": "
|
|
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"
|