bfg-common 1.4.520 → 1.4.521

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.
@@ -31,7 +31,7 @@ const localization = computed<UI_I_Localization>(() => useLocal())
31
31
  .shortcut {
32
32
  margin: 20px;
33
33
  height: 100%;
34
-
34
+ overflow: auto;
35
35
  &.new {
36
36
  background: var(--bottom-pannel-bg-color);
37
37
  padding: 16px;
@@ -8,12 +8,8 @@
8
8
  @click="changeLastNavigation"
9
9
  @contextmenu="changeLastNavigation"
10
10
  >
11
- <span
12
- v-if="props.item.iconClassName"
13
- :class="['unit-icon', props.item.iconClassName]"
14
- />
15
- <span v-else-if="props.item.iconName" class="unit-icon">
16
- <atoms-the-icon2 :name="props.item.iconName" width="28" height="28" />
11
+ <span class="unit-icon">
12
+ <ui-icon :name="props.item.iconName" width="28" height="28"></ui-icon>
17
13
  </span>
18
14
  <div class="unit-text" :title="props.item.text">
19
15
  {{ props.item.text }}
@@ -53,31 +49,6 @@ const changeLastNavigation = (): void => {
53
49
  min-height: 28px;
54
50
  display: inline-block;
55
51
  color: var(--close-icon);
56
-
57
- &.icon-lifecycle-manager,
58
- &.icon-cloud-provider-services {
59
- background-size: contain;
60
- background-repeat: no-repeat;
61
- }
62
- &.icon-lifecycle-manager {
63
- background-image: url('assets/img/icons/icon-life-m-light.svg');
64
- html.dark-theme & {
65
- background-image: url('assets/img/icons/icon-life-m-dark.svg');
66
- }
67
- }
68
- &.icon-cloud-provider-services {
69
- background-image: url('assets/img/icons/icon-cps.png');
70
- html.dark-theme & {
71
- background-image: url('assets/img/icons/icon-cps-dark-mode.png');
72
- }
73
- }
74
- &.icon-vm-customizationManager-32x,
75
- &.icon-storage-profile-32x,
76
- &.icon-Host_Policy-32x,
77
- &.icon-certificate-32x {
78
- width: 28px;
79
- height: 28px;
80
- }
81
52
  }
82
53
  &-text {
83
54
  color: #9da6ad;
@@ -8,12 +8,8 @@
8
8
  @click="changeLastNavigation"
9
9
  @contextmenu="changeLastNavigation"
10
10
  >
11
- <span
12
- v-if="props.item.iconClassName"
13
- :class="['unit-icon', props.item.iconClassName]"
14
- />
15
- <span v-else-if="props.item.iconName" class="icon-2">
16
- <atoms-the-icon2 :name="props.item.iconName" width="34" height="34" />
11
+ <span class="icon-2">
12
+ <ui-icon :name="props.item.iconName" width="34" height="34"></ui-icon>
17
13
  </span>
18
14
  <div class="unit-text" :title="props.item.text">
19
15
  {{ props.item.text }}
@@ -47,39 +43,6 @@ const changeLastNavigation = (): void => {
47
43
  width: 95px;
48
44
  margin: 21px 10px;
49
45
  text-decoration-line: none;
50
- &-icon {
51
- margin: 0px 10px 15px 10px;
52
- min-width: 34px;
53
- min-height: 34px;
54
- display: inline-block;
55
- color: var(--global-font-color3);
56
-
57
- &.icon-lifecycle-manager,
58
- &.icon-cloud-provider-services {
59
- background-size: contain;
60
- background-repeat: no-repeat;
61
- }
62
- &.icon-lifecycle-manager {
63
- background-image: url('assets/img/icons/icon-life-m-light.svg');
64
- html.dark-theme & {
65
- background-image: url('assets/img/icons/icon-life-m-dark.svg');
66
- color: var(--global-font-color3);
67
- }
68
- }
69
- &.icon-cloud-provider-services {
70
- background-image: url('assets/img/icons/icon-cps.png');
71
- html.dark-theme & {
72
- background-image: url('assets/img/icons/icon-cps-dark-mode.png');
73
- }
74
- }
75
- &.icon-vm-customizationManager-32x,
76
- &.icon-storage-profile-32x,
77
- &.icon-Host_Policy-32x,
78
- &.icon-certificate-32x {
79
- width: 34px;
80
- height: 34px;
81
- }
82
- }
83
46
  .icon-2 {
84
47
  margin: 0 10px 15px 10px;
85
48
  color: var(--global-font-color3);
@@ -23,20 +23,4 @@ const { $store }: any = useNuxtApp()
23
23
 
24
24
  const isNewView = computed<boolean>(() => $store.getters['main/getIsNewView'])
25
25
  </script>
26
- <style lang="scss" scoped>
27
- //.category {
28
- // &-text {
29
- // color: var(--light-white-100);
30
- // font-size: 18px;
31
- // line-height: 21px;
32
- // font-weight: 400;
33
- // }
34
- // &-block {
35
- // display: flex;
36
- // flex-direction: row;
37
- // justify-content: flex-start;
38
- // border-top: 1px solid var(--global-border-color);
39
- // margin-top: -4px;
40
- // }
41
- //}
42
- </style>
26
+ <style lang="scss" scoped></style>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.4.520",
4
+ "version": "1.4.521",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",