0.1.8 • Published 8 years ago

md-input-inline v0.1.8

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

md-input-inline

Build Status Typescript Version Angular Version Angular Material Version NPM Version License

A custom input field that allows inline editing of the md-input field from Angular Material 2. This module requires Angular Material design 2 to run.

How to use

npm install --save md-input-inline

Import MdInputInlineModule from md-input-inline and add to your App Module imports.

…
import { MaterialModule } from '@angular/material';

import { AppComponent } from './app.component';
import { MdInputInlineModule } from 'md-input-inline';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    MdInputInlineModule,
    MaterialModule.forRoot()
  ],
  …

The component is used as a tag like so:

<md-input-inline label="Full name" [(ngModel)]="user.name" name="user.name">
</md-input-inline>

Preview

Here's a screenshot of how the module looks.

Editing the Phone number

Editing

Viewing the Phone number

Editing