4.17.3 • Published 7 months ago

@themost/form-renderer v4.17.3

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
7 months ago

@themost/form-renderer

Form renderer component wrapper for angular@5 to angular@15 and formio.js

Usage

npm i @themost/form-renderer

Import FormRendererModule in your AppModule

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

Include formio.form.min.js in scripts section (+ formio.form.css in styles section) of angular.json

...
"architect": {
    "build": {
      ...
      "options": {
        ...
        "styles": [
          "node_modules/formiojs/dist/formio.form.css",
          "src/styles.css"
        ],
        "scripts": [
          "node_modules/formiojs/dist/formio.form.min.js"
        ]
      },

Important note: This operation is very important in order to resolve backward compatibility issues visible when you are using older versions of @angular

4.17.3

7 months ago

4.17.2

7 months ago

4.17.1

8 months ago

4.17.0

8 months ago