Ng Zorro wrapper for Json Forms library
npm install @wojtek1150/jsonforms-zorro-wrapperhttps://github.com/wojtek1150/json-forms-zorro-wrapper/releases
See documentation at Plugion homepage
For JsonSchema documentation check jsonforms core package
For UI docs, see the documentation on ngzorro website.
This plugin requires the following dependencies:
```
"angular": "19",
"ng-zorro-antd": "19",
"ngx-quill": "27"
They should be installed automatically as they are peer dependencies. However, if for some reason you are using legacy-peer-deps = true you need to add them to the package.json manually
``
npm install @wojtek1150/jsonforms-zorro-wrapper
Simply import JsonFormsZorroModule into your project
`typescript
import { JsonFormsZorroModule } from '@wojtek1150/jsonforms-zorro-wrapper';
@NgModule({
imports: [JsonFormsZorroModule],
})
`
If you are using DateField, remember to add your locale for ng-zorro as module providers, for example:
`
import { en_US, NZ_I18N } from 'ng-zorro-antd/i18n';
@NgModule({
providers: [{ provide: NZ_I18N, useValue: en_US }],
imports: [JsonFormsZorroModule],
})
``