bfg-common 1.3.253 → 1.3.255
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.
- package/components/common/diagramMain/modals/editSettings/ConfirmTeamingSettingsModal.vue +1 -1
- package/components/common/diagramMain/modals/editSettings/tabs/NetworkProperties.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/SwitchProperties.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/IpvFourSettings.vue +1 -0
- package/components/common/diagramMain/modals/editSettings/tabs/port/PortProperties.vue +1 -0
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/ConnectionSettings.vue +1 -0
- package/components/common/diagramMain/modals/migrateVmkernelAdapter/steps/SelectVmkernelAdapter.vue +1 -0
- package/components/common/home/alertsTable/AlertsTable.vue +1 -0
- package/components/common/home/servicesTable/ServicesTable.vue +1 -0
- package/components/common/monitor/advanced/table/Table.vue +1 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/Notification.vue +1 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +1 -0
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +1 -0
- package/components/common/vm/actions/add/Add.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/CustomizeHardware.vue +1 -0
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/Location.vue +1 -0
- package/components/common/vm/actions/common/select/name/Name.vue +1 -0
- package/components/common/vm/actions/common/select/storage/Storage.vue +6 -1
- package/components/common/vm/actions/common/select/storage/lib/config/config.ts +27 -2
- package/components/common/wizards/datastore/add/nfs/accessibility/tablesView/TablesView.vue +1 -1
- package/components/common/wizards/datastore/add/nfs/configuration/serversList/ServersList.vue +1 -1
- package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue +1 -1
- package/components/common/wizards/network/add/modals/SelectNetwork.vue +1 -0
- package/components/common/wizards/network/add/modals/SelectStandardSwitch.vue +1 -0
- package/components/common/wizards/network/add/modals/SelectSwitch.vue +1 -0
- package/components/common/wizards/network/add/steps/ConnectionSettings.vue +1 -0
- package/components/common/wizards/network/add/steps/IpFourSettings.vue +1 -0
- package/components/common/wizards/vm/migrate/select/computeResource/tableView/TableView.vue +1 -0
- package/components/common/wizards/vm/migrate/select/network/table/network/Network.vue +1 -0
- package/components/common/wizards/vm/migrate/select/network/table/useAt/UseAt.vue +1 -0
- package/components/common/wizards/vm/migrate/select/storage/table/datastore/Datastore.vue +1 -0
- package/components/common/wizards/vm/migrate/select/storage/table/datastore/lib/config/config.ts +27 -2
- package/components/common/wizards/vm/migrate/select/storage/table/disk/Disk.vue +1 -0
- package/modules/fixContentBuild/index.ts +0 -1
- package/modules/fixContentBuild/lib/utils/methods.ts +1 -1
- package/package.json +1 -1
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
status="alert-warning"
|
|
14
14
|
:hide-close-icon="true"
|
|
15
15
|
:items="[`${localization.thereAreNoActiveAdapters}`]"
|
|
16
|
+
test-id="teaming-settings-alert"
|
|
16
17
|
/>
|
|
17
18
|
<p class="warning-text">
|
|
18
19
|
{{ localization.clickOkDiscardTheIssuesAndProceedCancelReviewChanges }}
|
|
@@ -38,4 +39,3 @@ const onSubmit = () => emits('submit')
|
|
|
38
39
|
|
|
39
40
|
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
40
41
|
</script>
|
|
41
|
-
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
<atoms-alert
|
|
4
4
|
v-show="errors.length"
|
|
5
5
|
status="alert-danger"
|
|
6
|
+
test-id="storage-alert"
|
|
6
7
|
:items="errors"
|
|
7
8
|
@remove="onRemoveValidationErrors"
|
|
8
9
|
/>
|
|
@@ -13,6 +14,7 @@
|
|
|
13
14
|
v-model:page-size="pagination.pageSize"
|
|
14
15
|
v-model:page="pagination.page"
|
|
15
16
|
type="radio"
|
|
17
|
+
test-id="storage-table"
|
|
16
18
|
:head-items="headItems"
|
|
17
19
|
:body-items="bodyItems"
|
|
18
20
|
:total-items="bodyItems.length"
|
|
@@ -48,7 +50,10 @@
|
|
|
48
50
|
</template>
|
|
49
51
|
|
|
50
52
|
<script setup lang="ts">
|
|
51
|
-
import {
|
|
53
|
+
import {
|
|
54
|
+
UI_I_Pagination,
|
|
55
|
+
UI_I_TablePayload,
|
|
56
|
+
} from '~/lib/models/table/interfaces'
|
|
52
57
|
import { UI_I_DatastoreTableItem } from '~/lib/models/store/storage/interfaces'
|
|
53
58
|
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
54
59
|
import {
|
|
@@ -57,7 +57,9 @@ export const columnKeys = (
|
|
|
57
57
|
const result: UI_I_ColumnKey[] = []
|
|
58
58
|
getItems(localization).forEach((item, i) => {
|
|
59
59
|
const col = i === 0 ? 'icon' : `col${i}`
|
|
60
|
-
result.push(
|
|
60
|
+
result.push(
|
|
61
|
+
constructColumnKey(col, item[0], item[1], `show-column-${item[3]}`)
|
|
62
|
+
)
|
|
61
63
|
})
|
|
62
64
|
return result
|
|
63
65
|
}
|
|
@@ -66,7 +68,17 @@ export const headItems = (localization: UI_I_Localization): UI_I_HeadItem[] => {
|
|
|
66
68
|
const result: UI_I_HeadItem[] = []
|
|
67
69
|
getItems(localization).forEach((item, i) => {
|
|
68
70
|
const col = i === 0 ? 'icon' : `col${i}`
|
|
69
|
-
result.push(
|
|
71
|
+
result.push(
|
|
72
|
+
constructHeadItem(
|
|
73
|
+
col,
|
|
74
|
+
item[0],
|
|
75
|
+
item[3],
|
|
76
|
+
true,
|
|
77
|
+
item[2],
|
|
78
|
+
undefined,
|
|
79
|
+
item[3]
|
|
80
|
+
)
|
|
81
|
+
)
|
|
70
82
|
})
|
|
71
83
|
return result
|
|
72
84
|
}
|
|
@@ -87,11 +99,13 @@ export const bodyItems = (
|
|
|
87
99
|
text: storage[storageTableKeys[0]].toString(),
|
|
88
100
|
data: `vsphere-icon-${datastoreIconByState[storage.state]}`,
|
|
89
101
|
id: key,
|
|
102
|
+
testId: `storage-table-item-${key}`,
|
|
90
103
|
},
|
|
91
104
|
{
|
|
92
105
|
key: 'col1',
|
|
93
106
|
text: state,
|
|
94
107
|
id: key,
|
|
108
|
+
testId: `storage-table-item-${key}`,
|
|
95
109
|
},
|
|
96
110
|
{
|
|
97
111
|
key: 'col2',
|
|
@@ -100,6 +114,7 @@ export const bodyItems = (
|
|
|
100
114
|
sortValue: storage.capacity[storageTableKeys[2]],
|
|
101
115
|
},
|
|
102
116
|
id: key,
|
|
117
|
+
testId: `storage-table-item-${key}`,
|
|
103
118
|
},
|
|
104
119
|
{
|
|
105
120
|
key: 'col3',
|
|
@@ -108,6 +123,7 @@ export const bodyItems = (
|
|
|
108
123
|
sortValue: storage.capacity[storageTableKeys[3]],
|
|
109
124
|
},
|
|
110
125
|
id: key,
|
|
126
|
+
testId: `storage-table-item-${key}`,
|
|
111
127
|
},
|
|
112
128
|
{
|
|
113
129
|
key: 'col4',
|
|
@@ -116,6 +132,7 @@ export const bodyItems = (
|
|
|
116
132
|
sortValue: storage.capacity[storageTableKeys[4]],
|
|
117
133
|
},
|
|
118
134
|
id: key,
|
|
135
|
+
testId: `storage-table-item-${key}`,
|
|
119
136
|
},
|
|
120
137
|
{
|
|
121
138
|
key: 'col5',
|
|
@@ -124,41 +141,49 @@ export const bodyItems = (
|
|
|
124
141
|
sortValue: storage.capacity[storageTableKeys[5]],
|
|
125
142
|
},
|
|
126
143
|
id: key,
|
|
144
|
+
testId: `storage-table-item-${key}`,
|
|
127
145
|
},
|
|
128
146
|
{
|
|
129
147
|
key: 'col6',
|
|
130
148
|
text: storage[storageTableKeys[6]].toString(),
|
|
131
149
|
id: key,
|
|
150
|
+
testId: `storage-table-item-${key}`,
|
|
132
151
|
},
|
|
133
152
|
{
|
|
134
153
|
key: 'col7',
|
|
135
154
|
text: storage[storageTableKeys[7]] ? localization.yes : localization.no,
|
|
136
155
|
id: key,
|
|
156
|
+
testId: `storage-table-item-${key}`,
|
|
137
157
|
},
|
|
138
158
|
{
|
|
139
159
|
key: 'col8',
|
|
140
160
|
text: storage[storageTableKeys[8]].toString(),
|
|
141
161
|
id: key,
|
|
162
|
+
testId: `storage-table-item-${key}`,
|
|
142
163
|
},
|
|
143
164
|
{
|
|
144
165
|
key: 'col9',
|
|
145
166
|
text: storage[storageTableKeys[9]].toString(),
|
|
146
167
|
id: key,
|
|
168
|
+
testId: `storage-table-item-${key}`,
|
|
147
169
|
},
|
|
148
170
|
{
|
|
149
171
|
key: 'col10',
|
|
150
172
|
text: storage[storageTableKeys[10]].toString(),
|
|
151
173
|
id: key,
|
|
174
|
+
testId: `storage-table-item-${key}`,
|
|
152
175
|
},
|
|
153
176
|
{
|
|
154
177
|
key: 'col11',
|
|
155
178
|
text: storage[storageTableKeys[11]].toString(),
|
|
156
179
|
id: key,
|
|
180
|
+
testId: `storage-table-item-${key}`,
|
|
157
181
|
},
|
|
158
182
|
{
|
|
159
183
|
key: 'col12',
|
|
160
184
|
text: storage[storageTableKeys[12]].toString(),
|
|
161
185
|
id: key,
|
|
186
|
+
testId: `storage-table-item-${key}`,
|
|
162
187
|
},
|
|
163
188
|
])
|
|
164
189
|
})
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
<div class="data-table-view">
|
|
3
3
|
<div>
|
|
4
4
|
<atoms-table-data-grid
|
|
5
|
-
test-id="accessibility-table"
|
|
6
5
|
v-model:selected-row="selected"
|
|
7
6
|
v-model:page-size="pagination.pageSize"
|
|
8
7
|
v-model:page="pagination.page"
|
|
9
8
|
type="checkbox"
|
|
10
9
|
class="data-table"
|
|
10
|
+
test-id="accessibility-table"
|
|
11
11
|
:head-items="headItems"
|
|
12
12
|
:body-items="bodyItems"
|
|
13
13
|
:total-items="props.totalItems"
|
package/components/common/wizards/datastore/add/nfs/configuration/serversList/ServersList.vue
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="servers-list">
|
|
3
3
|
<atoms-table-data-grid
|
|
4
|
-
test-id="servers-list-table"
|
|
5
4
|
v-model:selected-row="selectedDisk"
|
|
6
5
|
v-model:page-size="pagination.pageSize"
|
|
7
6
|
v-model:page="pagination.page"
|
|
8
7
|
type="any"
|
|
9
8
|
class="data-table"
|
|
9
|
+
test-id="servers-list-table"
|
|
10
10
|
:head-items="headItems"
|
|
11
11
|
:body-items="bodyItems"
|
|
12
12
|
:total-items="1"
|
package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/HostTable.vue
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="data-table-view">
|
|
3
3
|
<atoms-table-data-grid
|
|
4
|
-
test-id="host-table"
|
|
5
4
|
v-model:selected-row="selectedDisk"
|
|
6
5
|
v-model:column-keys="columnKeys"
|
|
7
6
|
v-model:page-size="pagination.pageSize"
|
|
8
7
|
v-model:page="pagination.page"
|
|
9
8
|
type="checkbox"
|
|
10
9
|
class="data-table"
|
|
10
|
+
test-id="host-table"
|
|
11
11
|
:head-items="headItems"
|
|
12
12
|
:body-items="bodyItems"
|
|
13
13
|
:total-items="props.totalItems"
|
package/components/common/wizards/vm/migrate/select/storage/table/datastore/lib/config/config.ts
CHANGED
|
@@ -57,7 +57,9 @@ export const columnKeys = (
|
|
|
57
57
|
const result: UI_I_ColumnKey[] = []
|
|
58
58
|
getItems(localization).forEach((item, i) => {
|
|
59
59
|
const col = i === 0 ? 'icon' : `col${i}`
|
|
60
|
-
result.push(
|
|
60
|
+
result.push(
|
|
61
|
+
constructColumnKey(col, item[0], item[1], `show-column-${item[3]}`)
|
|
62
|
+
)
|
|
61
63
|
})
|
|
62
64
|
return result
|
|
63
65
|
}
|
|
@@ -66,7 +68,17 @@ export const headItems = (localization: UI_I_Localization): UI_I_HeadItem[] => {
|
|
|
66
68
|
const result: UI_I_HeadItem[] = []
|
|
67
69
|
getItems(localization).forEach((item, i) => {
|
|
68
70
|
const col = i === 0 ? 'icon' : `col${i}`
|
|
69
|
-
result.push(
|
|
71
|
+
result.push(
|
|
72
|
+
constructHeadItem(
|
|
73
|
+
col,
|
|
74
|
+
item[0],
|
|
75
|
+
item[3],
|
|
76
|
+
true,
|
|
77
|
+
item[2],
|
|
78
|
+
undefined,
|
|
79
|
+
item[3]
|
|
80
|
+
)
|
|
81
|
+
)
|
|
70
82
|
})
|
|
71
83
|
return result
|
|
72
84
|
}
|
|
@@ -87,66 +99,79 @@ export const bodyItems = (
|
|
|
87
99
|
text: storage[storageTableKeys[0]].toString(),
|
|
88
100
|
data: `vsphere-icon-${datastoreIconByState[storage.state]}`,
|
|
89
101
|
id: key,
|
|
102
|
+
testId: `storage-table-item-${key}`,
|
|
90
103
|
},
|
|
91
104
|
{
|
|
92
105
|
key: 'col1',
|
|
93
106
|
text: state,
|
|
94
107
|
id: key,
|
|
108
|
+
testId: `storage-table-item-${key}`,
|
|
95
109
|
},
|
|
96
110
|
{
|
|
97
111
|
key: 'col2',
|
|
98
112
|
text: $binary.round(storage.capacity[storageTableKeys[2]]),
|
|
99
113
|
id: key,
|
|
114
|
+
testId: `storage-table-item-${key}`,
|
|
100
115
|
},
|
|
101
116
|
{
|
|
102
117
|
key: 'col3',
|
|
103
118
|
text: $binary.round(storage.capacity[storageTableKeys[3]].toString()),
|
|
104
119
|
id: key,
|
|
120
|
+
testId: `storage-table-item-${key}`,
|
|
105
121
|
},
|
|
106
122
|
{
|
|
107
123
|
key: 'col4',
|
|
108
124
|
text: $binary.round(storage.capacity[storageTableKeys[4]].toString()),
|
|
109
125
|
id: key,
|
|
126
|
+
testId: `storage-table-item-${key}`,
|
|
110
127
|
},
|
|
111
128
|
{
|
|
112
129
|
key: 'col5',
|
|
113
130
|
text: $binary.round(storage.capacity[storageTableKeys[5]].toString()),
|
|
114
131
|
id: key,
|
|
132
|
+
testId: `storage-table-item-${key}`,
|
|
115
133
|
},
|
|
116
134
|
{
|
|
117
135
|
key: 'col6',
|
|
118
136
|
text: storage[storageTableKeys[6]].toString(),
|
|
119
137
|
id: key,
|
|
138
|
+
testId: `storage-table-item-${key}`,
|
|
120
139
|
},
|
|
121
140
|
{
|
|
122
141
|
key: 'col7',
|
|
123
142
|
text: storage[storageTableKeys[7]] ? localization.yes : localization.no,
|
|
124
143
|
id: key,
|
|
144
|
+
testId: `storage-table-item-${key}`,
|
|
125
145
|
},
|
|
126
146
|
{
|
|
127
147
|
key: 'col8',
|
|
128
148
|
text: storage[storageTableKeys[8]].toString(),
|
|
129
149
|
id: key,
|
|
150
|
+
testId: `storage-table-item-${key}`,
|
|
130
151
|
},
|
|
131
152
|
{
|
|
132
153
|
key: 'col9',
|
|
133
154
|
text: storage[storageTableKeys[9]].toString(),
|
|
134
155
|
id: key,
|
|
156
|
+
testId: `storage-table-item-${key}`,
|
|
135
157
|
},
|
|
136
158
|
{
|
|
137
159
|
key: 'col10',
|
|
138
160
|
text: storage[storageTableKeys[10]].toString(),
|
|
139
161
|
id: key,
|
|
162
|
+
testId: `storage-table-item-${key}`,
|
|
140
163
|
},
|
|
141
164
|
{
|
|
142
165
|
key: 'col11',
|
|
143
166
|
text: storage[storageTableKeys[11]].toString(),
|
|
144
167
|
id: key,
|
|
168
|
+
testId: `storage-table-item-${key}`,
|
|
145
169
|
},
|
|
146
170
|
{
|
|
147
171
|
key: 'col12',
|
|
148
172
|
text: storage[storageTableKeys[12]].toString(),
|
|
149
173
|
id: key,
|
|
174
|
+
testId: `storage-table-item-${key}`,
|
|
150
175
|
},
|
|
151
176
|
])
|
|
152
177
|
})
|
|
@@ -63,7 +63,7 @@ export const updateImagesPathAndCustomComponents = (dirPath: string) => {
|
|
|
63
63
|
const imagePath = filePath
|
|
64
64
|
.replaceAll('\\', '/')
|
|
65
65
|
.match(/\/content.+\//)[0]
|
|
66
|
-
.replace('/content/help', '/
|
|
66
|
+
.replace('/content/help', '/images')
|
|
67
67
|
replaceFileContent(
|
|
68
68
|
filePath,
|
|
69
69
|
/!\[(.*)\]\((.*?)\)/g,
|