@sap/ux-specification 1.84.29 → 1.84.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (196) hide show
  1. package/CHANGELOG.md +67 -4
  2. package/dist/documentation/runDocu-min.js +1 -1
  3. package/dist/documentation/styleDocu.css +7 -14
  4. package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
  5. package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
  6. package/dist/documentation/v2/v2-ListReport.html +1 -1
  7. package/dist/documentation/v2/v2-ObjectPage.html +1 -1
  8. package/dist/documentation/v2/v2-OverviewPage.html +1 -1
  9. package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
  10. package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
  11. package/dist/documentation/v4/v4-ListReport.html +1 -1
  12. package/dist/documentation/v4/v4-ObjectPage.html +1 -1
  13. package/dist/index-min.js +1 -1
  14. package/dist/schemas/v2/AnalyticalListPageConfig.json +104 -15
  15. package/dist/schemas/v2/ListReportConfig.json +106 -17
  16. package/dist/schemas/v2/ObjectPageConfig.json +89 -33
  17. package/dist/schemas/v2/OverviewPageConfig.json +13 -16
  18. package/dist/schemas/v4/AnalyticalListPageConfig.json +43 -86
  19. package/dist/schemas/v4/ListReportConfig.json +43 -86
  20. package/dist/schemas/v4/ObjectPageConfig.json +70 -109
  21. package/dist/scripts/runDocu.js +30 -7
  22. package/dist/scripts/runDocu.js.map +1 -1
  23. package/dist/scripts/to-json-schema.js +31 -37
  24. package/dist/scripts/to-json-schema.js.map +1 -1
  25. package/dist/specification/v2/index-min.js +1 -1
  26. package/dist/specification/v4/index-min.js +1 -1
  27. package/dist/src/api.js +9 -9
  28. package/dist/src/api.js.map +1 -1
  29. package/dist/src/apiTypes.d.ts +5 -2
  30. package/dist/src/specification/schemaAccess.js +1 -3
  31. package/dist/src/specification/schemaAccess.js.map +1 -1
  32. package/dist/src/specification/v2/controls/Action.d.ts +19 -2
  33. package/dist/src/specification/v2/controls/FilterBar.d.ts +42 -27
  34. package/dist/src/specification/v2/controls/Footer.d.ts +20 -0
  35. package/dist/src/specification/v2/controls/{ObjectPageFooter.js → Footer.js} +1 -1
  36. package/dist/src/specification/v2/controls/Footer.js.map +1 -0
  37. package/dist/src/specification/v2/controls/Table.d.ts +8 -1
  38. package/dist/src/specification/v2/controls/Table.js.map +1 -1
  39. package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -8
  40. package/dist/src/specification/v2/controls/index.d.ts +1 -2
  41. package/dist/src/specification/v2/controls/index.js.map +1 -1
  42. package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +2 -1
  43. package/dist/src/specification/v2/pages/ListReportConfig.d.ts +3 -2
  44. package/dist/src/specification/v2/pages/OverviewPageConfig.d.ts +32 -2
  45. package/dist/src/specification/v2/pages/OverviewPageConfig.js.map +1 -1
  46. package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +2 -2
  47. package/dist/src/specification/v4/controls/ObjectPageHeaderSection.d.ts +2 -14
  48. package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +7 -7
  49. package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +5 -6
  50. package/dist/src/specification/v4/controls/Table.d.ts +2 -7
  51. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +59 -10
  52. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js +6 -0
  53. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js.map +1 -1
  54. package/dist/src/sync/common/appProvider.js.map +1 -1
  55. package/dist/src/sync/common/decoration/control.d.ts +11 -1
  56. package/dist/src/sync/common/decoration/control.js +29 -3
  57. package/dist/src/sync/common/decoration/control.js.map +1 -1
  58. package/dist/src/sync/common/decoration/factory.js +2 -4
  59. package/dist/src/sync/common/decoration/factory.js.map +1 -1
  60. package/dist/src/sync/common/generate/objectPage.d.ts +9 -0
  61. package/dist/src/sync/common/generate/objectPage.js +89 -43
  62. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  63. package/dist/src/sync/common/generate/utils.d.ts +33 -0
  64. package/dist/src/sync/common/generate/utils.js +123 -3
  65. package/dist/src/sync/common/generate/utils.js.map +1 -1
  66. package/dist/src/sync/common/i18n.json +2 -0
  67. package/dist/src/sync/common/import/utils.d.ts +8 -1
  68. package/dist/src/sync/common/import/utils.js +15 -4
  69. package/dist/src/sync/common/import/utils.js.map +1 -1
  70. package/dist/src/sync/common/importProject.js +13 -22
  71. package/dist/src/sync/common/importProject.js.map +1 -1
  72. package/dist/src/sync/common/types.d.ts +30 -16
  73. package/dist/src/sync/common/types.js +25 -1
  74. package/dist/src/sync/common/types.js.map +1 -1
  75. package/dist/src/sync/common/utils.d.ts +11 -3
  76. package/dist/src/sync/common/utils.js +147 -69
  77. package/dist/src/sync/common/utils.js.map +1 -1
  78. package/dist/src/sync/v2/export/controls/Action.d.ts +15 -0
  79. package/dist/src/sync/v2/export/controls/Action.js +68 -15
  80. package/dist/src/sync/v2/export/controls/Action.js.map +1 -1
  81. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +14 -6
  82. package/dist/src/sync/v2/export/controls/FilterBar.js +94 -76
  83. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  84. package/dist/src/sync/v2/export/controls/FormAction.js +3 -2
  85. package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
  86. package/dist/src/sync/v2/export/controls/Fragment.d.ts +1 -1
  87. package/dist/src/sync/v2/export/controls/Fragment.js +239 -164
  88. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  89. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +2 -2
  90. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +9 -9
  91. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -1
  92. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +5 -5
  93. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +15 -18
  94. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -1
  95. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +6 -4
  96. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -1
  97. package/dist/src/sync/v2/export/controls/TableColumn.d.ts +18 -2
  98. package/dist/src/sync/v2/export/controls/TableColumn.js +126 -1
  99. package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
  100. package/dist/src/sync/v2/export/export.js +140 -112
  101. package/dist/src/sync/v2/export/export.js.map +1 -1
  102. package/dist/src/sync/v2/export/manifest.js +2 -5
  103. package/dist/src/sync/v2/export/manifest.js.map +1 -1
  104. package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +2 -1
  105. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +3 -0
  106. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +1 -1
  107. package/dist/src/sync/v2/export/pages/ListReport.d.ts +3 -2
  108. package/dist/src/sync/v2/export/pages/ListReport.js +3 -0
  109. package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
  110. package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +2 -1
  111. package/dist/src/sync/v2/export/pages/OverviewPage.js +32 -2
  112. package/dist/src/sync/v2/export/pages/OverviewPage.js.map +1 -1
  113. package/dist/src/sync/v2/export/view-controller-generator.d.ts +16 -21
  114. package/dist/src/sync/v2/export/view-controller-generator.js +20 -36
  115. package/dist/src/sync/v2/export/view-controller-generator.js.map +1 -1
  116. package/dist/src/sync/v2/generate/analyticalListReport.js +14 -6
  117. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  118. package/dist/src/sync/v2/generate/listReport.js +12 -3
  119. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  120. package/dist/src/sync/v2/generate/objectPage.d.ts +1 -5
  121. package/dist/src/sync/v2/generate/objectPage.js +16 -42
  122. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  123. package/dist/src/sync/v2/generate/utils.d.ts +22 -11
  124. package/dist/src/sync/v2/generate/utils.js +282 -110
  125. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  126. package/dist/src/sync/v2/import/common/index.d.ts +22 -4
  127. package/dist/src/sync/v2/import/common/index.js +238 -28
  128. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  129. package/dist/src/sync/v2/import/controls/table.js +3 -2
  130. package/dist/src/sync/v2/import/controls/table.js.map +1 -1
  131. package/dist/src/sync/v2/import/pages/analyticalListPage.js +36 -5
  132. package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
  133. package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -5
  134. package/dist/src/sync/v2/import/pages/listReport.js +21 -122
  135. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  136. package/dist/src/sync/v2/import/pages/objectPage.js +200 -107
  137. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  138. package/dist/src/sync/v2/import/utils.d.ts +4 -6
  139. package/dist/src/sync/v2/import/utils.js +43 -11
  140. package/dist/src/sync/v2/import/utils.js.map +1 -1
  141. package/dist/src/sync/v2/types.d.ts +8 -1
  142. package/dist/src/sync/v2/types.js +8 -1
  143. package/dist/src/sync/v2/types.js.map +1 -1
  144. package/dist/src/sync/v4/application.d.ts +1 -1
  145. package/dist/src/sync/v4/application.js +1 -1
  146. package/dist/src/sync/v4/application.js.map +1 -1
  147. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js +3 -3
  148. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js.map +1 -1
  149. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +3 -7
  150. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +2 -25
  151. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
  152. package/dist/src/sync/v4/export/controls/TableColumn.d.ts +1 -6
  153. package/dist/src/sync/v4/export/controls/TableColumn.js +0 -33
  154. package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  155. package/dist/src/sync/v4/export/controls/ToolBar.d.ts +5 -1
  156. package/dist/src/sync/v4/export/controls/ToolBar.js +3 -0
  157. package/dist/src/sync/v4/export/controls/ToolBar.js.map +1 -1
  158. package/dist/src/sync/v4/export/export.js +20 -16
  159. package/dist/src/sync/v4/export/export.js.map +1 -1
  160. package/dist/src/sync/v4/export/manifest.d.ts +1 -1
  161. package/dist/src/sync/v4/export/manifest.js +28 -16
  162. package/dist/src/sync/v4/export/manifest.js.map +1 -1
  163. package/dist/src/sync/v4/export/pages/AnalyticalListPage.d.ts +2 -2
  164. package/dist/src/sync/v4/export/pages/ListReport.d.ts +2 -2
  165. package/dist/src/sync/v4/export/pages/ObjectPage.d.ts +2 -2
  166. package/dist/src/sync/v4/export/types.d.ts +3 -0
  167. package/dist/src/sync/v4/generate/generate.d.ts +4 -2
  168. package/dist/src/sync/v4/generate/generate.js +15 -6
  169. package/dist/src/sync/v4/generate/generate.js.map +1 -1
  170. package/dist/src/sync/v4/generate/listReport.d.ts +7 -6
  171. package/dist/src/sync/v4/generate/listReport.js +50 -34
  172. package/dist/src/sync/v4/generate/listReport.js.map +1 -1
  173. package/dist/src/sync/v4/generate/objectPage.js +94 -90
  174. package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
  175. package/dist/src/sync/v4/import/pages/analyticalListPage.d.ts +2 -2
  176. package/dist/src/sync/v4/import/pages/analyticalListPage.js +0 -1
  177. package/dist/src/sync/v4/import/pages/analyticalListPage.js.map +1 -1
  178. package/dist/src/sync/v4/import/pages/listReport.d.ts +3 -3
  179. package/dist/src/sync/v4/import/pages/listReport.js +34 -23
  180. package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
  181. package/dist/src/sync/v4/import/pages/objectPage.d.ts +2 -2
  182. package/dist/src/sync/v4/import/pages/objectPage.js +21 -16
  183. package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
  184. package/dist/src/sync/v4/import/utils.js +6 -5
  185. package/dist/src/sync/v4/import/utils.js.map +1 -1
  186. package/dist/src/sync/v4/utils/utils.d.ts +14 -1
  187. package/dist/src/sync/v4/utils/utils.js +62 -26
  188. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  189. package/dist/test/unit/utils.test.d.ts +1 -1
  190. package/package.json +8 -11
  191. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +0 -11
  192. package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +0 -1
  193. package/dist/src/specification/v2/controls/ObjectPageFooterAction.d.ts +0 -28
  194. package/dist/src/specification/v2/controls/ObjectPageFooterAction.js +0 -3
  195. package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +0 -1
  196. package/dist/test/test-utils/metadataParser.d.ts +0 -19
@@ -73,7 +73,7 @@
73
73
  "type": "object",
74
74
  "properties": {
75
75
  "dateSettings": {
76
- "$ref": "#/definitions/DateRange",
76
+ "$ref": "#/definitions/DateRangeOVP",
77
77
  "description": "You can define date ranges, such as lastYear or nextQuarter on the Smart Filter Bar"
78
78
  }
79
79
  },
@@ -135,13 +135,19 @@
135
135
  ],
136
136
  "type": "string"
137
137
  },
138
- "DateRange": {
138
+ "DateRangeOVP": {
139
139
  "type": "object",
140
140
  "properties": {
141
+ "fields": {
142
+ "description": "For a fields' list you can define the set of standard date range values separately.",
143
+ "type": "object",
144
+ "additionalProperties": {
145
+ "$ref": "#/definitions/SelectedValues"
146
+ }
147
+ },
141
148
  "useDateRange": {
142
149
  "description": "If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters.",
143
- "type": "boolean",
144
- "artifactType": "Manifest"
150
+ "type": "boolean"
145
151
  },
146
152
  "selectedValues": {
147
153
  "description": "The selectedValues property is a set of standard date range values that you want to include or exclude.",
@@ -198,26 +204,17 @@
198
204
  "YESTERDAY"
199
205
  ],
200
206
  "type": "string"
201
- },
202
- "artifactType": "Manifest"
207
+ }
203
208
  },
204
209
  "exclude": {
205
210
  "description": "The exclude property is set to True by default. This means excluding all values given as selectedValues from the list of date range filters. If the exclude property is set to False, the application shows only selected values in the list of date range filters.",
206
- "type": "boolean",
207
- "artifactType": "Manifest"
208
- },
209
- "fields": {
210
- "description": "For a fields' list you can define the set of standard date range values separately.",
211
- "type": "object",
212
- "additionalProperties": {
213
- "$ref": "#/definitions/SelectedValues"
214
- },
215
- "artifactType": "Manifest"
211
+ "type": "boolean"
216
212
  }
217
213
  },
218
214
  "additionalProperties": false
219
215
  },
220
216
  "SelectedValues": {
217
+ "isViewNode": false,
221
218
  "type": "object",
222
219
  "properties": {
223
220
  "selectedValues": {
@@ -255,90 +255,32 @@
255
255
  "additionalProperties": {
256
256
  "anyOf": [
257
257
  {
258
- "description": "Table Column",
259
- "isViewNode": true,
260
- "type": "object",
261
- "properties": {
262
- "width": {
263
- "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
264
- "type": "string"
265
- },
266
- "availability": {
267
- "$ref": "#/definitions/Availability",
268
- "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
269
- }
270
- },
271
- "additionalProperties": false
258
+ "$ref": "#/definitions/TableColumn"
272
259
  },
273
260
  {
274
- "description": "Inline Action",
275
- "isViewNode": true,
276
- "additionalProperties": false,
277
- "type": "object",
278
- "properties": {
279
- "width": {
280
- "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
281
- "type": "string"
282
- },
283
- "availability": {
284
- "$ref": "#/definitions/Availability",
285
- "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
286
- },
287
- "afterExecution": {
288
- "$ref": "#/definitions/ActionAfterExecutionConfiguration",
289
- "description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)"
290
- }
291
- }
292
- },
293
- {
294
- "description": "Custom Columns",
295
- "isViewNode": true,
296
- "type": "array",
297
- "items": {
298
- "description": "Custom Column",
299
- "isViewNode": true,
300
- "additionalProperties": false,
301
- "type": "object",
302
- "properties": {
303
- "position": {
304
- "description": "Defines the position of the column relative to other columns.",
305
- "type": "object",
306
- "properties": {
307
- "anchor": {
308
- "description": "The key of another column to be used as placement anchor.",
309
- "type": "string"
310
- },
311
- "placement": {
312
- "$ref": "#/definitions/Placement",
313
- "description": "Define the placement, either before or after the anchor column."
314
- }
315
- },
316
- "additionalProperties": false,
317
- "required": [
318
- "placement"
319
- ]
320
- },
321
- "header": {
322
- "description": "The header is shown on the table as header, as well as in the add/remove dialog.",
323
- "type": "string"
324
- },
325
- "width": {
326
- "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
327
- "type": "string"
328
- },
329
- "template": {
330
- "description": "Relevant for extension columns; allows the definition of a target fragment.",
331
- "type": "string"
332
- }
333
- },
334
- "required": [
335
- "header"
336
- ]
337
- }
261
+ "$ref": "#/definitions/TableColumnAction"
338
262
  }
339
263
  ]
340
264
  }
341
265
  },
266
+ "TableColumn": {
267
+ "description": "Table Column",
268
+ "isViewNode": true,
269
+ "type": "object",
270
+ "properties": {
271
+ "width": {
272
+ "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
273
+ "type": "string",
274
+ "artifactType": "Manifest"
275
+ },
276
+ "availability": {
277
+ "$ref": "#/definitions/Availability",
278
+ "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
279
+ "artifactType": "Manifest"
280
+ }
281
+ },
282
+ "additionalProperties": false
283
+ },
342
284
  "Availability": {
343
285
  "enum": [
344
286
  "Adaptation",
@@ -347,6 +289,29 @@
347
289
  ],
348
290
  "type": "string"
349
291
  },
292
+ "TableColumnAction": {
293
+ "description": "Inline Action",
294
+ "isViewNode": true,
295
+ "type": "object",
296
+ "properties": {
297
+ "afterExecution": {
298
+ "$ref": "#/definitions/ActionAfterExecutionConfiguration",
299
+ "description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)",
300
+ "artifactType": "Manifest"
301
+ },
302
+ "width": {
303
+ "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
304
+ "type": "string",
305
+ "artifactType": "Manifest"
306
+ },
307
+ "availability": {
308
+ "$ref": "#/definitions/Availability",
309
+ "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
310
+ "artifactType": "Manifest"
311
+ }
312
+ },
313
+ "additionalProperties": false
314
+ },
350
315
  "ActionAfterExecutionConfiguration": {
351
316
  "type": "object",
352
317
  "properties": {
@@ -363,14 +328,6 @@
363
328
  },
364
329
  "additionalProperties": false
365
330
  },
366
- "Placement": {
367
- "enum": [
368
- "After",
369
- "Before",
370
- "End"
371
- ],
372
- "type": "string"
373
- },
374
331
  "VariantManagementTypeListReport": {
375
332
  "enum": [
376
333
  "Control",
@@ -255,90 +255,32 @@
255
255
  "additionalProperties": {
256
256
  "anyOf": [
257
257
  {
258
- "description": "Table Column",
259
- "isViewNode": true,
260
- "type": "object",
261
- "properties": {
262
- "width": {
263
- "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
264
- "type": "string"
265
- },
266
- "availability": {
267
- "$ref": "#/definitions/Availability",
268
- "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
269
- }
270
- },
271
- "additionalProperties": false
258
+ "$ref": "#/definitions/TableColumn"
272
259
  },
273
260
  {
274
- "description": "Inline Action",
275
- "isViewNode": true,
276
- "additionalProperties": false,
277
- "type": "object",
278
- "properties": {
279
- "width": {
280
- "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
281
- "type": "string"
282
- },
283
- "availability": {
284
- "$ref": "#/definitions/Availability",
285
- "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
286
- },
287
- "afterExecution": {
288
- "$ref": "#/definitions/ActionAfterExecutionConfiguration",
289
- "description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)"
290
- }
291
- }
292
- },
293
- {
294
- "description": "Custom Columns",
295
- "isViewNode": true,
296
- "type": "array",
297
- "items": {
298
- "description": "Custom Column",
299
- "isViewNode": true,
300
- "additionalProperties": false,
301
- "type": "object",
302
- "properties": {
303
- "position": {
304
- "description": "Defines the position of the column relative to other columns.",
305
- "type": "object",
306
- "properties": {
307
- "anchor": {
308
- "description": "The key of another column to be used as placement anchor.",
309
- "type": "string"
310
- },
311
- "placement": {
312
- "$ref": "#/definitions/Placement",
313
- "description": "Define the placement, either before or after the anchor column."
314
- }
315
- },
316
- "additionalProperties": false,
317
- "required": [
318
- "placement"
319
- ]
320
- },
321
- "header": {
322
- "description": "The header is shown on the table as header, as well as in the add/remove dialog.",
323
- "type": "string"
324
- },
325
- "width": {
326
- "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
327
- "type": "string"
328
- },
329
- "template": {
330
- "description": "Relevant for extension columns; allows the definition of a target fragment.",
331
- "type": "string"
332
- }
333
- },
334
- "required": [
335
- "header"
336
- ]
337
- }
261
+ "$ref": "#/definitions/TableColumnAction"
338
262
  }
339
263
  ]
340
264
  }
341
265
  },
266
+ "TableColumn": {
267
+ "description": "Table Column",
268
+ "isViewNode": true,
269
+ "type": "object",
270
+ "properties": {
271
+ "width": {
272
+ "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
273
+ "type": "string",
274
+ "artifactType": "Manifest"
275
+ },
276
+ "availability": {
277
+ "$ref": "#/definitions/Availability",
278
+ "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
279
+ "artifactType": "Manifest"
280
+ }
281
+ },
282
+ "additionalProperties": false
283
+ },
342
284
  "Availability": {
343
285
  "enum": [
344
286
  "Adaptation",
@@ -347,6 +289,29 @@
347
289
  ],
348
290
  "type": "string"
349
291
  },
292
+ "TableColumnAction": {
293
+ "description": "Inline Action",
294
+ "isViewNode": true,
295
+ "type": "object",
296
+ "properties": {
297
+ "afterExecution": {
298
+ "$ref": "#/definitions/ActionAfterExecutionConfiguration",
299
+ "description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)",
300
+ "artifactType": "Manifest"
301
+ },
302
+ "width": {
303
+ "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
304
+ "type": "string",
305
+ "artifactType": "Manifest"
306
+ },
307
+ "availability": {
308
+ "$ref": "#/definitions/Availability",
309
+ "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
310
+ "artifactType": "Manifest"
311
+ }
312
+ },
313
+ "additionalProperties": false
314
+ },
350
315
  "ActionAfterExecutionConfiguration": {
351
316
  "type": "object",
352
317
  "properties": {
@@ -363,14 +328,6 @@
363
328
  },
364
329
  "additionalProperties": false
365
330
  },
366
- "Placement": {
367
- "enum": [
368
- "After",
369
- "Before",
370
- "End"
371
- ],
372
- "type": "string"
373
- },
374
331
  "VariantManagementTypeListReport": {
375
332
  "enum": [
376
333
  "Control",
@@ -23,7 +23,7 @@
23
23
  ]
24
24
  },
25
25
  "footer": {
26
- "$ref": "#/definitions/ObjectPageFooter<GenericFooterActions>"
26
+ "$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
27
27
  },
28
28
  "$schema": {
29
29
  "type": "string"
@@ -80,13 +80,10 @@
80
80
  "additionalProperties": {
81
81
  "anyOf": [
82
82
  {
83
- "$ref": "#/definitions/ObjectPageHeaderSectionForm"
84
- },
85
- {
86
- "$ref": "#/definitions/ObjectPageHeaderSectionChart"
83
+ "$ref": "#/definitions/CommonHeaderFacetSettings"
87
84
  },
88
85
  {
89
- "$ref": "#/definitions/ObjectPageHeaderSectionDataPoint"
86
+ "$ref": "#/definitions/ObjectPageHeaderSectionForm"
90
87
  },
91
88
  {
92
89
  "$ref": "#/definitions/ObjectPageHeaderSectionContact"
@@ -97,16 +94,9 @@
97
94
  ]
98
95
  }
99
96
  },
100
- "ObjectPageHeaderSectionForm": {
97
+ "CommonHeaderFacetSettings": {
101
98
  "type": "object",
102
99
  "properties": {
103
- "form": {
104
- "description": "Form",
105
- "isViewNode": true,
106
- "type": "object",
107
- "properties": {},
108
- "additionalProperties": true
109
- },
110
100
  "stashed": {
111
101
  "description": "Header facets marked as stashed are initially not visible on the UI. Key users can add these header facets via key user adaptation.",
112
102
  "type": "boolean",
@@ -133,33 +123,11 @@
133
123
  },
134
124
  "additionalProperties": false
135
125
  },
136
- "ObjectPageHeaderSectionChart": {
137
- "type": "object",
138
- "properties": {
139
- "chart": {
140
- "description": "Chart",
141
- "isViewNode": true,
142
- "type": "object",
143
- "properties": {},
144
- "additionalProperties": true
145
- },
146
- "stashed": {
147
- "description": "Header facets marked as stashed are initially not visible on the UI. Key users can add these header facets via key user adaptation.",
148
- "type": "boolean",
149
- "artifactType": "Manifest"
150
- },
151
- "flexSettings": {
152
- "$ref": "#/definitions/FlexSettings",
153
- "artifactType": "Manifest"
154
- }
155
- },
156
- "additionalProperties": false
157
- },
158
- "ObjectPageHeaderSectionDataPoint": {
126
+ "ObjectPageHeaderSectionForm": {
159
127
  "type": "object",
160
128
  "properties": {
161
- "dataPoint": {
162
- "description": "Data Point",
129
+ "form": {
130
+ "description": "Form",
163
131
  "isViewNode": true,
164
132
  "type": "object",
165
133
  "properties": {},
@@ -311,7 +279,7 @@
311
279
  "artifactType": "Manifest"
312
280
  },
313
281
  "columns": {
314
- "$ref": "#/definitions/GenericColumns"
282
+ "$ref": "#/definitions/GenericColumnsOP"
315
283
  },
316
284
  "type": {
317
285
  "$ref": "#/definitions/TableTypeV4",
@@ -451,75 +419,37 @@
451
419
  "annotationPath"
452
420
  ]
453
421
  },
454
- "GenericColumns": {
422
+ "GenericColumnsOP": {
455
423
  "type": "object",
456
424
  "additionalProperties": {
457
425
  "anyOf": [
458
426
  {
459
- "description": "Table Column",
460
- "isViewNode": true,
461
- "type": "object",
462
- "properties": {
463
- "width": {
464
- "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
465
- "type": "string"
466
- },
467
- "availability": {
468
- "$ref": "#/definitions/Availability",
469
- "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation."
470
- }
471
- },
472
- "additionalProperties": false
427
+ "$ref": "#/definitions/ObjectPageTableColumn"
473
428
  },
474
429
  {
475
- "description": "Custom Columns",
476
- "isViewNode": true,
477
- "type": "array",
478
- "items": {
479
- "description": "Custom Column",
480
- "isViewNode": true,
481
- "additionalProperties": false,
482
- "type": "object",
483
- "properties": {
484
- "position": {
485
- "description": "Defines the position of the column relative to other columns.",
486
- "type": "object",
487
- "properties": {
488
- "anchor": {
489
- "description": "The key of another column to be used as placement anchor.",
490
- "type": "string"
491
- },
492
- "placement": {
493
- "$ref": "#/definitions/Placement",
494
- "description": "Define the placement, either before or after the anchor column."
495
- }
496
- },
497
- "additionalProperties": false,
498
- "required": [
499
- "placement"
500
- ]
501
- },
502
- "header": {
503
- "description": "The header is shown on the table as header, as well as in the add/remove dialog.",
504
- "type": "string"
505
- },
506
- "width": {
507
- "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
508
- "type": "string"
509
- },
510
- "template": {
511
- "description": "Relevant for extension columns; allows the definition of a target fragment.",
512
- "type": "string"
513
- }
514
- },
515
- "required": [
516
- "header"
517
- ]
518
- }
430
+ "$ref": "#/definitions/ObjectPageTableColumnAction"
519
431
  }
520
432
  ]
521
433
  }
522
434
  },
435
+ "ObjectPageTableColumn": {
436
+ "description": "Table Column",
437
+ "isViewNode": true,
438
+ "type": "object",
439
+ "properties": {
440
+ "width": {
441
+ "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
442
+ "type": "string",
443
+ "artifactType": "Manifest"
444
+ },
445
+ "availability": {
446
+ "$ref": "#/definitions/Availability",
447
+ "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
448
+ "artifactType": "Manifest"
449
+ }
450
+ },
451
+ "additionalProperties": false
452
+ },
523
453
  "Availability": {
524
454
  "enum": [
525
455
  "Adaptation",
@@ -528,13 +458,44 @@
528
458
  ],
529
459
  "type": "string"
530
460
  },
531
- "Placement": {
532
- "enum": [
533
- "After",
534
- "Before",
535
- "End"
536
- ],
537
- "type": "string"
461
+ "ObjectPageTableColumnAction": {
462
+ "description": "Inline Action for Object Page",
463
+ "isViewNode": true,
464
+ "type": "object",
465
+ "properties": {
466
+ "afterExecution": {
467
+ "$ref": "#/definitions/ActionAfterExecutionConfigurationOP",
468
+ "description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)",
469
+ "artifactType": "Manifest"
470
+ },
471
+ "width": {
472
+ "description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
473
+ "type": "string",
474
+ "artifactType": "Manifest"
475
+ },
476
+ "availability": {
477
+ "$ref": "#/definitions/Availability",
478
+ "description": "Defines where the column should be shown.\nDefault: it will be shown by default in the table.\nAdaptation: it will initially not shown in the table but be available via end user adaptation.\nHidden: the column is neither available in the table nor in adaptation.",
479
+ "artifactType": "Manifest"
480
+ }
481
+ },
482
+ "additionalProperties": false
483
+ },
484
+ "ActionAfterExecutionConfigurationOP": {
485
+ "type": "object",
486
+ "properties": {
487
+ "navigateToInstance": {
488
+ "description": "By default, a navigation is automatically triggered after an action execution. If applications want to disable the navigation, they can do so using the manifest setting “navigateToInstance”.",
489
+ "type": "boolean",
490
+ "artifactType": "Manifest"
491
+ },
492
+ "enableAutoScroll": {
493
+ "description": "The \"enableAutoScroll\" allows you to scroll to the newly created or change item after execution of an action",
494
+ "type": "boolean",
495
+ "artifactType": "Manifest"
496
+ }
497
+ },
498
+ "additionalProperties": false
538
499
  },
539
500
  "TableTypeV4": {
540
501
  "enum": [
@@ -673,18 +634,18 @@
673
634
  ],
674
635
  "type": "string"
675
636
  },
676
- "ObjectPageFooter<GenericFooterActions>": {
637
+ "ObjectPageFooter<ObjectPageFooterActions>": {
677
638
  "description": "Footer",
678
639
  "isViewNode": true,
679
640
  "type": "object",
680
641
  "properties": {
681
642
  "actions": {
682
- "$ref": "#/definitions/GenericFooterActions"
643
+ "$ref": "#/definitions/ObjectPageFooterActions"
683
644
  }
684
645
  },
685
646
  "additionalProperties": false
686
647
  },
687
- "GenericFooterActions": {
648
+ "ObjectPageFooterActions": {
688
649
  "type": "object",
689
650
  "additionalProperties": {
690
651
  "type": "object",