bfg-common 1.5.955 → 1.5.958

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.
@@ -11,6 +11,12 @@
11
11
  size="md"
12
12
  test-id="hardware-health-table"
13
13
  >
14
+ <template #skeleton-header>
15
+ <div class="flex gap-4 justify-between items-center">
16
+ <ui-skeleton-item width="80" height="20" />
17
+ <ui-skeleton-item width="112" height="36" border-radius="8" />
18
+ </div>
19
+ </template>
14
20
  <template v-if="props.tableMode !== 'history-testimony'" #insteadOfTitleActions>
15
21
  <ui-button
16
22
  test-id="vm-migrate-configure-button"
@@ -98,7 +104,7 @@ const table: any = {
98
104
  'history-testimony': historyTestimonyTable,
99
105
  }
100
106
 
101
- const tableTitle = computed(() => {
107
+ const tableTitle = computed<string>(() => {
102
108
  switch (props.tableMode) {
103
109
  case 'sensor':
104
110
  return localization.value.common.sensors
@@ -193,6 +199,9 @@ const onUpdateTable = () => {
193
199
  :deep(.tooltip-info) {
194
200
  margin-top: 2px;
195
201
  }
202
+ :deep(.table-title-actions-container) {
203
+ grid-column-gap: 16px;
204
+ }
196
205
  :deep(.table-container) {
197
206
  grid-template-rows: auto 1fr;
198
207
  }
@@ -39,6 +39,13 @@ const isShowTooltip = ref<boolean>(false)
39
39
 
40
40
  <style scoped lang="scss">
41
41
  .tooltip-info {
42
+ :deep(.tooltip) {
43
+ min-width: 320px;
44
+ }
45
+ :deep(.tooltip.popped) {
46
+ min-width: max-content;
47
+ }
48
+
42
49
  :deep(.tooltip:not(.variant-2).md .tooltip-info-header span) {
43
50
  font-size: 14px;
44
51
  }
@@ -48,7 +55,7 @@ const isShowTooltip = ref<boolean>(false)
48
55
  }
49
56
  :deep(.tooltip-info-close) {
50
57
  position: static;
51
- margin-left: 25px;
58
+ margin-left: auto;
52
59
  }
53
60
 
54
61
  &__icon {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.955",
4
+ "version": "1.5.958",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",