GitXplorerGitXplorer
s

angular2-material-chips

public
7 stars
1 forks
7 issues

Commits

List of commits on branch master.
Unverified
04a837aa815eeb912c1458a46d24b88488830f5c

Moving to angular4 (#8)

sshootermv committed 8 years ago
Unverified
60b9073554d5c0fa6e02d5c1060fc6c4a7f2234b

version moved to 1.0.4

sshootermv committed 8 years ago
Unverified
bbfd3aec0957bdc5dbb4b185a52054d7cf670ae7

fixing bug:tags are removed from the end

sshootermv committed 8 years ago
Unverified
25d6fb40ac32efd807e220db3a179a0ca59ab123

upgraded to 2.4.4 (#3)

sshootermv committed 8 years ago
Unverified
2498835fdc3b56471dd3621b9f551d41a8638cc0

added "@types/core-js": "0.9.35" to examples-webpack

sshootermv committed 8 years ago
Unverified
96c7ecd8c79a7968ae009ecc4e291eb755eff85a

upgrade version to 3

sshootermv committed 8 years ago

README

The README file for this repository.

angular2-material-chips

Angular 2 Material Chips Directive/Component with no dependencies required. This is a Material Chips Directive/Component for Angular 2.

Demo page

http://shootermv.github.io/angular2-material-chips/examples/index.html

Installation

npm i --save angular2-material-chips

Usage

  • Use it in your HTML elements, for example:
<material-chips [(ngModel)]="tags" ></material-chips>
  • Add in your app.component.ts:
export class AppComponent {
    tags:string[]  = ['AngularJS','Angluar2']
}
  • Add MaterialChipsModule in your app.module.ts:
import {MaterialChipsModule} from 'angular2-material-chips';

@NgModule({
    ...
    imports: [BrowserModule, MaterialChipsModule, FormsModule]
})

#Build & Test

git clone https://github.com/shootermv/angular2-material-chips.git
npm install
cd angular2-material-chips
gulp
gulp copylib 

cd examples-webpack
npm install
npm start