bfg-common 1.4.73 → 1.4.74
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/localization/local_be.json +216 -216
- package/assets/localization/local_en.json +216 -216
- package/assets/localization/local_hy.json +216 -216
- package/assets/localization/local_kk.json +216 -216
- package/assets/localization/local_ru.json +216 -216
- package/assets/localization/local_zh.json +216 -216
- package/components/common/monitor/advanced/Advanced.vue +4 -3
- package/components/common/monitor/advanced/GraphView.vue +1 -1
- package/components/common/monitor/advanced/table/Table.vue +3 -1
- package/components/common/monitor/advanced/tools/Tools.vue +2 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/ChartOptionsModal.vue +2 -2
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/Actions.vue +9 -8
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/actions/saveOptionsModal/SaveOptionsModal.vue +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/Table.vue +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/table/lib/config/utils.ts +222 -278
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/form/Form.vue +3 -3
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/form/lib/config/dateForm.ts +11 -9
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/Object.vue +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/counters/timespan/object/lib/config/objectTable.ts +1 -1
- package/components/common/monitor/advanced/tools/chartOptionsModal/metrics/Metrics.vue +1 -1
- package/components/common/monitor/advanced/tools/lib/config/advancedToolbar.ts +16 -16
- package/components/common/monitor/overview/Overview.vue +1 -1
- package/components/common/monitor/overview/filters/Filters.vue +2 -2
- package/components/common/monitor/overview/filters/customIntervalModal/lib/config/dateChecker.ts +5 -5
- package/components/common/monitor/overview/filters/lib/config/filterOptions.ts +13 -14
- package/components/common/pages/hardwareHealth/historyTestimony/tools/Tools.vue +2 -2
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/ChartOptionsModal.vue +2 -2
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/Actions.vue +5 -5
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/SaveOptionsModal.vue +1 -1
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/actions/lib/utils/optionsActions.ts +1 -1
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/table/Table.vue +1 -1
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/form/Form.vue +3 -3
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/counters/timespan/form/lib/config/dateForm.ts +8 -8
- package/components/common/pages/hardwareHealth/historyTestimony/tools/chartOptionsModal/metrics/Metrics.vue +1 -1
- package/components/common/pages/hardwareHealth/historyTestimony/tools/lib/config/toolbar.ts +6 -6
- package/package.json +1 -1
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
<div class="routed-view-panel-layout">
|
|
4
4
|
<div class="settingsViewHeader">
|
|
5
5
|
<h3 class="settingsBlockTitle m-0">
|
|
6
|
-
{{ localization.
|
|
6
|
+
{{ localization.inventoryMonitor.advancedPerformance }}
|
|
7
7
|
</h3>
|
|
8
8
|
</div>
|
|
9
9
|
<div v-if="props.isEmpty" class="empty-data">
|
|
10
|
-
{{ localization.
|
|
10
|
+
{{ localization.inventoryMonitor.emptyAdvancedGraphText }}
|
|
11
11
|
</div>
|
|
12
12
|
<div v-else class="fill-parent flex-column">
|
|
13
13
|
<div class="vertical-flex-container fill-parent">
|
|
@@ -57,7 +57,8 @@
|
|
|
57
57
|
|
|
58
58
|
<div v-show="!props.data" class="empty-container">
|
|
59
59
|
{{
|
|
60
|
-
localization.
|
|
60
|
+
localization.inventoryMonitor
|
|
61
|
+
.noPerformanceCurrentlySelectedMetrics
|
|
61
62
|
}}
|
|
62
63
|
</div>
|
|
63
64
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div ref="chartsView" class="advanced-graph-container">
|
|
3
3
|
<div v-if="isLoading" class="graphic-loader-block">
|
|
4
4
|
<div class="spinner"></div>
|
|
5
|
-
<p>{{ localization.
|
|
5
|
+
<p>{{ localization.inventoryMonitor.retrievingData }}...</p>
|
|
6
6
|
</div>
|
|
7
7
|
<template v-if="!props.loading && chartData">
|
|
8
8
|
<common-graph
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="chart-legend">
|
|
3
|
-
<span class="title">{{
|
|
3
|
+
<span class="title">{{
|
|
4
|
+
localization.inventoryMonitor.performanceChartLegend
|
|
5
|
+
}}</span>
|
|
4
6
|
<client-only>
|
|
5
7
|
<atoms-table-data-grid
|
|
6
8
|
v-model:selected-row="selectedRow"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
<div class="horizontal-flex-container">
|
|
14
14
|
<label for="periodSelect" class="label-select"
|
|
15
|
-
>{{ localization.
|
|
15
|
+
>{{ localization.inventoryMonitor.period }}:</label
|
|
16
16
|
>
|
|
17
17
|
<div class="select">
|
|
18
18
|
<select
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
class="chart-options-button"
|
|
37
37
|
data-id="show-chart-options-button"
|
|
38
38
|
@click="onShowChartOptions"
|
|
39
|
-
>{{ localization.
|
|
39
|
+
>{{ localization.inventoryMonitor.chartOptions }}</a
|
|
40
40
|
>
|
|
41
41
|
</div>
|
|
42
42
|
<div class="view-select-label horizontal-flex-container">
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<atoms-modal
|
|
4
4
|
width="1150px"
|
|
5
5
|
:show="true"
|
|
6
|
-
:title="localization.
|
|
6
|
+
:title="localization.inventoryMonitor.chartOptions"
|
|
7
7
|
:disabled-submit="isDisabledSubmit"
|
|
8
8
|
@hide="onHide"
|
|
9
9
|
@submit="onSubmit"
|
|
@@ -240,7 +240,7 @@ const checkValidations = (): boolean => {
|
|
|
240
240
|
)
|
|
241
241
|
|
|
242
242
|
if (isDisabledSubmit.value) {
|
|
243
|
-
alerts.value = [localization.value.
|
|
243
|
+
alerts.value = [localization.value.inventoryMonitor.noCountersSelected]
|
|
244
244
|
isShowAlerts.value = true
|
|
245
245
|
return false
|
|
246
246
|
} else if (
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="horizontal-flex-container">
|
|
3
3
|
<div class="horizontal-flex-container">
|
|
4
4
|
<label for="chartOptionsSelect" class="label-select"
|
|
5
|
-
>{{ localization.
|
|
5
|
+
>{{ localization.inventoryMonitor.chartOptions }}:</label
|
|
6
6
|
>
|
|
7
7
|
<div class="select">
|
|
8
8
|
<select
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
data-id="chart-options-save-button"
|
|
27
27
|
@click="onShowSaveOptionsModal"
|
|
28
28
|
>
|
|
29
|
-
{{ localization.
|
|
29
|
+
{{ localization.inventoryMonitor.saveOptionsAs }}...
|
|
30
30
|
</button>
|
|
31
31
|
<common-monitor-advanced-tools-chart-options-modal-actions-save-options-modal
|
|
32
32
|
v-if="isShowSaveOptionsModal"
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
data-id="chart-options-delete-button"
|
|
40
40
|
@click="onDeleteAction"
|
|
41
41
|
>
|
|
42
|
-
{{ localization.
|
|
42
|
+
{{ localization.inventoryMonitor.deleteOptions }}
|
|
43
43
|
</button>
|
|
44
44
|
</div>
|
|
45
45
|
</div>
|
|
46
46
|
|
|
47
47
|
<common-modals-confirmation
|
|
48
48
|
v-if="isConfirmModal"
|
|
49
|
-
headline="localization.
|
|
49
|
+
headline="localization.inventoryMonitor.deletingSavedSettings"
|
|
50
50
|
:description="confirmModalDesc"
|
|
51
51
|
@hide-modal="isConfirmModal = false"
|
|
52
52
|
@confirm="onApplyDelete"
|
|
@@ -119,10 +119,11 @@ const isConfirmModal = ref<boolean>(false)
|
|
|
119
119
|
const confirmModalDesc = ref<string>('')
|
|
120
120
|
|
|
121
121
|
const onDeleteAction = (): void => {
|
|
122
|
-
confirmModalDesc.value =
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
122
|
+
confirmModalDesc.value =
|
|
123
|
+
localization.value.inventoryMonitor.deletingSavedSettingsDesc.replace(
|
|
124
|
+
'{0}',
|
|
125
|
+
localSelectedChartOption.value
|
|
126
|
+
)
|
|
126
127
|
isConfirmModal.value = true
|
|
127
128
|
}
|
|
128
129
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="vertical-flex-container chart-option-counters-vertical-split">
|
|
3
3
|
<span class="chart-options-grid-title">{{
|
|
4
|
-
localization.
|
|
4
|
+
localization.inventoryMonitor.selectCountersForThisChart
|
|
5
5
|
}}</span>
|
|
6
6
|
|
|
7
7
|
<atoms-table-data-grid
|