bfg-common 1.2.80 → 1.2.82

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.
@@ -2082,7 +2082,12 @@
2082
2082
  "browserOutDateDesc3": "mobile version of the website",
2083
2083
  "theDateOnHostAndBrowserDifferent": "The date on the host and in the web browser is different",
2084
2084
  "selectMigrationType": "Select a migration type",
2085
+ "selectMigrationTypeDesc": "Change the virtual machines' compute resource, storage, or both.",
2086
+ "selectComputeResourceDesc": "Select a cluster, host, vApp or resource pool to run the virtual machines.",
2085
2087
  "selectNetworks": "Select Networks",
2088
+ "selectNetworksDesc": "Select destination networks for the virtual machine migration.",
2089
+ "selectStorageDesc": "Select the destination storage for the virtual machine migration.",
2086
2090
  "selectVMotionPriority": "Select vMotion priority",
2091
+ "selectVMotionPriorityDesc": "Protect the performance of your running virtual machines by prioritizing the allocation of CPU resources.",
2087
2092
  "selectTargetVCenterSer": "Select a target vCenter Ser"
2088
2093
  }
@@ -31,7 +31,11 @@
31
31
  </button>
32
32
  </div>
33
33
  <div class="modal-body">
34
- <slot name="modalBody" :title="heading" />
34
+ <slot
35
+ name="modalBody"
36
+ :title="heading"
37
+ :description="stepDescription"
38
+ />
35
39
  </div>
36
40
  <div class="modal-footer">
37
41
  <slot name="modalFooter">
@@ -96,7 +100,7 @@ const props = withDefaults(
96
100
  }>(),
97
101
  {
98
102
  testId: 'ui-modal-by-steps',
99
- disabledNext: false
103
+ disabledNext: false,
100
104
  }
101
105
  )
102
106
  const emits = defineEmits<{
@@ -110,6 +114,7 @@ const emits = defineEmits<{
110
114
  const localization = computed(() => useLocal())
111
115
 
112
116
  const heading = ref<string | null>(null)
117
+ const stepDescription = ref<string | null>(null)
113
118
 
114
119
  const hide = (): void => {
115
120
  emits('hide')
@@ -137,6 +142,7 @@ watch(
137
142
  }
138
143
 
139
144
  heading.value = stepItems[value].text
145
+ stepDescription.value = stepItems[value]?.description || ''
140
146
  },
141
147
  { immediate: true }
142
148
  )
@@ -2,6 +2,7 @@ export interface UI_I_VerticalStepItem {
2
2
  text: string
3
3
  disabled: boolean
4
4
  complete: boolean
5
+ description?: string
5
6
  }
6
7
 
7
8
  export interface UI_I_OptionItem {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.2.80",
4
+ "version": "1.2.82",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",