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.
@@ -16,7 +16,7 @@
16
16
  import {
17
17
  I_LineGraph,
18
18
  I_DiskGraph,
19
- } from 'bfg-nuxt-3-graph/graph/models/interfaces'
19
+ } from 'bfg-nuxt-3-graph/graph/lib/models/interfaces'
20
20
 
21
21
  const props = defineProps<{
22
22
  chart?: any
@@ -9,7 +9,7 @@ import type {
9
9
  I_SeriesLine,
10
10
  I_SeriesDisk,
11
11
  I_SeriesLineItem,
12
- } from 'bfg-nuxt-3-graph/graph/models/interfaces'
12
+ } from 'bfg-nuxt-3-graph/graph/lib/models/interfaces'
13
13
 
14
14
  import { UI_I_Localization } from '~/lib/models/interfaces'
15
15
 
@@ -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
 
3
3
  export const getCountCores = (data: I_SeriesLine | null): number => {
4
4
  if (!data) return 0
@@ -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
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.12",
4
+ "version": "1.3.13",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",