bfg-common 1.5.55 → 1.5.57
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/assets/img/icons/icons-sprite-dark-3.svg +227 -227
- package/assets/img/icons/icons-sprite-dark-5.svg +488 -488
- package/assets/img/icons/icons-sprite-light-3.svg +227 -227
- package/assets/img/icons/icons-sprite-light-5.svg +488 -488
- package/assets/localization/local_ru.json +1 -1
- package/components/common/graph/Graph.vue +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +1040 -1040
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/ModelOld.vue +86 -88
- package/package.json +1 -1
package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/model/ModelOld.vue
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
{{ localization.common.cpuModel }}
|
|
6
6
|
</template>
|
|
7
7
|
<template #stackBlockContent>
|
|
8
|
-
<div
|
|
8
|
+
<div>
|
|
9
9
|
<atoms-tooltip-error
|
|
10
10
|
:has-error="!!props.errorText"
|
|
11
11
|
selector="#vm-wizard-cpu-model-field"
|
|
@@ -33,89 +33,93 @@
|
|
|
33
33
|
<template #content>{{ errorText }}</template>
|
|
34
34
|
</atoms-tooltip-error>
|
|
35
35
|
|
|
36
|
-
<div class="
|
|
37
|
-
<
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
<label for="passthrough-host-cpu" class="label-text-normal">{{
|
|
46
|
-
localization.common.passthroughHostCpu
|
|
47
|
-
}}</label>
|
|
48
|
-
<div id="passthrough-help-icon" class="flex-align-center relative">
|
|
49
|
-
<atoms-the-icon
|
|
50
|
-
data-id="show-passthrough-help-icon"
|
|
51
|
-
fill="#0072a3"
|
|
52
|
-
width="24px"
|
|
53
|
-
height="24px"
|
|
54
|
-
name="info-circle"
|
|
55
|
-
class="pointer"
|
|
56
|
-
@click.stop="isShowPassthroughHost = !isShowPassthroughHost"
|
|
36
|
+
<div class="flex align-start flex-col cpu-model-checkbox">
|
|
37
|
+
<div class="passthrough-host-cpu-wrap flex-align-center">
|
|
38
|
+
<input
|
|
39
|
+
id="passthrough-host-cpu"
|
|
40
|
+
v-model="passthroughHostCpu"
|
|
41
|
+
data-id="passthrough-host-cpu"
|
|
42
|
+
:disabled="props.disabled"
|
|
43
|
+
type="checkbox"
|
|
44
|
+
@change="emits('change-passthrough-host-cpu', $event)"
|
|
57
45
|
/>
|
|
58
|
-
<
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
46
|
+
<label for="passthrough-host-cpu" class="label-text-normal">{{
|
|
47
|
+
localization.common.passthroughHostCpu
|
|
48
|
+
}}</label>
|
|
49
|
+
<div
|
|
50
|
+
id="passthrough-help-icon"
|
|
51
|
+
class="flex-align-center relative"
|
|
52
|
+
>
|
|
53
|
+
<atoms-the-icon
|
|
54
|
+
data-id="show-passthrough-help-icon"
|
|
55
|
+
fill="#0072a3"
|
|
56
|
+
width="24px"
|
|
57
|
+
height="24px"
|
|
58
|
+
name="info-circle"
|
|
59
|
+
class="pointer"
|
|
60
|
+
@click.stop="isShowPassthroughHost = !isShowPassthroughHost"
|
|
61
|
+
/>
|
|
62
|
+
<Teleport to="body">
|
|
63
|
+
<atoms-tooltip-signpost
|
|
64
|
+
v-if="isShowPassthroughHost"
|
|
65
|
+
elem-id="passthrough-help-icon"
|
|
66
|
+
@hide="isShowPassthroughHost = false"
|
|
67
|
+
>
|
|
68
|
+
<h3 class="passthrough-help-title">
|
|
69
|
+
{{ localization.mainNavigation.help }}
|
|
70
|
+
</h3>
|
|
67
71
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
72
|
+
<p class="passthrough-help-text">
|
|
73
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
|
|
74
|
+
A cum eius expedita, fuga mollitia perferendis quod soluta
|
|
75
|
+
vel? Dolor, illo, nam? A consequatur, consequuntur eos
|
|
76
|
+
impedit iusto labore sunt tempora!
|
|
77
|
+
</p>
|
|
78
|
+
</atoms-tooltip-signpost>
|
|
79
|
+
</Teleport>
|
|
80
|
+
</div>
|
|
76
81
|
</div>
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
:disabled="props.disabled"
|
|
86
|
-
@change="emits('change-host-model-cpu', $event)"
|
|
87
|
-
/>
|
|
88
|
-
<label for="host-model-cpu" class="label-text-normal">{{
|
|
89
|
-
localization.common.hostModelCpu
|
|
90
|
-
}}</label>
|
|
91
|
-
<div id="host-model-help-icon" class="flex-align-center relative">
|
|
92
|
-
<atoms-the-icon
|
|
93
|
-
fill="#0072a3"
|
|
94
|
-
width="24px"
|
|
95
|
-
height="24px"
|
|
96
|
-
name="info-circle"
|
|
97
|
-
class="pointer"
|
|
98
|
-
data-id="show-host-model-help-icon"
|
|
99
|
-
@click.stop="isShowHostModel = !isShowHostModel"
|
|
82
|
+
<div class="flex-align-center">
|
|
83
|
+
<input
|
|
84
|
+
id="host-model-cpu"
|
|
85
|
+
v-model="hostModelCpu"
|
|
86
|
+
data-id="host-model-cpu-input"
|
|
87
|
+
type="checkbox"
|
|
88
|
+
:disabled="props.disabled"
|
|
89
|
+
@change="emits('change-host-model-cpu', $event)"
|
|
100
90
|
/>
|
|
101
|
-
<
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
91
|
+
<label for="host-model-cpu" class="label-text-normal">{{
|
|
92
|
+
localization.common.hostModelCpu
|
|
93
|
+
}}</label>
|
|
94
|
+
<div id="host-model-help-icon" class="flex-align-center relative">
|
|
95
|
+
<atoms-the-icon
|
|
96
|
+
fill="#0072a3"
|
|
97
|
+
width="24px"
|
|
98
|
+
height="24px"
|
|
99
|
+
name="info-circle"
|
|
100
|
+
class="pointer"
|
|
101
|
+
data-id="show-host-model-help-icon"
|
|
102
|
+
@click.stop="isShowHostModel = !isShowHostModel"
|
|
103
|
+
/>
|
|
104
|
+
<Teleport to="body">
|
|
105
|
+
<atoms-tooltip-signpost
|
|
106
|
+
v-if="isShowHostModel"
|
|
107
|
+
elem-id="host-model-help-icon"
|
|
108
|
+
@hide="isShowHostModel = false"
|
|
109
|
+
>
|
|
110
|
+
<h3 class="host-model-help-title">
|
|
111
|
+
{{ localization.mainNavigation.help }}
|
|
112
|
+
</h3>
|
|
110
113
|
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
114
|
+
<p class="host-model-help-text">
|
|
115
|
+
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
|
|
116
|
+
A cum eius expedita, fuga mollitia perferendis quod soluta
|
|
117
|
+
vel? Dolor, illo, nam? A consequatur, consequuntur eos
|
|
118
|
+
impedit iusto labore sunt tempora!
|
|
119
|
+
</p>
|
|
120
|
+
</atoms-tooltip-signpost>
|
|
121
|
+
</Teleport>
|
|
122
|
+
</div>
|
|
119
123
|
</div>
|
|
120
124
|
</div>
|
|
121
125
|
</div>
|
|
@@ -154,18 +158,12 @@ const isShowHostModel = ref<boolean>(false)
|
|
|
154
158
|
</script>
|
|
155
159
|
|
|
156
160
|
<style scoped lang="scss">
|
|
157
|
-
.
|
|
158
|
-
margin-
|
|
161
|
+
.cpu-model-checkbox {
|
|
162
|
+
margin-top: 4px;
|
|
159
163
|
}
|
|
164
|
+
|
|
160
165
|
#passthrough-host-cpu,
|
|
161
166
|
#host-model-cpu {
|
|
162
167
|
margin: 0 4px 0 0;
|
|
163
168
|
}
|
|
164
|
-
|
|
165
|
-
.divider {
|
|
166
|
-
height: 16px;
|
|
167
|
-
width: 1px;
|
|
168
|
-
background-color: var(--global-border-color);
|
|
169
|
-
margin: 0 6px 0 0;
|
|
170
|
-
}
|
|
171
169
|
</style>
|