guillotinaweb / ngx-schema-form

HTML form generation based on JSON Schema
MIT License
485 stars 174 forks source link

Add support for Angular 14 #439

Open davidstrahm opened 2 years ago

davidstrahm commented 2 years ago

Some peer dependencies are not working anymore with npm 8. As a temporary workaround, add this to your package.json

"ngx-schema-form": {
            "@angular/common": "^14.0.0",
            "@angular/core": "^14.0.0",
            "@angular/forms": "^14.0.2",
            "@angular/platform-browser": "^14.0.0"
        }
iamtomcat commented 2 years ago

Now all you need to add is:

  "overrides": {
    "ngx-schema-form": {
      "rxjs": "^7.4.0"
    }
  },
MAnonInfinity commented 1 year ago

The current RxJs version I have is 7.4, would it be possible to upgrade to 7.5 with it still working?