defaultValue, dependsOn, subNavigation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-10-18 16:48:16 +02:00
parent 5664ae00db
commit 5fccea7513
4 changed files with 194 additions and 121 deletions

View File

@@ -172,6 +172,36 @@
]
}
}
},
"dependsOn": {
"description": "depends on rule",
"oneOf": [
{ "type": "string" },
{
"type": "object",
"properties": {
"eval": {
"type": "string",
"description": "js code with $, $this, $parent and $stack variables"
}
}
}
]
},
"defaultValue": {
"description": "default value or code to get the value",
"oneOf": [
{ "type": "string" },
{
"type": "object",
"properties": {
"eval": {
"type": "string",
"description": "js code with $navigation variable"
}
}
}
]
}
}
}