Ownable Install
Install Popover 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 popovernpx
npx tailng add popoverGenerated files
The command scaffolds local files under src/app/tailng-ui/popover.
src/app/tailng-ui/popover/tng-popover-primitive.tssrc/app/tailng-ui/popover/tng-popover.tssrc/app/tailng-ui/popover/tng-popover.htmlsrc/app/tailng-ui/popover/tng-popover.csssrc/app/tailng-ui/popover/index.ts
Import in your feature module/component
Imports
import { TngPopover } from './tailng-ui/popover';
Usage
Template usage
<tng-popover triggerLabel="Project actions">
<p>Popover body content.</p>
<button type="button">Apply</button>
</tng-popover>