bfg-common 1.5.83 → 1.5.85

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.
@@ -7,7 +7,7 @@
7
7
  :selected-scheme="selectedScheme"
8
8
  :selected-node="props.selectedNode"
9
9
  :title="title"
10
- :hosts="props.nfsHosts"
10
+ :nfs-hosts="props.nfsHosts"
11
11
  @change-steps="onChangeSteps"
12
12
  @hide="onHideModal"
13
13
  @submit="onCreateDatastore"
@@ -20,7 +20,7 @@
20
20
  :selected-scheme="selectedScheme"
21
21
  :selected-node="props.selectedNode"
22
22
  :title="title"
23
- :hosts="props.nfsHosts"
23
+ :nfs-hosts="props.nfsHosts"
24
24
  @change-steps="onChangeSteps"
25
25
  @hide-alert="onHideAlert"
26
26
  @hide="onHideModal"
@@ -8,7 +8,7 @@
8
8
  :tab-options="tabs"
9
9
  />
10
10
  <common-wizards-datastore-add-steps-host-accessibility-old
11
- v-if="isNewView"
11
+ v-else
12
12
  v-model="modelHostsLocal"
13
13
  v-model:active-tab="activeTab"
14
14
  :hosts="dataTable"
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <common-wizards-datastore-add-steps-host-accessibility-new
2
+ <common-wizards-datastore-add-steps-host-accessibility-table-new
3
3
  v-if="isNewView"
4
4
  v-model="selectedHostsIdLocal"
5
5
  :table-data="props.data?.items || []"
@@ -8,8 +8,8 @@
8
8
  :table-type="props.tableType"
9
9
  :loading="loading"
10
10
  />
11
- <common-wizards-datastore-add-steps-host-accessibility-old
12
- v-if="isNewView"
11
+ <common-wizards-datastore-add-steps-host-accessibility-table-old
12
+ v-else
13
13
  v-model="selectedHostsIdLocal"
14
14
  :table-data="props.data?.items || []"
15
15
  :total-items="props.data?.total_items || 0"
@@ -21,13 +21,13 @@
21
21
 
22
22
  <script lang="ts" setup>
23
23
  import type { UI_I_Localization } from '~/lib/models/interfaces'
24
- import type { T_HostsAccessibilityTab } from '~/components/common/wizards/datastore/add/nfs/accessibility/lib/models/types'
24
+ import type { UI_T_HostsAccessibilityTab } from '~/components/common/wizards/datastore/add/steps/hostAccessibility/lib/models/types'
25
25
  import type { UI_I_CompatibleHosts } from '~/components/common/wizards/datastore/add/steps/hostAccessibility/table/lib/models/interfaces'
26
26
 
27
27
  const selectedHostsIdLocal = defineModel<string[]>()
28
28
  const props = defineProps<{
29
29
  data: UI_I_CompatibleHosts
30
- tableType: T_HostsAccessibilityTab
30
+ tableType: UI_T_HostsAccessibilityTab
31
31
  }>()
32
32
 
33
33
  const localization = computed<UI_I_Localization>(() => useLocal())
@@ -12,7 +12,7 @@
12
12
  :total-items="props.totalItems"
13
13
  :total-pages="props.totalPages"
14
14
  hide-page-size
15
- :loading="loading"
15
+ :loading="props.loading"
16
16
  server-off
17
17
  >
18
18
  <template #icon="{ item }">
@@ -34,8 +34,8 @@ import type { UI_I_Localization } from '~/lib/models/interfaces'
34
34
  import type { UI_I_Pagination } from '~/lib/models/table/interfaces'
35
35
  import type { UI_T_HostsAccessibilityTab } from '~/components/common/wizards/datastore/add/steps/hostAccessibility/lib/models/types'
36
36
  import { UI_I_CompatibleHostsTableItem } from '~/components/common/wizards/datastore/add/steps/hostAccessibility/table/lib/models/interfaces'
37
- import * as compatibleTable from '~/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/compatibleTable'
38
- import * as incompatibleTable from '~/components/common/wizards/datastore/add/nfs/accessibility/tablesView/lib/config/incompatibleTable'
37
+ import * as compatibleTable from '~/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/config/compatibleTable'
38
+ import * as incompatibleTable from '~/components/common/wizards/datastore/add/steps/hostAccessibility/table/old/lib/config/incompatibleTable'
39
39
 
40
40
  const selectedHostsIdLocal = defineModel<string[]>()
41
41
  const props = defineProps<{
@@ -43,12 +43,11 @@ const props = defineProps<{
43
43
  tableType: UI_T_HostsAccessibilityTab
44
44
  totalItems: number
45
45
  totalPages: number
46
+ loading: boolean
46
47
  }>()
47
48
 
48
49
  const localization = computed<UI_I_Localization>(() => useLocal())
49
50
 
50
- const loading = computed<boolean>(() => false)
51
-
52
51
  const pagination = ref<UI_I_Pagination>({
53
52
  page: 1,
54
53
  pageSize: 1,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.83",
4
+ "version": "1.5.85",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",