Back to Tuist

ProgressBar

noora/docs/components/progressbar.md

4.204.02.2 KB
Original Source
<!-- Generated by scripts/generate-web-components.js. Do not edit directly. -->

ProgressBar

Visualizes progress toward a maximum value.

html
<noora-progress-bar value="75" max="100" title="Upload progress"></noora-progress-bar>

Attributes

AttributeType or allowed valuesDefaultDescription
valuenumber0Sets the current value.
maxnumber100Sets the maximum value.
titlestringNoneSets the optional title.

Slots

SlotDescription
descriptionSupporting content below the bar.

Styling parts

PartDescription
progressThe progress container.
trackThe complete track.
valueThe filled track.

Basic progress

Show progress with or without a title.

html
<noora-progress-bar value="75" max="100"></noora-progress-bar>
<noora-progress-bar value="150" max="200" title="Storage Used:"></noora-progress-bar>

Progress levels

Compare empty, quarter, half, three-quarter, and complete states.

html
<noora-progress-bar value="0" max="100" title="Not started"></noora-progress-bar>
<noora-progress-bar value="25" max="100" title="25% Complete"></noora-progress-bar>
<noora-progress-bar value="50" max="100" title="Halfway there"></noora-progress-bar>
<noora-progress-bar value="75" max="100" title="Almost done"></noora-progress-bar>
<noora-progress-bar value="100" max="100" title="Complete!"></noora-progress-bar>

Different scales

Use any numeric range that suits the measured quantity.

html
<noora-progress-bar value="3" max="5" title="Steps completed:"></noora-progress-bar>
<noora-progress-bar value="750" max="1000" title="Points earned:"></noora-progress-bar>
<noora-progress-bar value="847" max="1024" title="Download progress (MB):"></noora-progress-bar>

Edge cases

Show overflowing, very small, and long-title progress values.

html
<noora-progress-bar value="120" max="100" title="Exceeded goal:"></noora-progress-bar>
<noora-progress-bar value="1" max="1000" title="Just started:"></noora-progress-bar>
<noora-progress-bar value="42" max="100" title="Very Long Progress Bar Title That Might Wrap:"></noora-progress-bar>