JSPM

  • Created
  • Published
  • Downloads 13
  • Score
    100M100P100Q85976F
  • License ISC

Material UI package for ng2 Dynamic Forms

Package Exports

  • @ng2-dynamic-forms/ui-material

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@ng2-dynamic-forms/ui-material) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

#ng2 Dynamic Forms Material UI

Usage

Please import all @angular2-material NgModules in your app root NgModule:

@NgModule({

    imports: [
        BrowserModule,
        FormsModule,
        ReactiveFormsModule,
        RouterModule,
        appRouting,
        DynamicFormsMaterialUIModule,
        MdButtonModule.forRoot(),
        MdCheckboxModule.forRoot(),
        MdInputModule.forRoot(),
        MdRadioModule.forRoot(),
    ],
    declarations: [
        //...
    ],
    providers: [
        //...
    ],
    bootstrap: [AppComponent]
})

export class AppModule {}