jsonforms
jsonforms copied to clipboard
Customizable JSON Schema-based forms with React, Angular and Vue support out of the box.
- Adapt algorithm to determine the fitting schema index for combinators to no longer use AJV - New heuristic uses identifying properties that should match a const value in the...
### Describe the bug When trying to use jsonforms-vue-vuetify with the latest vuetify package (3.8.0) I get an error `Error: Build failed with 1 error: node_modules/@jsonforms/vue-vuetify/lib/jsonforms-vue-vuetify.esm.js:31:29: ERROR: Could not resolve...
### Describe the bug Hi, I am trying to set a ‘type: [‘null’, ‘object’]’ for a schema item with the below code as an example: ``` schema={{ type: 'object', properties:...
### Describe the bug Let's assume that we have a form with such a schema: ```js const schema = { properties: { someObject: { type: "object", additionalProperties: { type: "string"...
### Describe the bug When using schemaMatches for an array control, it does not behave as expected in terms of resolving refs. ### Expected behavior When using schemaMatches for an...
### Describe the bug If we have: ```ts export const sampleSchema = { type: "object", title: "OAuth Providers", oneOf: [ { properties: { type: { const: "Google" }, secretKey: {...
Replaces HTML ID generation with a simple monotonic sequence to avoid several expensive hash lookups for every generated ID. This entirely eliminates the chance for collisions under regular circumstances, and...
### Describe the bug Updating data for nested property with numeric key is working kinda funny 😅 For that kind of schema: ``` { "type": "object", "properties": { "group-key": {...