@sap/ux-specification 1.84.26 → 1.84.30
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.
- package/CHANGELOG.md +92 -9
- package/dist/documentation/runDocu-min.js +1 -1
- package/dist/documentation/styleDocu.css +4 -5
- package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
- package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
- package/dist/documentation/v2/v2-ListReport.html +1 -1
- package/dist/documentation/v2/v2-ObjectPage.html +1 -1
- package/dist/documentation/v2/v2-OverviewPage.html +1 -1
- package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
- package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
- package/dist/documentation/v4/v4-ListReport.html +1 -1
- package/dist/documentation/v4/v4-ObjectPage.html +1 -1
- package/dist/index-min.js +1 -1
- package/dist/schemas/v2/AnalyticalListPageConfig.json +103 -40
- package/dist/schemas/v2/ListReportConfig.json +112 -32
- package/dist/schemas/v2/ObjectPageConfig.json +247 -56
- package/dist/schemas/v2/OverviewPageConfig.json +258 -196
- package/dist/schemas/v4/AnalyticalListPageConfig.json +48 -93
- package/dist/schemas/v4/ListReportConfig.json +48 -93
- package/dist/schemas/v4/ObjectPageConfig.json +51 -104
- package/dist/scripts/extractDocu.js +18 -8
- package/dist/scripts/extractDocu.js.map +1 -1
- package/dist/scripts/runDocu.js +105 -89
- package/dist/scripts/runDocu.js.map +1 -1
- package/dist/scripts/to-json-schema.js +32 -37
- package/dist/scripts/to-json-schema.js.map +1 -1
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/specification/v4/index-min.js +1 -1
- package/dist/src/api.js +9 -9
- package/dist/src/api.js.map +1 -1
- package/dist/src/apiTypes.d.ts +5 -2
- package/dist/src/specification/schemaAccess.js +1 -3
- package/dist/src/specification/schemaAccess.js.map +1 -1
- package/dist/src/specification/v2/controls/Action.d.ts +87 -0
- package/dist/src/specification/v2/controls/{FormAction.js → Action.js} +1 -1
- package/dist/src/specification/v2/controls/Action.js.map +1 -0
- package/dist/src/specification/v2/controls/Card.d.ts +20 -72
- package/dist/src/specification/v2/controls/Card.js.map +1 -1
- package/dist/src/specification/v2/controls/FilterBar.d.ts +6 -2
- package/dist/src/specification/v2/controls/Footer.d.ts +20 -0
- package/dist/src/specification/v2/controls/{ObjectPageFooter.js → Footer.js} +1 -1
- package/dist/src/specification/v2/controls/Footer.js.map +1 -0
- package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +1 -2
- package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +1 -1
- package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +5 -0
- package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +1 -5
- package/dist/src/specification/v2/controls/Table.d.ts +14 -10
- package/dist/src/specification/v2/controls/Table.js.map +1 -1
- package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -8
- package/dist/src/specification/v2/controls/index.d.ts +8 -10
- package/dist/src/specification/v2/controls/index.js +3 -3
- package/dist/src/specification/v2/controls/index.js.map +1 -1
- package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +2 -1
- package/dist/src/specification/v2/pages/ListReportConfig.d.ts +3 -2
- package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +2 -2
- package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +7 -7
- package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +6 -13
- package/dist/src/specification/v4/controls/Table.d.ts +4 -10
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +51 -13
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js +6 -0
- package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js.map +1 -1
- package/dist/src/sync/common/appProvider.js.map +1 -1
- package/dist/src/sync/common/decoration/control.d.ts +11 -1
- package/dist/src/sync/common/decoration/control.js +29 -3
- package/dist/src/sync/common/decoration/control.js.map +1 -1
- package/dist/src/sync/common/decoration/factory.js +2 -4
- package/dist/src/sync/common/decoration/factory.js.map +1 -1
- package/dist/src/sync/common/generate/index.d.ts +1 -0
- package/dist/src/sync/common/generate/index.js +1 -0
- package/dist/src/sync/common/generate/index.js.map +1 -1
- package/dist/src/sync/common/generate/objectPage.d.ts +8 -0
- package/dist/src/sync/common/generate/objectPage.js +28 -12
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/generate/utils.d.ts +60 -0
- package/dist/src/sync/common/generate/utils.js +208 -0
- package/dist/src/sync/common/generate/utils.js.map +1 -0
- package/dist/src/sync/common/i18n.json +2 -0
- package/dist/src/sync/common/import/utils.d.ts +8 -1
- package/dist/src/sync/common/import/utils.js +14 -3
- package/dist/src/sync/common/import/utils.js.map +1 -1
- package/dist/src/sync/common/importProject.js +19 -28
- package/dist/src/sync/common/importProject.js.map +1 -1
- package/dist/src/sync/common/types.d.ts +29 -15
- package/dist/src/sync/common/types.js +25 -1
- package/dist/src/sync/common/types.js.map +1 -1
- package/dist/src/sync/common/utils.d.ts +6 -33
- package/dist/src/sync/common/utils.js +25 -131
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Action.d.ts +28 -0
- package/dist/src/sync/v2/export/controls/Action.js +127 -0
- package/dist/src/sync/v2/export/controls/Action.js.map +1 -0
- package/dist/src/sync/v2/export/controls/Card.d.ts +3 -7
- package/dist/src/sync/v2/export/controls/Card.js +15 -43
- package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FilterBar.d.ts +4 -3
- package/dist/src/sync/v2/export/controls/FilterBar.js +23 -22
- package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FormAction.js +3 -2
- package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Fragment.d.ts +1 -1
- package/dist/src/sync/v2/export/controls/Fragment.js +244 -168
- package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +8 -0
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +62 -0
- package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -0
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +11 -29
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +2 -2
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +4 -4
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +4 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js +15 -0
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +8 -0
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +61 -0
- package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -0
- package/dist/src/sync/v2/export/controls/Table.d.ts +5 -4
- package/dist/src/sync/v2/export/controls/Table.js +16 -21
- package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
- package/dist/src/sync/v2/export/controls/TableColumn.d.ts +18 -2
- package/dist/src/sync/v2/export/controls/TableColumn.js +126 -1
- package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ToolBar.d.ts +4 -0
- package/dist/src/sync/v2/export/controls/ToolBar.js +6 -0
- package/dist/src/sync/v2/export/controls/ToolBar.js.map +1 -0
- package/dist/src/sync/v2/export/controls/index.d.ts +12 -8
- package/dist/src/sync/v2/export/controls/index.js +12 -8
- package/dist/src/sync/v2/export/controls/index.js.map +1 -1
- package/dist/src/sync/v2/export/export.js +134 -111
- package/dist/src/sync/v2/export/export.js.map +1 -1
- package/dist/src/sync/v2/export/exportPage.js +3 -2
- package/dist/src/sync/v2/export/exportPage.js.map +1 -1
- package/dist/src/sync/v2/export/manifest.js +2 -5
- package/dist/src/sync/v2/export/manifest.js.map +1 -1
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +2 -1
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +3 -0
- package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +1 -1
- package/dist/src/sync/v2/export/pages/ListReport.d.ts +3 -2
- package/dist/src/sync/v2/export/pages/ListReport.js +3 -0
- package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
- package/dist/src/sync/v2/export/view-controller-generator.d.ts +16 -21
- package/dist/src/sync/v2/export/view-controller-generator.js +20 -36
- package/dist/src/sync/v2/export/view-controller-generator.js.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js +16 -8
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/src/sync/v2/generate/listReport.d.ts +8 -0
- package/dist/src/sync/v2/generate/listReport.js +25 -6
- package/dist/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.d.ts +1 -6
- package/dist/src/sync/v2/generate/objectPage.js +208 -126
- package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.d.ts +16 -12
- package/dist/src/sync/v2/generate/utils.js +235 -98
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/common/index.d.ts +29 -4
- package/dist/src/sync/v2/import/common/index.js +330 -56
- package/dist/src/sync/v2/import/common/index.js.map +1 -1
- package/dist/src/sync/v2/import/controls/table.js +3 -2
- package/dist/src/sync/v2/import/controls/table.js.map +1 -1
- package/dist/src/sync/v2/import/pages/analyticalListPage.js +27 -5
- package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
- package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -5
- package/dist/src/sync/v2/import/pages/listReport.js +21 -100
- package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.d.ts +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +443 -303
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v2/import/utils.d.ts +4 -6
- package/dist/src/sync/v2/import/utils.js +32 -11
- package/dist/src/sync/v2/import/utils.js.map +1 -1
- package/dist/src/sync/v2/types.d.ts +28 -2
- package/dist/src/sync/v2/types.js +14 -0
- package/dist/src/sync/v2/types.js.map +1 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTable.d.ts +2 -8
- package/dist/src/sync/v4/export/controls/ObjectPageTable.js +3 -68
- package/dist/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +4 -7
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +3 -33
- package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
- package/dist/src/sync/v4/export/controls/Table.d.ts +1 -8
- package/dist/src/sync/v4/export/controls/Table.js +2 -75
- package/dist/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/src/sync/v4/export/controls/TableColumn.d.ts +3 -6
- package/dist/src/sync/v4/export/controls/TableColumn.js +3 -33
- package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v4/export/controls/ToolBar.d.ts +5 -1
- package/dist/src/sync/v4/export/controls/ToolBar.js +3 -0
- package/dist/src/sync/v4/export/controls/ToolBar.js.map +1 -1
- package/dist/src/sync/v4/export/export.js +36 -25
- package/dist/src/sync/v4/export/export.js.map +1 -1
- package/dist/src/sync/v4/export/manifest.js.map +1 -1
- package/dist/src/sync/v4/export/pages/AnalyticalListPage.d.ts +2 -2
- package/dist/src/sync/v4/export/pages/ListReport.d.ts +2 -2
- package/dist/src/sync/v4/export/pages/ObjectPage.d.ts +2 -2
- package/dist/src/sync/v4/export/types.d.ts +4 -0
- package/dist/src/sync/v4/generate/generate.d.ts +4 -2
- package/dist/src/sync/v4/generate/generate.js +15 -6
- package/dist/src/sync/v4/generate/generate.js.map +1 -1
- package/dist/src/sync/v4/generate/listReport.d.ts +9 -7
- package/dist/src/sync/v4/generate/listReport.js +93 -22
- package/dist/src/sync/v4/generate/listReport.js.map +1 -1
- package/dist/src/sync/v4/generate/objectPage.js +111 -81
- package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v4/import/app/appProvider.js +2 -2
- package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
- package/dist/src/sync/v4/import/pages/analyticalListPage.d.ts +2 -2
- package/dist/src/sync/v4/import/pages/analyticalListPage.js +0 -1
- package/dist/src/sync/v4/import/pages/analyticalListPage.js.map +1 -1
- package/dist/src/sync/v4/import/pages/listReport.d.ts +4 -6
- package/dist/src/sync/v4/import/pages/listReport.js +57 -36
- package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v4/import/pages/objectPage.d.ts +2 -2
- package/dist/src/sync/v4/import/pages/objectPage.js +21 -18
- package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v4/import/utils.js +6 -5
- package/dist/src/sync/v4/import/utils.js.map +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts +15 -2
- package/dist/src/sync/v4/utils/utils.js +65 -26
- package/dist/src/sync/v4/utils/utils.js.map +1 -1
- package/dist/test/unit/utils.test.d.ts +1 -1
- package/package.json +13 -11
- package/dist/src/specification/v2/controls/FormAction.d.ts +0 -43
- package/dist/src/specification/v2/controls/FormAction.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +0 -11
- package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +0 -1
- package/dist/src/specification/v2/controls/ObjectPageHeaderAction.d.ts +0 -27
- package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js +0 -3
- package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js.map +0 -1
- package/dist/test/test-utils/metadataParser.d.ts +0 -19
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"artifactType": "Manifest"
|
|
49
49
|
},
|
|
50
50
|
"personalization": {
|
|
51
|
-
"
|
|
52
|
-
"
|
|
51
|
+
"description": "Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.",
|
|
52
|
+
"type": "boolean",
|
|
53
53
|
"artifactType": "Manifest"
|
|
54
54
|
},
|
|
55
55
|
"selectionMode": {
|
|
@@ -118,6 +118,9 @@
|
|
|
118
118
|
},
|
|
119
119
|
"annotationPath": {
|
|
120
120
|
"type": "string"
|
|
121
|
+
},
|
|
122
|
+
"entitySet": {
|
|
123
|
+
"type": "string"
|
|
121
124
|
}
|
|
122
125
|
},
|
|
123
126
|
"additionalProperties": false,
|
|
@@ -199,27 +202,6 @@
|
|
|
199
202
|
],
|
|
200
203
|
"type": "string"
|
|
201
204
|
},
|
|
202
|
-
"PersonalizationType": {
|
|
203
|
-
"type": "object",
|
|
204
|
-
"properties": {
|
|
205
|
-
"column": {
|
|
206
|
-
"description": "Defines whether the user can add and remove columns to a given table.",
|
|
207
|
-
"type": "boolean",
|
|
208
|
-
"artifactType": "Manifest"
|
|
209
|
-
},
|
|
210
|
-
"sort": {
|
|
211
|
-
"description": "Defines whether the user can sort a given table.",
|
|
212
|
-
"type": "boolean",
|
|
213
|
-
"artifactType": "Manifest"
|
|
214
|
-
},
|
|
215
|
-
"filter": {
|
|
216
|
-
"description": "Defines whether the user can filter data of a given table.",
|
|
217
|
-
"type": "boolean",
|
|
218
|
-
"artifactType": "Manifest"
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"additionalProperties": false
|
|
222
|
-
},
|
|
223
205
|
"SelectionMode": {
|
|
224
206
|
"enum": [
|
|
225
207
|
"Auto",
|
|
@@ -273,74 +255,32 @@
|
|
|
273
255
|
"additionalProperties": {
|
|
274
256
|
"anyOf": [
|
|
275
257
|
{
|
|
276
|
-
"
|
|
277
|
-
"isViewNode": true,
|
|
278
|
-
"type": "object",
|
|
279
|
-
"properties": {
|
|
280
|
-
"width": {
|
|
281
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
282
|
-
"type": "string"
|
|
283
|
-
},
|
|
284
|
-
"availability": {
|
|
285
|
-
"$ref": "#/definitions/Availability",
|
|
286
|
-
"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."
|
|
287
|
-
},
|
|
288
|
-
"afterExecution": {
|
|
289
|
-
"$ref": "#/definitions/ActionAfterExecutionConfiguration",
|
|
290
|
-
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)"
|
|
291
|
-
}
|
|
292
|
-
},
|
|
293
|
-
"additionalProperties": false
|
|
258
|
+
"$ref": "#/definitions/TableColumn"
|
|
294
259
|
},
|
|
295
260
|
{
|
|
296
|
-
"
|
|
297
|
-
"isViewNode": true,
|
|
298
|
-
"type": "array",
|
|
299
|
-
"items": {
|
|
300
|
-
"description": "Custom Column",
|
|
301
|
-
"isViewNode": true,
|
|
302
|
-
"additionalProperties": false,
|
|
303
|
-
"type": "object",
|
|
304
|
-
"properties": {
|
|
305
|
-
"position": {
|
|
306
|
-
"description": "Defines the position of the column relative to other columns.",
|
|
307
|
-
"type": "object",
|
|
308
|
-
"properties": {
|
|
309
|
-
"anchor": {
|
|
310
|
-
"description": "The key of another column to be used as placement anchor.",
|
|
311
|
-
"type": "string"
|
|
312
|
-
},
|
|
313
|
-
"placement": {
|
|
314
|
-
"$ref": "#/definitions/Placement",
|
|
315
|
-
"description": "Define the placement, either before or after the anchor column."
|
|
316
|
-
}
|
|
317
|
-
},
|
|
318
|
-
"additionalProperties": false,
|
|
319
|
-
"required": [
|
|
320
|
-
"placement"
|
|
321
|
-
]
|
|
322
|
-
},
|
|
323
|
-
"header": {
|
|
324
|
-
"description": "The header is shown on the table as header, as well as in the add/remove dialog.",
|
|
325
|
-
"type": "string"
|
|
326
|
-
},
|
|
327
|
-
"width": {
|
|
328
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
329
|
-
"type": "string"
|
|
330
|
-
},
|
|
331
|
-
"template": {
|
|
332
|
-
"description": "Relevant for extension columns; allows the definition of a target fragment.",
|
|
333
|
-
"type": "string"
|
|
334
|
-
}
|
|
335
|
-
},
|
|
336
|
-
"required": [
|
|
337
|
-
"header"
|
|
338
|
-
]
|
|
339
|
-
}
|
|
261
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
340
262
|
}
|
|
341
263
|
]
|
|
342
264
|
}
|
|
343
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
|
+
},
|
|
344
284
|
"Availability": {
|
|
345
285
|
"enum": [
|
|
346
286
|
"Adaptation",
|
|
@@ -349,6 +289,29 @@
|
|
|
349
289
|
],
|
|
350
290
|
"type": "string"
|
|
351
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
|
+
},
|
|
352
315
|
"ActionAfterExecutionConfiguration": {
|
|
353
316
|
"type": "object",
|
|
354
317
|
"properties": {
|
|
@@ -365,14 +328,6 @@
|
|
|
365
328
|
},
|
|
366
329
|
"additionalProperties": false
|
|
367
330
|
},
|
|
368
|
-
"Placement": {
|
|
369
|
-
"enum": [
|
|
370
|
-
"After",
|
|
371
|
-
"Before",
|
|
372
|
-
"End"
|
|
373
|
-
],
|
|
374
|
-
"type": "string"
|
|
375
|
-
},
|
|
376
331
|
"VariantManagementTypeListReport": {
|
|
377
332
|
"enum": [
|
|
378
333
|
"Control",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"artifactType": "Manifest"
|
|
49
49
|
},
|
|
50
50
|
"personalization": {
|
|
51
|
-
"
|
|
52
|
-
"
|
|
51
|
+
"description": "Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.",
|
|
52
|
+
"type": "boolean",
|
|
53
53
|
"artifactType": "Manifest"
|
|
54
54
|
},
|
|
55
55
|
"selectionMode": {
|
|
@@ -118,6 +118,9 @@
|
|
|
118
118
|
},
|
|
119
119
|
"annotationPath": {
|
|
120
120
|
"type": "string"
|
|
121
|
+
},
|
|
122
|
+
"entitySet": {
|
|
123
|
+
"type": "string"
|
|
121
124
|
}
|
|
122
125
|
},
|
|
123
126
|
"additionalProperties": false,
|
|
@@ -199,27 +202,6 @@
|
|
|
199
202
|
],
|
|
200
203
|
"type": "string"
|
|
201
204
|
},
|
|
202
|
-
"PersonalizationType": {
|
|
203
|
-
"type": "object",
|
|
204
|
-
"properties": {
|
|
205
|
-
"column": {
|
|
206
|
-
"description": "Defines whether the user can add and remove columns to a given table.",
|
|
207
|
-
"type": "boolean",
|
|
208
|
-
"artifactType": "Manifest"
|
|
209
|
-
},
|
|
210
|
-
"sort": {
|
|
211
|
-
"description": "Defines whether the user can sort a given table.",
|
|
212
|
-
"type": "boolean",
|
|
213
|
-
"artifactType": "Manifest"
|
|
214
|
-
},
|
|
215
|
-
"filter": {
|
|
216
|
-
"description": "Defines whether the user can filter data of a given table.",
|
|
217
|
-
"type": "boolean",
|
|
218
|
-
"artifactType": "Manifest"
|
|
219
|
-
}
|
|
220
|
-
},
|
|
221
|
-
"additionalProperties": false
|
|
222
|
-
},
|
|
223
205
|
"SelectionMode": {
|
|
224
206
|
"enum": [
|
|
225
207
|
"Auto",
|
|
@@ -273,74 +255,32 @@
|
|
|
273
255
|
"additionalProperties": {
|
|
274
256
|
"anyOf": [
|
|
275
257
|
{
|
|
276
|
-
"
|
|
277
|
-
"isViewNode": true,
|
|
278
|
-
"type": "object",
|
|
279
|
-
"properties": {
|
|
280
|
-
"width": {
|
|
281
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
282
|
-
"type": "string"
|
|
283
|
-
},
|
|
284
|
-
"availability": {
|
|
285
|
-
"$ref": "#/definitions/Availability",
|
|
286
|
-
"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."
|
|
287
|
-
},
|
|
288
|
-
"afterExecution": {
|
|
289
|
-
"$ref": "#/definitions/ActionAfterExecutionConfiguration",
|
|
290
|
-
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)"
|
|
291
|
-
}
|
|
292
|
-
},
|
|
293
|
-
"additionalProperties": false
|
|
258
|
+
"$ref": "#/definitions/TableColumn"
|
|
294
259
|
},
|
|
295
260
|
{
|
|
296
|
-
"
|
|
297
|
-
"isViewNode": true,
|
|
298
|
-
"type": "array",
|
|
299
|
-
"items": {
|
|
300
|
-
"description": "Custom Column",
|
|
301
|
-
"isViewNode": true,
|
|
302
|
-
"additionalProperties": false,
|
|
303
|
-
"type": "object",
|
|
304
|
-
"properties": {
|
|
305
|
-
"position": {
|
|
306
|
-
"description": "Defines the position of the column relative to other columns.",
|
|
307
|
-
"type": "object",
|
|
308
|
-
"properties": {
|
|
309
|
-
"anchor": {
|
|
310
|
-
"description": "The key of another column to be used as placement anchor.",
|
|
311
|
-
"type": "string"
|
|
312
|
-
},
|
|
313
|
-
"placement": {
|
|
314
|
-
"$ref": "#/definitions/Placement",
|
|
315
|
-
"description": "Define the placement, either before or after the anchor column."
|
|
316
|
-
}
|
|
317
|
-
},
|
|
318
|
-
"additionalProperties": false,
|
|
319
|
-
"required": [
|
|
320
|
-
"placement"
|
|
321
|
-
]
|
|
322
|
-
},
|
|
323
|
-
"header": {
|
|
324
|
-
"description": "The header is shown on the table as header, as well as in the add/remove dialog.",
|
|
325
|
-
"type": "string"
|
|
326
|
-
},
|
|
327
|
-
"width": {
|
|
328
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
329
|
-
"type": "string"
|
|
330
|
-
},
|
|
331
|
-
"template": {
|
|
332
|
-
"description": "Relevant for extension columns; allows the definition of a target fragment.",
|
|
333
|
-
"type": "string"
|
|
334
|
-
}
|
|
335
|
-
},
|
|
336
|
-
"required": [
|
|
337
|
-
"header"
|
|
338
|
-
]
|
|
339
|
-
}
|
|
261
|
+
"$ref": "#/definitions/TableColumnAction"
|
|
340
262
|
}
|
|
341
263
|
]
|
|
342
264
|
}
|
|
343
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
|
+
},
|
|
344
284
|
"Availability": {
|
|
345
285
|
"enum": [
|
|
346
286
|
"Adaptation",
|
|
@@ -349,6 +289,29 @@
|
|
|
349
289
|
],
|
|
350
290
|
"type": "string"
|
|
351
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
|
+
},
|
|
352
315
|
"ActionAfterExecutionConfiguration": {
|
|
353
316
|
"type": "object",
|
|
354
317
|
"properties": {
|
|
@@ -365,14 +328,6 @@
|
|
|
365
328
|
},
|
|
366
329
|
"additionalProperties": false
|
|
367
330
|
},
|
|
368
|
-
"Placement": {
|
|
369
|
-
"enum": [
|
|
370
|
-
"After",
|
|
371
|
-
"Before",
|
|
372
|
-
"End"
|
|
373
|
-
],
|
|
374
|
-
"type": "string"
|
|
375
|
-
},
|
|
376
331
|
"VariantManagementTypeListReport": {
|
|
377
332
|
"enum": [
|
|
378
333
|
"Control",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
]
|
|
24
24
|
},
|
|
25
25
|
"footer": {
|
|
26
|
-
"$ref": "#/definitions/ObjectPageFooter<
|
|
26
|
+
"$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
|
|
27
27
|
},
|
|
28
28
|
"$schema": {
|
|
29
29
|
"type": "string"
|
|
@@ -286,11 +286,6 @@
|
|
|
286
286
|
"isViewNode": true,
|
|
287
287
|
"type": "object",
|
|
288
288
|
"properties": {
|
|
289
|
-
"enableFullScreen": {
|
|
290
|
-
"description": "By setting enableFullScreen to true you can enable the full screen mode for this table; this will display a new button on the table toolbar allowing the user to open the table in a fullscreen dialog.",
|
|
291
|
-
"type": "boolean",
|
|
292
|
-
"artifactType": "Manifest"
|
|
293
|
-
},
|
|
294
289
|
"enablePaste": {
|
|
295
290
|
"description": "In the Object Page tables, it is possible to add several items at a time by copying and pasting data from an excel file, if this property is set to true.",
|
|
296
291
|
"type": "boolean",
|
|
@@ -306,8 +301,8 @@
|
|
|
306
301
|
"artifactType": "Manifest"
|
|
307
302
|
},
|
|
308
303
|
"personalization": {
|
|
309
|
-
"
|
|
310
|
-
"
|
|
304
|
+
"description": "Defines the personalization mode, currently only effective if variant management on page is either set to Page or Control.",
|
|
305
|
+
"type": "boolean",
|
|
311
306
|
"artifactType": "Manifest"
|
|
312
307
|
},
|
|
313
308
|
"quickVariantSelection": {
|
|
@@ -316,7 +311,7 @@
|
|
|
316
311
|
"artifactType": "Manifest"
|
|
317
312
|
},
|
|
318
313
|
"columns": {
|
|
319
|
-
"$ref": "#/definitions/
|
|
314
|
+
"$ref": "#/definitions/GenericColumnsOP"
|
|
320
315
|
},
|
|
321
316
|
"type": {
|
|
322
317
|
"$ref": "#/definitions/TableTypeV4",
|
|
@@ -417,27 +412,6 @@
|
|
|
417
412
|
],
|
|
418
413
|
"type": "string"
|
|
419
414
|
},
|
|
420
|
-
"PersonalizationTypeOP": {
|
|
421
|
-
"type": "object",
|
|
422
|
-
"properties": {
|
|
423
|
-
"column": {
|
|
424
|
-
"description": "Defines whether the user can add and remove columns to a given table.",
|
|
425
|
-
"type": "boolean",
|
|
426
|
-
"artifactType": "Manifest"
|
|
427
|
-
},
|
|
428
|
-
"sort": {
|
|
429
|
-
"description": "Defines whether the user can sort a given table.",
|
|
430
|
-
"type": "boolean",
|
|
431
|
-
"artifactType": "Manifest"
|
|
432
|
-
},
|
|
433
|
-
"filter": {
|
|
434
|
-
"description": "Defines whether the user can filter data of a given table.",
|
|
435
|
-
"type": "boolean",
|
|
436
|
-
"artifactType": "Manifest"
|
|
437
|
-
}
|
|
438
|
-
},
|
|
439
|
-
"additionalProperties": false
|
|
440
|
-
},
|
|
441
415
|
"QuickVariantSelectionV4OP": {
|
|
442
416
|
"type": "object",
|
|
443
417
|
"properties": {
|
|
@@ -477,79 +451,37 @@
|
|
|
477
451
|
"annotationPath"
|
|
478
452
|
]
|
|
479
453
|
},
|
|
480
|
-
"
|
|
454
|
+
"GenericColumnsOP": {
|
|
481
455
|
"type": "object",
|
|
482
456
|
"additionalProperties": {
|
|
483
457
|
"anyOf": [
|
|
484
458
|
{
|
|
485
|
-
"
|
|
486
|
-
"isViewNode": true,
|
|
487
|
-
"type": "object",
|
|
488
|
-
"properties": {
|
|
489
|
-
"width": {
|
|
490
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
491
|
-
"type": "string"
|
|
492
|
-
},
|
|
493
|
-
"availability": {
|
|
494
|
-
"$ref": "#/definitions/Availability",
|
|
495
|
-
"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."
|
|
496
|
-
},
|
|
497
|
-
"afterExecution": {
|
|
498
|
-
"$ref": "#/definitions/ActionAfterExecutionConfigurationOP",
|
|
499
|
-
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)"
|
|
500
|
-
}
|
|
501
|
-
},
|
|
502
|
-
"additionalProperties": false
|
|
459
|
+
"$ref": "#/definitions/ObjectPageTableColumn"
|
|
503
460
|
},
|
|
504
461
|
{
|
|
505
|
-
"
|
|
506
|
-
"isViewNode": true,
|
|
507
|
-
"type": "array",
|
|
508
|
-
"items": {
|
|
509
|
-
"description": "Custom Column",
|
|
510
|
-
"isViewNode": true,
|
|
511
|
-
"additionalProperties": false,
|
|
512
|
-
"type": "object",
|
|
513
|
-
"properties": {
|
|
514
|
-
"position": {
|
|
515
|
-
"description": "Defines the position of the column relative to other columns.",
|
|
516
|
-
"type": "object",
|
|
517
|
-
"properties": {
|
|
518
|
-
"anchor": {
|
|
519
|
-
"description": "The key of another column to be used as placement anchor.",
|
|
520
|
-
"type": "string"
|
|
521
|
-
},
|
|
522
|
-
"placement": {
|
|
523
|
-
"$ref": "#/definitions/Placement",
|
|
524
|
-
"description": "Define the placement, either before or after the anchor column."
|
|
525
|
-
}
|
|
526
|
-
},
|
|
527
|
-
"additionalProperties": false,
|
|
528
|
-
"required": [
|
|
529
|
-
"placement"
|
|
530
|
-
]
|
|
531
|
-
},
|
|
532
|
-
"header": {
|
|
533
|
-
"description": "The header is shown on the table as header, as well as in the add/remove dialog.",
|
|
534
|
-
"type": "string"
|
|
535
|
-
},
|
|
536
|
-
"width": {
|
|
537
|
-
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
538
|
-
"type": "string"
|
|
539
|
-
},
|
|
540
|
-
"template": {
|
|
541
|
-
"description": "Relevant for extension columns; allows the definition of a target fragment.",
|
|
542
|
-
"type": "string"
|
|
543
|
-
}
|
|
544
|
-
},
|
|
545
|
-
"required": [
|
|
546
|
-
"header"
|
|
547
|
-
]
|
|
548
|
-
}
|
|
462
|
+
"$ref": "#/definitions/ObjectPageTableColumnAction"
|
|
549
463
|
}
|
|
550
464
|
]
|
|
551
465
|
}
|
|
552
466
|
},
|
|
467
|
+
"ObjectPageTableColumn": {
|
|
468
|
+
"description": "Table Column",
|
|
469
|
+
"isViewNode": true,
|
|
470
|
+
"type": "object",
|
|
471
|
+
"properties": {
|
|
472
|
+
"width": {
|
|
473
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
474
|
+
"type": "string",
|
|
475
|
+
"artifactType": "Manifest"
|
|
476
|
+
},
|
|
477
|
+
"availability": {
|
|
478
|
+
"$ref": "#/definitions/Availability",
|
|
479
|
+
"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.",
|
|
480
|
+
"artifactType": "Manifest"
|
|
481
|
+
}
|
|
482
|
+
},
|
|
483
|
+
"additionalProperties": false
|
|
484
|
+
},
|
|
553
485
|
"Availability": {
|
|
554
486
|
"enum": [
|
|
555
487
|
"Adaptation",
|
|
@@ -558,6 +490,29 @@
|
|
|
558
490
|
],
|
|
559
491
|
"type": "string"
|
|
560
492
|
},
|
|
493
|
+
"ObjectPageTableColumnAction": {
|
|
494
|
+
"description": "Inline Action for Object Page",
|
|
495
|
+
"isViewNode": true,
|
|
496
|
+
"type": "object",
|
|
497
|
+
"properties": {
|
|
498
|
+
"afterExecution": {
|
|
499
|
+
"$ref": "#/definitions/ActionAfterExecutionConfigurationOP",
|
|
500
|
+
"description": "Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)",
|
|
501
|
+
"artifactType": "Manifest"
|
|
502
|
+
},
|
|
503
|
+
"width": {
|
|
504
|
+
"description": "A string type that represents CSS size values.\nRefer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.",
|
|
505
|
+
"type": "string",
|
|
506
|
+
"artifactType": "Manifest"
|
|
507
|
+
},
|
|
508
|
+
"availability": {
|
|
509
|
+
"$ref": "#/definitions/Availability",
|
|
510
|
+
"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.",
|
|
511
|
+
"artifactType": "Manifest"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
"additionalProperties": false
|
|
515
|
+
},
|
|
561
516
|
"ActionAfterExecutionConfigurationOP": {
|
|
562
517
|
"type": "object",
|
|
563
518
|
"properties": {
|
|
@@ -574,14 +529,6 @@
|
|
|
574
529
|
},
|
|
575
530
|
"additionalProperties": false
|
|
576
531
|
},
|
|
577
|
-
"Placement": {
|
|
578
|
-
"enum": [
|
|
579
|
-
"After",
|
|
580
|
-
"Before",
|
|
581
|
-
"End"
|
|
582
|
-
],
|
|
583
|
-
"type": "string"
|
|
584
|
-
},
|
|
585
532
|
"TableTypeV4": {
|
|
586
533
|
"enum": [
|
|
587
534
|
"GridTable",
|
|
@@ -719,18 +666,18 @@
|
|
|
719
666
|
],
|
|
720
667
|
"type": "string"
|
|
721
668
|
},
|
|
722
|
-
"ObjectPageFooter<
|
|
669
|
+
"ObjectPageFooter<ObjectPageFooterActions>": {
|
|
723
670
|
"description": "Footer",
|
|
724
671
|
"isViewNode": true,
|
|
725
672
|
"type": "object",
|
|
726
673
|
"properties": {
|
|
727
674
|
"actions": {
|
|
728
|
-
"$ref": "#/definitions/
|
|
675
|
+
"$ref": "#/definitions/ObjectPageFooterActions"
|
|
729
676
|
}
|
|
730
677
|
},
|
|
731
678
|
"additionalProperties": false
|
|
732
679
|
},
|
|
733
|
-
"
|
|
680
|
+
"ObjectPageFooterActions": {
|
|
734
681
|
"type": "object",
|
|
735
682
|
"additionalProperties": {
|
|
736
683
|
"type": "object",
|