bfg-common 1.3.12 → 1.3.13
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/graph/Graph.vue +1 -1
- package/components/common/graph/lib/utils/renderGraph.ts +1 -1
- package/components/common/monitor/advanced/Advanced.vue +1 -1
- package/components/common/monitor/advanced/GraphView.vue +2 -2
- package/components/common/monitor/advanced/tools/lib/utils/countCores.ts +1 -1
- package/components/common/monitor/lib/models/interfaces.ts +1 -1
- package/components/common/monitor/overview/Overview.vue +2 -2
- package/package.json +1 -1
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
<script setup lang="ts">
|
|
92
92
|
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
93
93
|
import { UI_T_AdvancedType } from '~/components/common/monitor/advanced/lib/models/types'
|
|
94
|
-
import { I_SeriesLine } from 'bfg-nuxt-3-graph/graph/models/interfaces'
|
|
94
|
+
import { I_SeriesLine } from 'bfg-nuxt-3-graph/graph/lib/models/interfaces'
|
|
95
95
|
import { UI_I_MonitorGraphPayload } from '~/components/common/monitor/lib/models/interfaces'
|
|
96
96
|
import { UI_I_PerformanceItem } from '~/components/common/monitor/advanced/table/lib/models/interfaces'
|
|
97
97
|
import {
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
import { useDebounceFn, useElementSize } from '@vueuse/core'
|
|
21
21
|
import { format } from 'date-fns'
|
|
22
22
|
import { UI_I_Localization } from '~/lib/models/interfaces'
|
|
23
|
-
import { graphDataFunc } from 'bfg-nuxt-3-graph/graph/utils/renderGraph'
|
|
23
|
+
import { graphDataFunc } from 'bfg-nuxt-3-graph/graph/lib/utils/renderGraph'
|
|
24
24
|
import {
|
|
25
25
|
I_LineGraph,
|
|
26
26
|
I_SeriesLine,
|
|
27
|
-
} from 'bfg-nuxt-3-graph/graph/models/interfaces'
|
|
27
|
+
} from 'bfg-nuxt-3-graph/graph/lib/models/interfaces'
|
|
28
28
|
|
|
29
29
|
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
30
30
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I_SeriesLine } from 'bfg-nuxt-3-graph/graph/models/interfaces'
|
|
1
|
+
import { I_SeriesLine } from 'bfg-nuxt-3-graph/graph/lib/models/interfaces'
|
|
2
2
|
import { UI_T_OverviewRequestType } from '~/components/common/monitor/overview/filters/lib/models/types'
|
|
3
3
|
|
|
4
4
|
export interface UI_I_GraphDataSettingItem {
|
|
@@ -95,11 +95,11 @@ import {
|
|
|
95
95
|
I_LineGraph,
|
|
96
96
|
I_SeriesColumn,
|
|
97
97
|
I_SeriesLine,
|
|
98
|
-
} from 'bfg-nuxt-3-graph/graph/models/interfaces'
|
|
98
|
+
} from 'bfg-nuxt-3-graph/graph/lib/models/interfaces'
|
|
99
99
|
import {
|
|
100
100
|
columnGraphDataFunc,
|
|
101
101
|
graphDataFunc,
|
|
102
|
-
} from 'bfg-nuxt-3-graph/graph/utils/renderGraph'
|
|
102
|
+
} from 'bfg-nuxt-3-graph/graph/lib/utils/renderGraph'
|
|
103
103
|
|
|
104
104
|
const props = defineProps<{
|
|
105
105
|
oneChart?: UI_I_GraphDataSettingItem | null
|