Ownable Install
Install Checkbox 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 checkboxnpx
npx tailng add checkboxGenerated files
The command scaffolds local files under src/app/tailng-ui/checkbox.
src/app/tailng-ui/checkbox/tng-checkbox-primitive.tssrc/app/tailng-ui/checkbox/tng-checkbox.tssrc/app/tailng-ui/checkbox/tng-checkbox.htmlsrc/app/tailng-ui/checkbox/tng-checkbox.csssrc/app/tailng-ui/checkbox/index.ts
Import in your feature module/component
Imports
import { TngCheckbox, TngCheckboxPrimitive } from './tailng-ui/checkbox';
Usage
Template usage
<tng-checkbox
[checked]="releaseReady"
(checkedChange)="releaseReady = $event"
>
Release checklist complete
</tng-checkbox>