0.0.7 • Published 7 years ago

ngx-terra-dynamic-form v0.0.7

Weekly downloads
1
License
MIT
Repository
bitbucket
Last release
7 years ago

ngx-terra-dynamic-form

Installation

N.B This NGX-DYNAMIC-FORMis the version being supported now To install this library, run:

$ npm install ngx-terra-dynamic-form --save

Consuming your library

You can import your library in any Angular application by running:

$ npm install ngx-terra-dynamic-form

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import your library
import { DynamicFormModule } from 'ngx-terra-dynamic-form';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    DynamicFormModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Once your library is imported, you can use its components in your Angular application:

<!-- You can now use your library component in app.component.html -->
<h1>
  {{title}}
</h1>
 <dynamic-form #dynamicFormName='dynamicForm' [config]='dynamicFormConfig' (submit)='searchModel = doSomethingCool($event)'></dynamic-form>

Development

To generate all *.js, *.d.ts and *.metadata.json files:

$ npm run build

To lint all *.ts files:

$ npm run lint

License

© Terragon Tech

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago