# illyria-ui-table

> A customizable table component library for Angular

Latest version **1.0.0** (published 2023-10-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install illyria-ui-table
pnpm add illyria-ui-table
yarn add illyria-ui-table
bun add illyria-ui-table
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2023-10-09 |
| First published | 2023-10-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 39.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | slika25 |
| Keywords | angular, table, datatable, component, library |

## Links

- npm: https://www.npmjs.com/package/illyria-ui-table
- Repository: https://github.com/illyria/illyria-ui-table
- Homepage: https://github.com/illyria/illyria-ui-table#readme
- Issues: https://github.com/illyria/illyria-ui-table/issues
- npm.io page: https://npm.io/package/illyria-ui-table

## Dependencies (1)

- [tslib](https://npm.io/package/tslib.md) ^2.3.0

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2023-10-09

## README

# Illyria UI Table
[![npm](https://img.shields.io/npm/v/illyria-ui-table)](https://www.npmjs.com/package/illyria-ui-table)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

Illyria UI Table is a customizable table component library for Angular.

## Installation

```bash
npm install illyria-ui-table
```

## Usage
### Import Module

Import the TableModule in your Angular application:
```typescript
import { TableModule } from 'illyria-ui-table';

@NgModule({
  imports: [TableModule],
  // ...
})
export class YourModule { }
```

### Use the Table Component
```html
<ui-table [columns]="columns" [data]="data"></ui-table>
```
### Configuration
- `columns`: An array of column configurations.
- `data`: An array of data to display in the table.

```typescript
const columns = [
  { header: 'Name', field: 'name' },
  { header: 'Age', field: 'age' }
];

const data = [
  { name: 'John Doe', age: 30 },
  { name: 'Jane Smith', age: 25 }
];
```
### License
This project is licensed under the MIT License - see the `LICENSE` file for details.

### Contributing

```
If you'd like to contribute, please fork the repository and create a pull request. You can also open an issue if you find a bug or have a feature request.
```

---
_Source: https://npm.io/package/illyria-ui-table · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
