bfg-common 1.6.4 → 1.6.6
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.
- package/components/common/layout/theHeader/ThemeSwitch.vue +1 -1
- package/components/common/mainNavigationPanel/MainNavigationPanelNew.vue +3 -1
- package/components/common/monitor/utilization/infoBlock/Old.vue +1 -1
- package/components/common/pages/scheduledTasks/table/new/New.vue +12 -10
- package/components/common/pages/tasks/table/Table.vue +24 -22
- package/package.json +1 -1
|
@@ -143,7 +143,7 @@ const localization = computed<UI_I_Localization>(() => useLocal())
|
|
|
143
143
|
&.pinned {
|
|
144
144
|
.nav-context {
|
|
145
145
|
position: relative;
|
|
146
|
-
z-index: calc(var(--z-
|
|
146
|
+
z-index: calc(var(--z-fixed) + 2);
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
&:not(.pinned) {
|
|
@@ -177,6 +177,8 @@ const localization = computed<UI_I_Localization>(() => useLocal())
|
|
|
177
177
|
}
|
|
178
178
|
}
|
|
179
179
|
&:not(.collapsed) {
|
|
180
|
+
min-width: 240px;
|
|
181
|
+
|
|
180
182
|
:deep(.tooltip-container-hover) {
|
|
181
183
|
display: none;
|
|
182
184
|
}
|
|
@@ -82,16 +82,18 @@
|
|
|
82
82
|
<ui-icon name="vertical-dotes" width="20" height="20" />
|
|
83
83
|
</span>
|
|
84
84
|
</ui-button>
|
|
85
|
-
<
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
85
|
+
<Teleport to="body">
|
|
86
|
+
<ui-dropdown
|
|
87
|
+
:show="actionsShowId === item.data.id"
|
|
88
|
+
:test-id="`event-table-action-dropdown-${item.data.id}`"
|
|
89
|
+
:items="schedulerDropActions"
|
|
90
|
+
:elem-id="`event-table-action-${item.data.id}`"
|
|
91
|
+
width="max-content"
|
|
92
|
+
left
|
|
93
|
+
@select="onSelectAction"
|
|
94
|
+
@hide="onHideActionsDropdown"
|
|
95
|
+
/>
|
|
96
|
+
</Teleport>
|
|
95
97
|
</div>
|
|
96
98
|
</template>
|
|
97
99
|
|
|
@@ -67,28 +67,30 @@
|
|
|
67
67
|
<ui-icon name="vertical-dotes" width="20" height="20" />
|
|
68
68
|
</span>
|
|
69
69
|
</ui-button>
|
|
70
|
-
<
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
<
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
70
|
+
<Teleport to="body">
|
|
71
|
+
<ui-dropdown
|
|
72
|
+
:show="actionsShowId === item.data.id"
|
|
73
|
+
:test-id="`data-table-task-dropdown-${item.data.id}`"
|
|
74
|
+
:items="actions"
|
|
75
|
+
:elem-id="`data-table-task-action-${item.data.id}`"
|
|
76
|
+
width="max-content"
|
|
77
|
+
left
|
|
78
|
+
@select="onSelectAction(item.data.target, $event)"
|
|
79
|
+
@hide="onHideActionsDropdown"
|
|
80
|
+
>
|
|
81
|
+
<template #row="{ item: dropMenu }">
|
|
82
|
+
<ui-icon
|
|
83
|
+
v-if="dropMenu.iconName === 'hide'"
|
|
84
|
+
name="password-hide"
|
|
85
|
+
width="16"
|
|
86
|
+
height="16"
|
|
87
|
+
/>
|
|
88
|
+
<span class="action-text">
|
|
89
|
+
{{ dropMenu.text }}
|
|
90
|
+
</span>
|
|
91
|
+
</template>
|
|
92
|
+
</ui-dropdown>
|
|
93
|
+
</Teleport>
|
|
92
94
|
</div>
|
|
93
95
|
</template>
|
|
94
96
|
|