schemas updated
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-07-23 20:32:50 +00:00
parent c0c3b2b593
commit 5d6fc43f44
3 changed files with 533 additions and 0 deletions

View File

@@ -231,6 +231,17 @@
{ "type": "string" },
{
"$ref": "definitions.json#/definitions/evalObjectWithRaw"
},
{
"type": "object",
"properties": {
"defaultCollectionViews": {
"type": "boolean"
}
},
"required": [
"defaultCollectionViews"
]
}
]
}
@@ -475,6 +486,106 @@
}
]
},
"containerProps": {
"type": "object",
"properties": {
"class": {
"type": "string"
},
"layout": {
"type": "object",
"properties": {
"breakBefore": {
"type": "boolean"
},
"breakAfter": {
"type": "boolean"
},
"size": {
"type": "object",
"properties": {
"default": {
"type": "string"
},
"small": {
"type": "string"
},
"large": {
"type": "string"
}
}
}
}
}
}
},
"inputProps": {
"type": "object",
"additionalProperties": true
},
"metaElements": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "array",
"items": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
{
"type": "object",
"properties": {
"tablist": {
"type": "object",
"properties": {
"tabs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"label": {
"type": "string"
},
"subFields": {
"type": "array",
"items": {
"type": "object",
"properties": {
"source": {
"type": "string"
}
},
"required": [
"source"
]
}
}
},
"required": [
"name",
"label",
"subFields"
]
}
}
},
"required": ["tabs"]
}
}
}
]
},
"defaultValue": {
"description": "default value or code to get the value",
"oneOf": [