angular-dev-utils
v1.0.2
Published
Modern Angular UI component library with Tailwind CSS styling
Downloads
172
Maintainers
Readme
Angular Dev Utils
Modern Angular component library with standalone components and Tailwind CSS.
Installation
npm install hopesf-angular-dev-utilsNo authentication or tokens required!
Quick Start
Import components directly in your standalone components:
import { Component } from "@angular/core";
import { ButtonComponent, CardComponent, InputComponent } from "hopesf-angular-dev-utils";
@Component({
selector: "app-example",
standalone: true,
imports: [ButtonComponent, CardComponent, InputComponent],
template: `
<adu-card>
<adu-input label="Name" [(ngModel)]="name"></adu-input>
<adu-button variant="primary" (clicked)="submit()">Submit</adu-button>
</adu-card>
`,
})
export class ExampleComponent {
name = "";
submit() {
console.log("Name:", this.name);
}
}Documentation
For full documentation, visit the main README.
Components
- Button - Customizable button with variants and loading states
- Input - Form-ready input with validation
- Card - Container with header/footer sections
- Modal - Dialog with service and component modes
- Table - Data table with sorting and pagination
- Spinner - Loading indicator with overlay option
License
MIT
