bfg-common 1.4.94 → 1.4.95

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.
@@ -20,11 +20,11 @@
20
20
  />
21
21
 
22
22
  <common-wizards-vm-migrate-select-target-server
23
- v-show="currentBlockId === 'select-target-center'"
23
+ v-if="false"
24
24
  />
25
25
 
26
26
  <common-wizards-vm-migrate-select-compute-resource
27
- v-show="currentBlockId === 'select-compute-resource'"
27
+ v-if="false"
28
28
  v-model="form"
29
29
  :submit="selectComputeResourceSubmit"
30
30
  :get-compute-resource-data="props.getComputeResourceData"
@@ -43,7 +43,7 @@
43
43
  />
44
44
 
45
45
  <common-wizards-vm-migrate-select-network
46
- v-if="currentBlockId === 'select-networks'"
46
+ v-if="false"
47
47
  v-model:is-basic-network-mode="
48
48
  dataFormLocal.selectNetwork.isShowNetworkBasic
49
49
  "
@@ -51,7 +51,7 @@
51
51
  />
52
52
 
53
53
  <common-wizards-vm-migrate-select-priority
54
- v-show="currentBlockId === 'select-motion-priority'"
54
+ v-if="false"
55
55
  v-model="selectedVMotionPriority"
56
56
  />
57
57
 
@@ -73,7 +73,7 @@ import Wizard from '~/components/atoms/wizard/lib/utils/utils'
73
73
  import {
74
74
  stepsFunc,
75
75
  stepsSchemeInitial,
76
- } from '~/components/common/wizards/datastore/add/lib/config/steps'
76
+ } from '~/components/common/wizards/vmNew/migrate/lib/config/steps'
77
77
 
78
78
  import type { UI_I_Localization } from '~/lib/models/interfaces'
79
79
  import type { UI_T_Project } from '~/lib/models/types'
@@ -101,8 +101,6 @@ const props = defineProps<{
101
101
  configurePerDisks: UI_I_StorageConfigurePerDiskItem[]
102
102
  computeResourceTableData?: any
103
103
  computeResourceTree?: UI_I_TreeNode
104
- readyCompleteTableInfo?: any // пока так потом если будет нужен изменит или удалить
105
- finishFunc: any
106
104
  }>()
107
105
  const emits = defineEmits<{
108
106
  (event: 'hide'): void
@@ -191,8 +189,6 @@ const vmMigrateType = ref<UI_T_VmMigrateType>(
191
189
  )
192
190
  const dataReadyView = ref<UI_I_TableInfoItem[]>([])
193
191
 
194
- const currentBlockId = computed<string>(() => '')
195
-
196
192
  const connectedStorageIdOnVm = computed<string>(
197
193
  () => props.vmSettings?.storage.id || ''
198
194
  )
@@ -226,33 +222,4 @@ const onHideModal = (): void => {
226
222
  padding-left: 10px;
227
223
  }
228
224
  }
229
-
230
- //:deep(.has-solid.close-icon.clr-icon) {
231
- // width: 20px;
232
- // top: 0;
233
- //}
234
- //:deep(.modal .modal-dialog .modal-content .modal-footer) {
235
- // flex: unset;
236
- // height: unset;
237
- // min-height: unset;
238
- //}
239
- //:deep(.wizard-modal-titlebar h3) {
240
- // color: #000;
241
- // font-size: 24px;
242
- // font-weight: 200;
243
- // line-height: 27px;
244
- // margin: 0;
245
- // padding: 0;
246
- //}
247
- //:deep(.clr-wizard-stepnav-item) {
248
- // padding-left: 0;
249
- //}
250
- //:deep(.clr-wizard-stepnav
251
- // .clr-wizard-stepnav-item
252
- // button
253
- // .clr-wizard-stepnav-link-title) {
254
- // width: 189px;
255
- // font-weight: 700;
256
- // font-size: 13px;
257
- //}
258
225
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.94",
4
+ "version": "1.4.95",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",