@riboseinc/anafero-cli 0.0.36 → 0.0.37
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/bootstrap.js +433 -422
- package/bootstrap.js.map +4 -4
- package/build-site.mjs +7 -1
- package/package.json +1 -1
- package/riboseinc-anafero-cli-0.0.37.tgz +0 -0
- package/riboseinc-anafero-cli-0.0.36.tgz +0 -0
package/build-site.mjs
CHANGED
|
@@ -316121,7 +316121,13 @@ var BrowserBar = function({
|
|
|
316121
316121
|
{
|
|
316122
316122
|
"aria-label": "Loading\u2026",
|
|
316123
316123
|
minValue: 0,
|
|
316124
|
-
isIndeterminate:
|
|
316124
|
+
isIndeterminate: (
|
|
316125
|
+
// Set to indeterminate if:
|
|
316126
|
+
// No total:
|
|
316127
|
+
!loadProgress.total || // Stuck in almost ending:
|
|
316128
|
+
loadProgress.total - 0.1 < loadProgress.done || // Stuck in just beginning:
|
|
316129
|
+
loadProgress.total - loadProgress.done < 0.1
|
|
316130
|
+
),
|
|
316125
316131
|
maxValue: loadProgress.total,
|
|
316126
316132
|
value: loadProgress.done
|
|
316127
316133
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|