bfg-common 1.4.555 → 1.4.557
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/browse/blocks/contents/filesNew/FilesNew.vue +9 -13
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareNew.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareOld.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveNew.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cdDvdDrive/CdDvdDriveOld.vue +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
<template>
|
|
2
|
+
<common-browse-blocks-contents-files-new-skeleton v-if="props.filesLoading" />
|
|
3
|
+
|
|
2
4
|
<ul
|
|
3
|
-
v-if="props.selectedFolderFiles.length
|
|
5
|
+
v-else-if="props.selectedFolderFiles.length"
|
|
4
6
|
class="file-view__container"
|
|
5
7
|
>
|
|
6
8
|
<template v-for="file in props.selectedFolderFiles" :key="file.name">
|
|
@@ -17,8 +19,6 @@
|
|
|
17
19
|
</li>
|
|
18
20
|
</template>
|
|
19
21
|
</ul>
|
|
20
|
-
<common-browse-blocks-contents-files-new-skeleton v-if="props.filesLoading" />
|
|
21
|
-
|
|
22
22
|
|
|
23
23
|
<div v-else class="not-found-wrap">
|
|
24
24
|
<ui-not-found :text="localization.common.noItemsFound" />
|
|
@@ -42,24 +42,20 @@ const localization = computed<UI_I_Localization>(() => useLocal())
|
|
|
42
42
|
</script>
|
|
43
43
|
|
|
44
44
|
<style scoped lang="scss">
|
|
45
|
-
.file-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
margin: 0;
|
|
51
|
-
}
|
|
45
|
+
.file-view__container {
|
|
46
|
+
list-style-position: inside;
|
|
47
|
+
list-style-type: none;
|
|
48
|
+
padding: 0;
|
|
49
|
+
margin: 0;
|
|
52
50
|
|
|
53
|
-
|
|
51
|
+
.file-view {
|
|
54
52
|
display: flex;
|
|
55
53
|
align-items: center;
|
|
56
|
-
|
|
57
54
|
padding: 4px 8px;
|
|
58
55
|
cursor: pointer;
|
|
59
56
|
border-radius: 4px;
|
|
60
57
|
height: 26px;
|
|
61
58
|
margin-bottom: 2px;
|
|
62
|
-
|
|
63
59
|
color: var(--select-file-text-color);
|
|
64
60
|
|
|
65
61
|
&:hover {
|
package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue
CHANGED
|
@@ -186,7 +186,7 @@ const props = defineProps<{
|
|
|
186
186
|
networksTable: UI_I_NetworkTableItem[]
|
|
187
187
|
getDatastoreTableFunc: (payload: UI_I_TablePayload) => Promise<void>
|
|
188
188
|
datastore: UI_I_DatastoreTableItem[]
|
|
189
|
-
filesLoading:
|
|
189
|
+
filesLoading: boolean
|
|
190
190
|
state?: string | number
|
|
191
191
|
cpu?: API_UI_I_VmEditCpu
|
|
192
192
|
memory?: API_UI_I_VmEditMemory
|
package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareNew.vue
CHANGED
|
@@ -180,8 +180,8 @@
|
|
|
180
180
|
</div>
|
|
181
181
|
|
|
182
182
|
<Teleport to="body">
|
|
183
|
+
<!-- v-if="props.isShowFileModal"-->
|
|
183
184
|
<common-vm-actions-common-customize-hardware-virtual-hardware-browse-view
|
|
184
|
-
v-if="props.isShowFileModal"
|
|
185
185
|
show
|
|
186
186
|
:nodes="props.nodes"
|
|
187
187
|
:files="props.files"
|
package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardwareOld.vue
CHANGED
|
@@ -132,8 +132,8 @@
|
|
|
132
132
|
</div>
|
|
133
133
|
|
|
134
134
|
<Teleport to="body">
|
|
135
|
+
<!-- v-if="props.isShowFileModal"-->
|
|
135
136
|
<common-vm-actions-common-customize-hardware-virtual-hardware-browse-view
|
|
136
|
-
v-if="props.isShowFileModal"
|
|
137
137
|
show
|
|
138
138
|
:nodes="props.nodes"
|
|
139
139
|
:files="props.files"
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
</ui-stack-block>
|
|
69
69
|
|
|
70
70
|
<Teleport to="body">
|
|
71
|
+
<!-- v-if="isShowFileModal"-->
|
|
71
72
|
<common-vm-actions-common-customize-hardware-virtual-hardware-browse-view
|
|
72
|
-
v-if="isShowFileModal"
|
|
73
73
|
:show="isShowFileModal"
|
|
74
74
|
:file-types="props.fileTypes"
|
|
75
75
|
:nodes="props.nodes"
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
</atoms-stack-block>
|
|
88
88
|
|
|
89
89
|
<Teleport to="body">
|
|
90
|
+
<!-- v-if="isShowFileModal"-->
|
|
90
91
|
<common-vm-actions-common-customize-hardware-virtual-hardware-browse-view
|
|
91
|
-
v-if="isShowFileModal"
|
|
92
92
|
:show="isShowFileModal"
|
|
93
93
|
:file-types="props.fileTypes"
|
|
94
94
|
:nodes="props.nodes"
|