[#3403] added option to import/export a subset of collections

This commit is contained in:
Gani Georgiev
2024-02-12 11:37:48 +02:00
parent d4a2f05075
commit 959c6b6d6c
37 changed files with 301 additions and 157 deletions
+52
View File
@@ -0,0 +1,52 @@
.export-list {
display: flex;
flex-direction: column;
gap: 15px;
width: 220px;
min-height: 0;
flex-shrink: 0;
overflow: auto;
padding: 10px;
background: var(--baseAlt1Color);
border-radius: var(--baseRadius);
.list-item {
margin: 0;
width: 100%;
}
.form-field {
margin: 0;
label {
width: 100%;
display: block !important;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
}
}
.export-preview {
position: relative;
flex-grow: 1;
border-radius: var(--baseRadius);
overflow: hidden;
.copy-schema {
position: absolute;
right: 15px;
top: 10px;
}
.code-wrapper {
height: 100%;
code {
min-height: 100%;
}
}
}
.export-panel {
display: flex;
width: 100%;
height: 550px;
align-items: stretch;
gap: 15px;
}
+2
View File
@@ -43,3 +43,5 @@
@import 'schema_field';
@import 'file_picker';
@import 'collections_export';