🔧 chore(schemas): update collectionNavigation.json and fieldMeta.json schemas
All checks were successful
continuous-integration/drone/push Build is passing

🔀 Merge branch 'feature/schema-update' into 'master'
The collectionNavigation.json schema was updated to include a new enum value "MANUALLY" for the "order" property in the "defaultSort" object. This allows for manual sorting of items in the admin UI lists. The fieldMeta.json schema was updated to include new properties and definitions related to folding configuration for array fields, hiding field widgets, direction of fields, path steps, and meta elements. These updates enhance the flexibility and customization options for the field widgets in the application.
This commit is contained in:
2023-08-06 09:31:19 +00:00
parent 7e01225447
commit 791ef2639c
2 changed files with 163 additions and 92 deletions

View File

@@ -71,7 +71,7 @@
},
"required": ["fields"]
},
"defaultSort": {
"type": "object",
"description": "default sort in admin ui lists",
@@ -82,7 +82,7 @@
},
"order": {
"description": "sort order",
"enum": ["ASC", "DESC"]
"enum": ["ASC", "DESC", "MANUALLY"]
}
}
},
@@ -146,8 +146,9 @@
{
"properties": {
"type": {
"const": "simpleList"
"enum": ["simpleList", "dashboardSimpleList"]
},
"primaryText": {
"oneOf": [
{
@@ -184,7 +185,7 @@
{
"properties": {
"type": {
"const": "table"
"enum": ["table", "dashboardTable"]
},
"columns": {
"type": "array",