JSPM

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

Bootstrap UI package for NG Dynamic Forms

Package Exports

  • @ss-dynamic-forms/ui-bootstrap

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 (@ss-dynamic-forms/ui-bootstrap) 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 Bootstrap UI

Installation

npm i @ss-dynamic-forms/ui-bootstrap -S

Import

@NgModule({

    imports: [DynamicFormsBootstrapUIModule]
})

export class AppModule {}

Usage

with DynamicBootstrapFormComponent:

<form [formGroup]="myFormGroup">

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

with DynamicBootstrapFormControlComponent:

<form [formGroup]="myFormGroup">

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

Form Controls

| Control | Model | Required Property | |:------------------------------------------------------------------------: |:---------------------------: |:-----------------: | | Checkbox | DynamicCheckboxModel | – | | Checkbox Group | DynamicCheckboxGroupModel | – | | Datepicker | DynamicDatePickerModel | – | | Input | DynamicInputModel | – | | Radio Group | DynamicRadioGroupModel | – | | Select | DynamicSelectModel | – | | TextArea | DynamicTextAreaModel | – | | Timepicker | DynamicTimePickerModel | – |

Resources