Ownable Install
Install Progress Bar from the TailNG registry with the shadcn-like flow. This copies source files into your app so your team can own and evolve the implementation locally.
Install from registry
Run from your Angular workspace root.
pnpm
pnpm dlx tailng add progress-barnpx
npx tailng add progress-barGenerated files
The command scaffolds local files under src/app/tailng-ui/progress-bar.
src/app/tailng-ui/progress-bar/tng-progress-bar-primitive.tssrc/app/tailng-ui/progress-bar/tng-progress-bar.tssrc/app/tailng-ui/progress-bar/tng-progress-bar.htmlsrc/app/tailng-ui/progress-bar/tng-progress-bar.csssrc/app/tailng-ui/progress-bar/index.ts
Import in your feature module/component
Imports
import { TngProgressBar, TngProgressBarPrimitive, TngProgressBarIndicatorPrimitive } from './tailng-ui/progress-bar';
Usage
Template usage
<tng-progress-bar [value]="72" ariaLabel="Upload progress"></tng-progress-bar>
<tng-progress-bar [value]="92" ariaLabel="Quality checks"></tng-progress-bar>
<tng-progress-bar [indeterminate]="true" ariaLabel="Preparing release"></tng-progress-bar>