bfg-common 1.4.662 → 1.4.664
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_kk.json +2 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskNew.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskOld.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIops.vue +3 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIopsNew.vue +3 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/limitIops/LimitIopsOld.vue +3 -0
- package/components/common/wizards/network/add/Add.vue +1056 -1056
- package/components/common/wizards/network/add/lib/config/steps.ts +497 -497
- package/components/common/wizards/network/add/steps/ReadyComplete.vue +20 -20
- package/components/common/wizards/network/add/steps/SelectedTargetDevice.vue +467 -467
- package/composables/useLocalStorage.ts +1 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"vms": "VM",
|
|
9
9
|
"hosts": "хосттар",
|
|
10
10
|
"services": "Қызметтер",
|
|
11
|
-
"target": "
|
|
11
|
+
"target": "Мақсаты",
|
|
12
12
|
"status": "Күй",
|
|
13
13
|
"details": "Padrabyaznasci",
|
|
14
14
|
"initiator": "Іницятар",
|
|
@@ -2106,7 +2106,7 @@
|
|
|
2106
2106
|
"sambaHelpDesc": "Samba сақтау SMBCIFS протоколын пайдаланады, кросс-платформаларға, икемді құқықтар мен интеграцияны белсенді каталогпен қамтамасыз етеді.",
|
|
2107
2107
|
"deviceType": "Құрылғы түрі",
|
|
2108
2108
|
"selectDisksInvolvedBackup": "Сақтық көшірмеге қатысатын дискілерді таңдаңыз",
|
|
2109
|
-
"dateTime": "
|
|
2109
|
+
"dateTime": "Күні/Уақыты",
|
|
2110
2110
|
"eventTypeDescription": "Оқиға түрі сипаттамасы",
|
|
2111
2111
|
"possibleCauses": "Ықтимал себептері",
|
|
2112
2112
|
"importVms": "Виртуалды Машиналарды Импорттау",
|
|
@@ -105,6 +105,7 @@
|
|
|
105
105
|
v-model:limit-iops-type="limitIopsType"
|
|
106
106
|
:index="props.index"
|
|
107
107
|
:error-validation-fields="props.errorValidationFields"
|
|
108
|
+
:disabled="props.isRunning"
|
|
108
109
|
@valid="limitIopsInvalid = $event"
|
|
109
110
|
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
110
111
|
/>
|
|
@@ -137,6 +137,7 @@
|
|
|
137
137
|
v-model:limit-iops-type="limitIopsType"
|
|
138
138
|
:index="props.index"
|
|
139
139
|
:error-validation-fields="props.errorValidationFields"
|
|
140
|
+
:disabled="props.isRunning"
|
|
140
141
|
@valid="limitIopsInvalid = $event"
|
|
141
142
|
@remove-error-by-title="emits('remove-error-by-title', $event)"
|
|
142
143
|
/>
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
:limit-iops-error-text="limitIopsErrorText"
|
|
9
9
|
:limit-iops-options="limitIopsOptions"
|
|
10
10
|
:limit-iops-type-options="limitIopsTypeOptions"
|
|
11
|
+
:disabled="props.disabled"
|
|
11
12
|
@remove-error="onRemoveValidationError"
|
|
12
13
|
/>
|
|
13
14
|
<common-vm-actions-common-customize-hardware-virtual-hardware-new-hard-disk-limit-iops-old
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
:limit-iops-error-text="limitIopsErrorText"
|
|
20
21
|
:limit-iops-options="limitIopsOptions"
|
|
21
22
|
:limit-iops-type-options="limitIopsTypeOptions"
|
|
23
|
+
:disabled="props.disabled"
|
|
22
24
|
@remove-error="onRemoveValidationError"
|
|
23
25
|
/>
|
|
24
26
|
</template>
|
|
@@ -37,6 +39,7 @@ const limitIopsType = defineModel<string>('limitIopsType')
|
|
|
37
39
|
|
|
38
40
|
const props = defineProps<{
|
|
39
41
|
index: number
|
|
42
|
+
disabled: boolean
|
|
40
43
|
errorValidationFields: UI_I_ErrorValidationField<string>[]
|
|
41
44
|
}>()
|
|
42
45
|
const emits = defineEmits<{
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
:items="props.limitIopsTypeOptions"
|
|
13
13
|
:class="`vm-wizard-disk-device-io-field-${props.index} limit-iops`"
|
|
14
14
|
:test-id="`vm-wizard-disk-device-io-field-${props.index}`"
|
|
15
|
+
:disabled="props.disabled"
|
|
15
16
|
@click.stop
|
|
16
17
|
/>
|
|
17
18
|
|
|
@@ -21,6 +22,7 @@
|
|
|
21
22
|
:items="props.limitIopsOptions"
|
|
22
23
|
:error-text="props.limitIopsErrorText"
|
|
23
24
|
:test-id="`limit-iops-combobox-${props.index}`"
|
|
25
|
+
:disabled="props.disabled"
|
|
24
26
|
class="limit-iops"
|
|
25
27
|
@click.stop
|
|
26
28
|
/>
|
|
@@ -42,6 +44,7 @@ const props = defineProps<{
|
|
|
42
44
|
limitIopsErrorText: string
|
|
43
45
|
limitIopsOptions: UI_I_OptionItem[]
|
|
44
46
|
limitIopsTypeOptions: UI_I_OptionItem[]
|
|
47
|
+
disabled: boolean
|
|
45
48
|
}>()
|
|
46
49
|
// const emits = defineEmits<{
|
|
47
50
|
// (event: 'remove-error'): void
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
v-model="limitIopsType"
|
|
19
19
|
:data-id="`vm-wizard-disk-device-io-field-${props.index}`"
|
|
20
20
|
:class="`vm-wizard-disk-device-io-field-${props.index}`"
|
|
21
|
+
:disabled="props.disabled"
|
|
21
22
|
@click.stop
|
|
22
23
|
>
|
|
23
24
|
<option
|
|
@@ -38,6 +39,7 @@
|
|
|
38
39
|
v-model.number="limitIops"
|
|
39
40
|
:items="props.limitIopsOptions"
|
|
40
41
|
:test-id="`limit-iops-combobox-${props.index}`"
|
|
42
|
+
:disabled="props.disabled"
|
|
41
43
|
@click.stop
|
|
42
44
|
/>
|
|
43
45
|
<div v-show="props.limitIopsErrorText" class="flex-align-center">
|
|
@@ -74,6 +76,7 @@ const props = defineProps<{
|
|
|
74
76
|
limitIopsErrorText: string
|
|
75
77
|
limitIopsOptions: UI_I_OptionItem[]
|
|
76
78
|
limitIopsTypeOptions: UI_I_OptionItem[]
|
|
79
|
+
disabled: boolean
|
|
77
80
|
}>()
|
|
78
81
|
const emits = defineEmits<{
|
|
79
82
|
(event: 'remove-error'): void
|