Angular standalone component library with PrimeIcons support
npm install @maxter-dev/ngx-components
š Highly Flexible and Customizable Components Library for Angular
bash
npm install @maxter-dev/ngx-components
`
---
š Quick Start
$3
Example usage for the CheckboxComponent:
1. Import the component into your Angular app:
`typescript
import { Component } from '@angular/core';
import { CheckboxComponent } from '@maxter-dev/ngx-components';
@Component({
selector: 'app-root',
standalone: true,
imports: [CheckboxComponent],
template:
})
export class AppComponent {
isChecked = false;
isDisabled = false;
handleCheckboxChange(value: boolean) {
console.log('Checkbox changed:', value);
this.isChecked = value;
}
}
`
---
$3
To include the library's global styles (like buttons, typography, etc.), add the following to your styles.scss:
`scss
@import '@maxter-dev/ngx-components/assets/styles/main.scss';
`
---
š Available Components
| Component | Selector | Description |
| --------- | -------- | ----------- |
| ā
Checkbox | | Customizable checkbox component |
| ā
Dropdown | | Customizable dropdown component |
| ā
Table | | Flexible table component |
| ā
List | | Highly configurable list component |
| ā
Tabs |
⨠Developed with ā¤ļø by MaxterDev