bfg-common 1.0.14 → 1.0.16
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/add/Add.vue +1 -1
- package/components/common/vm/actions/add/FolderTreeView.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/CustomizeHardware.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/CoresPerSocket.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/Cpu.vue +371 -368
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/CpuModel.vue +2 -2
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/MaxCpu.vue +105 -99
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/shares/Shares.vue +155 -151
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/limit/Limit.vue +214 -210
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/memory/Memory.vue +282 -278
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/Location.vue +10 -10
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +10 -6
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/cache/Cache.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +7 -3
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newHardDisk/provisioning/Provisioning.vue +2 -2
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newNetwork/Location.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +256 -252
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterType.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddress.vue +6 -6
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +3 -3
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/reservation/Reservation.vue +231 -228
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/videoCard/TotalVideoMemory.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/videoCard/VideoCard.vue +173 -169
- package/components/common/vm/actions/add/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplays.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/Vmoptions.vue +145 -141
- package/components/common/vm/actions/add/customizeHardware/vmoptions/bootOptions/BootOptions.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/bootOptions/firmware/Firmware.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/RemoteConsoleOptions.vue +230 -226
- package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/ImgCompression.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/JpegCompression.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/MouseMode.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/StreamingMode.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/type/Type.vue +1 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/ZlibCompression.vue +1 -1
- package/components/common/vm/actions/add/select/compatibility/Compatibility.vue +6 -6
- package/components/common/vm/actions/add/select/os/os.vue +7 -7
- package/package.json +1 -1
|
@@ -249,7 +249,7 @@ const props = defineProps<{
|
|
|
249
249
|
files: UI_I_FileTreeNode[]
|
|
250
250
|
networksTable: UI_I_NetworkTableItem[]
|
|
251
251
|
datastore: UI_I_DatastoreTableItem[]
|
|
252
|
-
errorValidationFields: UI_I_ErrorValidationField
|
|
252
|
+
errorValidationFields: UI_I_ErrorValidationField[]
|
|
253
253
|
readyCompleteTableInfo: UI_I_TableInfoItem[]
|
|
254
254
|
vmCpuHelpTextSecond: string
|
|
255
255
|
importFromVMWarevSphere: string
|
|
@@ -31,7 +31,7 @@ const { $store } = useNuxtApp()
|
|
|
31
31
|
const nodes = computed<UI_I_TreeNode[]>(
|
|
32
32
|
() => $store.getters['inventory/getFolderTree'] || []
|
|
33
33
|
)
|
|
34
|
-
const loading = ref(false)
|
|
34
|
+
const loading = ref<boolean>(false)
|
|
35
35
|
const getTree = async (): Promise<void> => {
|
|
36
36
|
loading.value = true
|
|
37
37
|
await $store.dispatch('inventory/A_GET_FOLDER_TREE', null)
|
|
@@ -96,7 +96,7 @@ import { navItemsFunc } from '~/components/common/vm/actions/add/customizeHardwa
|
|
|
96
96
|
|
|
97
97
|
const props = defineProps<{
|
|
98
98
|
vmName: string
|
|
99
|
-
errorValidationFields: UI_I_ErrorValidationField
|
|
99
|
+
errorValidationFields: UI_I_ErrorValidationField[]
|
|
100
100
|
storage: UI_I_DatastoreTableItem | null
|
|
101
101
|
guestMachineType: UI_I_OptionItem | null
|
|
102
102
|
guestOsFamily: UI_I_OptionItem | null
|
package/components/common/vm/actions/add/customizeHardware/virtualHardware/cpu/CoresPerSocket.vue
CHANGED
|
@@ -52,7 +52,7 @@ const props = defineProps<{
|
|
|
52
52
|
selectedCorePerSocket: number
|
|
53
53
|
isEdit: boolean
|
|
54
54
|
disabled: boolean
|
|
55
|
-
errorValidationFields: UI_I_ErrorValidationField
|
|
55
|
+
errorValidationFields: UI_I_ErrorValidationField[]
|
|
56
56
|
}>()
|
|
57
57
|
const emits = defineEmits<{
|
|
58
58
|
(event: 'update:selected-core-per-socket', value: number): void
|