bfg-common 1.3.597 → 1.3.599
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/atoms/TheIcon2.vue +1366 -1366
- package/components/atoms/table/simpleTable/SimpleTable.vue +1 -1
- package/components/common/adapterManager/AdapterManager.vue +1 -1
- package/components/common/browse/Browse.vue +240 -240
- package/components/common/browse/blocks/Title.vue +91 -91
- package/components/common/browse/blocks/info/Date.vue +21 -21
- package/components/common/context/recursion/Recursion.vue +86 -86
- package/components/common/context/recursion/RecursionNew.vue +198 -198
- package/components/common/context/recursion/RecursionOld.vue +212 -212
- package/components/common/diagramMain/modals/editSettings/tabs/TrafficShaping.vue +1 -1
- package/components/common/diagramMain/modals/lib/config/adapterModal.ts +5 -5
- package/components/common/diagramMain/modals/lib/config/networkModal.ts +1 -1
- package/components/common/diagramMain/modals/lib/config/portModal.ts +1 -1
- package/components/common/diagramMain/modals/lib/config/switchModal.ts +1 -1
- package/components/common/feedback/Message.vue +2 -2
- package/components/common/feedback/lib/config/drawingPanel.ts +1 -1
- package/components/common/home/servicesTable/lib/config/config.ts +1 -1
- package/components/common/layout/theHeader/helpMenu/About.vue +1 -1
- package/components/common/monitor/advanced/table/lib/config/performanceDatatable.ts +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +4 -23
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/tableConfig.ts +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/lib/utils/checkSubmit.ts +1 -1
- package/components/common/monitor/lib/models/interfaces.ts +1 -0
- package/components/common/pages/hardwareHealth/tableView/TableView.vue +1 -1
- package/components/common/pages/hardwareHealth/tableView/lib/config/alertWarningTable.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/lib/config/sensorTable.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/lib/config/storageSensorTable.ts +1 -1
- package/components/common/split/horizontal/HorizontalNew.vue +321 -321
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/mouseMode/lib/config/config.ts +3 -3
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/streamingMode/lib/config/config.ts +3 -3
- package/components/common/vm/actions/common/select/storage/lib/config/config.ts +1 -1
- package/components/common/wizards/datastore/add/Add.vue +437 -437
- package/components/common/wizards/datastore/add/nfs/configuration/Configuration.vue +2 -2
- package/components/common/wizards/datastore/add/readyComplete/ReadyComplete.vue +95 -95
- package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts +2 -2
- package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/DeviceSelection.vue +1 -1
- package/components/common/wizards/datastore/add/sharedStorm/deviceSelection/hostTable/lib/config/hostsTable.ts +1 -1
- package/components/common/wizards/network/add/lib/config/selectSwitch.ts +1 -1
- package/components/common/wizards/vm/migrate/select/computeResource/lib/config/tabsPannel.ts +1 -1
- package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/clusterTable.ts +3 -3
- package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/hostTable.ts +1 -1
- package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/resourcePoolTable.ts +1 -1
- package/components/common/wizards/vm/migrate/select/computeResource/tableView/lib/config/vappsTable.ts +1 -1
- package/components/common/wizards/vm/migrate/select/storage/table/datastore/lib/config/config.ts +1 -1
- package/components/common/wizards/vm/migrate/select/storage/table/disk/lib/config/config.ts +1 -1
- package/package.json +1 -1
- package/plugins/recursion.ts +293 -293
- package/store/tasks/mappers/recentTasks.ts +45 -45
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
<div class="clr-form-control clr-row">
|
|
22
22
|
<label for="" class="clr-control-label clr-col-md-2">
|
|
23
|
-
{{ localization.name }}
|
|
23
|
+
{{ localization.common.name }}
|
|
24
24
|
</label>
|
|
25
25
|
|
|
26
26
|
<div
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
|
|
82
82
|
<div class="nd-mt-0 clr-form-control clr-row">
|
|
83
83
|
<label class="clr-control-label clr-col-md-2">
|
|
84
|
-
{{ localization.server }}
|
|
84
|
+
{{ localization.common.server }}
|
|
85
85
|
</label>
|
|
86
86
|
|
|
87
87
|
<div
|
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="ready-complete">
|
|
3
|
-
<div class="ready-complete__desc">{{ localization.readyCompleteDesc }}</div>
|
|
4
|
-
|
|
5
|
-
<common-details-list :items="properties" class="ready-complete__list list">
|
|
6
|
-
<template #default="{ item }">
|
|
7
|
-
<common-details-item
|
|
8
|
-
:has-children="true"
|
|
9
|
-
:test-id="item.testId"
|
|
10
|
-
open-by-default
|
|
11
|
-
>
|
|
12
|
-
<template #stackBlockKey>
|
|
13
|
-
<span class="list__labels">
|
|
14
|
-
{{ localization.chosenDatastoreName }}
|
|
15
|
-
</span>
|
|
16
|
-
</template>
|
|
17
|
-
|
|
18
|
-
<template #stackChildren>
|
|
19
|
-
<template
|
|
20
|
-
v-for="(item2, key2) in item.items"
|
|
21
|
-
:key="`${item2}_${key2}`"
|
|
22
|
-
>
|
|
23
|
-
<common-details-item
|
|
24
|
-
:has-children="false"
|
|
25
|
-
:test-id="item2.testId"
|
|
26
|
-
class="list__default-style"
|
|
27
|
-
>
|
|
28
|
-
<template #stackBlockKey>
|
|
29
|
-
<div>
|
|
30
|
-
{{ item2.label }}
|
|
31
|
-
</div>
|
|
32
|
-
</template>
|
|
33
|
-
<template #stackBlockContent>
|
|
34
|
-
<div v-if="item2.data">
|
|
35
|
-
<div
|
|
36
|
-
v-for="item3 in item2.data"
|
|
37
|
-
:key="item3"
|
|
38
|
-
class="flex-align-center"
|
|
39
|
-
>
|
|
40
|
-
<div class="vsphere-icon-host"></div>
|
|
41
|
-
<span>{{ item3 }}</span>
|
|
42
|
-
</div>
|
|
43
|
-
</div>
|
|
44
|
-
<span v-else>
|
|
45
|
-
{{ item2.value }}
|
|
46
|
-
</span>
|
|
47
|
-
</template>
|
|
48
|
-
</common-details-item>
|
|
49
|
-
</template>
|
|
50
|
-
</template>
|
|
51
|
-
</common-details-item>
|
|
52
|
-
</template>
|
|
53
|
-
</common-details-list>
|
|
54
|
-
</div>
|
|
55
|
-
</template>
|
|
56
|
-
|
|
57
|
-
<script lang="ts" setup>
|
|
58
|
-
import { UI_I_DetailsItem } from '~/components/common/details/lib/models/interfaces'
|
|
59
|
-
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
60
|
-
|
|
61
|
-
const props = defineProps<{
|
|
62
|
-
dataReadyView: UI_I_DetailsItem[]
|
|
63
|
-
}>()
|
|
64
|
-
// console.log(props)
|
|
65
|
-
|
|
66
|
-
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
67
|
-
|
|
68
|
-
const properties = computed<UI_I_DetailsItem[]>(() => props.dataReadyView)
|
|
69
|
-
</script>
|
|
70
|
-
|
|
71
|
-
<style lang="scss" scoped>
|
|
72
|
-
@import '~/assets/scss/common/mixins.scss';
|
|
73
|
-
.ready-complete {
|
|
74
|
-
&__list {
|
|
75
|
-
@include flex($dir: column);
|
|
76
|
-
padding: 12px 0;
|
|
77
|
-
row-gap: 15px;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
.list {
|
|
81
|
-
&__labels {
|
|
82
|
-
@include text($fs: 13px, $fw: 700);
|
|
83
|
-
}
|
|
84
|
-
:deep(.list__default-style) {
|
|
85
|
-
.stack-block {
|
|
86
|
-
&__label {
|
|
87
|
-
align-items: flex-start;
|
|
88
|
-
}
|
|
89
|
-
&-content {
|
|
90
|
-
white-space: pre-line;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="ready-complete">
|
|
3
|
+
<div class="ready-complete__desc">{{ localization.readyCompleteDesc }}</div>
|
|
4
|
+
|
|
5
|
+
<common-details-list :items="properties" class="ready-complete__list list">
|
|
6
|
+
<template #default="{ item }">
|
|
7
|
+
<common-details-item
|
|
8
|
+
:has-children="true"
|
|
9
|
+
:test-id="item.testId"
|
|
10
|
+
open-by-default
|
|
11
|
+
>
|
|
12
|
+
<template #stackBlockKey>
|
|
13
|
+
<span class="list__labels">
|
|
14
|
+
{{ localization.chosenDatastoreName }}
|
|
15
|
+
</span>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<template #stackChildren>
|
|
19
|
+
<template
|
|
20
|
+
v-for="(item2, key2) in item.items"
|
|
21
|
+
:key="`${item2}_${key2}`"
|
|
22
|
+
>
|
|
23
|
+
<common-details-item
|
|
24
|
+
:has-children="false"
|
|
25
|
+
:test-id="item2.testId"
|
|
26
|
+
class="list__default-style"
|
|
27
|
+
>
|
|
28
|
+
<template #stackBlockKey>
|
|
29
|
+
<div>
|
|
30
|
+
{{ item2.label }}
|
|
31
|
+
</div>
|
|
32
|
+
</template>
|
|
33
|
+
<template #stackBlockContent>
|
|
34
|
+
<div v-if="item2.data">
|
|
35
|
+
<div
|
|
36
|
+
v-for="item3 in item2.data"
|
|
37
|
+
:key="item3"
|
|
38
|
+
class="flex-align-center"
|
|
39
|
+
>
|
|
40
|
+
<div class="vsphere-icon-host"></div>
|
|
41
|
+
<span>{{ item3 }}</span>
|
|
42
|
+
</div>
|
|
43
|
+
</div>
|
|
44
|
+
<span v-else>
|
|
45
|
+
{{ item2.value }}
|
|
46
|
+
</span>
|
|
47
|
+
</template>
|
|
48
|
+
</common-details-item>
|
|
49
|
+
</template>
|
|
50
|
+
</template>
|
|
51
|
+
</common-details-item>
|
|
52
|
+
</template>
|
|
53
|
+
</common-details-list>
|
|
54
|
+
</div>
|
|
55
|
+
</template>
|
|
56
|
+
|
|
57
|
+
<script lang="ts" setup>
|
|
58
|
+
import { UI_I_DetailsItem } from '~/components/common/details/lib/models/interfaces'
|
|
59
|
+
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
60
|
+
|
|
61
|
+
const props = defineProps<{
|
|
62
|
+
dataReadyView: UI_I_DetailsItem[]
|
|
63
|
+
}>()
|
|
64
|
+
// console.log(props)
|
|
65
|
+
|
|
66
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
67
|
+
|
|
68
|
+
const properties = computed<UI_I_DetailsItem[]>(() => props.dataReadyView)
|
|
69
|
+
</script>
|
|
70
|
+
|
|
71
|
+
<style lang="scss" scoped>
|
|
72
|
+
@import '~/assets/scss/common/mixins.scss';
|
|
73
|
+
.ready-complete {
|
|
74
|
+
&__list {
|
|
75
|
+
@include flex($dir: column);
|
|
76
|
+
padding: 12px 0;
|
|
77
|
+
row-gap: 15px;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
.list {
|
|
81
|
+
&__labels {
|
|
82
|
+
@include text($fs: 13px, $fw: 700);
|
|
83
|
+
}
|
|
84
|
+
:deep(.list__default-style) {
|
|
85
|
+
.stack-block {
|
|
86
|
+
&__label {
|
|
87
|
+
align-items: flex-start;
|
|
88
|
+
}
|
|
89
|
+
&-content {
|
|
90
|
+
white-space: pre-line;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
</style>
|
package/components/common/wizards/datastore/add/readyComplete/lib/config/propertiesDetails.ts
CHANGED
|
@@ -50,7 +50,7 @@ const nfsDetailsFunc = (
|
|
|
50
50
|
items: [],
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
|
-
label: localization.server,
|
|
53
|
+
label: localization.common.server,
|
|
54
54
|
value: server,
|
|
55
55
|
testId: 'view-server-name-in-complete',
|
|
56
56
|
items: [],
|
|
@@ -78,7 +78,7 @@ const nfsDetailsFunc = (
|
|
|
78
78
|
testId: 'view-hosts-accessibility',
|
|
79
79
|
items: [
|
|
80
80
|
{
|
|
81
|
-
label: localization.hosts,
|
|
81
|
+
label: localization.common.hosts,
|
|
82
82
|
value: '',
|
|
83
83
|
data: hosts,
|
|
84
84
|
testId: 'view-hosts',
|
|
@@ -15,7 +15,7 @@ const getItems = (
|
|
|
15
15
|
localization: UI_I_Localization
|
|
16
16
|
): [string, boolean, string, string][] => {
|
|
17
17
|
return [
|
|
18
|
-
[localization.name, true, '180px', hostTableItemsKeys[0]],
|
|
18
|
+
[localization.common.name, true, '180px', hostTableItemsKeys[0]],
|
|
19
19
|
[localization.identifier, false, '96px', hostTableItemsKeys[1]],
|
|
20
20
|
[localization.lun, true, '96px', hostTableItemsKeys[2]],
|
|
21
21
|
[localization.capacity, true, '96px', hostTableItemsKeys[3]],
|
|
@@ -4,7 +4,7 @@ import { UI_I_TableHead } from '~/components/common/wizards/network/add/lib/mode
|
|
|
4
4
|
export const selectNetworkTableHeadFunc = (
|
|
5
5
|
localization: UI_I_Localization
|
|
6
6
|
): UI_I_TableHead[] => [
|
|
7
|
-
{ text: localization.name },
|
|
7
|
+
{ text: localization.common.name },
|
|
8
8
|
{ text: localization.nsxPortGroupId },
|
|
9
9
|
{ text: localization.discoveredIssues },
|
|
10
10
|
]
|
|
@@ -15,7 +15,7 @@ const getItems = (
|
|
|
15
15
|
localization: UI_I_Localization
|
|
16
16
|
): [string, boolean, string, string][] => {
|
|
17
17
|
return [
|
|
18
|
-
[localization.name, true, '180px', clusterTableItemKeys[0]],
|
|
18
|
+
[localization.common.name, true, '180px', clusterTableItemKeys[0]],
|
|
19
19
|
[localization.availableCpu, true, '180px', clusterTableItemKeys[1]],
|
|
20
20
|
[localization.availableMemory, true, '180px', clusterTableItemKeys[2]],
|
|
21
21
|
[localization.availableStorage, true, '180px', clusterTableItemKeys[3]],
|
|
@@ -24,8 +24,8 @@ const getItems = (
|
|
|
24
24
|
[localization.totalCpu, false, '180px', clusterTableItemKeys[6]],
|
|
25
25
|
[localization.totalMemory, false, '180px', clusterTableItemKeys[7]],
|
|
26
26
|
[localization.totalStorage, false, '180px', clusterTableItemKeys[8]],
|
|
27
|
-
[localization.vms, false, '180px', clusterTableItemKeys[9]],
|
|
28
|
-
[localization.hosts, false, '180px', clusterTableItemKeys[10]],
|
|
27
|
+
[localization.common.vms, false, '180px', clusterTableItemKeys[9]],
|
|
28
|
+
[localization.common.hosts, false, '180px', clusterTableItemKeys[10]],
|
|
29
29
|
[localization.cpus, false, '180px', clusterTableItemKeys[11]],
|
|
30
30
|
[localization.datastores, false, '180px', clusterTableItemKeys[12]],
|
|
31
31
|
[localization.vSAN, false, '180px', clusterTableItemKeys[13]],
|
|
@@ -20,7 +20,7 @@ const getItems = (
|
|
|
20
20
|
localization: UI_I_Localization
|
|
21
21
|
): [string, boolean, string, string][] => {
|
|
22
22
|
return [
|
|
23
|
-
[localization.name, true, '180px', hostTableItemKeys[0]],
|
|
23
|
+
[localization.common.name, true, '180px', hostTableItemKeys[0]],
|
|
24
24
|
[localization.state, true, '96px', hostTableItemKeys[1]],
|
|
25
25
|
[localization.cluster, true, '180px', hostTableItemKeys[2]],
|
|
26
26
|
[localization.faultDomain, false, '180px', hostTableItemKeys[3]],
|
|
@@ -14,7 +14,7 @@ const getItems = (
|
|
|
14
14
|
localization: UI_I_Localization
|
|
15
15
|
): [string, boolean, string, string][] => {
|
|
16
16
|
return [
|
|
17
|
-
[localization.name, true, '90px', resourcePoolsTableItemKeys[0]],
|
|
17
|
+
[localization.common.name, true, '90px', resourcePoolsTableItemKeys[0]],
|
|
18
18
|
[
|
|
19
19
|
localization.cpuReservationMhz,
|
|
20
20
|
true,
|
|
@@ -17,7 +17,7 @@ const getItems = (
|
|
|
17
17
|
localization: UI_I_Localization
|
|
18
18
|
): [string, boolean, string, string][] => {
|
|
19
19
|
return [
|
|
20
|
-
[localization.name, true, '180px', vAppsTableItemKeys[0]],
|
|
20
|
+
[localization.common.name, true, '180px', vAppsTableItemKeys[0]],
|
|
21
21
|
[localization.cpuShares, true, '180px', vAppsTableItemKeys[1]],
|
|
22
22
|
[localization.cpuSharesValue, true, '180px', vAppsTableItemKeys[2]],
|
|
23
23
|
[localization.memoryShares, true, '180px', vAppsTableItemKeys[3]],
|
package/components/common/wizards/vm/migrate/select/storage/table/datastore/lib/config/config.ts
CHANGED
|
@@ -35,7 +35,7 @@ const getItems = (
|
|
|
35
35
|
localization: UI_I_Localization
|
|
36
36
|
): [string, boolean, string, string][] => {
|
|
37
37
|
return [
|
|
38
|
-
[localization.name, true, '96px', storageTableKeys[0]],
|
|
38
|
+
[localization.common.name, true, '96px', storageTableKeys[0]],
|
|
39
39
|
[localization.state, true, '138px', storageTableKeys[1]],
|
|
40
40
|
[localization.capacity, true, '110px', storageTableKeys[2]],
|
|
41
41
|
[localization.provisioned, true, '128px', storageTableKeys[3]],
|
|
@@ -21,7 +21,7 @@ const getItems = (
|
|
|
21
21
|
[localization.storage, true, '120px', vmMigrateDiskTableItemKeys[3]],
|
|
22
22
|
[localization.diskFormat, true, '180px', vmMigrateDiskTableItemKeys[4]],
|
|
23
23
|
[localization.sharing, true, '120px', vmMigrateDiskTableItemKeys[5]],
|
|
24
|
-
[localization.target, true, '120px', vmMigrateDiskTableItemKeys[6]],
|
|
24
|
+
[localization.common.target, true, '120px', vmMigrateDiskTableItemKeys[6]],
|
|
25
25
|
[localization.cache, true, '120px', vmMigrateDiskTableItemKeys[7]],
|
|
26
26
|
[localization.ioControl, true, '120px', vmMigrateDiskTableItemKeys[8]],
|
|
27
27
|
[localization.discard, true, '120px', vmMigrateDiskTableItemKeys[9]],
|