@riboseinc/anafero-cli 0.0.57 → 0.0.59

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 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={task} />
156
+ <Spinner label={progressLabel} />
154
157
  <Box flexGrow={0}>
155
158
  <Text>{progress.state ?? 'working…'}</Text>
156
159
  </Box>
package/bootstrap.css CHANGED
@@ -31748,13 +31748,13 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
31748
31748
  @media (prefers-color-scheme: light) {
31749
31749
  & {
31750
31750
  color-scheme: light;
31751
- background: rgb(230, 230, 230);
31751
+ background: rgb(213, 213, 213);
31752
31752
  }
31753
31753
  }
31754
31754
  @media (prefers-color-scheme: dark) {
31755
31755
  & {
31756
31756
  color-scheme: dark;
31757
- background: rgb(48, 48, 48);
31757
+ background: rgb(0, 0, 0);
31758
31758
  }
31759
31759
  }
31760
31760
  }
@@ -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 2em 2em;
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.5em 0;
31862
+ margin: 0;
31863
+ padding: 0.5em 2em 0 2em;
31863
31864
  list-style: none;
31864
- padding: 0;
31865
- color: var(--spectrum-alias-text-color-disabled);
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-alias-text-color-disabled);
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: 400;
31884
+ font-weight: bold;
31880
31885
  }
31881
31886
  &::after {
31882
31887
  margin: 0 0.5em;
@@ -31887,6 +31892,11 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
31887
31892
  }
31888
31893
  .style_navListView {
31889
31894
  background: var(--spectrum-alias-background-color-default);
31895
+ background-image:
31896
+ linear-gradient(
31897
+ 100deg,
31898
+ var(--spectrum-alias-background-color-default) 20%,
31899
+ var(--spectrum-alias-pasteboard-background-color) 180%);
31890
31900
  border: none;
31891
31901
  border-radius: 0;
31892
31902
  .style_navListViewItemWithLink {
@@ -31911,9 +31921,22 @@ tbody.hm005a_spectrum-Table-body .hm005a_spectrum-Table-row:last-child .hm005a_s
31911
31921
  width: 58px;
31912
31922
  display: flex;
31913
31923
  flex-flow: column nowrap;
31914
- background-color: var(--spectrum-alias-background-color-disabled);
31924
+ background-color: var(--spectrum-alias-pasteboard-background-color);
31925
+ background-image:
31926
+ linear-gradient(
31927
+ 91deg,
31928
+ var(--spectrum-alias-background-color-disabled) 10%,
31929
+ transparent 70%);
31915
31930
  color: var(--spectrum-alias-text-color);
31916
31931
  z-index: 22;
31932
+ &.style_browserBarExpanded {
31933
+ background-color: var(--spectrum-alias-background-color-default);
31934
+ background-image:
31935
+ linear-gradient(
31936
+ 91deg,
31937
+ var(--spectrum-alias-background-color-disabled) 10%,
31938
+ transparent 70%);
31939
+ }
31917
31940
  .style_browserBarTitle {
31918
31941
  flex: 1;
31919
31942
  overflow: hidden;