bfg-common 1.4.818 → 1.4.820
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/monitor/overview/filters/FiltersNew.vue +39 -36
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +694 -693
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/types.ts +5 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +8 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskNew.vue +229 -230
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDiskOld.vue +247 -242
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newNetwork/NewNetwork.vue +2 -1
- package/package.json +1 -1
|
@@ -2,47 +2,48 @@
|
|
|
2
2
|
<div class="overview-filters">
|
|
3
3
|
<div class="period-select-wrap">
|
|
4
4
|
<label for="period-select" class="label-select"
|
|
5
|
-
|
|
5
|
+
>{{ localization.inventoryMonitor.period }}:</label
|
|
6
6
|
>
|
|
7
7
|
|
|
8
8
|
<ui-select
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
9
|
+
v-if="!props.disabledPeriodOptions"
|
|
10
|
+
v-model="selectedPeriod"
|
|
11
|
+
:items="props.periodOptions"
|
|
12
|
+
test-id="period-select"
|
|
13
|
+
width="auto"
|
|
13
14
|
/>
|
|
14
15
|
<span v-else class="single-option">{{
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
props.periodOptions[0].text
|
|
17
|
+
}}</span>
|
|
17
18
|
<span v-if="!props.disabledPeriodOptions" class="chart-text">
|
|
18
19
|
{{ props.chartTitleDate }}
|
|
19
20
|
</span>
|
|
20
21
|
<ui-skeleton-item
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
v-if="!props.disabledPeriodOptions && !props.chartTitleDate"
|
|
23
|
+
width="320"
|
|
24
|
+
height="16"
|
|
24
25
|
/>
|
|
25
26
|
|
|
26
27
|
<ui-tooltip
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
28
|
+
v-show="props.isShowCustomIntervalButton"
|
|
29
|
+
id="tooltip-interval-modal-button"
|
|
30
|
+
test-id="tooltip-interval-modal-button"
|
|
31
|
+
size="sm"
|
|
32
|
+
position="bottom"
|
|
33
|
+
position-by-tooltip="center"
|
|
33
34
|
>
|
|
34
35
|
<template #target>
|
|
35
36
|
<div
|
|
36
|
-
|
|
37
|
-
|
|
37
|
+
id="tooltip-interval-modal-button"
|
|
38
|
+
class="popped tooltip inline-block"
|
|
38
39
|
>
|
|
39
40
|
<ui-icon
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
41
|
+
name="edit"
|
|
42
|
+
width="16"
|
|
43
|
+
height="16"
|
|
44
|
+
test-id="show-interval-modal-button"
|
|
45
|
+
class="interval-modal-button"
|
|
46
|
+
@click="onShowIntervalModal"
|
|
46
47
|
/>
|
|
47
48
|
</div>
|
|
48
49
|
</template>
|
|
@@ -56,25 +57,27 @@
|
|
|
56
57
|
|
|
57
58
|
<div class="view-select-wrap">
|
|
58
59
|
<label for="view-select" class="label-select"
|
|
59
|
-
|
|
60
|
+
>{{ localization.common.view }}:</label
|
|
60
61
|
>
|
|
61
62
|
<ui-select
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
v-model="selectedView"
|
|
64
|
+
:items="props.viewOptions"
|
|
65
|
+
test-id="view-select"
|
|
66
|
+
width="auto"
|
|
67
|
+
left
|
|
65
68
|
/>
|
|
66
69
|
</div>
|
|
67
70
|
</div>
|
|
68
71
|
|
|
69
72
|
<common-monitor-overview-filters-custom-interval-modal
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
73
|
+
v-if="props.validDateEnd"
|
|
74
|
+
v-show="props.isShowIntervalModal"
|
|
75
|
+
:selected-periods="props.selectedPeriods"
|
|
76
|
+
:format-date="props.formatDate"
|
|
77
|
+
:current-lang="props.currentLang"
|
|
78
|
+
:valid-date-end="props.validDateEnd"
|
|
79
|
+
@hide="onHideIntervalModal"
|
|
80
|
+
@submit="onSubmitIntervalModal"
|
|
78
81
|
/>
|
|
79
82
|
</template>
|
|
80
83
|
|