bfg-common 1.3.30 → 1.3.32

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.
@@ -18,6 +18,7 @@
18
18
  <div v-if="vmSettings" class="vm-context">
19
19
  <common-vm-actions-common-select-name
20
20
  v-show="selectedStep.id === 0"
21
+ :show="selectedStep.id === 0"
21
22
  :name-form-submit="nameFormSubmit"
22
23
  :project="props.project"
23
24
  @submit="onChangeName(...$event)"
@@ -36,7 +37,7 @@
36
37
  :select-options-submit="selectOptionsSubmit"
37
38
  @submit="onChangeSelectOptions"
38
39
  />
39
- <common-vm-actions-common-customize-hardware-old
40
+ <common-vm-actions-common-customize-hardware
40
41
  v-show="selectedStep.id === 3"
41
42
  v-model:vm-name="vmName"
42
43
  v-model:guest-machine-type="vmSettings.guestMachineType"
@@ -164,7 +165,7 @@ const wizard: Wizard = new Wizard(
164
165
  )
165
166
  const wasCompleted = computed<boolean>(() => wizard.wasCompleted())
166
167
  const selectedScheme = computed<number[]>(() => wizard.selectedScheme.value)
167
- const alertMessages = computed<string[][]>(() => wizard.alertMessages.value)
168
+ // const alertMessages = computed<string[][]>(() => wizard.alertMessages.value)
168
169
 
169
170
  const onChangeSteps = async (value: UI_I_WizardStep[]): Promise<void> => {
170
171
  wizard.changeSteps(value, validationFunc, validateSendData)
@@ -11,7 +11,7 @@ export const stepsFunc = (
11
11
  stepName: '',
12
12
  title: localization.selectName,
13
13
  subTitle: localization.specifyUniqueName,
14
- status: UI_E_WIZARD_STATUS.INACTIVE,
14
+ status: UI_E_WIZARD_STATUS.SELECTED,
15
15
  isValid: true,
16
16
  fields: {
17
17
  name: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.30",
4
+ "version": "1.3.32",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",