bfg-common 1.5.701 → 1.5.702

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.
Files changed (31) hide show
  1. package/assets/localization/local_be.json +2 -1
  2. package/assets/localization/local_en.json +2 -1
  3. package/assets/localization/local_hy.json +2 -1
  4. package/assets/localization/local_kk.json +2 -1
  5. package/assets/localization/local_ru.json +3 -2
  6. package/assets/localization/local_zh.json +2 -1
  7. package/components/common/layout/theHeader/modals/reconnect/ReconnectOld.vue +2 -0
  8. package/components/common/monitor/advanced/graphView/GraphView.vue +151 -151
  9. package/components/common/monitor/advanced/tools/Tools.vue +313 -313
  10. package/components/common/pages/files/lib/models/enums.ts +10 -0
  11. package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +394 -394
  12. package/components/common/pages/hardwareHealth/tableView/TableView.vue +202 -202
  13. package/components/common/pages/hardwareHealth/tableView/lib/config/sensorTable.ts +165 -165
  14. package/components/common/vm/actions/common/customizeHardware/virtualHardware/New.vue +0 -9
  15. package/components/common/vm/actions/common/customizeHardware/virtualHardware/Old.vue +6 -13
  16. package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +0 -26
  17. package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces.ts +3 -1
  18. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/New.vue +7 -4
  19. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +9 -56
  20. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/Old.vue +5 -8
  21. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIo.vue +1 -3
  22. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/New.vue +2 -2
  23. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/Old.vue +2 -2
  24. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIo.vue +1 -1
  25. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/New.vue +1 -2
  26. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/Old.vue +1 -2
  27. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/New.vue +1 -1
  28. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGrid.vue +1 -1
  29. package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/Old.vue +1 -1
  30. package/package.json +1 -1
  31. package/store/main/getters.ts +7 -7
@@ -56,6 +56,7 @@
56
56
  </template>
57
57
 
58
58
  <script setup lang="ts">
59
+ import type { UI_I_Option } from '~/components/atoms/select/lib/models/interfaces'
59
60
  import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
60
61
  import type { UI_T_PciDeviceType } from '~/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/types'
61
62
  import type {
@@ -66,13 +67,13 @@ import type {
66
67
  const selectedType = defineModel<UI_I_OptionItem>('selectedType', {
67
68
  required: true,
68
69
  })
69
- const directPathIo = defineModel<UI_I_PciDevice>('directPathIo', {
70
+ const directPathIo = defineModel<string>('directPathIo', {
70
71
  required: true,
71
72
  })
72
- const dynamicDirectPathIo = defineModel<string>('dynamicDirectPathIo', {
73
+ const dynamicDirectPathIo = defineModel<UI_I_PciDevice>('dynamicDirectPathIo', {
73
74
  required: true,
74
75
  })
75
- const nvidiaGridProfile = defineModel<string>('nvidiaGridProfile', {
76
+ const nvidiaGridProfile = defineModel<UI_I_Option | null>('nvidiaGridProfile', {
76
77
  required: true,
77
78
  })
78
79
 
@@ -91,8 +92,4 @@ const emits = defineEmits<{
91
92
  }>()
92
93
  </script>
93
94
 
94
- <style scoped lang="scss">
95
- #network-connect {
96
- margin-right: 4px;
97
- }
98
- </style>
95
+ <style scoped lang="scss"></style>
@@ -7,9 +7,7 @@
7
7
  </template>
8
8
 
9
9
  <script lang="ts" setup>
10
- import type { UI_I_ConfigureAllPciDevicesItem } from '~/lib/models/store/host/interfaces'
11
-
12
- const model = defineModel<UI_I_ConfigureAllPciDevicesItem>({ required: true })
10
+ const model = defineModel<string>({ required: true })
13
11
 
14
12
  const props = defineProps<{
15
13
  pciDeviceIndex: number
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <ui-stack-block
3
- :has-children="false"
4
- :test-id="`pci-device-direct-path-io-stack-block-${props.pciDeviceIndex}`"
3
+ :has-children="false"
4
+ :test-id="`pci-device-direct-path-io-stack-block-${props.pciDeviceIndex}`"
5
5
  >
6
6
  <template #stackBlockKey>
7
7
  {{ localization.common.pciDevice }}
@@ -1,8 +1,8 @@
1
1
  <template>
2
2
  <div>
3
3
  <atoms-stack-block
4
- :has-children="false"
5
- :test-id="`pci-device-direct-path-io-stack-block-${props.pciDeviceIndex}`"
4
+ :has-children="false"
5
+ :test-id="`pci-device-direct-path-io-stack-block-${props.pciDeviceIndex}`"
6
6
  >
7
7
  <template #stackBlockContent>
8
8
  <input
@@ -10,7 +10,7 @@
10
10
  <script lang="ts" setup>
11
11
  import type { UI_I_PciDevice } from '~/lib/models/store/vm/interfaces'
12
12
 
13
- const model = defineModel<string>({ required: true })
13
+ const model = defineModel<UI_I_PciDevice>({ required: true })
14
14
 
15
15
  const props = defineProps<{
16
16
  pciDeviceIndex: number
@@ -21,10 +21,9 @@
21
21
 
22
22
  <script lang="ts" setup>
23
23
  import type { UI_I_Localization } from '~/lib/models/interfaces'
24
- import type { UI_I_ConfigureAllPciDevicesItem } from '~/lib/models/store/host/interfaces'
25
24
  import type { UI_I_PciDevice } from '~/lib/models/store/vm/interfaces'
26
25
 
27
- const model = defineModel<UI_I_ConfigureAllPciDevicesItem>()
26
+ const model = defineModel<UI_I_PciDevice>()
28
27
 
29
28
  const props = defineProps<{
30
29
  pciDeviceIndex: number
@@ -28,10 +28,9 @@
28
28
 
29
29
  <script lang="ts" setup>
30
30
  import type { UI_I_Localization } from '~/lib/models/interfaces'
31
- import type { UI_I_ConfigureAllPciDevicesItem } from '~/lib/models/store/host/interfaces'
32
31
  import type { UI_I_PciDevice } from '~/lib/models/store/vm/interfaces'
33
32
 
34
- const model = defineModel<UI_I_ConfigureAllPciDevicesItem>()
33
+ const model = defineModel<UI_I_PciDevice>()
35
34
 
36
35
  const props = defineProps<{
37
36
  pciDeviceIndex: number
@@ -27,7 +27,7 @@
27
27
  import type { UI_I_Localization } from '~/lib/models/interfaces'
28
28
  import type { UI_I_Option } from '~/components/atoms/select/lib/models/interfaces'
29
29
 
30
- const model = defineModel<string>({ required: true })
30
+ const model = defineModel<UI_I_Option | null>({ required: true })
31
31
 
32
32
  const props = defineProps<{
33
33
  options: UI_I_Option[]
@@ -11,7 +11,7 @@
11
11
  import type { UI_I_Option } from '~/components/atoms/select/lib/models/interfaces'
12
12
  import type { UI_I_MediatedDevice } from '~/lib/models/store/vm/interfaces'
13
13
 
14
- const model = defineModel<string>({ required: true })
14
+ const model = defineModel<UI_I_Option | null>({ required: true })
15
15
 
16
16
  const props = defineProps<{
17
17
  pciDeviceIndex: number
@@ -42,7 +42,7 @@
42
42
  import type { UI_I_Localization } from '~/lib/models/interfaces'
43
43
  import type { UI_I_Option } from '~/components/atoms/select/lib/models/interfaces'
44
44
 
45
- const model = defineModel<string>({ required: true })
45
+ const model = defineModel<UI_I_Option | null>({ required: true })
46
46
 
47
47
  const props = defineProps<{
48
48
  options: UI_I_Option[]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.701",
4
+ "version": "1.5.702",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",
@@ -1,7 +1,7 @@
1
- import type { UI_I_MainState } from '~/store/main/lib/interfaces'
2
-
3
- export default {
4
- getIsMenuPined: (state: UI_I_MainState): boolean => {
5
- return state.isMenuPined
6
- },
7
- }
1
+ import type { UI_I_MainState } from '~/store/main/lib/interfaces'
2
+
3
+ export default {
4
+ getIsMenuPined: (state: UI_I_MainState): boolean => {
5
+ return state.isMenuPined
6
+ },
7
+ }