An open API service indexing awesome lists of open source software.

https://github.com/michaelbazos/ui-toolkit

A library of components for your angular application
https://github.com/michaelbazos/ui-toolkit

angular2 library typescript ui-components

Last synced: 3 months ago
JSON representation

A library of components for your angular application

Awesome Lists containing this project

README

          

# ui-toolkit

A library of UI components for your Angular 2 applications. Compliant with the [Angular Package Format v4.0](https://goo.gl/AMOU5G).

## Features

- Generation to various module formats: FESM15, FESM5, UMD
- Type definitions
- Metadata for AOT compilation

## Getting started

1. Install the library

```
npm install ui-toolkit --save // --save is implicit as of npm 5.0
```

2. Import it in your application

```ts
// Import the desired module from ui-toolkit library
import { SampleModule } from 'ui-toolkit';

@NgModule({
declarations: [
AppComponent
],
imports: [
... ,

SampleModule
],
providers: [],
bootstrap: [AppComponent]
})

export class AppModule { }
```

3. Use it

```html

```

## License

MIT © [Michael Bazos](mailto:micabazos@gmail.com)