bfg-common 1.4.507 → 1.4.508

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.
@@ -3,7 +3,7 @@
3
3
  <common-pages-home-resource-new
4
4
  v-if="isNewView"
5
5
  :items="props.items"
6
- :loading="false"
6
+ :loading="props.loading"
7
7
  ></common-pages-home-resource-new>
8
8
 
9
9
  <common-pages-home-resource-old
@@ -18,6 +18,7 @@ import type { UI_I_Resources } from '~/components/common/resource/lib/models/int
18
18
 
19
19
  const props = defineProps<{
20
20
  items: UI_I_Resources[]
21
+ loading: boolean
21
22
  }>()
22
23
 
23
24
  const { $store }: any = useNuxtApp()
@@ -5,6 +5,7 @@
5
5
  :hosts="hosts"
6
6
  :alerts="alerts || []"
7
7
  :services="services || []"
8
+ :loading="props.loading"
8
9
  ></common-pages-home-widgets-new>
9
10
 
10
11
  <common-pages-home-widgets-old
@@ -27,6 +28,7 @@ import type {
27
28
 
28
29
  const props = defineProps<{
29
30
  homeInfo: UI_I_HomeInfo
31
+ loading: boolean
30
32
  }>()
31
33
 
32
34
  const { $store }: any = useNuxtApp()
@@ -38,6 +38,7 @@ const props = defineProps<{
38
38
  hosts: UI_I_Hosts
39
39
  alerts: UI_I_Alert[]
40
40
  services: UI_I_Service[]
41
+ loading: true
41
42
  }>()
42
43
 
43
44
  const localization = computed<UI_I_Localization>(() => useLocal())
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.507",
4
+ "version": "1.4.508",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",