anentrypoint-design 0.0.288 → 0.0.289

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/app-shell.css CHANGED
@@ -1907,6 +1907,19 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
1907
1907
  background: var(--accent); border-radius: var(--r-pill);
1908
1908
  transition: width var(--dur-base) var(--ease);
1909
1909
  }
1910
+ /* Indeterminate: percent is unknown mid-transfer (fetch gives no chunk-level
1911
+ progress) — a sliding marquee bar reads as "working", not stuck at 0%. */
1912
+ .ds-upload-bar.indeterminate .ds-upload-fill {
1913
+ width: 40%; transition: none;
1914
+ animation: ds-upload-marquee 1.1s ease-in-out infinite;
1915
+ }
1916
+ @keyframes ds-upload-marquee {
1917
+ 0% { transform: translateX(-100%); }
1918
+ 100% { transform: translateX(250%); }
1919
+ }
1920
+ @media (prefers-reduced-motion: reduce) {
1921
+ .ds-upload-bar.indeterminate .ds-upload-fill { animation: none; width: 100%; opacity: 0.5; }
1922
+ }
1910
1923
  .ds-upload-pct {
1911
1924
  font-family: var(--ff-mono); font-size: var(--fs-micro);
1912
1925
  color: var(--fg-3); text-align: right;
package/dist/247420.css CHANGED
@@ -2423,6 +2423,19 @@
2423
2423
  background: var(--accent); border-radius: var(--r-pill);
2424
2424
  transition: width var(--dur-base) var(--ease);
2425
2425
  }
2426
+ /* Indeterminate: percent is unknown mid-transfer (fetch gives no chunk-level
2427
+ progress) — a sliding marquee bar reads as "working", not stuck at 0%. */
2428
+ .ds-247420 .ds-upload-bar.indeterminate .ds-upload-fill {
2429
+ width: 40%; transition: none;
2430
+ animation: ds-upload-marquee 1.1s ease-in-out infinite;
2431
+ }
2432
+ @keyframes ds-upload-marquee {
2433
+ 0% { transform: translateX(-100%); }
2434
+ 100% { transform: translateX(250%); }
2435
+ }
2436
+ @media (prefers-reduced-motion: reduce) {
2437
+ .ds-247420 .ds-upload-bar.indeterminate .ds-upload-fill { animation: none; width: 100%; opacity: 0.5; }
2438
+ }
2426
2439
  .ds-247420 .ds-upload-pct {
2427
2440
  font-family: var(--ff-mono); font-size: var(--fs-micro);
2428
2441
  color: var(--fg-3); text-align: right;