Alban Mouton
Alban Mouton
Ah yes, I forgot. See [here](https://koumoul-dev.github.io/vuetify-jsonschema-form/latest/configuration), the default for textareaProps is {filled: true}, you can overwrite the props with filled=false to cancel this.
Yes, that is something that needs improvement. For now you can have a look [here](https://github.com/koumoul-dev/vuetify-jsonschema-form/blob/master/lib/mixins/Tooltip.js#L14) and maybe recreate the same functionality inside your widgets.
See [here](https://koumoul-dev.github.io/vuetify-jsonschema-form/latest/examples#read-only). You can either set readOnly=true at the top of your schema or use disableAll option. I didn't know about the readonly prop on v-form, I will try to...
Sure, looks quite easy. But I can't say when unfortunately.
Maybe input-child is better for your use-case ? https://github.com/koumoul-dev/vuetify-jsonschema-form/blob/master/lib/VJsfNoDeps.js#L397
I considered doing that, but if I remember correctly I did not go in this direction mainly for these reasons: - making ajv required for too many use-cases bothers me,...
Your schema declares a type string but the enum contains objects, this is not a valid json schema. To handle displaying a label associated to the value but only storing...
You sort of reversed the problem. Your oneOf has numbers in the const property, meaning that it should be inside a property with type number, here the property has type...
Yes, that's it.
I don't understand, [this example](https://codepen.io/albanm/pen/WNjOdZL?editors=101) looks like it is working fine.