feat: run pinned pipelines and publish outputs

This commit is contained in:
2026-07-28 13:47:59 +02:00
parent 6ca3058021
commit 6305ef9cef
13 changed files with 1461 additions and 7 deletions

View File

@@ -601,6 +601,106 @@
width: min(720px, calc(100vw - 32px));
}
.dataflow-run-dialog {
width: min(860px, calc(100vw - 32px));
}
.dataflow-run-dialog-content {
display: grid;
gap: 14px;
max-height: min(680px, calc(100vh - 210px));
overflow: hidden;
}
.dataflow-run-controls,
.dataflow-run-history-heading {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
}
.dataflow-run-revision,
.dataflow-run-history-heading small {
color: var(--muted);
font-size: 11px;
}
.dataflow-run-publication-fields {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
padding: 12px 0;
border-top: var(--border-line);
border-bottom: var(--border-line);
}
.dataflow-run-publication-fields input,
.dataflow-run-publication-fields select {
margin-top: 5px;
padding: 7px 8px;
}
.dataflow-run-freeze {
display: flex;
min-height: 54px;
align-items: end;
padding-bottom: 4px;
}
.dataflow-run-history {
display: flex;
min-height: 190px;
flex-direction: column;
overflow: hidden;
}
.dataflow-run-history-heading {
min-height: 36px;
flex: 0 0 auto;
border-bottom: var(--border-line);
}
.dataflow-run-history-heading strong {
color: var(--text-strong);
font-size: 12px;
}
.dataflow-run-history > div:last-child {
min-height: 0;
flex: 1 1 auto;
overflow: auto;
}
.dataflow-run-history table {
width: 100%;
border-collapse: collapse;
font-size: 11px;
}
.dataflow-run-history th,
.dataflow-run-history td {
max-width: 230px;
border-bottom: var(--border-line);
padding: 7px 9px;
overflow: hidden;
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
}
.dataflow-run-history th {
position: sticky;
z-index: 1;
top: 0;
background: var(--panel-soft);
color: var(--text-strong);
}
.dataflow-run-history tbody tr:hover {
background: var(--primary-soft);
}
.dataflow-source-dialog-fields {
display: grid;
grid-template-columns: 1fr 1fr;
@@ -942,4 +1042,8 @@
.dataflow-results {
flex-basis: 220px;
}
.dataflow-run-publication-fields {
grid-template-columns: 1fr;
}
}