Skip to content

Commit

Permalink
auto-refreshed
Browse files Browse the repository at this point in the history
  • Loading branch information
BerSie committed Sep 13, 2024
1 parent ade9994 commit 35c7080
Show file tree
Hide file tree
Showing 2 changed files with 475 additions and 352 deletions.
41 changes: 41 additions & 0 deletions vocabularies/UI.json
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,47 @@
"@Core.Description": "Name of the Action on the Semantic Object. If not specified, let user choose which of the available actions to trigger."
}
},
"Grid": {
"$Kind": "Term",
"$Type": "UI.GridDefinitionType",
"$AppliesTo": ["EntityType"],
"@UI.ThingPerspective": true,
"@Core.Description": "Visualization of a data grid"
},
"GridDefinitionType": {
"$Kind": "ComplexType",
"Title": { "$Nullable": true, "@Core.Description": "Title of the grid", "@Core.IsLanguageDependent": true },
"Description": { "$Nullable": true, "@Core.Description": "Short description", "@Core.IsLanguageDependent": true },
"Columns": {
"$Collection": true,
"$Type": "UI.DataFieldGridAbstract",
"@Core.Description": "Columns of the grid"
},
"Rows": { "$Collection": true, "$Type": "UI.DataFieldGridAbstract" },
"Actions": {
"$Collection": true,
"$Type": "UI.DataFieldForActionAbstract",
"@Core.Description": "Available actions"
}
},
"DataFieldGridAbstract": {
"$Kind": "ComplexType",
"$Abstract": true,
"$BaseType": "UI.DataFieldAbstract",
"@Core.Description": "Abstract type to restrict usage in Grid"
},
"DataFieldMeasures": {
"$Kind": "ComplexType",
"$BaseType": "UI.DataFieldGridAbstract",
"@Core.Description": "A structured piece of data described by an annotation",
"Measures": { "$Collection": true, "$Type": "Edm.PropertyPath" }
},
"DataFieldDimension": {
"$Kind": "ComplexType",
"$BaseType": "UI.DataFieldGridAbstract",
"@Core.Description": "A structured piece of data described by an annotation",
"Dimensions": { "$Type": "Edm.PropertyPath" }
},
"Chart": {
"$Kind": "Term",
"$Type": "UI.ChartDefinitionType",
Expand Down
Loading

0 comments on commit 35c7080

Please sign in to comment.