bfg-common 1.4.393 → 1.4.395
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/layout/theHeader/feedback/new/New.vue +12 -12
- package/components/common/layout/theHeader/feedback/new/additionalDetails/Headline.vue +7 -4
- package/components/common/layout/theHeader/feedback/new/description/Description.vue +1 -1
- package/components/common/layout/theHeader/feedback/new/email/Email.vue +1 -1
- package/components/common/layout/theHeader/feedback/new/subtitle/Subtitle.vue +6 -3
- package/components/common/layout/theHeader/feedback/new/tabs/Tabs.vue +24 -8
- package/components/common/layout/theHeader/feedback/new/tabs/lib/config/tabs.ts +2 -2
- package/components/common/summary/notification/Notification.vue +28 -0
- package/components/common/summary/notification/NotificationNew.vue +135 -0
- package/components/common/summary/notification/NotificationOld.vue +46 -0
- package/components/common/vm/actions/common/_customizeHardware/CustomizeHardware.vue +274 -0
- package/components/common/vm/actions/common/_customizeHardware/lib/config/navItems.ts +21 -0
- package/components/common/vm/actions/common/_customizeHardware/lib/models/interfaces.ts +7 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/VirtualHardware.vue +702 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/browseView/BrowseView.vue +203 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/browseView/lib/models/interfaces.ts +8 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/bus/Bus.vue +156 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/bus/lib/config/options.ts +20 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +270 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cdDvdDrive/lib/config/fileTypes.ts +9 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cdDvdDrive/lib/config/options.ts +11 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cdDvdDrive/lib/models/types.ts +1 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +57 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cpu/Cpu.vue +403 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cpu/Hv.vue +99 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cpu/Iommu.vue +55 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cpu/Pc.vue +55 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cpu/Sa.vue +106 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cpu/lib/config/cpuOptions.ts +21 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cpu/shares/Shares.vue +160 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cpu/shares/lib/config/options.ts +28 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/cpu/tooltip/Tooltip.vue +59 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/lib/config/binaryOptions.ts +12 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/lib/config/dropdownItems.ts +66 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/lib/models/interfaces.ts +118 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/lib/models/types.ts +4 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/limit/Limit.vue +236 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/limit/lib/config/options.ts +28 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/memory/Memory.vue +329 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/memory/lib/config/memoryOptions.ts +35 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +462 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/cache/Cache.vue +81 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/cache/lib/config/options.ts +7 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +153 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/limitIops/lib/config/options.ts +28 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/location/Location.vue +172 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/location/StorageModalOld.vue +52 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/mode/Mode.vue +88 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/mode/lib/config/options.ts +18 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/provisioning/Provisioning.vue +88 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/provisioning/lib/config/options.ts +15 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/sharing/Sharing.vue +86 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newHardDisk/sharing/lib/config/options.ts +12 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newNetwork/Location.vue +145 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +305 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newNetwork/adapterType/AdapterType.vue +87 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newNetwork/adapterType/lib/config/options.ts +9 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newNetwork/macAddress/MacAddress.vue +148 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newNetwork/macAddress/lib/config/options.ts +11 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +168 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIo.vue +48 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/DynamicDirectPathIo.vue +49 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newPciDevice/dynamicDirectPathIo/lib/config/options.ts +10 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newPciDevice/lib/config/options.ts +7 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newPciDevice/note/Note.vue +27 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGrid.vue +42 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newPciDevice/typeSelection/TypeSelection.vue +57 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +82 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/newUsbController/lib/config/options.ts +6 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/other/Other.vue +32 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/reservation/Reservation.vue +237 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/reservation/lib/config/options.ts +33 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/videoCard/Graphics.vue +50 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/videoCard/VideoCard.vue +182 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/videoCard/lib/config/options.ts +11 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/videoCard/model/Model.vue +59 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/videoCard/model/lib/config/options.ts +10 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplays.vue +83 -0
- package/components/common/vm/actions/common/_customizeHardware/virtualHardware/videoCard/numberDisplays/lib/config/options.ts +14 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/Vmoptions.vue +181 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/bootOptions/BootOptions.vue +114 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/bootOptions/Secure.vue +50 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/bootOptions/delay/Delay.vue +54 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/bootOptions/delay/lib/config/config.ts +14 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/bootOptions/firmware/Firmware.vue +84 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/bootOptions/firmware/lib/config/config.ts +11 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/bootOptions/order/Order.vue +201 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/bootOptions/order/lib/models/interfaces.ts +9 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +192 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/lib/models/interfaces.ts +34 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/PlaybackCompression.vue +52 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/PowerControl.vue +50 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/RemoteConsoleOptions.vue +254 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/ImgCompression.vue +85 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/lib/config/config.ts +14 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/JpegCompression.vue +85 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/lib/config/config.ts +12 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +56 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/keymap/lib/config/config.ts +6 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/MouseMode.vue +57 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/lib/config/config.ts +11 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/password/Password.vue +142 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/password/lib/models/interfaces.ts +5 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/password/lib/utils.ts +12 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/SharePolicy.vue +56 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/lib/config/config.ts +11 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/StreamingMode.vue +85 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/lib/config/config.ts +12 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/type/Type.vue +85 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/type/lib/config/config.ts +7 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirection.vue +57 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/lib/config/config.ts +14 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/ZlibCompression.vue +85 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/lib/config/config.ts +12 -0
- package/components/common/vm/actions/common/_customizeHardware/vmoptions/tools/Tools.vue +72 -0
- package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +119 -126
- package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareNew.vue +189 -0
- package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareOld.vue +158 -0
- package/components/common/vm/actions/common/customizeHardware/lib/config/navItems.ts +17 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +165 -182
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareNew.vue +392 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareOld.vue +267 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/Bus.vue +34 -93
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusNew.vue +118 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/BusOld.vue +109 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +69 -111
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveNew.vue +159 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveOld.vue +158 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +13 -45
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/MediaNew.vue +55 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/MediaOld.vue +42 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Cpu.vue +73 -139
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuNew.vue +185 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuOld.vue +174 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +90 -90
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Iommu.vue +50 -50
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Pc.vue +50 -50
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Sa.vue +98 -98
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocket.vue +86 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocketNew.vue +68 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/coresPerSocket/CoresPerSocketOld.vue +63 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/cpuHotPlug/CpuHotPlug.vue +40 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/cpuHotPlug/CpuHotPlugNew.vue +31 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/cpuHotPlug/CpuHotPlugOld.vue +38 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/cpuModel/CpuModel.vue +121 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/cpuModel/CpuModelNew.vue +209 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/cpuModel/CpuModelOld.vue +171 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/maxCpu/MaxCpu.vue +94 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/maxCpu/MaxCpuNew.vue +40 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/maxCpu/MaxCpuOld.vue +51 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +29 -49
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/SharesNew.vue +58 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/SharesOld.vue +76 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/Tooltip.vue +10 -48
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/TooltipNew.vue +111 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/TooltipOld.vue +59 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/config/dropdownItems.ts +83 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +32 -52
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/LimitNew.vue +70 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/LimitOld.vue +75 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +53 -94
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryNew.vue +151 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryOld.vue +154 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlug.vue +29 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlugNew.vue +30 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/hotPlug/HotPlugOld.vue +43 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +77 -188
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskNew.vue +224 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskOld.vue +240 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/Cache.vue +21 -47
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/CacheNew.vue +40 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/CacheOld.vue +57 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/File.vue +22 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/FileNew.vue +28 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/file/FileOld.vue +24 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +32 -85
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIopsNew.vue +63 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIopsOld.vue +86 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/Location.vue +5 -16
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/StorageModal.vue +52 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/StorageModalNew.vue +74 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/location/StorageModalOld.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSize.vue +23 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSizeNew.vue +28 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/maximumSize/MaximumSizeOld.vue +25 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/Mode.vue +24 -47
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/ModeNew.vue +46 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/ModeOld.vue +57 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/Provisioning.vue +24 -51
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/ProvisioningNew.vue +44 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/ProvisioningOld.vue +58 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/Sharing.vue +24 -47
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/SharingNew.vue +44 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/SharingOld.vue +58 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +56 -89
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkNew.vue +124 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetworkOld.vue +131 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterType.vue +22 -49
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterTypeNew.vue +49 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterTypeOld.vue +60 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddress.vue +51 -80
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddressNew.vue +69 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddressOld.vue +84 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIo.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +16 -40
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbControllerNew.vue +53 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbControllerOld.vue +61 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/Other.vue +8 -24
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherNew.vue +27 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/OtherOld.vue +32 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevices.vue +15 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevicesNew.vue +33 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/other/inputDevices/InputDevicesOld.vue +21 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +30 -71
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/ReservationNew.vue +98 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/ReservationOld.vue +96 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCard.vue +39 -77
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardNew.vue +96 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCardOld.vue +108 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/Model.vue +16 -41
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/ModelNew.vue +40 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/ModelOld.vue +44 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplays.vue +21 -47
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplaysNew.vue +45 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplaysOld.vue +56 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemory.vue +105 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemoryNew.vue +54 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/totalVideoMemory/TotalVideoMemoryOld.vue +60 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/Vmoptions.vue +57 -93
- package/components/common/vm/actions/common/customizeHardware/vmoptions/VmoptionsNew.vue +102 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/VmoptionsOld.vue +96 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptions.vue +39 -53
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsNew.vue +75 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptionsOld.vue +80 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/Delay.vue +13 -41
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/DelayNew.vue +35 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/DelayOld.vue +41 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/Firmware.vue +20 -47
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/FirmwareNew.vue +42 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/FirmwareOld.vue +56 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/Menu.vue +20 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/MenuNew.vue +25 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/menu/MenuOld.vue +36 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +13 -43
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderNew.vue +50 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/OrderOld.vue +60 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +40 -155
- package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsNew.vue +141 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptionsOld.vue +137 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/New.vue +140 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/Old.vue +254 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PowerControl.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/RemoteConsoleOptions.vue +28 -110
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPaste.vue +26 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPasteNew.vue +30 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/copyPaste/CopyPasteOld.vue +41 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransfer.vue +26 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransferNew.vue +30 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/fileTransfer/FileTransferOld.vue +41 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharing.vue +20 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharingNew.vue +30 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/folderSharing/FolderSharingOld.vue +37 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +16 -40
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/KeymapNew.vue +39 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/KeymapOld.vue +43 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/Password.vue +32 -73
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/PasswordNew.vue +100 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/PasswordOld.vue +92 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirection.vue +13 -42
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirectionNew.vue +38 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirectionOld.vue +44 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/Tools.vue +15 -38
- package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/ToolsNew.vue +39 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/ToolsOld.vue +48 -0
- package/package.json +2 -2
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/cpu/CoresPerSocket.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/cpu/CpuHotPlug.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/cpu/CpuModel.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/cpu/MaxCpu.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/memory/MemoryHotPlug.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/newHardDisk/DiskFile.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/newHardDisk/MaximumSize.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/newHardDisk/location/storageModalNew/StorageModalNew.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/newHardDisk/location/storageModalNew/lib/config/table.ts +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/other/InputDevices.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/virtualHardware/videoCard/TotalVideoMemory.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/vmoptions/bootOptions/Menu.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/vmoptions/remoteConsoleOptions/CopyPaste.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/vmoptions/remoteConsoleOptions/FileTransfer.vue +0 -0
- /package/components/common/vm/actions/common/{customizeHardware → _customizeHardware}/vmoptions/remoteConsoleOptions/FolderSharing.vue +0 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="vm-options">
|
|
3
|
+
<common-vm-actions-common-customize-hardware-vmoptions-general-options
|
|
4
|
+
v-model:vm-name="vmName"
|
|
5
|
+
v-model:guest-machine-type="guestMachineType"
|
|
6
|
+
v-model:guest-os-family="guestOsFamily"
|
|
7
|
+
v-model:guest-os-version="guestOsVersion"
|
|
8
|
+
:is-edit="props.isEdit"
|
|
9
|
+
:is-clone="props.isClone"
|
|
10
|
+
:state="props.state"
|
|
11
|
+
/>
|
|
12
|
+
<common-vm-actions-common-customize-hardware-vmoptions-remote-console-options
|
|
13
|
+
:error-validation-fields="props.errorValidationFields"
|
|
14
|
+
:remote-console-options="props.options?.remote_console"
|
|
15
|
+
:is-edit="props.isEdit"
|
|
16
|
+
:state="props.state"
|
|
17
|
+
@send-data="emits('send-data-remote-console-options', $event)"
|
|
18
|
+
@invalid="remoteConsoleOptionsInvalid = $event"
|
|
19
|
+
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
20
|
+
/>
|
|
21
|
+
<common-vm-actions-common-customize-hardware-vmoptions-tools
|
|
22
|
+
:tools="props.options?.guest_tools?.enabled"
|
|
23
|
+
@send-data="emits('send-data-tools', $event)"
|
|
24
|
+
/>
|
|
25
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options
|
|
26
|
+
:error-validation-fields="props.errorValidationFields"
|
|
27
|
+
:hard-disks="props.hardDisks"
|
|
28
|
+
:cd-dvd-drives="props.cdDvdDrives"
|
|
29
|
+
:networks="props.networks"
|
|
30
|
+
:boot-options="props.options?.boot_options"
|
|
31
|
+
:is-edit="props.isEdit"
|
|
32
|
+
@change-boot-order="emits('change-boot-order', $event)"
|
|
33
|
+
@send-data="emits('send-data-boot-options', $event)"
|
|
34
|
+
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
35
|
+
/>
|
|
36
|
+
</div>
|
|
37
|
+
</template>
|
|
38
|
+
|
|
39
|
+
<script setup lang="ts">
|
|
40
|
+
import type {
|
|
41
|
+
UI_I_SendDataRemoteConsoleOptions,
|
|
42
|
+
UI_I_SendDataTools,
|
|
43
|
+
UI_I_SendDataBootOptions,
|
|
44
|
+
UI_I_SendDataVmoptions,
|
|
45
|
+
} from '~/components/common/vm/actions/common/customizeHardware/vmoptions/lib/models/interfaces'
|
|
46
|
+
import type {
|
|
47
|
+
UI_I_SendDataNewCdDvdDrive,
|
|
48
|
+
UI_I_SendDataNewHardDisk,
|
|
49
|
+
UI_I_SendDataNewNetwork,
|
|
50
|
+
} from '~/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces'
|
|
51
|
+
import type { UI_I_ErrorValidationField } from '~/lib/models/store/interfaces'
|
|
52
|
+
|
|
53
|
+
const vmName = defineModel<string>('vm-name', { required: true })
|
|
54
|
+
const guestMachineType = defineModel<string>('guest-machine-type', {
|
|
55
|
+
required: true,
|
|
56
|
+
})
|
|
57
|
+
const guestOsFamily = defineModel<string>('guest-os-family', { required: true })
|
|
58
|
+
const guestOsVersion = defineModel<string>('guest-os-version', {
|
|
59
|
+
required: true,
|
|
60
|
+
})
|
|
61
|
+
const remoteConsoleOptionsInvalid = defineModel<boolean>(
|
|
62
|
+
'remote-console-options-invalid',
|
|
63
|
+
{ required: true }
|
|
64
|
+
)
|
|
65
|
+
|
|
66
|
+
const props = defineProps<{
|
|
67
|
+
hardDisks: UI_I_SendDataNewHardDisk[] | null
|
|
68
|
+
cdDvdDrives: UI_I_SendDataNewCdDvdDrive[] | null
|
|
69
|
+
networks: UI_I_SendDataNewNetwork[] | null
|
|
70
|
+
isEdit: boolean
|
|
71
|
+
isClone: boolean
|
|
72
|
+
errorValidationFields: UI_I_ErrorValidationField[]
|
|
73
|
+
options?: UI_I_SendDataVmoptions
|
|
74
|
+
state?: string | number
|
|
75
|
+
}>()
|
|
76
|
+
const emits = defineEmits<{
|
|
77
|
+
(
|
|
78
|
+
event: 'change-boot-order',
|
|
79
|
+
value: [
|
|
80
|
+
UI_I_SendDataNewHardDisk[],
|
|
81
|
+
UI_I_SendDataNewCdDvdDrive[],
|
|
82
|
+
UI_I_SendDataNewNetwork[]
|
|
83
|
+
]
|
|
84
|
+
): void
|
|
85
|
+
(
|
|
86
|
+
event: 'send-data-remote-console-options',
|
|
87
|
+
value: UI_I_SendDataRemoteConsoleOptions
|
|
88
|
+
): void
|
|
89
|
+
(event: 'send-data-tools', value: UI_I_SendDataTools): void
|
|
90
|
+
(event: 'send-data-boot-options', value: UI_I_SendDataBootOptions): void
|
|
91
|
+
(event: 'remove-error-by-title', value: string): void
|
|
92
|
+
}>()
|
|
93
|
+
</script>
|
|
94
|
+
|
|
95
|
+
<style scoped lang="scss">
|
|
96
|
+
.vm-options {
|
|
97
|
+
display: flex;
|
|
98
|
+
flex-direction: column;
|
|
99
|
+
gap: 12px;
|
|
100
|
+
padding-top: 12px;
|
|
101
|
+
}
|
|
102
|
+
</style>
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="vm-options">
|
|
3
|
+
<div class="clr-component">
|
|
4
|
+
<div class="stack-view">
|
|
5
|
+
<common-vm-actions-common-customize-hardware-vmoptions-general-options
|
|
6
|
+
v-model:vm-name="vmName"
|
|
7
|
+
v-model:guest-machine-type="guestMachineType"
|
|
8
|
+
v-model:guest-os-family="guestOsFamily"
|
|
9
|
+
v-model:guest-os-version="guestOsVersion"
|
|
10
|
+
:is-edit="props.isEdit"
|
|
11
|
+
:is-clone="props.isClone"
|
|
12
|
+
:state="props.state"
|
|
13
|
+
/>
|
|
14
|
+
<common-vm-actions-common-customize-hardware-vmoptions-remote-console-options
|
|
15
|
+
:error-validation-fields="props.errorValidationFields"
|
|
16
|
+
:remote-console-options="props.options?.remote_console"
|
|
17
|
+
:is-edit="props.isEdit"
|
|
18
|
+
:state="props.state"
|
|
19
|
+
@send-data="emits('send-data-remote-console-options', $event)"
|
|
20
|
+
@invalid="remoteConsoleOptionsInvalid = $event"
|
|
21
|
+
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
22
|
+
/>
|
|
23
|
+
<common-vm-actions-common-customize-hardware-vmoptions-tools
|
|
24
|
+
:tools="props.options?.guest_tools?.enabled"
|
|
25
|
+
@send-data="emits('send-data-tools', $event)"
|
|
26
|
+
/>
|
|
27
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options
|
|
28
|
+
:error-validation-fields="props.errorValidationFields"
|
|
29
|
+
:hard-disks="props.hardDisks"
|
|
30
|
+
:cd-dvd-drives="props.cdDvdDrives"
|
|
31
|
+
:networks="props.networks"
|
|
32
|
+
:boot-options="props.options?.boot_options"
|
|
33
|
+
:is-edit="props.isEdit"
|
|
34
|
+
@change-boot-order="emits('change-boot-order', $event)"
|
|
35
|
+
@send-data="emits('send-data-boot-options', $event)"
|
|
36
|
+
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
37
|
+
/>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</template>
|
|
42
|
+
|
|
43
|
+
<script setup lang="ts">
|
|
44
|
+
import type {
|
|
45
|
+
UI_I_SendDataRemoteConsoleOptions,
|
|
46
|
+
UI_I_SendDataTools,
|
|
47
|
+
UI_I_SendDataBootOptions,
|
|
48
|
+
UI_I_SendDataVmoptions,
|
|
49
|
+
} from '~/components/common/vm/actions/common/customizeHardware/vmoptions/lib/models/interfaces'
|
|
50
|
+
import type {
|
|
51
|
+
UI_I_SendDataNewCdDvdDrive,
|
|
52
|
+
UI_I_SendDataNewHardDisk,
|
|
53
|
+
UI_I_SendDataNewNetwork,
|
|
54
|
+
} from '~/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces'
|
|
55
|
+
import type { UI_I_ErrorValidationField } from '~/lib/models/store/interfaces'
|
|
56
|
+
|
|
57
|
+
const vmName = defineModel<string>('vm-name', { required: true })
|
|
58
|
+
const guestMachineType = defineModel<string>('guest-machine-type', { required: true })
|
|
59
|
+
const guestOsFamily = defineModel<string>('guest-os-family', { required: true })
|
|
60
|
+
const guestOsVersion = defineModel<string>('guest-os-version', { required: true })
|
|
61
|
+
const remoteConsoleOptionsInvalid = defineModel<boolean>('remote-console-options-invalid', { required: true })
|
|
62
|
+
|
|
63
|
+
const props = defineProps<{
|
|
64
|
+
hardDisks: UI_I_SendDataNewHardDisk[] | null
|
|
65
|
+
cdDvdDrives: UI_I_SendDataNewCdDvdDrive[] | null
|
|
66
|
+
networks: UI_I_SendDataNewNetwork[] | null
|
|
67
|
+
isEdit: boolean
|
|
68
|
+
isClone: boolean
|
|
69
|
+
errorValidationFields: UI_I_ErrorValidationField[]
|
|
70
|
+
options?: UI_I_SendDataVmoptions
|
|
71
|
+
state?: string | number
|
|
72
|
+
}>()
|
|
73
|
+
const emits = defineEmits<{
|
|
74
|
+
(
|
|
75
|
+
event: 'change-boot-order',
|
|
76
|
+
value: [
|
|
77
|
+
UI_I_SendDataNewHardDisk[],
|
|
78
|
+
UI_I_SendDataNewCdDvdDrive[],
|
|
79
|
+
UI_I_SendDataNewNetwork[]
|
|
80
|
+
]
|
|
81
|
+
): void
|
|
82
|
+
(event: 'send-data-remote-console-options', value: UI_I_SendDataRemoteConsoleOptions): void
|
|
83
|
+
(event: 'send-data-tools', value: UI_I_SendDataTools): void
|
|
84
|
+
(event: 'send-data-boot-options', value: UI_I_SendDataBootOptions): void
|
|
85
|
+
(event: 'remove-error-by-title', value: string): void
|
|
86
|
+
}>()
|
|
87
|
+
</script>
|
|
88
|
+
|
|
89
|
+
<style scoped lang="scss">
|
|
90
|
+
.clr-component {
|
|
91
|
+
padding-top: 36px;
|
|
92
|
+
}
|
|
93
|
+
.stack-view {
|
|
94
|
+
background-color: var(--block-view-bg-color);
|
|
95
|
+
}
|
|
96
|
+
</style>
|
package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/BootOptions.vue
CHANGED
|
@@ -1,41 +1,32 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-order
|
|
31
|
-
:hard-disks="props.hardDisks"
|
|
32
|
-
:cd-dvd-drives="props.cdDvdDrives"
|
|
33
|
-
:networks="props.networks"
|
|
34
|
-
@change="onChangeBootOrder"
|
|
35
|
-
/>
|
|
36
|
-
</template>
|
|
37
|
-
</atoms-stack-block>
|
|
38
|
-
</div>
|
|
2
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-new
|
|
3
|
+
v-if="isNewView"
|
|
4
|
+
v-model:firmware="firmware"
|
|
5
|
+
v-model:secure-boot="secureBoot"
|
|
6
|
+
v-model:boot-menu="bootMenu"
|
|
7
|
+
v-model:boot-delay="bootDelay"
|
|
8
|
+
:error-validation-fields="props.errorValidationFields"
|
|
9
|
+
:hard-disks="props.hardDisks"
|
|
10
|
+
:cd-dvd-drives="props.cdDvdDrives"
|
|
11
|
+
:networks="props.networks"
|
|
12
|
+
:is-edit="props.isEdit"
|
|
13
|
+
@change-boot-order="emits('change-boot-order', $event)"
|
|
14
|
+
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
15
|
+
/>
|
|
16
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-old
|
|
17
|
+
v-else
|
|
18
|
+
v-model:firmware="firmware"
|
|
19
|
+
v-model:secure-boot="secureBoot"
|
|
20
|
+
v-model:boot-menu="bootMenu"
|
|
21
|
+
v-model:boot-delay="bootDelay"
|
|
22
|
+
:error-validation-fields="props.errorValidationFields"
|
|
23
|
+
:hard-disks="props.hardDisks"
|
|
24
|
+
:cd-dvd-drives="props.cdDvdDrives"
|
|
25
|
+
:networks="props.networks"
|
|
26
|
+
:is-edit="props.isEdit"
|
|
27
|
+
@change-boot-order="emits('change-boot-order', $event)"
|
|
28
|
+
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
29
|
+
/>
|
|
39
30
|
</template>
|
|
40
31
|
|
|
41
32
|
<script setup lang="ts">
|
|
@@ -45,10 +36,17 @@ import type {
|
|
|
45
36
|
UI_I_SendDataNewHardDisk,
|
|
46
37
|
UI_I_SendDataNewNetwork,
|
|
47
38
|
} from '~/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces'
|
|
48
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
49
39
|
import type { UI_I_ErrorValidationField } from '~/lib/models/store/interfaces'
|
|
50
|
-
import type { UI_T_ChangeBootOrder } from '~/components/common/vm/actions/lib/models/types'
|
|
51
40
|
|
|
41
|
+
|
|
42
|
+
const props = defineProps<{
|
|
43
|
+
errorValidationFields: UI_I_ErrorValidationField[]
|
|
44
|
+
hardDisks: UI_I_SendDataNewHardDisk[] | null
|
|
45
|
+
cdDvdDrives: UI_I_SendDataNewCdDvdDrive[] | null
|
|
46
|
+
networks: UI_I_SendDataNewNetwork[] | null
|
|
47
|
+
bootOptions?: UI_I_SendDataBootOptions
|
|
48
|
+
isEdit: boolean
|
|
49
|
+
}>()
|
|
52
50
|
const emits = defineEmits<{
|
|
53
51
|
(
|
|
54
52
|
event: 'change-boot-order',
|
|
@@ -62,16 +60,8 @@ const emits = defineEmits<{
|
|
|
62
60
|
(event: 'remove-error-by-title', value: string): void
|
|
63
61
|
}>()
|
|
64
62
|
|
|
65
|
-
const
|
|
66
|
-
|
|
67
|
-
const props = defineProps<{
|
|
68
|
-
errorValidationFields: UI_I_ErrorValidationField[]
|
|
69
|
-
hardDisks: UI_I_SendDataNewHardDisk[] | null
|
|
70
|
-
cdDvdDrives: UI_I_SendDataNewCdDvdDrive[] | null
|
|
71
|
-
networks: UI_I_SendDataNewNetwork[] | null
|
|
72
|
-
bootOptions?: UI_I_SendDataBootOptions
|
|
73
|
-
isEdit: boolean
|
|
74
|
-
}>()
|
|
63
|
+
const { $store }: any = useNuxtApp()
|
|
64
|
+
const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
|
|
75
65
|
|
|
76
66
|
const firmware = ref<string>('efi')
|
|
77
67
|
|
|
@@ -81,10 +71,6 @@ const bootMenu = ref<boolean>(true)
|
|
|
81
71
|
|
|
82
72
|
const bootDelay = ref<number>(1000)
|
|
83
73
|
|
|
84
|
-
const onChangeBootOrder = (data: UI_T_ChangeBootOrder): void => {
|
|
85
|
-
emits('change-boot-order', data)
|
|
86
|
-
}
|
|
87
|
-
|
|
88
74
|
watch(
|
|
89
75
|
[firmware, secureBoot, bootMenu, bootDelay],
|
|
90
76
|
() => {
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<ui-stack-block :has-children="true" test-id="boot-options-stack-block">
|
|
3
|
+
<template #stackBlockKey>
|
|
4
|
+
<div
|
|
5
|
+
id="vm-wizard-toggle-block-boot-option"
|
|
6
|
+
data-id="vm-wizard-toggle-block-boot-option"
|
|
7
|
+
class="flex-align-center"
|
|
8
|
+
>
|
|
9
|
+
<span>{{ localization.common.bootOptions }}</span>
|
|
10
|
+
</div>
|
|
11
|
+
</template>
|
|
12
|
+
<template #stackChildren>
|
|
13
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-firmware
|
|
14
|
+
v-model:firmware="firmware"
|
|
15
|
+
:error-validation-fields="props.errorValidationFields"
|
|
16
|
+
:is-edit="props.isEdit"
|
|
17
|
+
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
18
|
+
/>
|
|
19
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-secure
|
|
20
|
+
v-if="firmware === 'uefi'"
|
|
21
|
+
v-model:secure-boot="secureBoot"
|
|
22
|
+
/>
|
|
23
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-menu
|
|
24
|
+
v-model:boot-menu="bootMenu"
|
|
25
|
+
/>
|
|
26
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-delay
|
|
27
|
+
v-model:boot-delay="bootDelay"
|
|
28
|
+
/>
|
|
29
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-order
|
|
30
|
+
:hard-disks="props.hardDisks"
|
|
31
|
+
:cd-dvd-drives="props.cdDvdDrives"
|
|
32
|
+
:networks="props.networks"
|
|
33
|
+
@change="emits('change-boot-order', $event)"
|
|
34
|
+
/>
|
|
35
|
+
</template>
|
|
36
|
+
</ui-stack-block>
|
|
37
|
+
</template>
|
|
38
|
+
|
|
39
|
+
<script setup lang="ts">
|
|
40
|
+
import type {
|
|
41
|
+
UI_I_SendDataNewCdDvdDrive,
|
|
42
|
+
UI_I_SendDataNewHardDisk,
|
|
43
|
+
UI_I_SendDataNewNetwork,
|
|
44
|
+
} from '~/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces'
|
|
45
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
46
|
+
import type { UI_I_ErrorValidationField } from '~/lib/models/store/interfaces'
|
|
47
|
+
|
|
48
|
+
const firmware = defineModel<string>('firmware', { required: true })
|
|
49
|
+
const secureBoot = defineModel<boolean>('secure-boot', { required: true })
|
|
50
|
+
const bootMenu = defineModel<boolean>('boot-menu', { required: true })
|
|
51
|
+
const bootDelay = defineModel<number>('boot-delay', { required: true })
|
|
52
|
+
|
|
53
|
+
const props = defineProps<{
|
|
54
|
+
errorValidationFields: UI_I_ErrorValidationField[]
|
|
55
|
+
hardDisks: UI_I_SendDataNewHardDisk[] | null
|
|
56
|
+
cdDvdDrives: UI_I_SendDataNewCdDvdDrive[] | null
|
|
57
|
+
networks: UI_I_SendDataNewNetwork[] | null
|
|
58
|
+
isEdit: boolean
|
|
59
|
+
}>()
|
|
60
|
+
const emits = defineEmits<{
|
|
61
|
+
(
|
|
62
|
+
event: 'change-boot-order',
|
|
63
|
+
value: [
|
|
64
|
+
UI_I_SendDataNewHardDisk[],
|
|
65
|
+
UI_I_SendDataNewCdDvdDrive[],
|
|
66
|
+
UI_I_SendDataNewNetwork[]
|
|
67
|
+
]
|
|
68
|
+
): void
|
|
69
|
+
(event: 'remove-error-by-title', value: string): void
|
|
70
|
+
}>()
|
|
71
|
+
|
|
72
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
73
|
+
</script>
|
|
74
|
+
|
|
75
|
+
<style scoped lang="scss"></style>
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="boot-options">
|
|
3
|
+
<atoms-stack-block :has-children="true" test-id="boot-options-stack-block">
|
|
4
|
+
<template #stackBlockKey>
|
|
5
|
+
<div
|
|
6
|
+
id="vm-wizard-toggle-block-boot-option"
|
|
7
|
+
data-id="vm-wizard-toggle-block-boot-option"
|
|
8
|
+
class="flex-align-center"
|
|
9
|
+
>
|
|
10
|
+
<span>{{ localization.common.bootOptions }}</span>
|
|
11
|
+
</div>
|
|
12
|
+
</template>
|
|
13
|
+
<template #stackChildren>
|
|
14
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-firmware
|
|
15
|
+
v-model:firmware="firmware"
|
|
16
|
+
:error-validation-fields="props.errorValidationFields"
|
|
17
|
+
:is-edit="props.isEdit"
|
|
18
|
+
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
19
|
+
/>
|
|
20
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-secure
|
|
21
|
+
v-if="firmware === 'uefi'"
|
|
22
|
+
v-model:secure-boot="secureBoot"
|
|
23
|
+
/>
|
|
24
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-menu
|
|
25
|
+
v-model:boot-menu="bootMenu"
|
|
26
|
+
/>
|
|
27
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-delay
|
|
28
|
+
v-model:boot-delay="bootDelay"
|
|
29
|
+
/>
|
|
30
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-order
|
|
31
|
+
:hard-disks="props.hardDisks"
|
|
32
|
+
:cd-dvd-drives="props.cdDvdDrives"
|
|
33
|
+
:networks="props.networks"
|
|
34
|
+
@change="emits('change-boot-order', $event)"
|
|
35
|
+
/>
|
|
36
|
+
</template>
|
|
37
|
+
</atoms-stack-block>
|
|
38
|
+
</div>
|
|
39
|
+
</template>
|
|
40
|
+
|
|
41
|
+
<script setup lang="ts">
|
|
42
|
+
import type { UI_I_SendDataBootOptions } from '~/components/common/vm/actions/common/customizeHardware/vmoptions/lib/models/interfaces'
|
|
43
|
+
import type {
|
|
44
|
+
UI_I_SendDataNewCdDvdDrive,
|
|
45
|
+
UI_I_SendDataNewHardDisk,
|
|
46
|
+
UI_I_SendDataNewNetwork,
|
|
47
|
+
} from '~/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces'
|
|
48
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
49
|
+
import type { UI_I_ErrorValidationField } from '~/lib/models/store/interfaces'
|
|
50
|
+
|
|
51
|
+
const firmware = defineModel<string>('firmware', {required: true})
|
|
52
|
+
const secureBoot = defineModel<boolean>('secure-boot', {required: true})
|
|
53
|
+
const bootMenu = defineModel<boolean>('boot-menu', {required: true})
|
|
54
|
+
const bootDelay = defineModel<number>('boot-delay', {required: true})
|
|
55
|
+
|
|
56
|
+
const props = defineProps<{
|
|
57
|
+
errorValidationFields: UI_I_ErrorValidationField[]
|
|
58
|
+
hardDisks: UI_I_SendDataNewHardDisk[] | null
|
|
59
|
+
cdDvdDrives: UI_I_SendDataNewCdDvdDrive[] | null
|
|
60
|
+
networks: UI_I_SendDataNewNetwork[] | null
|
|
61
|
+
bootOptions?: UI_I_SendDataBootOptions
|
|
62
|
+
isEdit: boolean
|
|
63
|
+
}>()
|
|
64
|
+
const emits = defineEmits<{
|
|
65
|
+
(
|
|
66
|
+
event: 'change-boot-order',
|
|
67
|
+
value: [
|
|
68
|
+
UI_I_SendDataNewHardDisk[],
|
|
69
|
+
UI_I_SendDataNewCdDvdDrive[],
|
|
70
|
+
UI_I_SendDataNewNetwork[]
|
|
71
|
+
]
|
|
72
|
+
): void
|
|
73
|
+
(event: 'send-data', value: UI_I_SendDataBootOptions): void
|
|
74
|
+
(event: 'remove-error-by-title', value: string): void
|
|
75
|
+
}>()
|
|
76
|
+
|
|
77
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
78
|
+
</script>
|
|
79
|
+
|
|
80
|
+
<style scoped lang="scss"></style>
|
package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/Delay.vue
CHANGED
|
@@ -1,54 +1,26 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
data-id="boot-delay-select"
|
|
13
|
-
>
|
|
14
|
-
<option
|
|
15
|
-
v-for="(item, key) in bootDelayOptions"
|
|
16
|
-
:key="key"
|
|
17
|
-
:value="item.value"
|
|
18
|
-
>
|
|
19
|
-
{{ item.text }}
|
|
20
|
-
</option>
|
|
21
|
-
</select>
|
|
22
|
-
</div>
|
|
23
|
-
</template>
|
|
24
|
-
</atoms-stack-block>
|
|
25
|
-
</div>
|
|
2
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-delay-new
|
|
3
|
+
v-if="isNewView"
|
|
4
|
+
v-model:boot-delay="bootDelay"
|
|
5
|
+
:boot-delay-options="bootDelayOptions"
|
|
6
|
+
/>
|
|
7
|
+
<common-vm-actions-common-customize-hardware-vmoptions-boot-options-delay-new
|
|
8
|
+
v-else
|
|
9
|
+
v-model:boot-delay="bootDelay"
|
|
10
|
+
:boot-delay-options="bootDelayOptions"
|
|
11
|
+
/>
|
|
26
12
|
</template>
|
|
27
13
|
|
|
28
14
|
<script setup lang="ts">
|
|
29
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
30
15
|
import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
|
|
31
16
|
import { bootDelayOptionsConfig } from '~/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/lib/config/config'
|
|
32
17
|
|
|
33
|
-
const
|
|
18
|
+
const bootDelay = defineModel<number>('boot-delay', { required: true })
|
|
34
19
|
|
|
35
|
-
const
|
|
36
|
-
|
|
37
|
-
}>()
|
|
38
|
-
const emits = defineEmits<{
|
|
39
|
-
(event: 'update:boot-delay', value: number): void
|
|
40
|
-
}>()
|
|
20
|
+
const { $store }: any = useNuxtApp()
|
|
21
|
+
const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
|
|
41
22
|
|
|
42
23
|
const bootDelayOptions = ref<UI_I_OptionItem[]>(bootDelayOptionsConfig)
|
|
43
|
-
|
|
44
|
-
const bootDelayLocal = computed<number>({
|
|
45
|
-
get() {
|
|
46
|
-
return props.bootDelay
|
|
47
|
-
},
|
|
48
|
-
set(newValue) {
|
|
49
|
-
emits('update:boot-delay', newValue)
|
|
50
|
-
},
|
|
51
|
-
})
|
|
52
24
|
</script>
|
|
53
25
|
|
|
54
26
|
<style scoped></style>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<ui-stack-block :has-children="false">
|
|
3
|
+
<template #stackBlockKey>
|
|
4
|
+
{{ localization.common.bootDelay }}
|
|
5
|
+
</template>
|
|
6
|
+
<template #stackBlockContent>
|
|
7
|
+
<ui-select
|
|
8
|
+
id="boot-delay"
|
|
9
|
+
v-model="bootDelay"
|
|
10
|
+
:items="props.bootDelayOptions"
|
|
11
|
+
test-id="boot-delay-select"
|
|
12
|
+
class="boot-delay-select"
|
|
13
|
+
/>
|
|
14
|
+
</template>
|
|
15
|
+
</ui-stack-block>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script setup lang="ts">
|
|
19
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
20
|
+
import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
|
|
21
|
+
|
|
22
|
+
const bootDelay = defineModel<number>('boot-delay', {required: true})
|
|
23
|
+
|
|
24
|
+
const props = defineProps<{
|
|
25
|
+
bootDelayOptions: UI_I_OptionItem[]
|
|
26
|
+
}>()
|
|
27
|
+
|
|
28
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
29
|
+
</script>
|
|
30
|
+
|
|
31
|
+
<style scoped>
|
|
32
|
+
:deep(.boot-delay-select .ui-main-select-toggle) {
|
|
33
|
+
width: 108px;
|
|
34
|
+
}
|
|
35
|
+
</style>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="">
|
|
3
|
+
<atoms-stack-block :has-children="false">
|
|
4
|
+
<template #stackBlockKey>
|
|
5
|
+
{{ localization.common.bootDelay }}
|
|
6
|
+
</template>
|
|
7
|
+
<template #stackBlockContent>
|
|
8
|
+
<div class="select">
|
|
9
|
+
<select
|
|
10
|
+
id="boot-delay"
|
|
11
|
+
v-model="bootDelay"
|
|
12
|
+
data-id="boot-delay-select"
|
|
13
|
+
>
|
|
14
|
+
<option
|
|
15
|
+
v-for="(item, key) in props.bootDelayOptions"
|
|
16
|
+
:key="key"
|
|
17
|
+
:value="item.value"
|
|
18
|
+
>
|
|
19
|
+
{{ item.text }}
|
|
20
|
+
</option>
|
|
21
|
+
</select>
|
|
22
|
+
</div>
|
|
23
|
+
</template>
|
|
24
|
+
</atoms-stack-block>
|
|
25
|
+
</div>
|
|
26
|
+
</template>
|
|
27
|
+
|
|
28
|
+
<script setup lang="ts">
|
|
29
|
+
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
30
|
+
import type { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
|
|
31
|
+
|
|
32
|
+
const bootDelay = defineModel<number>('boot-delay', {required: true})
|
|
33
|
+
|
|
34
|
+
const props = defineProps<{
|
|
35
|
+
bootDelayOptions: UI_I_OptionItem[]
|
|
36
|
+
}>()
|
|
37
|
+
|
|
38
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
39
|
+
</script>
|
|
40
|
+
|
|
41
|
+
<style scoped></style>
|