Lily
Lily
Just wanted to share some related PR #217 where some resourses and discussion was collected. #397 issue was closed before #217 was merged and perhaps could be reopened.
One of the items in the todo list accessible-emoji, has now been deprecated in the eslint plugin. There's discussion of why in this pull request https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/issues/627
@Prabhakar-17 I think the reason I don't like that idea is there are different contexts where people need to take a different approach. For example - I've built software for...
I like the look of ajv-pack, this is also related to a potential performance enhancement discussed here. Pre-complilation is great because avoids a penalty for doing this at runtime which...
An inital test suggests more compatibility work would be required to use ajv-pack. I used the validate function created by dispatching init action ``` import validate from "../validate_schema.js" store.dispatch(Actions.init(defaultData, schema,...
Okay first issue is fixed by compling schema with --all-errors flag ``` ajv compile -s schema/Formulary/SchemaFlat.json -o validate_schema.js --all-errors ```
My issue was caused by not compiling schema with correct flags. I added `error-data-path` ``` ajv compile -s schema/Formulary/SchemaFlat.json -o validate_schema.js --all-errors --error-data-path=property ``` Here's a little script based off...
Hi, are you able to update the JSON Schema you are using? An alternative to this deeply nested reference would be to use `$ref` this way your UISchema can reference...
Hi @jondoe1337 This is a related issue https://github.com/eclipsesource/jsonforms/issues/1476 and some discussion about cyclic refs. https://github.com/eclipsesource/jsonforms/pull/1474#issuecomment-522529303 Also which version of JSON Forms are you using? I think this error is caused...
I'd try v2.3.0 to avoid that error, but be aware of Stefan's comment https://github.com/eclipsesource/jsonforms/pull/1474#issuecomment-522529303 this may be an issue depending on your use case.