@sap/ux-specification 1.90.10 → 1.90.14

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 (170) hide show
  1. package/CHANGELOG.md +88 -0
  2. package/README.md +4 -4
  3. package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
  4. package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
  5. package/dist/documentation/v2/v2-ListReport.html +1 -1
  6. package/dist/documentation/v2/v2-ObjectPage.html +1 -1
  7. package/dist/documentation/v2/v2-OverviewPage.html +1 -1
  8. package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
  9. package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
  10. package/dist/documentation/v4/v4-ListReport.html +1 -1
  11. package/dist/documentation/v4/v4-ObjectPage.html +1 -1
  12. package/dist/index-min.js +1 -1
  13. package/dist/schemas/v2/AnalyticalListPageConfig.json +87 -12
  14. package/dist/schemas/v2/ApplicationV2.json +2 -0
  15. package/dist/schemas/v2/ListReportConfig.json +86 -11
  16. package/dist/schemas/v2/ObjectPageConfig.json +319 -96
  17. package/dist/schemas/v2/OverviewPageConfig.json +14 -34
  18. package/dist/schemas/v4/ApplicationV4.json +2 -0
  19. package/dist/schemas/v4/ObjectPageConfig.json +35 -2
  20. package/dist/specification/v2/index-min.js +1 -1
  21. package/dist/src/apiTypes.d.ts +8 -0
  22. package/dist/src/specification/v2/ApplicationV2.d.ts +2 -0
  23. package/dist/src/specification/v2/controls/AnalyticalListPageChart.d.ts +1 -1
  24. package/dist/src/specification/v2/controls/Card.d.ts +9 -9
  25. package/dist/src/specification/v2/controls/Card.js.map +1 -1
  26. package/dist/src/specification/v2/controls/Field.d.ts +10 -0
  27. package/dist/src/specification/v2/controls/{DataField.js → Field.js} +1 -1
  28. package/dist/src/specification/v2/controls/Field.js.map +1 -0
  29. package/dist/src/specification/v2/controls/FormAction.d.ts +43 -0
  30. package/dist/src/specification/v2/controls/FormAction.js +20 -0
  31. package/dist/src/specification/v2/controls/FormAction.js.map +1 -0
  32. package/dist/src/specification/v2/controls/ObjectPageChart.d.ts +1 -1
  33. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +11 -0
  34. package/dist/src/specification/v2/controls/ObjectPageFooter.js +3 -0
  35. package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +1 -0
  36. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +4 -5
  37. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.d.ts +21 -5
  38. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js +0 -5
  39. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js.map +1 -1
  40. package/dist/src/specification/v2/controls/ObjectPageSection.d.ts +25 -15
  41. package/dist/src/specification/v2/controls/ObjectPageSection.js.map +1 -1
  42. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +12 -5
  43. package/dist/src/specification/v2/controls/ObjectPageTable.js.map +1 -1
  44. package/dist/src/specification/v2/controls/Table.d.ts +4 -3
  45. package/dist/src/specification/v2/controls/ToolBar.d.ts +2 -6
  46. package/dist/src/specification/v2/controls/index.d.ts +4 -1
  47. package/dist/src/specification/v2/controls/index.js +1 -1
  48. package/dist/src/specification/v2/controls/index.js.map +1 -1
  49. package/dist/src/specification/v2/pages/ObjectPageConfig.d.ts +2 -1
  50. package/dist/src/specification/v4/ApplicationV4.d.ts +2 -0
  51. package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +11 -0
  52. package/dist/src/specification/v4/controls/ObjectPageFooter.js +3 -0
  53. package/dist/src/specification/v4/controls/ObjectPageFooter.js.map +1 -0
  54. package/dist/src/specification/v4/controls/ObjectPageHeader.d.ts +6 -1
  55. package/dist/src/specification/v4/controls/index.d.ts +1 -0
  56. package/dist/src/specification/v4/pages/ObjectPageConfig.d.ts +2 -1
  57. package/dist/src/specification/v4/webapp/manifest/sapUi5.d.ts +2 -1
  58. package/dist/src/specification/v4/webapp/manifest/sapUi5.js.map +1 -1
  59. package/dist/src/sync/common/decoration/control.d.ts +8 -1
  60. package/dist/src/sync/common/decoration/control.js +58 -17
  61. package/dist/src/sync/common/decoration/control.js.map +1 -1
  62. package/dist/src/sync/common/generate/objectPage.d.ts +41 -1
  63. package/dist/src/sync/common/generate/objectPage.js +214 -25
  64. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  65. package/dist/src/sync/common/import/utils.d.ts +6 -0
  66. package/dist/src/sync/common/import/utils.js +21 -0
  67. package/dist/src/sync/common/import/utils.js.map +1 -1
  68. package/dist/src/sync/common/importProject.js +64 -62
  69. package/dist/src/sync/common/importProject.js.map +1 -1
  70. package/dist/src/sync/common/types.d.ts +9 -2
  71. package/dist/src/sync/common/types.js +8 -0
  72. package/dist/src/sync/common/types.js.map +1 -1
  73. package/dist/src/sync/common/utils.d.ts +4 -3
  74. package/dist/src/sync/common/utils.js +86 -91
  75. package/dist/src/sync/common/utils.js.map +1 -1
  76. package/dist/src/sync/v2/application.d.ts +1 -0
  77. package/dist/src/sync/v2/application.js +3 -0
  78. package/dist/src/sync/v2/application.js.map +1 -1
  79. package/dist/src/sync/v2/export/controls/Card.d.ts +4 -3
  80. package/dist/src/sync/v2/export/controls/Card.js +16 -9
  81. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  82. package/dist/src/sync/v2/export/controls/Field.d.ts +4 -0
  83. package/dist/src/sync/v2/export/controls/{DataField.js → Field.js} +7 -7
  84. package/dist/src/sync/v2/export/controls/Field.js.map +1 -0
  85. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +1 -2
  86. package/dist/src/sync/v2/export/controls/FilterBar.js +7 -9
  87. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  88. package/dist/src/sync/v2/export/controls/FormAction.d.ts +15 -0
  89. package/dist/src/sync/v2/export/controls/FormAction.js +133 -0
  90. package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -0
  91. package/dist/src/sync/v2/export/controls/Fragment.js +5 -6
  92. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  93. package/dist/src/sync/v2/export/controls/ObjectPageChart.d.ts +4 -1
  94. package/dist/src/sync/v2/export/controls/ObjectPageChart.js +13 -0
  95. package/dist/src/sync/v2/export/controls/ObjectPageChart.js.map +1 -1
  96. package/dist/src/sync/v2/export/controls/ObjectPageHeader.js +1 -1
  97. package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +1 -1
  98. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +6 -2
  99. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +43 -4
  100. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
  101. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +32 -0
  102. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +144 -0
  103. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -0
  104. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +5 -4
  105. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +19 -7
  106. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  107. package/dist/src/sync/v2/export/controls/Table.d.ts +12 -4
  108. package/dist/src/sync/v2/export/controls/Table.js +87 -40
  109. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  110. package/dist/src/sync/v2/export/controls/TableColumn.js +1 -1
  111. package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
  112. package/dist/src/sync/v2/export/controls/index.d.ts +3 -1
  113. package/dist/src/sync/v2/export/controls/index.js +3 -1
  114. package/dist/src/sync/v2/export/controls/index.js.map +1 -1
  115. package/dist/src/sync/v2/export/export.js +129 -91
  116. package/dist/src/sync/v2/export/export.js.map +1 -1
  117. package/dist/src/sync/v2/generate/analyticalListReport.d.ts +3 -9
  118. package/dist/src/sync/v2/generate/analyticalListReport.js +15 -16
  119. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  120. package/dist/src/sync/v2/generate/generate.js +28 -6
  121. package/dist/src/sync/v2/generate/generate.js.map +1 -1
  122. package/dist/src/sync/v2/generate/listReport.d.ts +3 -10
  123. package/dist/src/sync/v2/generate/listReport.js +24 -30
  124. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  125. package/dist/src/sync/v2/generate/objectPage.d.ts +3 -10
  126. package/dist/src/sync/v2/generate/objectPage.js +210 -145
  127. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  128. package/dist/src/sync/v2/generate/utils.d.ts +1 -2
  129. package/dist/src/sync/v2/generate/utils.js +7 -2
  130. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  131. package/dist/src/sync/v2/import/pages/listReport.js +6 -5
  132. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  133. package/dist/src/sync/v2/import/pages/objectPage.js +163 -92
  134. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  135. package/dist/src/sync/v2/import/pages/overviewPage.js +1 -0
  136. package/dist/src/sync/v2/import/pages/overviewPage.js.map +1 -1
  137. package/dist/src/sync/v2/types.d.ts +17 -0
  138. package/dist/src/sync/v2/types.js +16 -0
  139. package/dist/src/sync/v2/types.js.map +1 -1
  140. package/dist/src/sync/v4/application.js +10 -10
  141. package/dist/src/sync/v4/application.js.map +1 -1
  142. package/dist/src/sync/v4/export/controls/ObjectPageTable.js +4 -3
  143. package/dist/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
  144. package/dist/src/sync/v4/export/controls/Table.js +4 -3
  145. package/dist/src/sync/v4/export/controls/Table.js.map +1 -1
  146. package/dist/src/sync/v4/export/export.js +156 -134
  147. package/dist/src/sync/v4/export/export.js.map +1 -1
  148. package/dist/src/sync/v4/export/manifest.js +96 -76
  149. package/dist/src/sync/v4/export/manifest.js.map +1 -1
  150. package/dist/src/sync/v4/generate/generate.js +10 -2
  151. package/dist/src/sync/v4/generate/generate.js.map +1 -1
  152. package/dist/src/sync/v4/generate/objectPage.d.ts +3 -6
  153. package/dist/src/sync/v4/generate/objectPage.js +92 -36
  154. package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
  155. package/dist/src/sync/v4/import/app/appProvider.js +108 -80
  156. package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
  157. package/dist/src/sync/v4/import/fragment.js +41 -46
  158. package/dist/src/sync/v4/import/fragment.js.map +1 -1
  159. package/dist/src/sync/v4/import/pages/listReport.js +1 -1
  160. package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
  161. package/dist/src/sync/v4/utils/StableIdHelper.d.ts +0 -3
  162. package/dist/src/sync/v4/utils/StableIdHelper.js +9 -11
  163. package/dist/src/sync/v4/utils/StableIdHelper.js.map +1 -1
  164. package/dist/src/sync/v4/utils/utils.js +2 -2
  165. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  166. package/package.json +4 -5
  167. package/dist/src/specification/v2/controls/DataField.d.ts +0 -7
  168. package/dist/src/specification/v2/controls/DataField.js.map +0 -1
  169. package/dist/src/sync/v2/export/controls/DataField.d.ts +0 -4
  170. package/dist/src/sync/v2/export/controls/DataField.js.map +0 -1
@@ -50,6 +50,9 @@
50
50
  }
51
51
  ]
52
52
  },
53
+ "footer": {
54
+ "$ref": "#/definitions/ObjectPageFooter<GenericFooterActions>"
55
+ },
53
56
  "$schema": {
54
57
  "type": "string"
55
58
  }
@@ -61,7 +64,8 @@
61
64
  "properties": {
62
65
  "variantManagement": {
63
66
  "description": "To enable variant management for charts in an object page",
64
- "type": "boolean"
67
+ "type": "boolean",
68
+ "artifactType": "Manifest"
65
69
  }
66
70
  },
67
71
  "additionalProperties": false
@@ -125,6 +129,30 @@
125
129
  "isViewNode": true,
126
130
  "type": "object",
127
131
  "properties": {
132
+ "tooltip": {
133
+ "description": "Text for tooltip of button",
134
+ "type": "string",
135
+ "artifactType": "FlexChange",
136
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
137
+ },
138
+ "icon": {
139
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.",
140
+ "type": "string",
141
+ "artifactType": "FlexChange",
142
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
143
+ },
144
+ "activeIcon": {
145
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
146
+ "type": "string",
147
+ "artifactType": "FlexChange",
148
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
149
+ },
150
+ "type": {
151
+ "$ref": "#/definitions/ButtonType",
152
+ "description": "Defines the Button type.",
153
+ "artifactType": "FlexChange",
154
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
155
+ },
128
156
  "visible": {
129
157
  "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
130
158
  "anyOf": [
@@ -132,20 +160,40 @@
132
160
  "enum": [
133
161
  false,
134
162
  true,
135
- "{= !${ui>/editable}}",
136
- "{ui>/editable}"
163
+ "{ui>/editable}",
164
+ "{= !${ui>/editable}}"
137
165
  ]
138
166
  },
139
167
  {
140
168
  "type": "string"
141
169
  }
142
170
  ],
171
+ "description": "Whether the button should be visible on the screen.",
143
172
  "artifactType": "FlexChange",
144
- "controlType": "sap.m.Button"
173
+ "controlType": "sap.uxap.ObjectPageHeaderActionButton"
145
174
  }
146
175
  },
147
176
  "additionalProperties": false
148
177
  },
178
+ "ButtonType": {
179
+ "enum": [
180
+ "Accept",
181
+ "Attention",
182
+ "Back",
183
+ "Critical",
184
+ "Default",
185
+ "Emphasized",
186
+ "Ghost",
187
+ "Negative",
188
+ "Neutral",
189
+ "Reject",
190
+ "Success",
191
+ "Transparent",
192
+ "Unstyled",
193
+ "Up"
194
+ ],
195
+ "type": "string"
196
+ },
149
197
  "ObjectPageLayout": {
150
198
  "description": "Page Layout",
151
199
  "isViewNode": true,
@@ -182,6 +230,9 @@
182
230
  "type": "object",
183
231
  "additionalProperties": {
184
232
  "anyOf": [
233
+ {
234
+ "$ref": "#/definitions/ObjectPageSectionFormV2"
235
+ },
185
236
  {
186
237
  "$ref": "#/definitions/ObjectPageSectionTableV2"
187
238
  },
@@ -189,11 +240,145 @@
189
240
  "$ref": "#/definitions/ObjectPageSectionChartV2"
190
241
  },
191
242
  {
192
- "$ref": "#/definitions/ObjectPageSectionFormV2"
243
+ "$ref": "#/definitions/ObjectPageSubSectionV2"
193
244
  }
194
245
  ]
195
246
  }
196
247
  },
248
+ "ObjectPageSectionFormV2": {
249
+ "description": "Form",
250
+ "isViewNode": true,
251
+ "type": "object",
252
+ "properties": {
253
+ "form": {
254
+ "$ref": "#/definitions/ObjectPageForm"
255
+ },
256
+ "visible": {
257
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
258
+ "anyOf": [
259
+ {
260
+ "enum": [
261
+ false,
262
+ true,
263
+ "{ui>/editable}",
264
+ "{= !${ui>/editable}}"
265
+ ]
266
+ },
267
+ {
268
+ "type": "string"
269
+ }
270
+ ],
271
+ "description": "Whether the section should be visible on the screen.",
272
+ "artifactType": "FlexChange",
273
+ "controlType": "sap.uxap.ObjectPageSection"
274
+ }
275
+ },
276
+ "additionalProperties": false
277
+ },
278
+ "ObjectPageForm": {
279
+ "description": "Object Page Form",
280
+ "isViewNode": true,
281
+ "type": "object",
282
+ "properties": {
283
+ "fields": {
284
+ "$ref": "#/definitions/ObjectPageFormFields"
285
+ },
286
+ "actions": {
287
+ "$ref": "#/definitions/ObjectPageFormActions"
288
+ }
289
+ },
290
+ "additionalProperties": false
291
+ },
292
+ "ObjectPageFormFields": {
293
+ "type": "object",
294
+ "additionalProperties": {
295
+ "$ref": "#/definitions/Field"
296
+ }
297
+ },
298
+ "Field": {
299
+ "description": "Field",
300
+ "isViewNode": true,
301
+ "type": "object",
302
+ "properties": {
303
+ "visible": {
304
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
305
+ "anyOf": [
306
+ {
307
+ "enum": [
308
+ false,
309
+ true,
310
+ "{ui>/editable}",
311
+ "{= !${ui>/editable}}"
312
+ ]
313
+ },
314
+ {
315
+ "type": "string"
316
+ }
317
+ ],
318
+ "description": "Whether the field should be visible on the screen.",
319
+ "artifactType": "FlexChange",
320
+ "controlType": "sap.ui.comp.smartform.SmartGroup"
321
+ }
322
+ },
323
+ "additionalProperties": false
324
+ },
325
+ "ObjectPageFormActions": {
326
+ "type": "object",
327
+ "additionalProperties": {
328
+ "$ref": "#/definitions/FormAction"
329
+ }
330
+ },
331
+ "FormAction": {
332
+ "description": "Action",
333
+ "isViewNode": true,
334
+ "type": "object",
335
+ "properties": {
336
+ "tooltip": {
337
+ "description": "Text for tooltip of button",
338
+ "type": "string",
339
+ "artifactType": "FlexChange",
340
+ "controlType": "sap.m.Button"
341
+ },
342
+ "icon": {
343
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.",
344
+ "type": "string",
345
+ "artifactType": "FlexChange",
346
+ "controlType": "sap.m.Button"
347
+ },
348
+ "activeIcon": {
349
+ "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
350
+ "type": "string",
351
+ "artifactType": "FlexChange",
352
+ "controlType": "sap.m.Button"
353
+ },
354
+ "type": {
355
+ "$ref": "#/definitions/ButtonType",
356
+ "description": "Defines the Button type.",
357
+ "artifactType": "FlexChange",
358
+ "controlType": "sap.m.Button"
359
+ },
360
+ "visible": {
361
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
362
+ "anyOf": [
363
+ {
364
+ "enum": [
365
+ false,
366
+ true,
367
+ "{ui>/editable}",
368
+ "{= !${ui>/editable}}"
369
+ ]
370
+ },
371
+ {
372
+ "type": "string"
373
+ }
374
+ ],
375
+ "description": "Whether the button should be visible on the screen.",
376
+ "artifactType": "FlexChange",
377
+ "controlType": "sap.m.Button"
378
+ }
379
+ },
380
+ "additionalProperties": false
381
+ },
197
382
  "ObjectPageSectionTableV2": {
198
383
  "description": "Table",
199
384
  "isViewNode": true,
@@ -217,6 +402,25 @@
217
402
  "$ref": "#/definitions/ObjectPageTreeTable"
218
403
  }
219
404
  ]
405
+ },
406
+ "visible": {
407
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
408
+ "anyOf": [
409
+ {
410
+ "enum": [
411
+ false,
412
+ true,
413
+ "{ui>/editable}",
414
+ "{= !${ui>/editable}}"
415
+ ]
416
+ },
417
+ {
418
+ "type": "string"
419
+ }
420
+ ],
421
+ "description": "Whether the section should be visible on the screen.",
422
+ "artifactType": "FlexChange",
423
+ "controlType": "sap.uxap.ObjectPageSection"
220
424
  }
221
425
  },
222
426
  "additionalProperties": false
@@ -311,9 +515,6 @@
311
515
  "type": "boolean",
312
516
  "artifactType": "Manifest"
313
517
  },
314
- "columns": {
315
- "$ref": "#/definitions/GenericColumns"
316
- },
317
518
  "variantManagement": {
318
519
  "description": "To enable variant management for a specific table on an object page.",
319
520
  "type": "boolean",
@@ -322,6 +523,10 @@
322
523
  "toolBar": {
323
524
  "$ref": "#/definitions/ObjectPageToolBar",
324
525
  "description": "Tool Bar"
526
+ },
527
+ "columns": {
528
+ "$ref": "#/definitions/GenericColumns",
529
+ "description": "Columns"
325
530
  }
326
531
  },
327
532
  "additionalProperties": false
@@ -338,10 +543,7 @@
338
543
  "type": "object",
339
544
  "properties": {
340
545
  "fields": {
341
- "type": "object",
342
- "additionalProperties": {
343
- "$ref": "#/definitions/FieldPath"
344
- },
546
+ "$ref": "#/definitions/CreationFieldKeysOP",
345
547
  "artifactType": "Manifest"
346
548
  }
347
549
  },
@@ -350,11 +552,18 @@
350
552
  "fields"
351
553
  ]
352
554
  },
353
- "FieldPath": {
555
+ "CreationFieldKeysOP": {
556
+ "type": "object",
557
+ "additionalProperties": {
558
+ "$ref": "#/definitions/FieldPathOP"
559
+ }
560
+ },
561
+ "FieldPathOP": {
354
562
  "type": "object",
355
563
  "properties": {
356
564
  "path": {
357
- "type": "string"
565
+ "type": "string",
566
+ "artifactType": "Manifest"
358
567
  }
359
568
  },
360
569
  "additionalProperties": false,
@@ -405,6 +614,30 @@
405
614
  "key"
406
615
  ]
407
616
  },
617
+ "ObjectPageToolBar": {
618
+ "description": "Toolbar",
619
+ "isViewNode": true,
620
+ "type": "object",
621
+ "properties": {
622
+ "actions": {
623
+ "$ref": "#/definitions/ObjectPageToolBarActions"
624
+ }
625
+ },
626
+ "additionalProperties": false,
627
+ "required": [
628
+ "actions"
629
+ ]
630
+ },
631
+ "ObjectPageToolBarActions": {
632
+ "description": "Actions",
633
+ "isViewNode": true,
634
+ "type": "object",
635
+ "additionalProperties": {
636
+ "type": "object",
637
+ "properties": {},
638
+ "additionalProperties": true
639
+ }
640
+ },
408
641
  "GenericColumns": {
409
642
  "type": "object",
410
643
  "additionalProperties": {
@@ -529,30 +762,6 @@
529
762
  ],
530
763
  "type": "string"
531
764
  },
532
- "ObjectPageToolBar": {
533
- "description": "Toolbar",
534
- "isViewNode": true,
535
- "type": "object",
536
- "properties": {
537
- "actions": {
538
- "$ref": "#/definitions/ObjectPageToolBarActions"
539
- }
540
- },
541
- "additionalProperties": false,
542
- "required": [
543
- "actions"
544
- ]
545
- },
546
- "ObjectPageToolBarActions": {
547
- "description": "Actions",
548
- "isViewNode": true,
549
- "type": "object",
550
- "additionalProperties": {
551
- "type": "object",
552
- "properties": {},
553
- "additionalProperties": true
554
- }
555
- },
556
765
  "ObjectPageResponsiveTableWithInlineDelete": {
557
766
  "description": "Table",
558
767
  "isViewNode": true,
@@ -643,9 +852,6 @@
643
852
  "type": "boolean",
644
853
  "artifactType": "Manifest"
645
854
  },
646
- "columns": {
647
- "$ref": "#/definitions/GenericColumns"
648
- },
649
855
  "variantManagement": {
650
856
  "description": "To enable variant management for a specific table on an object page.",
651
857
  "type": "boolean",
@@ -654,6 +860,10 @@
654
860
  "toolBar": {
655
861
  "$ref": "#/definitions/ObjectPageToolBar",
656
862
  "description": "Tool Bar"
863
+ },
864
+ "columns": {
865
+ "$ref": "#/definitions/GenericColumns",
866
+ "description": "Columns"
657
867
  }
658
868
  },
659
869
  "additionalProperties": false
@@ -727,9 +937,6 @@
727
937
  "type": "boolean",
728
938
  "artifactType": "Manifest"
729
939
  },
730
- "columns": {
731
- "$ref": "#/definitions/GenericColumns"
732
- },
733
940
  "variantManagement": {
734
941
  "description": "To enable variant management for a specific table on an object page.",
735
942
  "type": "boolean",
@@ -738,6 +945,10 @@
738
945
  "toolBar": {
739
946
  "$ref": "#/definitions/ObjectPageToolBar",
740
947
  "description": "Tool Bar"
948
+ },
949
+ "columns": {
950
+ "$ref": "#/definitions/GenericColumns",
951
+ "description": "Columns"
741
952
  }
742
953
  },
743
954
  "additionalProperties": false
@@ -811,9 +1022,6 @@
811
1022
  "type": "boolean",
812
1023
  "artifactType": "Manifest"
813
1024
  },
814
- "columns": {
815
- "$ref": "#/definitions/GenericColumns"
816
- },
817
1025
  "variantManagement": {
818
1026
  "description": "To enable variant management for a specific table on an object page.",
819
1027
  "type": "boolean",
@@ -822,6 +1030,10 @@
822
1030
  "toolBar": {
823
1031
  "$ref": "#/definitions/ObjectPageToolBar",
824
1032
  "description": "Tool Bar"
1033
+ },
1034
+ "columns": {
1035
+ "$ref": "#/definitions/GenericColumns",
1036
+ "description": "Columns"
825
1037
  }
826
1038
  },
827
1039
  "additionalProperties": false
@@ -895,9 +1107,6 @@
895
1107
  "type": "boolean",
896
1108
  "artifactType": "Manifest"
897
1109
  },
898
- "columns": {
899
- "$ref": "#/definitions/GenericColumns"
900
- },
901
1110
  "variantManagement": {
902
1111
  "description": "To enable variant management for a specific table on an object page.",
903
1112
  "type": "boolean",
@@ -906,6 +1115,10 @@
906
1115
  "toolBar": {
907
1116
  "$ref": "#/definitions/ObjectPageToolBar",
908
1117
  "description": "Tool Bar"
1118
+ },
1119
+ "columns": {
1120
+ "$ref": "#/definitions/GenericColumns",
1121
+ "description": "Columns"
909
1122
  }
910
1123
  },
911
1124
  "additionalProperties": false
@@ -917,12 +1130,31 @@
917
1130
  "properties": {
918
1131
  "chart": {
919
1132
  "$ref": "#/definitions/ObjectPageChart"
1133
+ },
1134
+ "visible": {
1135
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
1136
+ "anyOf": [
1137
+ {
1138
+ "enum": [
1139
+ false,
1140
+ true,
1141
+ "{ui>/editable}",
1142
+ "{= !${ui>/editable}}"
1143
+ ]
1144
+ },
1145
+ {
1146
+ "type": "string"
1147
+ }
1148
+ ],
1149
+ "description": "Whether the section should be visible on the screen.",
1150
+ "artifactType": "FlexChange",
1151
+ "controlType": "sap.uxap.ObjectPageSection"
920
1152
  }
921
1153
  },
922
1154
  "additionalProperties": false
923
1155
  },
924
1156
  "ObjectPageChart": {
925
- "description": "Chart Settings",
1157
+ "description": "Chart",
926
1158
  "isViewNode": true,
927
1159
  "type": "object",
928
1160
  "properties": {
@@ -934,66 +1166,38 @@
934
1166
  },
935
1167
  "additionalProperties": false
936
1168
  },
937
- "ObjectPageSectionFormV2": {
938
- "description": "Form",
939
- "isViewNode": true,
940
- "type": "object",
941
- "properties": {
942
- "form": {
943
- "$ref": "#/definitions/ObjectPageForm"
944
- }
945
- },
946
- "additionalProperties": false
947
- },
948
- "ObjectPageForm": {
949
- "description": "Object Page Form",
1169
+ "ObjectPageSubSectionV2": {
1170
+ "description": "Subsection",
950
1171
  "isViewNode": true,
951
1172
  "type": "object",
952
1173
  "properties": {
953
- "fields": {
954
- "$ref": "#/definitions/ObjectPageFormFields"
1174
+ "subsections": {
1175
+ "type": "object",
1176
+ "properties": {},
1177
+ "additionalProperties": true
955
1178
  },
956
- "actions": {
957
- "$ref": "#/definitions/ObjectPageFormActions"
958
- }
959
- },
960
- "additionalProperties": false
961
- },
962
- "ObjectPageFormFields": {
963
- "type": "object",
964
- "additionalProperties": {
965
- "$ref": "#/definitions/DataField"
966
- }
967
- },
968
- "DataField": {
969
- "description": "DataField",
970
- "isViewNode": true,
971
- "type": "object",
972
- "properties": {
973
1179
  "visible": {
974
- "pattern": "^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
1180
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
975
1181
  "anyOf": [
976
1182
  {
977
- "type": "boolean"
1183
+ "enum": [
1184
+ false,
1185
+ true,
1186
+ "{ui>/editable}",
1187
+ "{= !${ui>/editable}}"
1188
+ ]
978
1189
  },
979
1190
  {
980
1191
  "type": "string"
981
1192
  }
982
1193
  ],
1194
+ "description": "Whether the section should be visible on the screen.",
983
1195
  "artifactType": "FlexChange",
984
- "controlType": "sap.ui.comp.smartform.SmartGroup"
1196
+ "controlType": "sap.uxap.ObjectPageSubSection"
985
1197
  }
986
1198
  },
987
1199
  "additionalProperties": false
988
1200
  },
989
- "ObjectPageFormActions": {
990
- "type": "object",
991
- "additionalProperties": {
992
- "type": "object",
993
- "properties": {},
994
- "additionalProperties": true
995
- }
996
- },
997
1201
  "CustomSections": {
998
1202
  "description": "Custom Sections",
999
1203
  "isViewNode": true,
@@ -1039,7 +1243,7 @@
1039
1243
  "$ref": "#/definitions/SectionPosition"
1040
1244
  },
1041
1245
  "title": {
1042
- "description": "The label of the custom section, preferrable as an i18n key",
1246
+ "description": "The label of the custom section, preferably as an i18n key",
1043
1247
  "i18nClassification": "TIT: Custom section title",
1044
1248
  "type": "string"
1045
1249
  }
@@ -1098,7 +1302,7 @@
1098
1302
  "$ref": "#/definitions/SectionPosition"
1099
1303
  },
1100
1304
  "title": {
1101
- "description": "The label of the custom section, preferrable as an i18n key",
1305
+ "description": "The label of the custom section, preferably as an i18n key",
1102
1306
  "i18nClassification": "TIT: Custom section title",
1103
1307
  "type": "string"
1104
1308
  }
@@ -1112,6 +1316,25 @@
1112
1316
  "title",
1113
1317
  "type"
1114
1318
  ]
1319
+ },
1320
+ "ObjectPageFooter<GenericFooterActions>": {
1321
+ "description": "Footer",
1322
+ "isViewNode": true,
1323
+ "type": "object",
1324
+ "properties": {
1325
+ "actions": {
1326
+ "$ref": "#/definitions/GenericFooterActions"
1327
+ }
1328
+ },
1329
+ "additionalProperties": false
1330
+ },
1331
+ "GenericFooterActions": {
1332
+ "type": "object",
1333
+ "additionalProperties": {
1334
+ "type": "object",
1335
+ "properties": {},
1336
+ "additionalProperties": true
1337
+ }
1115
1338
  }
1116
1339
  },
1117
1340
  "$schema": "http://json-schema.org/draft-07/schema#"