bfg-common 1.3.124 → 1.3.125
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/assets/localization/local_be.json +23 -1
- package/assets/localization/local_en.json +23 -1
- package/assets/localization/local_hy.json +23 -1
- package/assets/localization/local_kk.json +23 -1
- package/assets/localization/local_ru.json +24 -2
- package/assets/localization/local_zh.json +23 -1
- package/components/common/select/radio/RadioGroup.vue +12 -0
- package/components/common/vm/actions/add/Add.vue +575 -577
- package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +269 -269
- package/components/common/vm/actions/common/customizeHardware/CustomizeHardwareOld.vue +2 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +682 -683
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces.ts +1 -8
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newPciDevice/NewPciDevice.vue +8 -14
- package/components/common/vm/actions/editSettings/EditSettings.vue +313 -318
- package/lib/models/store/vm/interfaces.ts +22 -1
- package/package.json +1 -1
|
@@ -183,11 +183,32 @@ export interface API_UI_I_VmReadyToCompleteVideoCard {
|
|
|
183
183
|
memory_mb: number
|
|
184
184
|
}
|
|
185
185
|
export interface API_UI_I_VmReadyToCompletePciDevice {
|
|
186
|
-
|
|
186
|
+
address: string
|
|
187
|
+
class_name: string
|
|
188
|
+
device_name: string
|
|
189
|
+
vendor_name: string
|
|
190
|
+
}
|
|
191
|
+
export interface API_UI_I_PciDevice {
|
|
192
|
+
address: string
|
|
193
|
+
bus: string
|
|
194
|
+
class: string
|
|
187
195
|
class_name: string
|
|
196
|
+
device: string
|
|
188
197
|
device_name: string
|
|
198
|
+
domain: string
|
|
199
|
+
driver: string
|
|
200
|
+
function: string
|
|
201
|
+
label: string
|
|
202
|
+
passthrough: string
|
|
203
|
+
short_address: string
|
|
204
|
+
slot: string
|
|
205
|
+
sr_iov: string
|
|
206
|
+
type: string
|
|
207
|
+
vendor: string
|
|
189
208
|
vendor_name: string
|
|
190
209
|
}
|
|
210
|
+
export interface UI_I_PciDevice extends API_UI_I_PciDevice {}
|
|
211
|
+
|
|
191
212
|
export interface API_UI_I_VmReadyToComplete {
|
|
192
213
|
message: string
|
|
193
214
|
vm_desc: {
|