bfg-common 1.2.93 → 1.2.95

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.
@@ -559,13 +559,13 @@ const onShowModal = (
559
559
  break
560
560
  }
561
561
  }
562
- const onRemoveNetwork = (id: string) => {
562
+ const onRemoveNetwork = (label: string) => {
563
563
  isShowRemoveModalLoader.value = true
564
- emits('remove-network', { id, hideModalCB: onHideNetworkRemoveModal })
564
+ const id = props.networksList.find(network => network.title === label)!.id
565
+ emits('remove-network', { id, hideModalCB: onHideNetworkRemoveModal })
565
566
  }
566
- const onRemoveSwitch = (label: string) => {
567
+ const onRemoveSwitch = (id: string) => {
567
568
  isShowRemoveModalLoader.value = true
568
- const id = props.networksList.find((network) => network.title === label)!.id
569
569
  emits('remove-switch', { id, hideModalCB: onHideSwitchRemoveModal })
570
570
  }
571
571
  const onRemovePort = (id: string) => {
@@ -29,6 +29,13 @@ const props = defineProps<{
29
29
  </script>
30
30
 
31
31
  <style scoped lang="scss">
32
+ :root.dark-theme {
33
+ .panel {
34
+ fill: #1b2a32;
35
+ stroke: #adbbc4;
36
+ }
37
+ }
38
+
32
39
  .panel {
33
40
  fill: #fff;
34
41
  stroke: #888;
@@ -32,7 +32,8 @@ export const capabilities: UI_I_Compatibility = {
32
32
  machineTypes: [
33
33
  {
34
34
  text: 'Q35',
35
- value: 'pc-q35-3.1',
35
+ // value: 'pc-q35-3.1',
36
+ value: 'pc-q35-6.2',
36
37
  },
37
38
  {
38
39
  text: 'I440FX',
@@ -126,7 +127,7 @@ export const capabilities: UI_I_Compatibility = {
126
127
  },
127
128
  ],
128
129
  guestOsVersions: {
129
- 'windows': [
130
+ windows: [
130
131
  {
131
132
  text: 'Microsoft Windows Server 2022 (64-bit)',
132
133
  value: 'windows2019srvNext_64Guest-vbsEnabled-true',
@@ -220,7 +221,7 @@ export const capabilities: UI_I_Compatibility = {
220
221
  value: 'win95Guest-vbsEnabled-false',
221
222
  },
222
223
  ],
223
- 'linux': [
224
+ linux: [
224
225
  {
225
226
  text: 'Red Hat Enterprise Linux (64-bit)',
226
227
  value: 'rhel64Guest-vbsEnabled-false',
@@ -306,7 +307,7 @@ export const capabilities: UI_I_Compatibility = {
306
307
  value: 'otherLinuxGuest-vbsEnabled-false',
307
308
  },
308
309
  ],
309
- 'other': [
310
+ other: [
310
311
  {
311
312
  text: 'Apple macOS (64-bit)',
312
313
  value: 'darwin64Guest-vbsEnabled-false',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.2.93",
4
+ "version": "1.2.95",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",