bfg-common 1.4.140 → 1.4.141

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.
@@ -49,7 +49,7 @@
49
49
  />
50
50
 
51
51
  <common-wizards-vm-new-migrate-select-network
52
- v-if="selectedStep.id === 4"
52
+ v-show="selectedStep.id === 4"
53
53
  v-model="form.network"
54
54
  />
55
55
 
@@ -90,7 +90,6 @@ import type { UI_I_VmSettings } from '~/lib/models/store/vm/interfaces'
90
90
  import type { UI_I_TreeNode } from '~/components/common/recursionTree/lib/models/interfaces'
91
91
  import type { UI_I_StorageConfigurePerDiskItem } from '~/components/common/wizards/vmNew/migrate/select/storage/configure/disk/table/lib/models/interfaces'
92
92
  import type { UI_I_TableInfoItem } from '~/components/atoms/table/info/lib/models/interfaces'
93
- import type { UI_I_CollectedDataFormLocal } from '~/components/common/wizards/vmNew/migrate/lib/models/interfaces'
94
93
  import { constructDataReadyViewFunc } from '~/components/common/wizards/vmNew/migrate/lib/config/constructDataReady'
95
94
  import * as validation from '~/components/common/wizards/vmNew/migrate/lib/validations'
96
95
 
@@ -29,9 +29,9 @@
29
29
  data-id="migrate-network-advanced-button"
30
30
  @click="onClickSelectNetworkMode"
31
31
  >
32
- <span v-if="!model.isShowNetworkBasic"> &#x226A; </span>
32
+ <span v-if="!model.isBasicNetworkMode"> &#x226A; </span>
33
33
  {{ buttonText }}
34
- <span v-if="model.isShowNetworkBasic"> &#8811; </span>
34
+ <span v-if="model.isBasicNetworkMode"> &#8811; </span>
35
35
  </button>
36
36
  </div>
37
37
 
@@ -45,7 +45,7 @@
45
45
 
46
46
  <script lang="ts" setup>
47
47
  import type { UI_I_Localization } from '~/lib/models/interfaces'
48
- import { UI_I_SelectNetworksFormLocal } from '~/components/common/wizards/vmNew/migrate/select/network/lib/models/interfaces'
48
+ import type { UI_I_SelectNetworksFormLocal } from '~/components/common/wizards/vmNew/migrate/select/network/lib/models/interfaces'
49
49
 
50
50
  const model = defineModel<UI_I_SelectNetworksFormLocal>({ required: true })
51
51
  const localization = computed<UI_I_Localization>(() => useLocal())
@@ -75,7 +75,7 @@ const table: any = {
75
75
  const headItems = computed<UI_I_HeadItem[]>(() =>
76
76
  table[props.type].headItems(localization.value)
77
77
  )
78
- const columnKeys = computed<UI_I_ColumnKey[]>(() =>
78
+ const columnKeys = ref<UI_I_ColumnKey[]>(() =>
79
79
  table[props.type].columnKeys(localization.value)
80
80
  )
81
81
  watch(localization, () => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.140",
4
+ "version": "1.4.141",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",