-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
48 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,36 @@ | ||
# Ng-Matero Extensions | ||
|
||
Angular Material Extensions | ||
|
||
[![npm](https://img.shields.io/npm/v/@ng-matero/extensions.svg?style=flat-square)](https://www.npmjs.com/package/@ng-matero/extensions) | ||
[![GitHub Release Date](https://img.shields.io/github/release-date/ng-matero/extensions?style=flat-square)](https://github.com/ng-matero/extensions/releases) | ||
[![license](https://img.shields.io/github/license/mashape/apistatus.svg?style=flat-square)](https://github.com/ng-matero/extensions/blob/dev/LICENSE) | ||
[![Gitter](https://img.shields.io/gitter/room/ng-matero/extensions.svg?style=flat-square)](https://gitter.im/matero-io/extensions) | ||
|
||
## Installation | ||
|
||
The Ng-Matero Extensions is just a extended library of Angular Material, so you need install the Angular Material first and setup it. [Learn more about setup](https://material.angular.io/guide/getting-started). | ||
|
||
Install the Extensions library: | ||
|
||
```bash | ||
$ npm install @ng-matero/extensions --save | ||
``` | ||
|
||
Once installed you need to import the main module: | ||
|
||
```ts | ||
import { MaterialExtensionsModule } from '@ng-matero/extensions'; | ||
|
||
@NgModule({ | ||
... | ||
imports: [MaterialExtensionsModule, ...], | ||
... | ||
}) | ||
export class YourAppModule { | ||
} | ||
``` | ||
|
||
## License | ||
|
||
MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ng-matero/extensions", | ||
"version": "0.9.0", | ||
"version": "0.9.1", | ||
"description": "Angular Material Extensions", | ||
"author": "nzbin<[email protected]>", | ||
"repository": { | ||
|
@@ -9,11 +9,20 @@ | |
}, | ||
"keywords": [ | ||
"angular", | ||
"angular material", | ||
"angular components", | ||
"angular material extensions", | ||
"angular admin", | ||
"ng-matero" | ||
"angular-material", | ||
"angular-components", | ||
"angular-material-extensions", | ||
"angular-admin", | ||
"ng-matero", | ||
"color-picker", | ||
"ngx-color", | ||
"ngx-color-picker", | ||
"material-color-picker", | ||
"ng-select", | ||
"typeahead", | ||
"autocomplete", | ||
"data-grid", | ||
"ngx-data-grid" | ||
], | ||
"license": "MIT", | ||
"bugs": { | ||
|