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
|
@@ -1,99 +1,99 @@
|
|
|
1
|
-
|
|
2
|
-
<div class=""
|
|
3
|
-
<atoms-stack-block :has-children="false"
|
|
4
|
-
<template #stackBlockKey
|
|
5
|
-
{{ localization.common.hardwareVirtualization }}
|
|
6
|
-
</template
|
|
7
|
-
<template #stackBlockContent
|
|
8
|
-
<div class="flex-space-between"
|
|
9
|
-
<div class="flex-align-center"
|
|
10
|
-
<input
|
|
11
|
-
id="expose-hardware-assisted-virtualization"
|
|
12
|
-
v-model="hardwareVirtualizationLocal"
|
|
13
|
-
data-id="expose-hardware-assisted-virtualization"
|
|
14
|
-
type="checkbox"
|
|
15
|
-
disabled
|
|
16
|
-
|
|
17
|
-
<label
|
|
18
|
-
for="expose-hardware-assisted-virtualization"
|
|
19
|
-
:class="['label-text-normal', { 'div-disabled': true }]"
|
|
20
|
-
>{{
|
|
21
|
-
localization.common.exposeHardwareAssistedVirtualizationGuestOs
|
|
22
|
-
}}</label
|
|
23
|
-
|
|
24
|
-
</div
|
|
1
|
+
<!--<template>-->
|
|
2
|
+
<!-- <div class="">-->
|
|
3
|
+
<!-- <atoms-stack-block :has-children="false">-->
|
|
4
|
+
<!-- <template #stackBlockKey>-->
|
|
5
|
+
<!-- {{ localization.common.hardwareVirtualization }}-->
|
|
6
|
+
<!-- </template>-->
|
|
7
|
+
<!-- <template #stackBlockContent>-->
|
|
8
|
+
<!-- <div class="flex-space-between">-->
|
|
9
|
+
<!-- <div class="flex-align-center">-->
|
|
10
|
+
<!-- <input-->
|
|
11
|
+
<!-- id="expose-hardware-assisted-virtualization"-->
|
|
12
|
+
<!-- v-model="hardwareVirtualizationLocal"-->
|
|
13
|
+
<!-- data-id="expose-hardware-assisted-virtualization"-->
|
|
14
|
+
<!-- type="checkbox"-->
|
|
15
|
+
<!-- disabled-->
|
|
16
|
+
<!-- />-->
|
|
17
|
+
<!-- <label-->
|
|
18
|
+
<!-- for="expose-hardware-assisted-virtualization"-->
|
|
19
|
+
<!-- :class="['label-text-normal', { 'div-disabled': true }]"-->
|
|
20
|
+
<!-- >{{-->
|
|
21
|
+
<!-- localization.common.exposeHardwareAssistedVirtualizationGuestOs-->
|
|
22
|
+
<!-- }}</label-->
|
|
23
|
+
<!-- >-->
|
|
24
|
+
<!-- </div>-->
|
|
25
25
|
|
|
26
|
-
<div id="hv-help-icon"
|
|
27
|
-
<atoms-the-icon
|
|
28
|
-
fill="#0072a3"
|
|
29
|
-
width="24px"
|
|
30
|
-
height="24px"
|
|
31
|
-
name="info-circle"
|
|
32
|
-
data-id="show-hv-help-icon"
|
|
33
|
-
@click.stop="isShowHvHelp = !isShowHvHelp"
|
|
34
|
-
|
|
35
|
-
<Teleport to="body"
|
|
36
|
-
<atoms-tooltip-signpost
|
|
37
|
-
v-if="isShowHvHelp"
|
|
38
|
-
elem-id="hv-help-icon"
|
|
39
|
-
@hide="isShowHvHelp = false"
|
|
40
|
-
|
|
41
|
-
<h3 class="hv-help-title"
|
|
42
|
-
{{ localization.mainNavigation.help }}
|
|
43
|
-
</h3
|
|
26
|
+
<!-- <div id="hv-help-icon">-->
|
|
27
|
+
<!-- <atoms-the-icon-->
|
|
28
|
+
<!-- fill="#0072a3"-->
|
|
29
|
+
<!-- width="24px"-->
|
|
30
|
+
<!-- height="24px"-->
|
|
31
|
+
<!-- name="info-circle"-->
|
|
32
|
+
<!-- data-id="show-hv-help-icon"-->
|
|
33
|
+
<!-- @click.stop="isShowHvHelp = !isShowHvHelp"-->
|
|
34
|
+
<!-- />-->
|
|
35
|
+
<!-- <Teleport to="body">-->
|
|
36
|
+
<!-- <atoms-tooltip-signpost-->
|
|
37
|
+
<!-- v-if="isShowHvHelp"-->
|
|
38
|
+
<!-- elem-id="hv-help-icon"-->
|
|
39
|
+
<!-- @hide="isShowHvHelp = false"-->
|
|
40
|
+
<!-- >-->
|
|
41
|
+
<!-- <h3 class="hv-help-title">-->
|
|
42
|
+
<!-- {{ localization.mainNavigation.help }}-->
|
|
43
|
+
<!-- </h3>-->
|
|
44
44
|
|
|
45
|
-
<p class="hv-help-text"
|
|
46
|
-
{{
|
|
47
|
-
localization.common.hardwareVirtualizationHelpDescription
|
|
48
|
-
}}
|
|
49
|
-
</p
|
|
50
|
-
</atoms-tooltip-signpost
|
|
51
|
-
</Teleport
|
|
52
|
-
</div
|
|
53
|
-
</div
|
|
54
|
-
</template
|
|
55
|
-
</atoms-stack-block
|
|
56
|
-
</div
|
|
57
|
-
|
|
45
|
+
<!-- <p class="hv-help-text">-->
|
|
46
|
+
<!-- {{-->
|
|
47
|
+
<!-- localization.common.hardwareVirtualizationHelpDescription-->
|
|
48
|
+
<!-- }}-->
|
|
49
|
+
<!-- </p>-->
|
|
50
|
+
<!-- </atoms-tooltip-signpost>-->
|
|
51
|
+
<!-- </Teleport>-->
|
|
52
|
+
<!-- </div>-->
|
|
53
|
+
<!-- </div>-->
|
|
54
|
+
<!-- </template>-->
|
|
55
|
+
<!-- </atoms-stack-block>-->
|
|
56
|
+
<!-- </div>-->
|
|
57
|
+
<!--</template>-->
|
|
58
58
|
|
|
59
|
-
|
|
60
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
59
|
+
<!--<script setup lang="ts">-->
|
|
60
|
+
<!--import type { UI_I_Localization } from '~/lib/models/interfaces'-->
|
|
61
61
|
|
|
62
|
-
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
62
|
+
<!--const localization = computed<UI_I_Localization>(() => useLocal())-->
|
|
63
63
|
|
|
64
|
-
const props = defineProps<{
|
|
65
|
-
hardwareVirtualization: boolean
|
|
66
|
-
}>()
|
|
67
|
-
const emits = defineEmits<{
|
|
68
|
-
(event: 'update:hardware-virtualization', value: boolean): boolean
|
|
69
|
-
}>()
|
|
64
|
+
<!--const props = defineProps<{-->
|
|
65
|
+
<!-- hardwareVirtualization: boolean-->
|
|
66
|
+
<!--}>()-->
|
|
67
|
+
<!--const emits = defineEmits<{-->
|
|
68
|
+
<!-- (event: 'update:hardware-virtualization', value: boolean): boolean-->
|
|
69
|
+
<!--}>()-->
|
|
70
70
|
|
|
71
|
-
const hardwareVirtualizationLocal = computed<boolean>({
|
|
72
|
-
get() {
|
|
73
|
-
return props.hardwareVirtualization
|
|
74
|
-
}
|
|
75
|
-
set(newValue) {
|
|
76
|
-
emits('update:hardware-virtualization', newValue)
|
|
77
|
-
}
|
|
78
|
-
})
|
|
71
|
+
<!--const hardwareVirtualizationLocal = computed<boolean>({-->
|
|
72
|
+
<!-- get() {-->
|
|
73
|
+
<!-- return props.hardwareVirtualization-->
|
|
74
|
+
<!-- },-->
|
|
75
|
+
<!-- set(newValue) {-->
|
|
76
|
+
<!-- emits('update:hardware-virtualization', newValue)-->
|
|
77
|
+
<!-- },-->
|
|
78
|
+
<!--})-->
|
|
79
79
|
|
|
80
|
-
const isShowHvHelp = ref<boolean>(false)
|
|
81
|
-
|
|
80
|
+
<!--const isShowHvHelp = ref<boolean>(false)-->
|
|
81
|
+
<!--</script>-->
|
|
82
82
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
margin: 4px 4px 0 0
|
|
86
|
-
}
|
|
83
|
+
<!--<style scoped lang="scss">-->
|
|
84
|
+
<!--#expose-hardware-assisted-virtualization {-->
|
|
85
|
+
<!-- margin: 4px 4px 0 0;-->
|
|
86
|
+
<!--}-->
|
|
87
87
|
|
|
88
|
-
h3.hv-help-title {
|
|
89
|
-
margin-top: 7px
|
|
90
|
-
font-size: 22px
|
|
91
|
-
color: #565656
|
|
92
|
-
}
|
|
93
|
-
p.hv-help-text {
|
|
94
|
-
width: 310px
|
|
95
|
-
margin-top: 24px
|
|
96
|
-
font-size: 14px
|
|
97
|
-
color: #565656
|
|
98
|
-
}
|
|
99
|
-
|
|
88
|
+
<!--h3.hv-help-title {-->
|
|
89
|
+
<!-- margin-top: 7px;-->
|
|
90
|
+
<!-- font-size: 22px;-->
|
|
91
|
+
<!-- color: #565656;-->
|
|
92
|
+
<!--}-->
|
|
93
|
+
<!--p.hv-help-text {-->
|
|
94
|
+
<!-- width: 310px;-->
|
|
95
|
+
<!-- margin-top: 24px;-->
|
|
96
|
+
<!-- font-size: 14px;-->
|
|
97
|
+
<!-- color: #565656;-->
|
|
98
|
+
<!--}-->
|
|
99
|
+
<!--</style>-->
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
|
|
2
|
-
<div class=""
|
|
3
|
-
<atoms-stack-block :has-children="false"
|
|
4
|
-
<template #stackBlockKey
|
|
5
|
-
{{ localization.common.iommu }}
|
|
6
|
-
</template
|
|
7
|
-
<template #stackBlockContent
|
|
8
|
-
<div class="flex-space-between"
|
|
9
|
-
<div class="flex-align-center"
|
|
10
|
-
<input
|
|
11
|
-
id="enable-iommu"
|
|
12
|
-
v-model="iommuLocal"
|
|
13
|
-
type="checkbox"
|
|
14
|
-
data-id="select-enable-iommu"
|
|
15
|
-
disabled
|
|
16
|
-
|
|
17
|
-
<label
|
|
18
|
-
for="enable-iommu"
|
|
19
|
-
:class="['label-text-normal', { 'div-disabled': true }]"
|
|
20
|
-
>{{ localization.common.enabled }}</label
|
|
21
|
-
|
|
22
|
-
</div
|
|
23
|
-
</div
|
|
24
|
-
</template
|
|
25
|
-
</atoms-stack-block
|
|
26
|
-
</div
|
|
27
|
-
|
|
1
|
+
<!--<template>-->
|
|
2
|
+
<!-- <div class="">-->
|
|
3
|
+
<!-- <atoms-stack-block :has-children="false">-->
|
|
4
|
+
<!-- <template #stackBlockKey>-->
|
|
5
|
+
<!-- {{ localization.common.iommu }}-->
|
|
6
|
+
<!-- </template>-->
|
|
7
|
+
<!-- <template #stackBlockContent>-->
|
|
8
|
+
<!-- <div class="flex-space-between">-->
|
|
9
|
+
<!-- <div class="flex-align-center">-->
|
|
10
|
+
<!-- <input-->
|
|
11
|
+
<!-- id="enable-iommu"-->
|
|
12
|
+
<!-- v-model="iommuLocal"-->
|
|
13
|
+
<!-- type="checkbox"-->
|
|
14
|
+
<!-- data-id="select-enable-iommu"-->
|
|
15
|
+
<!-- disabled-->
|
|
16
|
+
<!-- />-->
|
|
17
|
+
<!-- <label-->
|
|
18
|
+
<!-- for="enable-iommu"-->
|
|
19
|
+
<!-- :class="['label-text-normal', { 'div-disabled': true }]"-->
|
|
20
|
+
<!-- >{{ localization.common.enabled }}</label-->
|
|
21
|
+
<!-- >-->
|
|
22
|
+
<!-- </div>-->
|
|
23
|
+
<!-- </div>-->
|
|
24
|
+
<!-- </template>-->
|
|
25
|
+
<!-- </atoms-stack-block>-->
|
|
26
|
+
<!-- </div>-->
|
|
27
|
+
<!--</template>-->
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
29
|
+
<!--<script setup lang="ts">-->
|
|
30
|
+
<!--import type { UI_I_Localization } from '~/lib/models/interfaces'-->
|
|
31
31
|
|
|
32
|
-
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
32
|
+
<!--const localization = computed<UI_I_Localization>(() => useLocal())-->
|
|
33
33
|
|
|
34
|
-
const props = defineProps<{
|
|
35
|
-
iommu: boolean
|
|
36
|
-
}>()
|
|
37
|
-
const emits = defineEmits<{
|
|
38
|
-
(event: 'update:iommu', value: boolean): boolean
|
|
39
|
-
}>()
|
|
34
|
+
<!--const props = defineProps<{-->
|
|
35
|
+
<!-- iommu: boolean-->
|
|
36
|
+
<!--}>()-->
|
|
37
|
+
<!--const emits = defineEmits<{-->
|
|
38
|
+
<!-- (event: 'update:iommu', value: boolean): boolean-->
|
|
39
|
+
<!--}>()-->
|
|
40
40
|
|
|
41
|
-
const iommuLocal = computed<boolean>({
|
|
42
|
-
get() {
|
|
43
|
-
return props.iommu
|
|
44
|
-
}
|
|
45
|
-
set(newValue) {
|
|
46
|
-
emits('update:iommu', newValue)
|
|
47
|
-
}
|
|
48
|
-
})
|
|
49
|
-
|
|
41
|
+
<!--const iommuLocal = computed<boolean>({-->
|
|
42
|
+
<!-- get() {-->
|
|
43
|
+
<!-- return props.iommu-->
|
|
44
|
+
<!-- },-->
|
|
45
|
+
<!-- set(newValue) {-->
|
|
46
|
+
<!-- emits('update:iommu', newValue)-->
|
|
47
|
+
<!-- },-->
|
|
48
|
+
<!--})-->
|
|
49
|
+
<!--</script>-->
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
margin: 4px 4px 0 0
|
|
54
|
-
}
|
|
55
|
-
|
|
51
|
+
<!--<style scoped lang="scss">-->
|
|
52
|
+
<!--#enable-iommu {-->
|
|
53
|
+
<!-- margin: 4px 4px 0 0;-->
|
|
54
|
+
<!--}-->
|
|
55
|
+
<!--</style>-->
|
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
|
|
2
|
-
<div class=""
|
|
3
|
-
<atoms-stack-block :has-children="false"
|
|
4
|
-
<template #stackBlockKey
|
|
5
|
-
{{ localization.common.performanceCounters }}
|
|
6
|
-
</template
|
|
7
|
-
<template #stackBlockContent
|
|
8
|
-
<div class="flex-space-between"
|
|
9
|
-
<div class="flex-align-center"
|
|
10
|
-
<input
|
|
11
|
-
id="enable-performance-counters"
|
|
12
|
-
v-model="performanceCountersLocal"
|
|
13
|
-
data-id="enable-performance-counters"
|
|
14
|
-
type="checkbox"
|
|
15
|
-
disabled
|
|
16
|
-
|
|
17
|
-
<label
|
|
18
|
-
for="enable-performance-counters"
|
|
19
|
-
:class="['label-text-normal', { 'div-disabled': true }]"
|
|
20
|
-
>{{ localization.common.enableVirtualizedCpuPerformanceCounters }}</label
|
|
21
|
-
|
|
22
|
-
</div
|
|
23
|
-
</div
|
|
24
|
-
</template
|
|
25
|
-
</atoms-stack-block
|
|
26
|
-
</div
|
|
27
|
-
|
|
1
|
+
<!--<template>-->
|
|
2
|
+
<!-- <div class="">-->
|
|
3
|
+
<!-- <atoms-stack-block :has-children="false">-->
|
|
4
|
+
<!-- <template #stackBlockKey>-->
|
|
5
|
+
<!-- {{ localization.common.performanceCounters }}-->
|
|
6
|
+
<!-- </template>-->
|
|
7
|
+
<!-- <template #stackBlockContent>-->
|
|
8
|
+
<!-- <div class="flex-space-between">-->
|
|
9
|
+
<!-- <div class="flex-align-center">-->
|
|
10
|
+
<!-- <input-->
|
|
11
|
+
<!-- id="enable-performance-counters"-->
|
|
12
|
+
<!-- v-model="performanceCountersLocal"-->
|
|
13
|
+
<!-- data-id="enable-performance-counters"-->
|
|
14
|
+
<!-- type="checkbox"-->
|
|
15
|
+
<!-- disabled-->
|
|
16
|
+
<!-- />-->
|
|
17
|
+
<!-- <label-->
|
|
18
|
+
<!-- for="enable-performance-counters"-->
|
|
19
|
+
<!-- :class="['label-text-normal', { 'div-disabled': true }]"-->
|
|
20
|
+
<!-- >{{ localization.common.enableVirtualizedCpuPerformanceCounters }}</label-->
|
|
21
|
+
<!-- >-->
|
|
22
|
+
<!-- </div>-->
|
|
23
|
+
<!-- </div>-->
|
|
24
|
+
<!-- </template>-->
|
|
25
|
+
<!-- </atoms-stack-block>-->
|
|
26
|
+
<!-- </div>-->
|
|
27
|
+
<!--</template>-->
|
|
28
28
|
|
|
29
|
-
|
|
30
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
29
|
+
<!--<script setup lang="ts">-->
|
|
30
|
+
<!--import type { UI_I_Localization } from '~/lib/models/interfaces'-->
|
|
31
31
|
|
|
32
|
-
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
32
|
+
<!--const localization = computed<UI_I_Localization>(() => useLocal())-->
|
|
33
33
|
|
|
34
|
-
const props = defineProps<{
|
|
35
|
-
performanceCounters: boolean
|
|
36
|
-
}>()
|
|
37
|
-
const emits = defineEmits<{
|
|
38
|
-
(event: 'update:performance-counters', value: boolean): void
|
|
39
|
-
}>()
|
|
34
|
+
<!--const props = defineProps<{-->
|
|
35
|
+
<!-- performanceCounters: boolean-->
|
|
36
|
+
<!--}>()-->
|
|
37
|
+
<!--const emits = defineEmits<{-->
|
|
38
|
+
<!-- (event: 'update:performance-counters', value: boolean): void-->
|
|
39
|
+
<!--}>()-->
|
|
40
40
|
|
|
41
|
-
const performanceCountersLocal = computed<boolean>({
|
|
42
|
-
get() {
|
|
43
|
-
return props.performanceCounters
|
|
44
|
-
}
|
|
45
|
-
set(newValue) {
|
|
46
|
-
emits('update:performance-counters', newValue)
|
|
47
|
-
}
|
|
48
|
-
})
|
|
49
|
-
|
|
41
|
+
<!--const performanceCountersLocal = computed<boolean>({-->
|
|
42
|
+
<!-- get() {-->
|
|
43
|
+
<!-- return props.performanceCounters-->
|
|
44
|
+
<!-- },-->
|
|
45
|
+
<!-- set(newValue) {-->
|
|
46
|
+
<!-- emits('update:performance-counters', newValue)-->
|
|
47
|
+
<!-- },-->
|
|
48
|
+
<!--})-->
|
|
49
|
+
<!--</script>-->
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
margin: 4px 4px 0 0
|
|
54
|
-
}
|
|
55
|
-
|
|
51
|
+
<!--<style scoped lang="scss">-->
|
|
52
|
+
<!--#enable-performance-counters {-->
|
|
53
|
+
<!-- margin: 4px 4px 0 0;-->
|
|
54
|
+
<!--}-->
|
|
55
|
+
<!--</style>-->
|
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
|
|
2
|
-
<div class=""
|
|
3
|
-
<atoms-stack-block :has-children="false"
|
|
4
|
-
<template #stackBlockKey
|
|
5
|
-
{{ localization.common.schedulingAffinity }}
|
|
6
|
-
</template
|
|
7
|
-
<template #stackBlockContent
|
|
8
|
-
<div class="flex-space-between"
|
|
9
|
-
<div class="flex-align-center"
|
|
10
|
-
<input
|
|
11
|
-
id="sa-edit-setting-input"
|
|
12
|
-
v-model="schedulingAffinityLocal"
|
|
13
|
-
data-id="sa-edit-setting-input"
|
|
14
|
-
type="text"
|
|
15
|
-
class="edit-setting-input"
|
|
16
|
-
disabled
|
|
17
|
-
|
|
18
|
-
</div
|
|
1
|
+
<!--<template>-->
|
|
2
|
+
<!-- <div class="">-->
|
|
3
|
+
<!-- <atoms-stack-block :has-children="false">-->
|
|
4
|
+
<!-- <template #stackBlockKey>-->
|
|
5
|
+
<!-- {{ localization.common.schedulingAffinity }}-->
|
|
6
|
+
<!-- </template>-->
|
|
7
|
+
<!-- <template #stackBlockContent>-->
|
|
8
|
+
<!-- <div class="flex-space-between">-->
|
|
9
|
+
<!-- <div class="flex-align-center">-->
|
|
10
|
+
<!-- <input-->
|
|
11
|
+
<!-- id="sa-edit-setting-input"-->
|
|
12
|
+
<!-- v-model="schedulingAffinityLocal"-->
|
|
13
|
+
<!-- data-id="sa-edit-setting-input"-->
|
|
14
|
+
<!-- type="text"-->
|
|
15
|
+
<!-- class="edit-setting-input"-->
|
|
16
|
+
<!-- disabled-->
|
|
17
|
+
<!-- />-->
|
|
18
|
+
<!-- </div>-->
|
|
19
19
|
|
|
20
|
-
<div id="sa-help-icon"
|
|
21
|
-
<atoms-the-icon
|
|
22
|
-
fill="#0072a3"
|
|
23
|
-
width="24px"
|
|
24
|
-
height="24px"
|
|
25
|
-
name="info-circle"
|
|
26
|
-
data-id="show-sa-help-icon"
|
|
27
|
-
@click.stop="isShowSaHelp = !isShowSaHelp"
|
|
28
|
-
|
|
29
|
-
<Teleport to="body"
|
|
30
|
-
<atoms-tooltip-signpost
|
|
31
|
-
v-if="isShowSaHelp"
|
|
32
|
-
elem-id="sa-help-icon"
|
|
33
|
-
@hide="isShowSaHelp = false"
|
|
34
|
-
|
|
35
|
-
<h3 class="sa-help-title"
|
|
36
|
-
{{ localization.mainNavigation.help }}
|
|
37
|
-
</h3
|
|
20
|
+
<!-- <div id="sa-help-icon">-->
|
|
21
|
+
<!-- <atoms-the-icon-->
|
|
22
|
+
<!-- fill="#0072a3"-->
|
|
23
|
+
<!-- width="24px"-->
|
|
24
|
+
<!-- height="24px"-->
|
|
25
|
+
<!-- name="info-circle"-->
|
|
26
|
+
<!-- data-id="show-sa-help-icon"-->
|
|
27
|
+
<!-- @click.stop="isShowSaHelp = !isShowSaHelp"-->
|
|
28
|
+
<!-- />-->
|
|
29
|
+
<!-- <Teleport to="body">-->
|
|
30
|
+
<!-- <atoms-tooltip-signpost-->
|
|
31
|
+
<!-- v-if="isShowSaHelp"-->
|
|
32
|
+
<!-- elem-id="sa-help-icon"-->
|
|
33
|
+
<!-- @hide="isShowSaHelp = false"-->
|
|
34
|
+
<!-- >-->
|
|
35
|
+
<!-- <h3 class="sa-help-title">-->
|
|
36
|
+
<!-- {{ localization.mainNavigation.help }}-->
|
|
37
|
+
<!-- </h3>-->
|
|
38
38
|
|
|
39
|
-
<p class="sa-help-text"
|
|
40
|
-
{{ localization.common.schedulingAffinityHelpDescription1 }}
|
|
41
|
-
</p
|
|
42
|
-
<p class="sa-help-text"
|
|
43
|
-
{{ localization.common.schedulingAffinityHelpDescription2 }}
|
|
44
|
-
</p
|
|
45
|
-
<p class="sa-help-text"
|
|
46
|
-
{{ localization.common.schedulingAffinityHelpDescription3 }}
|
|
47
|
-
</p
|
|
48
|
-
<p class="sa-help-text"
|
|
49
|
-
<strong>{{ localization.common.hyperthreadingStatus }}: </strong
|
|
50
|
-
{{ localization.common.inactive }}
|
|
51
|
-
</p
|
|
52
|
-
<p class="sa-help-text"
|
|
53
|
-
<strong>{{ localization.common.availableCpus }}: </strong
|
|
54
|
-
8({{ localization.common.physicalCpus }})
|
|
55
|
-
</p
|
|
56
|
-
</atoms-tooltip-signpost
|
|
57
|
-
</Teleport
|
|
58
|
-
</div
|
|
59
|
-
</div
|
|
60
|
-
</template
|
|
61
|
-
</atoms-stack-block
|
|
62
|
-
</div
|
|
63
|
-
|
|
39
|
+
<!-- <p class="sa-help-text">-->
|
|
40
|
+
<!-- {{ localization.common.schedulingAffinityHelpDescription1 }}-->
|
|
41
|
+
<!-- </p>-->
|
|
42
|
+
<!-- <p class="sa-help-text">-->
|
|
43
|
+
<!-- {{ localization.common.schedulingAffinityHelpDescription2 }}-->
|
|
44
|
+
<!-- </p>-->
|
|
45
|
+
<!-- <p class="sa-help-text">-->
|
|
46
|
+
<!-- {{ localization.common.schedulingAffinityHelpDescription3 }}-->
|
|
47
|
+
<!-- </p>-->
|
|
48
|
+
<!-- <p class="sa-help-text">-->
|
|
49
|
+
<!-- <strong>{{ localization.common.hyperthreadingStatus }}: </strong>-->
|
|
50
|
+
<!-- {{ localization.common.inactive }}-->
|
|
51
|
+
<!-- </p>-->
|
|
52
|
+
<!-- <p class="sa-help-text">-->
|
|
53
|
+
<!-- <strong>{{ localization.common.availableCpus }}: </strong>-->
|
|
54
|
+
<!-- 8({{ localization.common.physicalCpus }})-->
|
|
55
|
+
<!-- </p>-->
|
|
56
|
+
<!-- </atoms-tooltip-signpost>-->
|
|
57
|
+
<!-- </Teleport>-->
|
|
58
|
+
<!-- </div>-->
|
|
59
|
+
<!-- </div>-->
|
|
60
|
+
<!-- </template>-->
|
|
61
|
+
<!-- </atoms-stack-block>-->
|
|
62
|
+
<!-- </div>-->
|
|
63
|
+
<!--</template>-->
|
|
64
64
|
|
|
65
|
-
|
|
66
|
-
import type { UI_I_Localization } from '~/lib/models/interfaces'
|
|
65
|
+
<!--<script setup lang="ts">-->
|
|
66
|
+
<!--import type { UI_I_Localization } from '~/lib/models/interfaces'-->
|
|
67
67
|
|
|
68
|
-
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
68
|
+
<!--const localization = computed<UI_I_Localization>(() => useLocal())-->
|
|
69
69
|
|
|
70
|
-
const props = defineProps<{
|
|
71
|
-
schedulingAffinity: string
|
|
72
|
-
}>()
|
|
73
|
-
const emits = defineEmits<{
|
|
74
|
-
(event: 'update:scheduling-affinity', value: string): void
|
|
75
|
-
}>()
|
|
70
|
+
<!--const props = defineProps<{-->
|
|
71
|
+
<!-- schedulingAffinity: string-->
|
|
72
|
+
<!--}>()-->
|
|
73
|
+
<!--const emits = defineEmits<{-->
|
|
74
|
+
<!-- (event: 'update:scheduling-affinity', value: string): void-->
|
|
75
|
+
<!--}>()-->
|
|
76
76
|
|
|
77
|
-
const schedulingAffinityLocal = computed<string>({
|
|
78
|
-
get() {
|
|
79
|
-
return props.schedulingAffinity
|
|
80
|
-
}
|
|
81
|
-
set(newValue) {
|
|
82
|
-
emits('update:scheduling-affinity', newValue)
|
|
83
|
-
}
|
|
84
|
-
})
|
|
77
|
+
<!--const schedulingAffinityLocal = computed<string>({-->
|
|
78
|
+
<!-- get() {-->
|
|
79
|
+
<!-- return props.schedulingAffinity-->
|
|
80
|
+
<!-- },-->
|
|
81
|
+
<!-- set(newValue) {-->
|
|
82
|
+
<!-- emits('update:scheduling-affinity', newValue)-->
|
|
83
|
+
<!-- },-->
|
|
84
|
+
<!--})-->
|
|
85
85
|
|
|
86
|
-
const isShowSaHelp = ref<boolean>(false)
|
|
87
|
-
|
|
86
|
+
<!--const isShowSaHelp = ref<boolean>(false)-->
|
|
87
|
+
<!--</script>-->
|
|
88
88
|
|
|
89
|
-
|
|
90
|
-
h3.sa-help-title {
|
|
91
|
-
margin-top: 7px
|
|
92
|
-
font-size: 22px
|
|
93
|
-
color: #565656
|
|
94
|
-
}
|
|
95
|
-
p.sa-help-text {
|
|
96
|
-
width: 310px
|
|
97
|
-
margin-top: 24px
|
|
98
|
-
font-size: 14px
|
|
99
|
-
color: #565656
|
|
100
|
-
}
|
|
101
|
-
p.sa-help-text strong {
|
|
102
|
-
font-size: 14px
|
|
103
|
-
font-weight: bold
|
|
104
|
-
color: #565656
|
|
105
|
-
}
|
|
106
|
-
|
|
89
|
+
<!--<style scoped lang="scss">-->
|
|
90
|
+
<!--h3.sa-help-title {-->
|
|
91
|
+
<!-- margin-top: 7px;-->
|
|
92
|
+
<!-- font-size: 22px;-->
|
|
93
|
+
<!-- color: #565656;-->
|
|
94
|
+
<!--}-->
|
|
95
|
+
<!--p.sa-help-text {-->
|
|
96
|
+
<!-- width: 310px;-->
|
|
97
|
+
<!-- margin-top: 24px;-->
|
|
98
|
+
<!-- font-size: 14px;-->
|
|
99
|
+
<!-- color: #565656;-->
|
|
100
|
+
<!--}-->
|
|
101
|
+
<!--p.sa-help-text strong {-->
|
|
102
|
+
<!-- font-size: 14px;-->
|
|
103
|
+
<!-- font-weight: bold;-->
|
|
104
|
+
<!-- color: #565656;-->
|
|
105
|
+
<!--}-->
|
|
106
|
+
<!--</style>-->
|