bfg-common 1.3.239 → 1.3.241
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/BadBrowser.vue +16 -12
- package/components/common/accordion/Accordion.vue +1 -0
- package/components/common/accordion/Recursion.vue +2 -0
- package/components/common/accordion/lib/models/interfaces.ts +1 -0
- package/components/common/adapterManager/AddAdapterModal.vue +11 -4
- package/components/common/adapterManager/AddAdapterWarningModal.vue +1 -0
- package/components/common/adapterManager/ui/actions/AddAdapterButton.vue +2 -0
- package/components/common/adapterManager/ui/actions/MoveDownAdapterButton.vue +2 -0
- package/components/common/adapterManager/ui/actions/MoveUpAdapterButton.vue +2 -0
- package/components/common/adapterManager/ui/actions/RemoveAdapterButton.vue +2 -0
- package/components/common/adapterManager/ui/table/Adapters.vue +14 -13
- package/components/common/adapterManager/ui/table/Header.vue +6 -4
- package/components/common/adapterManager/ui/table/Table.vue +13 -4
- package/components/common/browse/Browse.vue +5 -1
- package/components/common/browse/blocks/Container.vue +3 -0
- package/components/common/browse/blocks/contents/Files.vue +1 -0
- package/components/common/context/ContextRecursion.vue +6 -1
- package/components/common/details/DetailsItem.vue +3 -0
- package/components/common/diagramMain/Header.vue +4 -0
- package/components/common/diagramMain/adapter/AdapterItem.vue +2 -0
- package/components/common/diagramMain/adapter/Contents.vue +2 -0
- package/components/common/diagramMain/lib/models/interfaces.ts +10 -0
- package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/Security.vue +13 -27
- package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/TeamingFailover.vue +3 -0
- package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +8 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +6 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +2 -0
- package/components/common/diagramMain/modals/lib/config/networkModal.ts +4 -0
- package/components/common/diagramMain/modals/lib/config/portModal.ts +7 -2
- package/components/common/diagramMain/modals/lib/mappers/mappers.ts +36 -0
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +19 -13
- package/components/common/diagramMain/modals/remove/RemoveModal.vue +5 -0
- package/components/common/diagramMain/modals/viewSettings/ViewSettings.vue +11 -7
- package/components/common/diagramMain/network/Contents.vue +5 -4
- package/components/common/diagramMain/port/Port.vue +1 -0
- package/components/common/feedback/Buttons.vue +2 -0
- package/components/common/feedback/Feedback.vue +9 -2
- package/components/common/feedback/Message.vue +9 -0
- package/components/common/feedback/VisitPortal.vue +11 -2
- package/components/common/help/navbar/left/Left.vue +1 -0
- package/components/common/help/navbar/right/Right.vue +12 -2
- package/components/common/help/navbar/right/lib/models/interfaces.ts +1 -0
- package/components/common/home/alertsTable/AlertsTable.vue +1 -0
- package/components/common/modals/Confirmation.vue +10 -2
- package/components/common/modals/Rename.vue +1 -0
- package/components/common/monitor/advanced/tools/Tools.vue +10 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/Actions.vue +7 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/saveOptionsModal/SaveOptionsModal.vue +6 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/form/Form.vue +14 -1
- package/components/common/monitor/overview/filters/Filters.vue +12 -5
- package/components/common/monitor/overview/filters/customIntervalModal/CustomIntervalModal.vue +4 -0
- package/components/common/pages/Tasks.vue +120 -120
- package/components/common/perPage/PerPage.vue +1 -0
- package/components/common/recursionTree/RecursionTree.vue +205 -203
- package/components/common/recursionTree/lib/models/interfaces.ts +4 -2
- package/components/common/select/button/ButtonDropdown.vue +2 -0
- package/components/common/select/button/lib/models/interfaces.ts +1 -0
- package/components/common/select/input/Input.vue +1 -0
- package/components/common/select/radio/RadioGroup.vue +2 -0
- package/components/common/select/radio/lib/models/interfaces.ts +1 -0
- package/components/common/shortcuts/Block.vue +2 -0
- package/components/common/shortcuts/Category.vue +1 -0
- package/components/common/shortcuts/lib/models/interfaces.ts +1 -0
- package/components/common/spiceConsole/Drawer.vue +4 -0
- package/components/common/spiceConsole/keyboard/Keyboard.vue +1 -0
- package/components/common/spiceConsole/keyboard/lib/config/keyboardRows.ts +81 -6
- package/components/common/spiceConsole/keyboard/lib/models/interfaces.ts +1 -0
- package/components/common/split/horizontal/Horizontal.vue +1 -0
- package/components/common/vm/actions/add/Add.vue +576 -575
- package/components/common/vm/actions/clone/select/options/Options.vue +9 -3
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/bus/Bus.vue +5 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDrive.vue +7 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/media/Media.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CoresPerSocket.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuHotPlug.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuModel.vue +225 -220
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Iommu.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Pc.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Sa.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/shares/Shares.vue +5 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/Tooltip.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/limit/Limit.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/Memory.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryHotPlug.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/Location.vue +6 -6
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +5 -6
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/cache/Cache.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/mode/Mode.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/provisioning/Provisioning.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/sharing/Sharing.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/Location.vue +2 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +295 -294
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/adapterType/AdapterType.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/macAddress/MacAddress.vue +12 -4
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/directPathIo/DirectPathIo.vue +5 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/nvidiaGrid/NvidiaGrid.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/typeSelection/TypeSelection.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newUsbController/NewUsbController.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/reservation/Reservation.vue +3 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/Graphics.vue +6 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/TotalVideoMemory.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/VideoCard.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/model/Model.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/numberDisplays/NumberDisplays.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Menu.vue +6 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Secure.vue +6 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/Delay.vue +5 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/firmware/Firmware.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +5 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/lib/models/interfaces.ts +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/generalOptions/GeneralOptions.vue +4 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/CopyPaste.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/FileTransfer.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/FolderSharing.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PlaybackCompression.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PowerControl.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/imgCompression/ImgCompression.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/jpegCompression/JpegCompression.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/keymap/Keymap.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/MouseMode.vue +6 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/Password.vue +7 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/sharePolicy/SharePolicy.vue +5 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/StreamingMode.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/type/Type.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/usbRedirection/UsbRedirection.vue +2 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/zlibCompression/ZlibCompression.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/Tools.vue +6 -1
- package/components/common/vm/actions/common/select/compatibility/Compatibility.vue +31 -27
- package/components/common/vm/actions/common/select/name/Name.vue +7 -1
- package/components/common/vm/actions/common/select/os/os.vue +7 -1
- package/components/common/weekSelect/WeekSelect.vue +143 -112
- package/components/common/weekSelect/lib/models/interfaces.ts +1 -0
- package/components/common/wizards/datastore/add/local/createName/CreateName.vue +1 -0
- package/components/common/wizards/datastore/add/nfs/accessibility/Accessibility.vue +8 -7
- package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +9 -1
- package/components/common/wizards/datastore/add/nfs/configuration/serversList/DeletePopover.vue +6 -3
- package/components/common/wizards/datastore/add/nfs/kerberosAuthentication/KerberosAuthentication.vue +1 -0
- package/components/common/wizards/datastore/add/nfs/kerberosAuthentication/lib/config/radioOptions.ts +3 -0
- package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/DeviceSelection.vue +2 -0
- package/components/common/wizards/datastore/add/sharedStorm/partitionConfiguration/PartitionConfiguration.vue +2 -0
- package/components/common/wizards/datastore/add/types/Types.vue +1 -0
- package/components/common/wizards/network/add/modals/SelectNetwork.vue +16 -3
- package/components/common/wizards/network/add/modals/SelectStandardSwitch.vue +10 -2
- package/components/common/wizards/network/add/modals/SelectSwitch.vue +10 -2
- package/components/common/wizards/network/add/steps/ConnectionSettings.vue +5 -1
- package/components/common/wizards/network/add/steps/IpFourSettings.vue +12 -2
- package/components/common/wizards/network/add/steps/PortProperties.vue +16 -3
- package/components/common/wizards/network/add/steps/SelectConnectionType.vue +6 -3
- package/components/common/wizards/network/add/steps/SelectedTargetDevice.vue +11 -0
- package/components/common/wizards/vm/common/tooltip/Tooltip.vue +2 -0
- package/components/common/wizards/vm/migrate/select/network/Network.vue +1 -0
- package/components/common/wizards/vm/migrate/select/network/table/network/Network.vue +1 -0
- package/components/common/wizards/vm/migrate/select/storage/Storage.vue +5 -1
- package/components/common/wizards/vm/migrate/select/storage/configure/disk/Disk.vue +1 -0
- package/components/common/wizards/vm/migrate/select/storage/diskFormat/DiskFormat.vue +1 -0
- package/components/common/wizards/vm/migrate/select/storage/policy/Policy.vue +1 -0
- package/components/common/wizards/vm/migrate/select/storage/selectedPerDisk/SelectedPerDisk.vue +1 -0
- package/components/common/wizards/vm/migrate/select/targetServer/new/New.vue +9 -1
- package/package.json +1 -1
|
@@ -2,7 +2,11 @@
|
|
|
2
2
|
<atoms-stack-block :has-children="false">
|
|
3
3
|
<template #stackBlockContent>
|
|
4
4
|
<div class="select">
|
|
5
|
-
<select
|
|
5
|
+
<select
|
|
6
|
+
id="direct-path-io"
|
|
7
|
+
v-model="valueLocal"
|
|
8
|
+
data-id="direct-path-io-select"
|
|
9
|
+
>
|
|
6
10
|
<option
|
|
7
11
|
v-for="item in props.passthroughDevices"
|
|
8
12
|
:key="item.id"
|
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
>
|
|
11
11
|
<input
|
|
12
12
|
:id="`pci-device-radio-input-${props.pciDeviceIndex}-${index}`"
|
|
13
|
+
v-model="selectedType"
|
|
13
14
|
type="radio"
|
|
14
15
|
:value="item"
|
|
15
16
|
:disabled="!!index"
|
|
16
|
-
|
|
17
|
+
:data-id="`pci-device-radio-input-${props.pciDeviceIndex}-${index}`"
|
|
17
18
|
/>
|
|
18
19
|
<label
|
|
19
20
|
:for="`pci-device-radio-input-${props.pciDeviceIndex}-${index}`"
|
|
@@ -30,8 +30,9 @@
|
|
|
30
30
|
<div class="select">
|
|
31
31
|
<select
|
|
32
32
|
id="reserve-type-select"
|
|
33
|
-
:disabled="props.disabled"
|
|
34
33
|
v-model="reservationTypeLocal"
|
|
34
|
+
:disabled="props.disabled"
|
|
35
|
+
data-id="reserve-type-select"
|
|
35
36
|
>
|
|
36
37
|
<option
|
|
37
38
|
v-for="(item, key) in reservationTypeOptions"
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
<input
|
|
51
52
|
id="reserve-guest-memory"
|
|
52
53
|
:value="props.reserveGuestMemory"
|
|
54
|
+
data-id="reserve-guest-memory-checkbox"
|
|
53
55
|
type="checkbox"
|
|
54
56
|
disabled
|
|
55
57
|
/>
|
package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/Graphics.vue
CHANGED
|
@@ -6,7 +6,12 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
<template #stackBlockContent>
|
|
8
8
|
<div class="flex-align-center">
|
|
9
|
-
<input
|
|
9
|
+
<input
|
|
10
|
+
id="graphics"
|
|
11
|
+
v-model="graphicsLocal"
|
|
12
|
+
data-id="graphics-checkbox"
|
|
13
|
+
type="checkbox"
|
|
14
|
+
/>
|
|
10
15
|
<label for="graphics" class="label-text-normal">{{
|
|
11
16
|
localization.enable3dSupport
|
|
12
17
|
}}</label>
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
<div v-show="!props.disabled" class="flex-align-center">
|
|
19
19
|
<input
|
|
20
20
|
id="vm-wizard-video-card-memory-field"
|
|
21
|
-
v-model="totalVideoMemoryLocal"
|
|
21
|
+
v-model="totalVideoMemoryLocal"
|
|
22
|
+
data-id="vm-wizard-video-card-memory-input"
|
|
22
23
|
type="text"
|
|
23
24
|
:class="[{ 'has-error': totalVideoMemoryLocalErrorText }]"
|
|
24
25
|
/>
|
package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Menu.vue
CHANGED
|
@@ -6,7 +6,12 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
<template #stackBlockContent>
|
|
8
8
|
<div class="flex-align-center">
|
|
9
|
-
<input
|
|
9
|
+
<input
|
|
10
|
+
id="boot-menu"
|
|
11
|
+
v-model="bootMenuLocal"
|
|
12
|
+
data-id="boot-menu-checkbox"
|
|
13
|
+
type="checkbox"
|
|
14
|
+
/>
|
|
10
15
|
<label for="boot-menu" class="label-text-normal">{{
|
|
11
16
|
localization.enable
|
|
12
17
|
}}</label>
|
package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Secure.vue
CHANGED
|
@@ -6,7 +6,12 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
<template #stackBlockContent>
|
|
8
8
|
<div class="flex-align-center">
|
|
9
|
-
<input
|
|
9
|
+
<input
|
|
10
|
+
id="secure-boot"
|
|
11
|
+
v-model="secureBootLocal"
|
|
12
|
+
data-id="secure-boot-checkbox"
|
|
13
|
+
type="checkbox"
|
|
14
|
+
/>
|
|
10
15
|
<label for="secure-boot" class="label-text-normal">{{
|
|
11
16
|
localization.enable
|
|
12
17
|
}}</label>
|
package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/delay/Delay.vue
CHANGED
|
@@ -6,7 +6,11 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
<template #stackBlockContent>
|
|
8
8
|
<div class="select">
|
|
9
|
-
<select
|
|
9
|
+
<select
|
|
10
|
+
id="boot-delay"
|
|
11
|
+
v-model="bootDelayLocal"
|
|
12
|
+
data-id="boot-delay-select"
|
|
13
|
+
>
|
|
10
14
|
<option
|
|
11
15
|
v-for="(item, key) in bootDelayOptions"
|
|
12
16
|
:key="key"
|
package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue
CHANGED
|
@@ -16,8 +16,9 @@
|
|
|
16
16
|
#[`leftSide${index}`]
|
|
17
17
|
>
|
|
18
18
|
<input
|
|
19
|
-
v-model="item.isChecked"
|
|
20
19
|
:id="`boot-order-${index}`"
|
|
20
|
+
v-model="item.isChecked"
|
|
21
|
+
:data-id="item.testId"
|
|
21
22
|
type="checkbox"
|
|
22
23
|
/>
|
|
23
24
|
</template>
|
|
@@ -91,6 +92,7 @@ watch(
|
|
|
91
92
|
iconClassName: 'icon-disk',
|
|
92
93
|
type: 'disk',
|
|
93
94
|
name: item.source + index,
|
|
95
|
+
testId: 'select-disk-value',
|
|
94
96
|
}
|
|
95
97
|
}) || []
|
|
96
98
|
const cdDvdDrives: UI_I_BootItem[] =
|
|
@@ -103,6 +105,7 @@ watch(
|
|
|
103
105
|
iconClassName: 'icon-disk',
|
|
104
106
|
type: 'cdDvd',
|
|
105
107
|
name: item.source + index,
|
|
108
|
+
testId: 'select-cd-dvd-value',
|
|
106
109
|
}
|
|
107
110
|
}) || []
|
|
108
111
|
const networks: UI_I_BootItem[] =
|
|
@@ -115,6 +118,7 @@ watch(
|
|
|
115
118
|
iconClassName: 'vsphere-icon-network',
|
|
116
119
|
type: 'nic',
|
|
117
120
|
name: item.network + index,
|
|
121
|
+
testId: 'select-nic-value',
|
|
118
122
|
}
|
|
119
123
|
}) || []
|
|
120
124
|
|
|
@@ -36,8 +36,9 @@
|
|
|
36
36
|
<select
|
|
37
37
|
v-if="props.guestMachineType"
|
|
38
38
|
id="guest-machine-type-select"
|
|
39
|
-
:disabled="isDisabled"
|
|
40
39
|
v-model="guestMachineTypeLocal"
|
|
40
|
+
:disabled="isDisabled"
|
|
41
|
+
data-id="guest-machine-type-select"
|
|
41
42
|
>
|
|
42
43
|
<option
|
|
43
44
|
v-for="item in machineTypeOptions"
|
|
@@ -59,6 +60,7 @@
|
|
|
59
60
|
v-if="props.guestOsFamily"
|
|
60
61
|
id="guest-os-family-select"
|
|
61
62
|
v-model="guestOsFamilyLocal"
|
|
63
|
+
data-id="guest-os-family-select"
|
|
62
64
|
:disabled="isDisabled"
|
|
63
65
|
@change="onChangeOS"
|
|
64
66
|
>
|
|
@@ -78,6 +80,7 @@
|
|
|
78
80
|
v-if="props.guestOsVersion"
|
|
79
81
|
id="guest-os-version-select"
|
|
80
82
|
v-model="guestOsVersionLocal"
|
|
83
|
+
data-id="guest-os-version-select"
|
|
81
84
|
:disabled="isDisabled"
|
|
82
85
|
>
|
|
83
86
|
<option
|
|
@@ -7,9 +7,10 @@
|
|
|
7
7
|
<template #stackBlockContent>
|
|
8
8
|
<div class="select">
|
|
9
9
|
<select
|
|
10
|
+
id="keymap-select"
|
|
10
11
|
v-model="remoteConsoleTypeLocal"
|
|
12
|
+
data-id="keymap-select"
|
|
11
13
|
:disabled="props.disabled"
|
|
12
|
-
id="keymap-select"
|
|
13
14
|
>
|
|
14
15
|
<option
|
|
15
16
|
v-for="(item, key) in keymapOptions"
|
|
@@ -6,7 +6,12 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
<template #stackBlockContent>
|
|
8
8
|
<div class="select">
|
|
9
|
-
<select
|
|
9
|
+
<select
|
|
10
|
+
id="mouse-mode-select"
|
|
11
|
+
v-model="mouseModeLocal"
|
|
12
|
+
data-id="mouse-mode-select"
|
|
13
|
+
disabled
|
|
14
|
+
>
|
|
10
15
|
<option
|
|
11
16
|
v-for="(item, key) in mouseModeOptions"
|
|
12
17
|
:key="key"
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
<input
|
|
10
10
|
id="enable-password"
|
|
11
11
|
v-model="isEnabledPassword"
|
|
12
|
+
data-id="enable-password-input"
|
|
12
13
|
:disabled="props.disabled"
|
|
13
14
|
type="checkbox"
|
|
14
15
|
@change="setPasswordDisable"
|
|
@@ -22,6 +23,7 @@
|
|
|
22
23
|
<input
|
|
23
24
|
id="password-input"
|
|
24
25
|
v-model="form.password.value"
|
|
26
|
+
data-id="password-input"
|
|
25
27
|
type="text"
|
|
26
28
|
:class="[{ 'has-error': !!passwordErrorText }]"
|
|
27
29
|
:disabled="!isEnabledPassword || props.disabled"
|
|
@@ -35,6 +37,7 @@
|
|
|
35
37
|
|
|
36
38
|
<button
|
|
37
39
|
id="generate-password-button"
|
|
40
|
+
data-id="generate-password-button"
|
|
38
41
|
class="generate-password-btn btn btn-primary"
|
|
39
42
|
:disabled="!isEnabledPassword || props.disabled"
|
|
40
43
|
:title="localization.generatePassword"
|
|
@@ -50,7 +53,10 @@
|
|
|
50
53
|
|
|
51
54
|
<script setup lang="ts">
|
|
52
55
|
import { UI_I_DefaultForm } from '~/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/lib/models/interfaces'
|
|
53
|
-
import {
|
|
56
|
+
import {
|
|
57
|
+
UI_I_Localization,
|
|
58
|
+
UI_I_HTMLSelectElement,
|
|
59
|
+
} from '~/lib/models/interfaces'
|
|
54
60
|
import { generatePassword } from '~/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/lib/utils'
|
|
55
61
|
|
|
56
62
|
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
@@ -6,7 +6,11 @@
|
|
|
6
6
|
</template>
|
|
7
7
|
<template #stackBlockContent>
|
|
8
8
|
<div class="select">
|
|
9
|
-
<select
|
|
9
|
+
<select
|
|
10
|
+
id="share-policy-select"
|
|
11
|
+
v-model="sharePolicyLocal"
|
|
12
|
+
data-id="share-policy-select"
|
|
13
|
+
>
|
|
10
14
|
<option
|
|
11
15
|
v-for="(item, key) in sharePolicyOptions"
|
|
12
16
|
:key="key"
|
|
@@ -12,7 +12,12 @@
|
|
|
12
12
|
{{ localization.toolsEnable }}
|
|
13
13
|
</template>
|
|
14
14
|
<template #stackBlockContent>
|
|
15
|
-
<input
|
|
15
|
+
<input
|
|
16
|
+
id="tools-2"
|
|
17
|
+
v-model="tools"
|
|
18
|
+
data-id="tools-2-checkbox"
|
|
19
|
+
type="checkbox"
|
|
20
|
+
/>
|
|
16
21
|
<label for="tools-2" class="label-text-normal">{{
|
|
17
22
|
localization.enable
|
|
18
23
|
}}</label>
|
|
@@ -14,7 +14,11 @@
|
|
|
14
14
|
@remove="onRemoveValidationError"
|
|
15
15
|
>
|
|
16
16
|
<template #elem>
|
|
17
|
-
<select
|
|
17
|
+
<select
|
|
18
|
+
id="vm-wizard-version-select"
|
|
19
|
+
v-model="selectedVersion"
|
|
20
|
+
data-id="vm-wizard-version-select"
|
|
21
|
+
>
|
|
18
22
|
<option v-for="(item, key) in versions" :key="key" :value="item">
|
|
19
23
|
{{ item.text }}
|
|
20
24
|
</option>
|
|
@@ -22,32 +26,32 @@
|
|
|
22
26
|
</template>
|
|
23
27
|
<template #content>{{ apiError }}</template>
|
|
24
28
|
</atoms-tooltip-error>
|
|
25
|
-
<!-- <div id="version-select-help-icon" class="flex-align-center relative">-->
|
|
26
|
-
<!-- <atoms-the-icon-->
|
|
27
|
-
<!-- fill="#0072a3"-->
|
|
28
|
-
<!-- width="24px"-->
|
|
29
|
-
<!-- height="24px"-->
|
|
30
|
-
<!-- name="info-circle"-->
|
|
31
|
-
<!-- @click="isShowHelp = !isShowHelp"-->
|
|
32
|
-
<!-- />-->
|
|
33
|
-
<!-- <atoms-tooltip-signpost-->
|
|
34
|
-
<!-- v-if="isShowHelp"-->
|
|
35
|
-
<!-- elem-id="version-select-help-icon"-->
|
|
36
|
-
<!-- @hide="isShowHelp = false"-->
|
|
37
|
-
<!-- >-->
|
|
38
|
-
<!-- <h3 class="help-title">{{ localization.help }}</h3>-->
|
|
39
|
-
|
|
40
|
-
<!-- <p>-->
|
|
41
|
-
<!-- {{-->
|
|
42
|
-
<!-- localization.eachVirtualMachineCompatibilitySettingIncludesHardwareAvailableVirtualMachine-->
|
|
43
|
-
<!-- }}-->
|
|
44
|
-
<!-- </p>-->
|
|
45
|
-
|
|
46
|
-
<!-- <a id="more-information-link" class="pointer">{{-->
|
|
47
|
-
<!-- localization.moreInformation-->
|
|
48
|
-
<!-- }}</a>-->
|
|
49
|
-
<!-- </atoms-tooltip-signpost>-->
|
|
50
|
-
<!-- </div>-->
|
|
29
|
+
<!-- <div id="version-select-help-icon" class="flex-align-center relative">-->
|
|
30
|
+
<!-- <atoms-the-icon-->
|
|
31
|
+
<!-- fill="#0072a3"-->
|
|
32
|
+
<!-- width="24px"-->
|
|
33
|
+
<!-- height="24px"-->
|
|
34
|
+
<!-- name="info-circle"-->
|
|
35
|
+
<!-- @click="isShowHelp = !isShowHelp"-->
|
|
36
|
+
<!-- />-->
|
|
37
|
+
<!-- <atoms-tooltip-signpost-->
|
|
38
|
+
<!-- v-if="isShowHelp"-->
|
|
39
|
+
<!-- elem-id="version-select-help-icon"-->
|
|
40
|
+
<!-- @hide="isShowHelp = false"-->
|
|
41
|
+
<!-- >-->
|
|
42
|
+
<!-- <h3 class="help-title">{{ localization.help }}</h3>-->
|
|
43
|
+
|
|
44
|
+
<!-- <p>-->
|
|
45
|
+
<!-- {{-->
|
|
46
|
+
<!-- localization.eachVirtualMachineCompatibilitySettingIncludesHardwareAvailableVirtualMachine-->
|
|
47
|
+
<!-- }}-->
|
|
48
|
+
<!-- </p>-->
|
|
49
|
+
|
|
50
|
+
<!-- <a id="more-information-link" class="pointer">{{-->
|
|
51
|
+
<!-- localization.moreInformation-->
|
|
52
|
+
<!-- }}</a>-->
|
|
53
|
+
<!-- </atoms-tooltip-signpost>-->
|
|
54
|
+
<!-- </div>-->
|
|
51
55
|
</div>
|
|
52
56
|
<p class="select-compatibility-block">
|
|
53
57
|
{{ versionDescription }}
|
|
@@ -11,9 +11,15 @@
|
|
|
11
11
|
<label for="virtual-machine-name"
|
|
12
12
|
>{{ localization.virtualMachineName }}:</label
|
|
13
13
|
>
|
|
14
|
-
<input
|
|
14
|
+
<input
|
|
15
|
+
id="virtual-machine-name"
|
|
16
|
+
v-model.trim="vmName"
|
|
17
|
+
data-id="virtual-machine-name-input"
|
|
18
|
+
type="text"
|
|
19
|
+
/>
|
|
15
20
|
<div id="vm-name-help-icon" class="content-signpost relative">
|
|
16
21
|
<atoms-the-icon
|
|
22
|
+
data-id="show-vm-name-help-icon"
|
|
17
23
|
class="icon-show-help"
|
|
18
24
|
fill="#0072a3"
|
|
19
25
|
width="24px"
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
<select
|
|
18
18
|
id="vm-wizard-machine-type-select"
|
|
19
19
|
v-model="selectedMachineType"
|
|
20
|
+
data-id="vm-wizard-machine-type-select"
|
|
20
21
|
class="table-cell"
|
|
21
22
|
>
|
|
22
23
|
<option
|
|
@@ -45,6 +46,7 @@
|
|
|
45
46
|
<select
|
|
46
47
|
id="vm-wizard-os-select"
|
|
47
48
|
v-model="selectedOS"
|
|
49
|
+
data-id="vm-wizard-os-select"
|
|
48
50
|
class="table-cell"
|
|
49
51
|
@change="onChangeOS"
|
|
50
52
|
>
|
|
@@ -70,6 +72,7 @@
|
|
|
70
72
|
<select
|
|
71
73
|
id="vm-wizard-os-version-select"
|
|
72
74
|
v-model="selectedVersion"
|
|
75
|
+
data-id="vm-wizard-os-version-select"
|
|
73
76
|
class="table-cell"
|
|
74
77
|
>
|
|
75
78
|
<option
|
|
@@ -89,7 +92,10 @@
|
|
|
89
92
|
|
|
90
93
|
<script setup lang="ts">
|
|
91
94
|
import { UI_I_OsChange } from '~/components/common/vm/actions/common/select/lib/models/interfaces'
|
|
92
|
-
import {
|
|
95
|
+
import {
|
|
96
|
+
UI_I_Localization,
|
|
97
|
+
UI_I_ArbitraryObject,
|
|
98
|
+
} from '~/lib/models/interfaces'
|
|
93
99
|
import { UI_I_ErrorValidationField } from '~/lib/models/store/interfaces'
|
|
94
100
|
import { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
|
|
95
101
|
|