@sap/ux-specification 1.90.12 → 1.90.16
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 +89 -4
- 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 +90 -13
- package/dist/schemas/v2/ListReportConfig.json +100 -18
- package/dist/schemas/v2/ObjectPageConfig.json +274 -60
- package/dist/schemas/v2/OverviewPageConfig.json +0 -28
- package/dist/schemas/v4/AnalyticalListPageConfig.json +3 -0
- package/dist/schemas/v4/ListReportConfig.json +3 -0
- package/dist/schemas/v4/ObjectPageConfig.json +22 -0
- package/dist/scripts/to-json-schema.js +11 -2
- package/dist/scripts/to-json-schema.js.map +1 -1
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/src/apiTypes.d.ts +8 -0
- package/dist/src/specification/v2/controls/Card.d.ts +0 -8
- package/dist/src/specification/v2/controls/Card.js.map +1 -1
- package/dist/src/specification/v2/controls/{DataField.d.ts → Field.d.ts} +2 -2
- package/dist/src/specification/v2/controls/{DataField.js → Field.js} +1 -1
- package/dist/src/specification/v2/controls/Field.js.map +1 -0
- package/dist/src/specification/v2/controls/FilterBar.d.ts +12 -6
- package/dist/src/specification/v2/controls/FormAction.d.ts +27 -0
- package/dist/src/specification/v2/controls/FormAction.js +3 -0
- package/dist/src/specification/v2/controls/FormAction.js.map +1 -0
- package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +11 -0
- package/dist/src/specification/v2/controls/ObjectPageFooter.js +3 -0
- package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +1 -0
- package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +4 -5
- package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +2 -5
- package/dist/src/specification/v2/controls/ObjectPageHeader.js +0 -5
- package/dist/src/specification/v2/controls/ObjectPageHeader.js.map +1 -1
- package/dist/src/specification/v2/controls/ObjectPageHeaderAction.d.ts +20 -0
- package/dist/src/specification/v2/controls/ObjectPageSection.d.ts +25 -15
- package/dist/src/specification/v2/controls/ObjectPageSection.js.map +1 -1
- package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +10 -5
- package/dist/src/specification/v2/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/specification/v2/controls/Table.d.ts +7 -18
- package/dist/src/specification/v2/controls/Table.js +0 -15
- package/dist/src/specification/v2/controls/Table.js.map +1 -1
- package/dist/src/specification/v2/controls/ToolBar.d.ts +2 -6
- package/dist/src/specification/v2/controls/index.d.ts +4 -1
- package/dist/src/specification/v2/controls/index.js +0 -1
- package/dist/src/specification/v2/controls/index.js.map +1 -1
- package/dist/src/specification/v2/pages/ListReportConfig.d.ts +2 -2
- package/dist/src/specification/v2/pages/ObjectPageConfig.d.ts +2 -1
- package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +11 -0
- package/dist/src/specification/v4/controls/ObjectPageFooter.js +3 -0
- package/dist/src/specification/v4/controls/ObjectPageFooter.js.map +1 -0
- package/dist/src/specification/v4/controls/Table.d.ts +1 -0
- package/dist/src/specification/v4/controls/index.d.ts +1 -0
- package/dist/src/specification/v4/pages/ObjectPageConfig.d.ts +2 -1
- package/dist/src/specification/v4/webapp/manifest/sapUi5.d.ts +2 -1
- package/dist/src/specification/v4/webapp/manifest/sapUi5.js.map +1 -1
- package/dist/src/sync/common/decoration/control.js +34 -19
- package/dist/src/sync/common/decoration/control.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 +31 -2
- package/dist/src/sync/common/generate/objectPage.js +195 -29
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/generate/utils.d.ts +66 -0
- package/dist/src/sync/common/generate/utils.js +205 -0
- package/dist/src/sync/common/generate/utils.js.map +1 -0
- package/dist/src/sync/common/import/utils.d.ts +6 -0
- package/dist/src/sync/common/import/utils.js +21 -0
- package/dist/src/sync/common/import/utils.js.map +1 -1
- package/dist/src/sync/common/importProject.js +64 -62
- package/dist/src/sync/common/importProject.js.map +1 -1
- package/dist/src/sync/common/types.d.ts +5 -2
- package/dist/src/sync/common/types.js +4 -0
- package/dist/src/sync/common/types.js.map +1 -1
- package/dist/src/sync/common/utils.d.ts +3 -29
- package/dist/src/sync/common/utils.js +90 -193
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/application.d.ts +1 -0
- package/dist/src/sync/v2/application.js +3 -0
- package/dist/src/sync/v2/application.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Card.d.ts +0 -2
- package/dist/src/sync/v2/export/controls/Card.js +0 -14
- package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Field.d.ts +4 -0
- package/dist/src/sync/v2/export/controls/{DataField.js → Field.js} +6 -6
- package/dist/src/sync/v2/export/controls/Field.js.map +1 -0
- package/dist/src/sync/v2/export/controls/FilterBar.d.ts +6 -4
- package/dist/src/sync/v2/export/controls/FilterBar.js +26 -15
- package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FormAction.d.ts +16 -0
- package/dist/src/sync/v2/export/controls/FormAction.js +95 -0
- package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -0
- package/dist/src/sync/v2/export/controls/ObjectPageChart.d.ts +4 -1
- package/dist/src/sync/v2/export/controls/ObjectPageChart.js +13 -0
- package/dist/src/sync/v2/export/controls/ObjectPageChart.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.d.ts +3 -2
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +5 -0
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +42 -3
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +32 -0
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +144 -0
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -0
- package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +7 -5
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js +16 -4
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Table.d.ts +14 -5
- package/dist/src/sync/v2/export/controls/Table.js +84 -37
- package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
- package/dist/src/sync/v2/export/controls/TableColumn.d.ts +3 -2
- package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v2/export/controls/index.d.ts +3 -1
- package/dist/src/sync/v2/export/controls/index.js +3 -1
- package/dist/src/sync/v2/export/controls/index.js.map +1 -1
- package/dist/src/sync/v2/export/export.js +125 -86
- 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/pages/ListReport.d.ts +2 -2
- package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.d.ts +3 -9
- package/dist/src/sync/v2/generate/analyticalListReport.js +15 -13
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/src/sync/v2/generate/generate.js +28 -6
- package/dist/src/sync/v2/generate/generate.js.map +1 -1
- package/dist/src/sync/v2/generate/listReport.d.ts +11 -10
- package/dist/src/sync/v2/generate/listReport.js +22 -12
- package/dist/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.d.ts +3 -10
- package/dist/src/sync/v2/generate/objectPage.js +206 -153
- package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.d.ts +1 -2
- package/dist/src/sync/v2/generate/utils.js +8 -3
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/common/index.js +1 -1
- package/dist/src/sync/v2/import/common/index.js.map +1 -1
- package/dist/src/sync/v2/import/pages/listReport.js +2 -2
- package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +176 -102
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v2/types.d.ts +12 -0
- package/dist/src/sync/v2/types.js +11 -0
- package/dist/src/sync/v2/types.js.map +1 -1
- package/dist/src/sync/v4/application.js +10 -10
- package/dist/src/sync/v4/application.js.map +1 -1
- package/dist/src/sync/v4/export/export.js +165 -139
- package/dist/src/sync/v4/export/export.js.map +1 -1
- package/dist/src/sync/v4/export/manifest.js +96 -76
- package/dist/src/sync/v4/export/manifest.js.map +1 -1
- package/dist/src/sync/v4/export/types.d.ts +1 -0
- package/dist/src/sync/v4/generate/generate.js +10 -2
- package/dist/src/sync/v4/generate/generate.js.map +1 -1
- package/dist/src/sync/v4/generate/listReport.d.ts +2 -1
- package/dist/src/sync/v4/generate/listReport.js +47 -1
- package/dist/src/sync/v4/generate/listReport.js.map +1 -1
- package/dist/src/sync/v4/generate/objectPage.d.ts +3 -6
- package/dist/src/sync/v4/generate/objectPage.js +169 -126
- package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v4/import/app/appProvider.js +109 -81
- package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
- package/dist/src/sync/v4/import/fragment.js +41 -46
- package/dist/src/sync/v4/import/fragment.js.map +1 -1
- package/dist/src/sync/v4/utils/StableIdHelper.d.ts +0 -3
- package/dist/src/sync/v4/utils/StableIdHelper.js +9 -11
- package/dist/src/sync/v4/utils/StableIdHelper.js.map +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts +1 -8
- package/dist/src/sync/v4/utils/utils.js +28 -54
- package/dist/src/sync/v4/utils/utils.js.map +1 -1
- package/package.json +15 -15
- package/dist/src/specification/v2/controls/DataField.js.map +0 -1
- package/dist/src/sync/v2/export/controls/DataField.d.ts +0 -4
- package/dist/src/sync/v2/export/controls/DataField.js.map +0 -1
|
@@ -189,10 +189,7 @@
|
|
|
189
189
|
"type": "object",
|
|
190
190
|
"properties": {
|
|
191
191
|
"fields": {
|
|
192
|
-
"
|
|
193
|
-
"additionalProperties": {
|
|
194
|
-
"$ref": "#/definitions/FieldPath"
|
|
195
|
-
},
|
|
192
|
+
"$ref": "#/definitions/CreationFieldKeys",
|
|
196
193
|
"artifactType": "Manifest"
|
|
197
194
|
}
|
|
198
195
|
},
|
|
@@ -201,11 +198,18 @@
|
|
|
201
198
|
"fields"
|
|
202
199
|
]
|
|
203
200
|
},
|
|
201
|
+
"CreationFieldKeys": {
|
|
202
|
+
"type": "object",
|
|
203
|
+
"additionalProperties": {
|
|
204
|
+
"$ref": "#/definitions/FieldPath"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
204
207
|
"FieldPath": {
|
|
205
208
|
"type": "object",
|
|
206
209
|
"properties": {
|
|
207
210
|
"path": {
|
|
208
|
-
"type": "string"
|
|
211
|
+
"type": "string",
|
|
212
|
+
"artifactType": "Manifest"
|
|
209
213
|
}
|
|
210
214
|
},
|
|
211
215
|
"additionalProperties": false,
|
|
@@ -261,7 +265,8 @@
|
|
|
261
265
|
"properties": {
|
|
262
266
|
"enableAutoBinding": {
|
|
263
267
|
"description": "When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property.",
|
|
264
|
-
"type": "boolean"
|
|
268
|
+
"type": "boolean",
|
|
269
|
+
"artifactType": "Manifest"
|
|
265
270
|
},
|
|
266
271
|
"variants": {
|
|
267
272
|
"description": "The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations.",
|
|
@@ -271,11 +276,13 @@
|
|
|
271
276
|
"^[0-9]+$": {
|
|
272
277
|
"$ref": "#/definitions/QuickVariantX"
|
|
273
278
|
}
|
|
274
|
-
}
|
|
279
|
+
},
|
|
280
|
+
"artifactType": "Manifest"
|
|
275
281
|
},
|
|
276
282
|
"showCounts": {
|
|
277
283
|
"description": "To show the number of records available, set showCounts to true.",
|
|
278
|
-
"type": "boolean"
|
|
284
|
+
"type": "boolean",
|
|
285
|
+
"artifactType": "Manifest"
|
|
279
286
|
}
|
|
280
287
|
},
|
|
281
288
|
"additionalProperties": false,
|
|
@@ -377,11 +384,80 @@
|
|
|
377
384
|
"isViewNode": true,
|
|
378
385
|
"type": "object",
|
|
379
386
|
"additionalProperties": {
|
|
380
|
-
"
|
|
381
|
-
"properties": {},
|
|
382
|
-
"additionalProperties": true
|
|
387
|
+
"$ref": "#/definitions/FormAction"
|
|
383
388
|
}
|
|
384
389
|
},
|
|
390
|
+
"FormAction": {
|
|
391
|
+
"description": "Action",
|
|
392
|
+
"isViewNode": true,
|
|
393
|
+
"type": "object",
|
|
394
|
+
"properties": {
|
|
395
|
+
"tooltip": {
|
|
396
|
+
"description": "Text for tooltip of button",
|
|
397
|
+
"type": "string",
|
|
398
|
+
"artifactType": "FlexChange",
|
|
399
|
+
"controlType": "sap.m.Button"
|
|
400
|
+
},
|
|
401
|
+
"icon": {
|
|
402
|
+
"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.",
|
|
403
|
+
"type": "string",
|
|
404
|
+
"artifactType": "FlexChange",
|
|
405
|
+
"controlType": "sap.m.Button"
|
|
406
|
+
},
|
|
407
|
+
"activeIcon": {
|
|
408
|
+
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
409
|
+
"type": "string",
|
|
410
|
+
"artifactType": "FlexChange",
|
|
411
|
+
"controlType": "sap.m.Button"
|
|
412
|
+
},
|
|
413
|
+
"type": {
|
|
414
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
415
|
+
"description": "Defines the Button type.",
|
|
416
|
+
"artifactType": "FlexChange",
|
|
417
|
+
"controlType": "sap.m.Button"
|
|
418
|
+
},
|
|
419
|
+
"visible": {
|
|
420
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
421
|
+
"anyOf": [
|
|
422
|
+
{
|
|
423
|
+
"enum": [
|
|
424
|
+
false,
|
|
425
|
+
true,
|
|
426
|
+
"{ui>/editable}",
|
|
427
|
+
"{= !${ui>/editable}}"
|
|
428
|
+
]
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"type": "string"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"description": "Whether the button should be visible on the screen.",
|
|
435
|
+
"artifactType": "FlexChange",
|
|
436
|
+
"controlType": "sap.m.Button"
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
"additionalProperties": false
|
|
440
|
+
},
|
|
441
|
+
"sap.m.ButtonType": {
|
|
442
|
+
"description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.",
|
|
443
|
+
"enum": [
|
|
444
|
+
"Accept",
|
|
445
|
+
"Attention",
|
|
446
|
+
"Back",
|
|
447
|
+
"Critical",
|
|
448
|
+
"Default",
|
|
449
|
+
"Emphasized",
|
|
450
|
+
"Ghost",
|
|
451
|
+
"Negative",
|
|
452
|
+
"Neutral",
|
|
453
|
+
"Reject",
|
|
454
|
+
"Success",
|
|
455
|
+
"Transparent",
|
|
456
|
+
"Unstyled",
|
|
457
|
+
"Up"
|
|
458
|
+
],
|
|
459
|
+
"type": "string"
|
|
460
|
+
},
|
|
385
461
|
"GenericColumns": {
|
|
386
462
|
"type": "object",
|
|
387
463
|
"additionalProperties": {
|
|
@@ -415,7 +491,7 @@
|
|
|
415
491
|
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
416
492
|
"anyOf": [
|
|
417
493
|
{
|
|
418
|
-
"$ref": "#/definitions/
|
|
494
|
+
"$ref": "#/definitions/sap.ui.core.TextAlign"
|
|
419
495
|
},
|
|
420
496
|
{
|
|
421
497
|
"type": "string"
|
|
@@ -428,7 +504,8 @@
|
|
|
428
504
|
},
|
|
429
505
|
"additionalProperties": false
|
|
430
506
|
},
|
|
431
|
-
"
|
|
507
|
+
"sap.ui.core.TextAlign": {
|
|
508
|
+
"description": "Configuration options for text alignments.",
|
|
432
509
|
"enum": [
|
|
433
510
|
"Begin",
|
|
434
511
|
"Center",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
]
|
|
28
28
|
},
|
|
29
29
|
"filterBar": {
|
|
30
|
-
"$ref": "#/definitions/
|
|
30
|
+
"$ref": "#/definitions/ListReportFilterBar"
|
|
31
31
|
},
|
|
32
32
|
"$schema": {
|
|
33
33
|
"type": "string"
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
65
65
|
"anyOf": [
|
|
66
66
|
{
|
|
67
|
-
"$ref": "#/definitions/PopinLayout"
|
|
67
|
+
"$ref": "#/definitions/sap.m.PopinLayout"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"type": "string"
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
"additionalProperties": false
|
|
161
161
|
},
|
|
162
|
-
"PopinLayout": {
|
|
162
|
+
"sap.m.PopinLayout": {
|
|
163
163
|
"enum": [
|
|
164
164
|
"Block",
|
|
165
165
|
"GridLarge",
|
|
@@ -188,10 +188,7 @@
|
|
|
188
188
|
"type": "object",
|
|
189
189
|
"properties": {
|
|
190
190
|
"fields": {
|
|
191
|
-
"
|
|
192
|
-
"additionalProperties": {
|
|
193
|
-
"$ref": "#/definitions/FieldPath"
|
|
194
|
-
},
|
|
191
|
+
"$ref": "#/definitions/CreationFieldKeys",
|
|
195
192
|
"artifactType": "Manifest"
|
|
196
193
|
}
|
|
197
194
|
},
|
|
@@ -200,11 +197,18 @@
|
|
|
200
197
|
"fields"
|
|
201
198
|
]
|
|
202
199
|
},
|
|
200
|
+
"CreationFieldKeys": {
|
|
201
|
+
"type": "object",
|
|
202
|
+
"additionalProperties": {
|
|
203
|
+
"$ref": "#/definitions/FieldPath"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
203
206
|
"FieldPath": {
|
|
204
207
|
"type": "object",
|
|
205
208
|
"properties": {
|
|
206
209
|
"path": {
|
|
207
|
-
"type": "string"
|
|
210
|
+
"type": "string",
|
|
211
|
+
"artifactType": "Manifest"
|
|
208
212
|
}
|
|
209
213
|
},
|
|
210
214
|
"additionalProperties": false,
|
|
@@ -260,7 +264,8 @@
|
|
|
260
264
|
"properties": {
|
|
261
265
|
"enableAutoBinding": {
|
|
262
266
|
"description": "When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property.",
|
|
263
|
-
"type": "boolean"
|
|
267
|
+
"type": "boolean",
|
|
268
|
+
"artifactType": "Manifest"
|
|
264
269
|
},
|
|
265
270
|
"variants": {
|
|
266
271
|
"description": "The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations.",
|
|
@@ -270,11 +275,13 @@
|
|
|
270
275
|
"^[0-9]+$": {
|
|
271
276
|
"$ref": "#/definitions/QuickVariantX"
|
|
272
277
|
}
|
|
273
|
-
}
|
|
278
|
+
},
|
|
279
|
+
"artifactType": "Manifest"
|
|
274
280
|
},
|
|
275
281
|
"showCounts": {
|
|
276
282
|
"description": "To show the number of records available, set showCounts to true.",
|
|
277
|
-
"type": "boolean"
|
|
283
|
+
"type": "boolean",
|
|
284
|
+
"artifactType": "Manifest"
|
|
278
285
|
}
|
|
279
286
|
},
|
|
280
287
|
"additionalProperties": false,
|
|
@@ -376,11 +383,80 @@
|
|
|
376
383
|
"isViewNode": true,
|
|
377
384
|
"type": "object",
|
|
378
385
|
"additionalProperties": {
|
|
379
|
-
"
|
|
380
|
-
"properties": {},
|
|
381
|
-
"additionalProperties": true
|
|
386
|
+
"$ref": "#/definitions/FormAction"
|
|
382
387
|
}
|
|
383
388
|
},
|
|
389
|
+
"FormAction": {
|
|
390
|
+
"description": "Action",
|
|
391
|
+
"isViewNode": true,
|
|
392
|
+
"type": "object",
|
|
393
|
+
"properties": {
|
|
394
|
+
"tooltip": {
|
|
395
|
+
"description": "Text for tooltip of button",
|
|
396
|
+
"type": "string",
|
|
397
|
+
"artifactType": "FlexChange",
|
|
398
|
+
"controlType": "sap.m.Button"
|
|
399
|
+
},
|
|
400
|
+
"icon": {
|
|
401
|
+
"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.",
|
|
402
|
+
"type": "string",
|
|
403
|
+
"artifactType": "FlexChange",
|
|
404
|
+
"controlType": "sap.m.Button"
|
|
405
|
+
},
|
|
406
|
+
"activeIcon": {
|
|
407
|
+
"description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
|
|
408
|
+
"type": "string",
|
|
409
|
+
"artifactType": "FlexChange",
|
|
410
|
+
"controlType": "sap.m.Button"
|
|
411
|
+
},
|
|
412
|
+
"type": {
|
|
413
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
414
|
+
"description": "Defines the Button type.",
|
|
415
|
+
"artifactType": "FlexChange",
|
|
416
|
+
"controlType": "sap.m.Button"
|
|
417
|
+
},
|
|
418
|
+
"visible": {
|
|
419
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
420
|
+
"anyOf": [
|
|
421
|
+
{
|
|
422
|
+
"enum": [
|
|
423
|
+
false,
|
|
424
|
+
true,
|
|
425
|
+
"{ui>/editable}",
|
|
426
|
+
"{= !${ui>/editable}}"
|
|
427
|
+
]
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"type": "string"
|
|
431
|
+
}
|
|
432
|
+
],
|
|
433
|
+
"description": "Whether the button should be visible on the screen.",
|
|
434
|
+
"artifactType": "FlexChange",
|
|
435
|
+
"controlType": "sap.m.Button"
|
|
436
|
+
}
|
|
437
|
+
},
|
|
438
|
+
"additionalProperties": false
|
|
439
|
+
},
|
|
440
|
+
"sap.m.ButtonType": {
|
|
441
|
+
"description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.",
|
|
442
|
+
"enum": [
|
|
443
|
+
"Accept",
|
|
444
|
+
"Attention",
|
|
445
|
+
"Back",
|
|
446
|
+
"Critical",
|
|
447
|
+
"Default",
|
|
448
|
+
"Emphasized",
|
|
449
|
+
"Ghost",
|
|
450
|
+
"Negative",
|
|
451
|
+
"Neutral",
|
|
452
|
+
"Reject",
|
|
453
|
+
"Success",
|
|
454
|
+
"Transparent",
|
|
455
|
+
"Unstyled",
|
|
456
|
+
"Up"
|
|
457
|
+
],
|
|
458
|
+
"type": "string"
|
|
459
|
+
},
|
|
384
460
|
"GenericColumns": {
|
|
385
461
|
"type": "object",
|
|
386
462
|
"additionalProperties": {
|
|
@@ -414,7 +490,7 @@
|
|
|
414
490
|
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
415
491
|
"anyOf": [
|
|
416
492
|
{
|
|
417
|
-
"$ref": "#/definitions/
|
|
493
|
+
"$ref": "#/definitions/sap.ui.core.TextAlign"
|
|
418
494
|
},
|
|
419
495
|
{
|
|
420
496
|
"type": "string"
|
|
@@ -427,7 +503,8 @@
|
|
|
427
503
|
},
|
|
428
504
|
"additionalProperties": false
|
|
429
505
|
},
|
|
430
|
-
"
|
|
506
|
+
"sap.ui.core.TextAlign": {
|
|
507
|
+
"description": "Configuration options for text alignments.",
|
|
431
508
|
"enum": [
|
|
432
509
|
"Begin",
|
|
433
510
|
"Center",
|
|
@@ -534,7 +611,7 @@
|
|
|
534
611
|
"pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
535
612
|
"anyOf": [
|
|
536
613
|
{
|
|
537
|
-
"$ref": "#/definitions/PopinLayout"
|
|
614
|
+
"$ref": "#/definitions/sap.m.PopinLayout"
|
|
538
615
|
},
|
|
539
616
|
{
|
|
540
617
|
"type": "string"
|
|
@@ -964,11 +1041,16 @@
|
|
|
964
1041
|
},
|
|
965
1042
|
"additionalProperties": false
|
|
966
1043
|
},
|
|
967
|
-
"
|
|
1044
|
+
"ListReportFilterBar": {
|
|
968
1045
|
"description": "Filter Bar",
|
|
969
1046
|
"isViewNode": true,
|
|
970
1047
|
"type": "object",
|
|
971
1048
|
"properties": {
|
|
1049
|
+
"annotationPath": {
|
|
1050
|
+
"description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
|
|
1051
|
+
"type": "string",
|
|
1052
|
+
"artifactType": "Manifest"
|
|
1053
|
+
},
|
|
972
1054
|
"smartVariantManagement": {
|
|
973
1055
|
"description": "Controls whether smart variant management is active. Default is true.",
|
|
974
1056
|
"type": "boolean",
|