Alban Mouton

Results 210 comments of Alban Mouton

Not possible for now, you will need to apply the modification yourself. But that would be a nice addition to the current functionalities, I will think about it.

I don't think v-model modifiers can be used in render functions (not templates). I think it would have to be implemented entirely by vjsf, something like a set of standard...

If think I would aim for something a little more generic similar to vuejs modifiers. Something like `x-modifiers=["trim", "uppercase"]`.

Ah yes, sorry I missed this regression. In order to support more cases vjsf defines the selection slot of the v-select component. Therefore some standard props are ignored. I don't...

Doesn't it already work with option fieldProps: {persistentPlaceholder: true} ?

``` schema: { "type": "object", "properties": { "stringProp": { "x-props": {"persistentPlaceholder": true}, "type": "string", "title": "I'm a string", "description": "This description is used as a help message.", }, } },...

Clearable is removed if the field is required, maybe you can use that. The prepend icon cannot be removed for now.

Required comes from the json schema, I suppose you could change the schema dynamically.

Actually it is possiblle to remove the prepend icon, with options={ icons: { calendar: null, clock: null } }

This is not the normal behavior. The ["initialValidation" option](https://koumoul-dev.github.io/vuetify-jsonschema-form/latest/configuration) controls this. As you can see with [this example](https://koumoul-dev.github.io/vuetify-jsonschema-form/latest/examples#validation-basic) the only properties with error displayed right away are those with predefined...