dashjoin / json-schema-form

Angular JSON Schema Form Library
https://dashjoin.github.io/
Apache License 2.0
86 stars 27 forks source link

More flexible tab layout #148

Open aeberhart opened 2 years ago

aeberhart commented 2 years ago

The tab layout currently allows showing array elements in tabs:

{
  "type": "array",
  "layout": "tab",
  "title": "test",
  "items": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string"
      },
      "version": {
        "type": "number"
      }
    }
  }
}

produces

image

This raises the following questions and issues: