Daniele Pecora
Daniele Pecora
@AviFix I would guess that `widget.ts` could be a good start (just guessing)
Jexl ES5 support pull request is already there: https://github.com/TomFrost/Jexl/issues/57 A Proxy polyfill is also provided by Google: https://github.com/GoogleChrome/proxy-polyfill The traps provided by this polyfill are sufficient.
Jexl ES5 support pull request has been merged and released as version 2.3.0 https://github.com/TomFrost/Jexl#57 https://github.com/TomFrost/Jexl/pull/87 @Jcomper, @akshaygolash To build for IE11 1. install the latest version of Jexl `npm install...
Hi @rodrigo-vizbelis could you try this version I build here: [ngx-schema-form-2.5.7-beta.1.tgz.zip](https://github.com/guillotinaweb/ngx-schema-form/files/5294670/ngx-schema-form-2.5.7-beta.1.tgz.zip) Just extract the ZIP file somewhere and install via path like `$ npm install ./myfolder/ngx-schema-form-2.5.7-beta.1.tgz`
@rodrigo-vizbelis The [GoogleChrome/proxy-polyfill](https://github.com/GoogleChrome/proxy-polyfill/blob/master/src/proxy.js) does make the wrapped object immutable by calling `Object.seal(...)` on them. That is why adding new properties wont work here. As I see there is another proxy...
A [working example on Stackblitz (click)](https://stackblitz.com/edit/angular-ivy-uxq4oy?file=src/app/test-schema.json) for your schema: ```json { "type": "object", "properties": { "selectField": { "type": "string", "widget": "select", "oneOf": [ { "enum": ["0"], "description": "Zero" }, {...
It may help calling `reset(...)` after adding new items to the schema. Could you create an example on https://stackblitz.com/
The property `properties` is required for any json property of type `object`
Currently only an exact value and `$ANY` are supported. In consequence this would require to create up to 400 comparison statements in your `visibleIf` property. I agree with you that...
I have taken action into this with commit a1bcc9c . With this pull request the comes the support for expression in the `visibleIf` condition. See also [README.MD](https://github.com/guillotinaweb/ngx-schema-form/blob/master/README.md#conditional-fields)