Open
Description
Currently when a schema has prefix items like below, formly doesn't render any fields for these.
Will there be support for this soon? Or is there any kind of work around currently.
{
"type": "array",
"prefixItems": [
{ "type": "number" },
{ "type": "string" },
{ "enum": ["Street", "Avenue", "Boulevard"] },
{ "enum": ["NW", "NE", "SW", "SE"] }
]
}