You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added
ProgressIndicator UIElement — new ComposableScreen element rendering a linear or circular progress display bound to an int variable (0–100). Schema (ProgressIndicatorElementPropsSchema) and type (ProgressIndicatorElementProps, ProgressEasing) exported from the headless package and added to the UIElement union. Props (all optional, plus BaseBoxProps): variant ("linear" | "circular"), variableName (bound int variable — written each frame during autoplay, read otherwise), value (static 0–100), autoplay, loop, initialValue (0–100), duration (ms), delay (ms before the animation starts), easing ("linear" | "ease-in" | "ease-out" | "ease-in-out"), color, trackColor, thickness, size, showLabel, labelColor.