JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q78182F
  • License ISC

Material UI package for NG Dynamic Forms

Package Exports

  • @ng-dynamic-forms2/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 (@ng-dynamic-forms2/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

NG Dynamic Forms Material UI

Installation

npm i @ng-dynamic-forms/ui-material -S

Import

@NgModule({

    imports: [DynamicFormsMaterialUIModule]
})

export class AppModule {}

Usage

with DynamicMaterialFormComponent:

<form [formGroup]="myFormGroup">

    <dynamic-material-form [group]="myFormGroup"
                           [model]="myFormModel"></dynamic-material-form>
</form>

with DynamicMaterialFormControlComponent:

<form [formGroup]="myFormGroup">

    <dynamic-material-form-control *ngFor="let controlModel of myFormModel"
                                   [group]="myFormGroup"
                                   [model]="controlModel"></dynamic-material-form-control>
</form>

Form Controls

| Control | Model | Required Property | |:---------------------------------------------------------------------------------: |:---------------------------: |:-----------------: | | Autocomplete | DynamicInputModel | list | | Checkbox | DynamicCheckboxModel | – | | Checkbox Group | DynamicCheckboxGroupModel | – | | Chips | DynamicInputModel | multiple: true | | Datepicker | DynamicDatePickerModel | – | | Input | DynamicInputModel | – | | Radio Group | DynamicRadioGroupModel | – | | Select | DynamicSelectModel | – | | Slider | DynamicSliderModel | – | | SlideToggle | DynamicSwitchModel | – | | Textarea | DynamicTextAreaModel | – |

Custom UI Events

<form [formGroup]="myFormGroup">

    <dynamic-material-form [group]="myFormGroup"
                           [model]="myFormModel"
                           (matEvent)="onMatEvent($event)"></dynamic-material-form>
</form>

Resources