1.0.4 • Published 7 years ago

contact-manage v1.0.4

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

contact-manage

Bootstrap 4 / Angular based add/edit form for contacts

travis ci npm version

Coverage Report

Documentation

Demo

Installation

npm install contact-manage - install package

Usage

import {ContactManageModule} from 'contact-manage';

@NgModule({
  imports: [
    ContactManageModule
  ]
})
export class AppModule {
}

And use in template:

<app-contact-add></app-contact-add>

<app-contact-edit
        [backUrl]="['/']"
        [contactId]="id"
></app-contact-edit>

Or in routing:

const routes: Routes = [
  {path: 'add', component: ContactAddComponent}
  {path: 'edit/:id', component: ContactEditComponent}
];

As a result you should see the page with contact form in add or edit mode

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago