bfg-common 1.5.947 → 1.5.948
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.
|
@@ -2999,7 +2999,7 @@
|
|
|
2999
2999
|
"inventory": {
|
|
3000
3000
|
"activeMemory": "Активная память",
|
|
3001
3001
|
"locationHelp": "Помощь с местоположением",
|
|
3002
|
-
"locationHelpDescription": "В этом месте будет создан
|
|
3002
|
+
"locationHelpDescription": "В этом месте будет создан новая {0}.",
|
|
3003
3003
|
"deleteFolderDescription": "Вы уверены, что хотите удалить папку “{0}” из инвентаря? Выберите флажок, чтобы также удалить все элементы из дочернего инвентаря."
|
|
3004
3004
|
},
|
|
3005
3005
|
"inventoryMonitor": {
|
|
@@ -17,7 +17,24 @@
|
|
|
17
17
|
<template #content="{ node }">
|
|
18
18
|
<div v-if="node.type === 'parent'" class="flex-align-center">
|
|
19
19
|
<span :class="['node-icon', node.iconClassName]"></span>
|
|
20
|
-
<
|
|
20
|
+
<ui-tooltip
|
|
21
|
+
:id="`create-${props.type}-location-tooltip`"
|
|
22
|
+
:test-id="`create-${props.type}-tooltip`"
|
|
23
|
+
size="md"
|
|
24
|
+
position="bottom"
|
|
25
|
+
position-by-tooltip="center"
|
|
26
|
+
show-type="variant-1"
|
|
27
|
+
class="text-ellipsis"
|
|
28
|
+
>
|
|
29
|
+
<template #target>
|
|
30
|
+
<span class="node-name text-ellipsis">
|
|
31
|
+
{{ node.name }}
|
|
32
|
+
</span>
|
|
33
|
+
</template>
|
|
34
|
+
<template #content>
|
|
35
|
+
{{ node.name }}
|
|
36
|
+
</template>
|
|
37
|
+
</ui-tooltip>
|
|
21
38
|
</div>
|
|
22
39
|
<div
|
|
23
40
|
v-if="node.type === 'child'"
|
|
@@ -130,6 +147,9 @@ const tooltipContentText = computed<string>(() => {
|
|
|
130
147
|
|
|
131
148
|
.node-wrapper {
|
|
132
149
|
--ui-tree-group-line-left: 11px; // переопределить значение CSS-переменной в нужном месте
|
|
150
|
+
.group-line {
|
|
151
|
+
height: 25px !important;
|
|
152
|
+
}
|
|
133
153
|
.toggle-button {
|
|
134
154
|
min-width: 16px;
|
|
135
155
|
|