bfg-common 1.4.506 → 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())
@@ -26,10 +26,4 @@ const props = defineProps<{
26
26
  }>()
27
27
  </script>
28
28
 
29
- <style lang="scss" scoped>
30
- .most-alerts {
31
- :deep(.block) {
32
- padding: 0;
33
- }
34
- }
35
- </style>
29
+ <style lang="scss" scoped></style>
@@ -7,7 +7,9 @@
7
7
  icon-name="icon-content-libraries"
8
8
  class="most-alerts"
9
9
  >
10
- <common-pages-home-widgets-services-table :data-table="props.services" />
10
+ <common-pages-home-widgets-services-table
11
+ :data-table="props.services"
12
+ />
11
13
  </common-pages-home-card>
12
14
  </div>
13
15
  </div>
@@ -24,4 +26,10 @@ const props = defineProps<{
24
26
  const localization = computed<UI_I_Localization>(() => useLocal())
25
27
  </script>
26
28
 
27
- <style lang="scss" scoped></style>
29
+ <style lang="scss" scoped>
30
+ .most-alerts {
31
+ :deep(.block) {
32
+ padding: 0;
33
+ }
34
+ }
35
+ </style>
@@ -30,4 +30,10 @@ const emits = defineEmits<{
30
30
  const localization = computed<UI_I_Localization>(() => useLocal())
31
31
  </script>
32
32
 
33
- <style lang="scss" scoped></style>
33
+ <style lang="scss" scoped>
34
+ .most-alerts {
35
+ :deep(.block) {
36
+ padding: 0;
37
+ }
38
+ }
39
+ </style>
@@ -253,9 +253,11 @@ const themeMode = useLocalStorage('themeMode')
253
253
  }
254
254
 
255
255
  :deep(.stack-block-label .ui-main-input) {
256
- background-color: #ffffff;
256
+ background-color: #1b2a371f;
257
257
  }
258
258
  :deep(.stack-block-expanded > .stack-block-label .ui-main-input) {
259
+ background-color: #ffffff;
260
+ border-color: #d3d6da;
259
261
  color: #182531;
260
262
  }
261
263
  }
@@ -19,10 +19,18 @@ const props = defineProps<{
19
19
  }>()
20
20
  </script>
21
21
 
22
+ <style>
23
+ :root {
24
+ --vm-wizard-file-path-color: #182531
25
+ }
26
+ :root.dark-theme {
27
+ --vm-wizard-file-path-color: #e9eaec
28
+ }
29
+ </style>
22
30
  <style scoped>
23
31
  .file-path {
24
32
  font-size: 13px;
25
33
  line-height: 15.73px;
26
- color: #182531;
34
+ color: var(--vm-wizard-file-path-color);
27
35
  }
28
36
  </style>
@@ -19,10 +19,19 @@ const props = defineProps<{
19
19
  }>()
20
20
  </script>
21
21
 
22
+
23
+ <style>
24
+ :root {
25
+ --vm-wizard-maximum-size-color: #182531
26
+ }
27
+ :root.dark-theme {
28
+ --vm-wizard-maximum-size-color: #e9eaec
29
+ }
30
+ </style>
22
31
  <style scoped>
23
32
  .maximum-size {
24
33
  font-size: 13px;
25
34
  line-height: 15.73px;
26
- color: #182531;
35
+ color: var(--vm-wizard-maximum-size-color);
27
36
  }
28
37
  </style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.506",
4
+ "version": "1.4.508",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",