@riboseinc/anafero-cli 0.0.56 → 0.0.58
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/CLI.tsx +4 -1
- package/bootstrap.css +11 -6
- package/bootstrap.css.map +2 -2
- package/bootstrap.js +62 -28
- package/bootstrap.js.map +4 -4
- package/build-site.css +11 -6
- package/build-site.mjs +99 -76
- package/package.json +1 -1
package/CLI.tsx
CHANGED
|
@@ -144,13 +144,16 @@ const Tasks: React.FC<{ tasks: Tasks }> = function ({ tasks }) {
|
|
|
144
144
|
const TaskTree: React.FC<{ task: string } & Task> =
|
|
145
145
|
function ({ task, progress, error, subtasks }) {
|
|
146
146
|
const hasProgressEstimate = progress && progress.total !== undefined && progress.done !== undefined;
|
|
147
|
+
const progressLabel = hasProgressEstimate
|
|
148
|
+
? `${task}: ${progress.done} of ${progress.total}`
|
|
149
|
+
: task;
|
|
147
150
|
return (
|
|
148
151
|
<Box flexDirection="column">
|
|
149
152
|
<Box height={hasProgressEstimate ? 2 : 1} flexDirection="column">
|
|
150
153
|
{progress
|
|
151
154
|
? <>
|
|
152
155
|
<Box height={1} gap={2} flexGrow={0}>
|
|
153
|
-
<Spinner label={
|
|
156
|
+
<Spinner label={progressLabel} />
|
|
154
157
|
<Box flexGrow={0}>
|
|
155
158
|
<Text>{progress.state ?? 'working…'}</Text>
|
|
156
159
|
</Box>
|
package/bootstrap.css
CHANGED
|
@@ -31820,7 +31820,7 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
|
|
|
31820
31820
|
background-color: #f06;
|
|
31821
31821
|
color: white;
|
|
31822
31822
|
}
|
|
31823
|
-
padding: 0
|
|
31823
|
+
padding: 0;
|
|
31824
31824
|
font-size: 16px;
|
|
31825
31825
|
font-weight: 330;
|
|
31826
31826
|
overflow-x: auto;
|
|
@@ -31859,16 +31859,21 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
|
|
|
31859
31859
|
}
|
|
31860
31860
|
}
|
|
31861
31861
|
.style_resourceBreadcrumbsNav {
|
|
31862
|
-
margin: 0
|
|
31862
|
+
margin: 0;
|
|
31863
|
+
padding: 0.5em 2em 0 2em;
|
|
31863
31864
|
list-style: none;
|
|
31864
|
-
|
|
31865
|
-
|
|
31865
|
+
background-image:
|
|
31866
|
+
linear-gradient(
|
|
31867
|
+
178deg,
|
|
31868
|
+
transparent,
|
|
31869
|
+
var(--spectrum-alias-highlight-hover) 2rem);
|
|
31870
|
+
color: var(--spectrum-accent-color-1300);
|
|
31866
31871
|
> li {
|
|
31867
31872
|
display: inline-block;
|
|
31868
31873
|
> a {
|
|
31869
31874
|
&:link,
|
|
31870
31875
|
&:visited {
|
|
31871
|
-
color: var(--spectrum-
|
|
31876
|
+
color: var(--spectrum-accent-color-1300);
|
|
31872
31877
|
text-decoration: none;
|
|
31873
31878
|
}
|
|
31874
31879
|
&:hover {
|
|
@@ -31876,7 +31881,7 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
|
|
|
31876
31881
|
}
|
|
31877
31882
|
}
|
|
31878
31883
|
&:first-child {
|
|
31879
|
-
font-weight:
|
|
31884
|
+
font-weight: bold;
|
|
31880
31885
|
}
|
|
31881
31886
|
&::after {
|
|
31882
31887
|
margin: 0 0.5em;
|