bfg-common 1.4.74 → 1.4.76

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.
@@ -7,11 +7,10 @@
7
7
  <template #stackBlockContent>
8
8
  <input
9
9
  id="enable-cpu-hot-add"
10
+ v-model="enableCpuHotAddLocal"
10
11
  data-id="enable-cpu-hot-add"
11
12
  type="checkbox"
12
13
  :disabled="props.disabled"
13
- v-model="enableCpuHotAddLocal"
14
- @input="enableCpuHotAddLocal = !enableCpuHotAddLocal"
15
14
  />
16
15
  <label
17
16
  for="enable-cpu-hot-add"
@@ -45,7 +44,7 @@ const enableCpuHotAddLocal = computed<boolean>({
45
44
  return props.enableCpuHotAdd
46
45
  },
47
46
  set(newValue) {
48
- emits('update:enable-cpu-hot-add', !newValue)
47
+ emits('update:enable-cpu-hot-add', newValue)
49
48
  },
50
49
  })
51
50
  </script>
@@ -36,11 +36,10 @@
36
36
  <div class="passthrough-host-cpu-wrap flex-align-center">
37
37
  <input
38
38
  id="passthrough-host-cpu"
39
+ v-model="passthroughHostCpuLocal"
39
40
  data-id="passthrough-host-cpu"
40
41
  :disabled="props.disabled"
41
42
  type="checkbox"
42
- v-model="passthroughHostCpuLocal"
43
- @input="passthroughHostCpuLocal = !passthroughHostCpuLocal"
44
43
  @change="changePassthroughHostCpu"
45
44
  />
46
45
  <label for="passthrough-host-cpu" class="label-text-normal">{{
@@ -80,11 +79,10 @@
80
79
  <div class="flex-align-center">
81
80
  <input
82
81
  id="host-model-cpu"
82
+ v-model="hostModelCpuLocal"
83
83
  data-id="host-model-cpu-input"
84
84
  type="checkbox"
85
85
  :disabled="props.disabled"
86
- v-model="hostModelCpuLocal"
87
- @input="hostModelCpuLocal = !hostModelCpuLocal"
88
86
  @change="changeHostModelCpu"
89
87
  />
90
88
  <label for="host-model-cpu" class="label-text-normal">{{
@@ -164,7 +162,7 @@ const passthroughHostCpuLocal = computed<boolean>({
164
162
  return props.passthroughHostCpu
165
163
  },
166
164
  set(newValue) {
167
- emits('update:passthrough-host-cpu', !newValue)
165
+ emits('update:passthrough-host-cpu', newValue)
168
166
  },
169
167
  })
170
168
  const hostModelCpuLocal = computed<boolean>({
@@ -172,7 +170,7 @@ const hostModelCpuLocal = computed<boolean>({
172
170
  return props.hostModelCpu
173
171
  },
174
172
  set(newValue) {
175
- emits('update:host-model-cpu', !newValue)
173
+ emits('update:host-model-cpu', newValue)
176
174
  },
177
175
  })
178
176
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.74",
4
+ "version": "1.4.76",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",
@@ -13,30 +13,30 @@
13
13
  },
14
14
  "devDependencies": {
15
15
  "@novnc/novnc": "1.4.0",
16
- "@vueuse/core": "^10.1.2",
17
- "@vueuse/nuxt": "^10.1.2",
18
- "eslint-config-prettier": "^8.5.0",
16
+ "@vueuse/core": "10.1.2",
17
+ "@vueuse/nuxt": "10.1.2",
18
+ "eslint-config-prettier": "8.5.0",
19
19
  "nuxt": "3.13.1",
20
20
  "prettier": "2.7.1",
21
- "sass": "^1.54.9",
22
- "sass-loader": "^10.3.1",
23
- "terser": "^5.22.0",
24
- "vite-plugin-eslint": "^1.8.1",
25
- "xterm": "^5.1.0",
26
- "xterm-addon-attach": "^0.8.0",
27
- "xterm-addon-fit": "^0.7.0",
28
- "xterm-addon-serialize": "^0.9.0",
29
- "xterm-addon-unicode11": "^0.5.0",
30
- "xterm-addon-web-links": "^0.8.0",
21
+ "sass": "1.54.9",
22
+ "sass-loader": "10.3.1",
23
+ "terser": "5.22.0",
24
+ "vite-plugin-eslint": "1.8.1",
25
+ "xterm": "5.1.0",
26
+ "xterm-addon-attach": "0.8.0",
27
+ "xterm-addon-fit": "0.7.0",
28
+ "xterm-addon-serialize": "0.9.0",
29
+ "xterm-addon-unicode11": "0.5.0",
30
+ "xterm-addon-web-links": "0.8.0",
31
31
  "eslint-plugin-myrules": "file:./eslint"
32
32
  },
33
33
  "dependencies": {
34
- "@nuxtjs/eslint-config-typescript": "^12.0.0",
35
- "@vueuse/components": "^10.1.2",
36
- "date-fns": "^2.29.3",
37
- "bfg-nuxt-3-graph": "^1.0.15",
34
+ "@nuxtjs/eslint-config-typescript": "12.0.0",
35
+ "@vueuse/components": "10.1.2",
36
+ "date-fns": "2.29.3",
37
+ "bfg-nuxt-3-graph": "1.0.15",
38
38
  "bfg-uikit": "1.0.91",
39
- "html2canvas": "^1.4.1",
40
- "prettier-eslint": "^15.0.1"
39
+ "html2canvas": "1.4.1",
40
+ "prettier-eslint": "15.0.1"
41
41
  }
42
42
  }