@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
@@ -26,6 +26,9 @@
26
26
  "chart": {
27
27
  "$ref": "#/definitions/ChartSettings"
28
28
  },
29
+ "footer": {
30
+ "$ref": "#/definitions/GenericFooter"
31
+ },
29
32
  "keyPerformanceIndicators": {
30
33
  "description": "Key Performance Indicators",
31
34
  "isViewNode": true,
@@ -404,13 +407,13 @@
404
407
  "controlType": "sap.m.Button"
405
408
  },
406
409
  "icon": {
407
- "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.",
410
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
408
411
  "type": "string",
409
412
  "artifactType": "FlexChange",
410
413
  "controlType": "sap.m.Button"
411
414
  },
412
415
  "activeIcon": {
413
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
416
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
414
417
  "type": "string",
415
418
  "artifactType": "FlexChange",
416
419
  "controlType": "sap.m.Button"
@@ -450,6 +453,9 @@
450
453
  {
451
454
  "$ref": "#/definitions/TableColumn"
452
455
  },
456
+ {
457
+ "$ref": "#/definitions/TableColumnAction"
458
+ },
453
459
  {
454
460
  "description": "Custom Columns",
455
461
  "isViewNode": true,
@@ -500,6 +506,59 @@
500
506
  ],
501
507
  "type": "string"
502
508
  },
509
+ "TableColumnAction": {
510
+ "description": "Column Action",
511
+ "isViewNode": true,
512
+ "type": "object",
513
+ "properties": {
514
+ "tooltip": {
515
+ "description": "The text of the button tooltip, preferably as an i18n key.",
516
+ "i18nClassification": "ACT: Text for tooltip of button.",
517
+ "type": "string",
518
+ "artifactType": "FlexChange",
519
+ "controlType": "sap.m.Button"
520
+ },
521
+ "icon": {
522
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
523
+ "type": "string",
524
+ "artifactType": "FlexChange",
525
+ "controlType": "sap.m.Button"
526
+ },
527
+ "activeIcon": {
528
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
529
+ "type": "string",
530
+ "artifactType": "FlexChange",
531
+ "controlType": "sap.m.Button"
532
+ },
533
+ "type": {
534
+ "$ref": "#/definitions/ButtonType",
535
+ "description": "Defines the Button type.",
536
+ "artifactType": "FlexChange",
537
+ "controlType": "sap.m.Button"
538
+ },
539
+ "width": {
540
+ "description": "The width property defines the width of the column.",
541
+ "type": "string",
542
+ "artifactType": "FlexChange",
543
+ "controlType": "sap.m.Column"
544
+ },
545
+ "hAlign": {
546
+ "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
547
+ "anyOf": [
548
+ {
549
+ "$ref": "#/definitions/HAlign"
550
+ },
551
+ {
552
+ "type": "string"
553
+ }
554
+ ],
555
+ "description": "The hAlign property defines the horizontal alignment of the column content.",
556
+ "artifactType": "FlexChange",
557
+ "controlType": "sap.m.Column"
558
+ }
559
+ },
560
+ "additionalProperties": false
561
+ },
503
562
  "TableCustomColumn": {
504
563
  "description": "Custom Column",
505
564
  "isViewNode": true,
@@ -876,6 +935,9 @@
876
935
  "type": "boolean",
877
936
  "artifactType": "FlexChange",
878
937
  "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
938
+ },
939
+ "selectionFields": {
940
+ "$ref": "#/definitions/SelectionFields"
879
941
  }
880
942
  },
881
943
  "additionalProperties": false
@@ -950,19 +1012,31 @@
950
1012
  "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.",
951
1013
  "type": "boolean",
952
1014
  "artifactType": "Manifest"
953
- },
954
- "fields": {
955
- "description": "For a fields' list you can define the set of standard date range values separately.",
956
- "type": "object",
957
- "additionalProperties": {
958
- "$ref": "#/definitions/SelectedValues"
959
- },
960
- "artifactType": "Manifest"
961
1015
  }
962
1016
  },
963
1017
  "additionalProperties": false
964
1018
  },
965
- "SelectedValues": {
1019
+ "SelectionFields": {
1020
+ "description": "Filter Fields",
1021
+ "isViewNode": true,
1022
+ "type": "object",
1023
+ "additionalProperties": {
1024
+ "description": "Filter Field",
1025
+ "isViewNode": true,
1026
+ "anyOf": [
1027
+ {
1028
+ "type": "object",
1029
+ "properties": {}
1030
+ },
1031
+ {
1032
+ "$ref": "#/definitions/SelectionFieldDateSettings"
1033
+ }
1034
+ ]
1035
+ }
1036
+ },
1037
+ "SelectionFieldDateSettings": {
1038
+ "description": "Filter Field for Date Settings",
1039
+ "isViewNode": true,
966
1040
  "type": "object",
967
1041
  "properties": {
968
1042
  "selectedValues": {
@@ -1020,15 +1094,18 @@
1020
1094
  "YESTERDAY"
1021
1095
  ],
1022
1096
  "type": "string"
1023
- }
1097
+ },
1098
+ "artifactType": "Manifest"
1024
1099
  },
1025
1100
  "exclude": {
1026
1101
  "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.",
1027
- "type": "boolean"
1102
+ "type": "boolean",
1103
+ "artifactType": "Manifest"
1028
1104
  },
1029
1105
  "customDateRangeImplementation": {
1030
1106
  "description": "This property references a JS class, which you use to modify the date range value list. You can either remove standard data range values or add custom values.\nThe customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types.",
1031
- "type": "string"
1107
+ "type": "string",
1108
+ "artifactType": "Manifest"
1032
1109
  },
1033
1110
  "filter": {
1034
1111
  "description": "You can use the filter settings to include and exclude specific date range values.",
@@ -1198,7 +1275,8 @@
1198
1275
  ]
1199
1276
  }
1200
1277
  ]
1201
- }
1278
+ },
1279
+ "artifactType": "Manifest"
1202
1280
  }
1203
1281
  },
1204
1282
  "additionalProperties": false
@@ -1275,6 +1353,17 @@
1275
1353
  },
1276
1354
  "additionalProperties": false
1277
1355
  },
1356
+ "GenericFooter": {
1357
+ "description": "Footer",
1358
+ "isViewNode": true,
1359
+ "type": "object",
1360
+ "properties": {
1361
+ "actions": {
1362
+ "$ref": "#/definitions/Actions"
1363
+ }
1364
+ },
1365
+ "additionalProperties": false
1366
+ },
1278
1367
  "KPISettings": {
1279
1368
  "description": "KPI Settings",
1280
1369
  "isViewNode": true,
@@ -27,7 +27,10 @@
27
27
  ]
28
28
  },
29
29
  "filterBar": {
30
- "$ref": "#/definitions/FilterBar"
30
+ "$ref": "#/definitions/ListReportFilterBar"
31
+ },
32
+ "footer": {
33
+ "$ref": "#/definitions/GenericFooter"
31
34
  },
32
35
  "$schema": {
33
36
  "type": "string"
@@ -408,13 +411,13 @@
408
411
  "controlType": "sap.m.Button"
409
412
  },
410
413
  "icon": {
411
- "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.",
414
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
412
415
  "type": "string",
413
416
  "artifactType": "FlexChange",
414
417
  "controlType": "sap.m.Button"
415
418
  },
416
419
  "activeIcon": {
417
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
420
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
418
421
  "type": "string",
419
422
  "artifactType": "FlexChange",
420
423
  "controlType": "sap.m.Button"
@@ -454,6 +457,9 @@
454
457
  {
455
458
  "$ref": "#/definitions/TableColumn"
456
459
  },
460
+ {
461
+ "$ref": "#/definitions/TableColumnAction"
462
+ },
457
463
  {
458
464
  "description": "Custom Columns",
459
465
  "isViewNode": true,
@@ -504,6 +510,59 @@
504
510
  ],
505
511
  "type": "string"
506
512
  },
513
+ "TableColumnAction": {
514
+ "description": "Column Action",
515
+ "isViewNode": true,
516
+ "type": "object",
517
+ "properties": {
518
+ "tooltip": {
519
+ "description": "The text of the button tooltip, preferably as an i18n key.",
520
+ "i18nClassification": "ACT: Text for tooltip of button.",
521
+ "type": "string",
522
+ "artifactType": "FlexChange",
523
+ "controlType": "sap.m.Button"
524
+ },
525
+ "icon": {
526
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
527
+ "type": "string",
528
+ "artifactType": "FlexChange",
529
+ "controlType": "sap.m.Button"
530
+ },
531
+ "activeIcon": {
532
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
533
+ "type": "string",
534
+ "artifactType": "FlexChange",
535
+ "controlType": "sap.m.Button"
536
+ },
537
+ "type": {
538
+ "$ref": "#/definitions/ButtonType",
539
+ "description": "Defines the Button type.",
540
+ "artifactType": "FlexChange",
541
+ "controlType": "sap.m.Button"
542
+ },
543
+ "width": {
544
+ "description": "The width property defines the width of the column.",
545
+ "type": "string",
546
+ "artifactType": "FlexChange",
547
+ "controlType": "sap.m.Column"
548
+ },
549
+ "hAlign": {
550
+ "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
551
+ "anyOf": [
552
+ {
553
+ "$ref": "#/definitions/HAlign"
554
+ },
555
+ {
556
+ "type": "string"
557
+ }
558
+ ],
559
+ "description": "The hAlign property defines the horizontal alignment of the column content.",
560
+ "artifactType": "FlexChange",
561
+ "controlType": "sap.m.Column"
562
+ }
563
+ },
564
+ "additionalProperties": false
565
+ },
507
566
  "TableCustomColumn": {
508
567
  "description": "Custom Column",
509
568
  "isViewNode": true,
@@ -1049,7 +1108,7 @@
1049
1108
  },
1050
1109
  "additionalProperties": false
1051
1110
  },
1052
- "FilterBar": {
1111
+ "ListReportFilterBar": {
1053
1112
  "description": "Filter Bar",
1054
1113
  "isViewNode": true,
1055
1114
  "type": "object",
@@ -1098,6 +1157,9 @@
1098
1157
  "type": "boolean",
1099
1158
  "artifactType": "FlexChange",
1100
1159
  "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
1160
+ },
1161
+ "selectionFields": {
1162
+ "$ref": "#/definitions/SelectionFields"
1101
1163
  }
1102
1164
  },
1103
1165
  "additionalProperties": false
@@ -1172,19 +1234,31 @@
1172
1234
  "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.",
1173
1235
  "type": "boolean",
1174
1236
  "artifactType": "Manifest"
1175
- },
1176
- "fields": {
1177
- "description": "For a fields' list you can define the set of standard date range values separately.",
1178
- "type": "object",
1179
- "additionalProperties": {
1180
- "$ref": "#/definitions/SelectedValues"
1181
- },
1182
- "artifactType": "Manifest"
1183
1237
  }
1184
1238
  },
1185
1239
  "additionalProperties": false
1186
1240
  },
1187
- "SelectedValues": {
1241
+ "SelectionFields": {
1242
+ "description": "Filter Fields",
1243
+ "isViewNode": true,
1244
+ "type": "object",
1245
+ "additionalProperties": {
1246
+ "description": "Filter Field",
1247
+ "isViewNode": true,
1248
+ "anyOf": [
1249
+ {
1250
+ "type": "object",
1251
+ "properties": {}
1252
+ },
1253
+ {
1254
+ "$ref": "#/definitions/SelectionFieldDateSettings"
1255
+ }
1256
+ ]
1257
+ }
1258
+ },
1259
+ "SelectionFieldDateSettings": {
1260
+ "description": "Filter Field for Date Settings",
1261
+ "isViewNode": true,
1188
1262
  "type": "object",
1189
1263
  "properties": {
1190
1264
  "selectedValues": {
@@ -1242,15 +1316,18 @@
1242
1316
  "YESTERDAY"
1243
1317
  ],
1244
1318
  "type": "string"
1245
- }
1319
+ },
1320
+ "artifactType": "Manifest"
1246
1321
  },
1247
1322
  "exclude": {
1248
1323
  "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.",
1249
- "type": "boolean"
1324
+ "type": "boolean",
1325
+ "artifactType": "Manifest"
1250
1326
  },
1251
1327
  "customDateRangeImplementation": {
1252
1328
  "description": "This property references a JS class, which you use to modify the date range value list. You can either remove standard data range values or add custom values.\nThe customDateRangeImplementation setting takes priority followed by filter and selectedValues when excluding date range types.",
1253
- "type": "string"
1329
+ "type": "string",
1330
+ "artifactType": "Manifest"
1254
1331
  },
1255
1332
  "filter": {
1256
1333
  "description": "You can use the filter settings to include and exclude specific date range values.",
@@ -1420,7 +1497,19 @@
1420
1497
  ]
1421
1498
  }
1422
1499
  ]
1423
- }
1500
+ },
1501
+ "artifactType": "Manifest"
1502
+ }
1503
+ },
1504
+ "additionalProperties": false
1505
+ },
1506
+ "GenericFooter": {
1507
+ "description": "Footer",
1508
+ "isViewNode": true,
1509
+ "type": "object",
1510
+ "properties": {
1511
+ "actions": {
1512
+ "$ref": "#/definitions/Actions"
1424
1513
  }
1425
1514
  },
1426
1515
  "additionalProperties": false
@@ -51,7 +51,7 @@
51
51
  ]
52
52
  },
53
53
  "footer": {
54
- "$ref": "#/definitions/ObjectPageFooter<GenericFooterActions>"
54
+ "$ref": "#/definitions/ObjectPageFooter<ObjectPageFooterActions>"
55
55
  },
56
56
  "$schema": {
57
57
  "type": "string"
@@ -156,13 +156,13 @@
156
156
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
157
157
  },
158
158
  "icon": {
159
- "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.",
159
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
160
160
  "type": "string",
161
161
  "artifactType": "FlexChange",
162
162
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
163
163
  },
164
164
  "activeIcon": {
165
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
165
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
166
166
  "type": "string",
167
167
  "artifactType": "FlexChange",
168
168
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
@@ -361,13 +361,13 @@
361
361
  "controlType": "sap.m.Button"
362
362
  },
363
363
  "icon": {
364
- "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.",
364
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
365
365
  "type": "string",
366
366
  "artifactType": "FlexChange",
367
367
  "controlType": "sap.m.Button"
368
368
  },
369
369
  "activeIcon": {
370
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
370
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
371
371
  "type": "string",
372
372
  "artifactType": "FlexChange",
373
373
  "controlType": "sap.m.Button"
@@ -679,13 +679,13 @@
679
679
  "controlType": "sap.m.Button"
680
680
  },
681
681
  "icon": {
682
- "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.",
682
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
683
683
  "type": "string",
684
684
  "artifactType": "FlexChange",
685
685
  "controlType": "sap.m.Button"
686
686
  },
687
687
  "activeIcon": {
688
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
688
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
689
689
  "type": "string",
690
690
  "artifactType": "FlexChange",
691
691
  "controlType": "sap.m.Button"
@@ -706,6 +706,9 @@
706
706
  {
707
707
  "$ref": "#/definitions/TableColumn"
708
708
  },
709
+ {
710
+ "$ref": "#/definitions/TableColumnAction"
711
+ },
709
712
  {
710
713
  "description": "Custom Columns",
711
714
  "isViewNode": true,
@@ -756,6 +759,59 @@
756
759
  ],
757
760
  "type": "string"
758
761
  },
762
+ "TableColumnAction": {
763
+ "description": "Column Action",
764
+ "isViewNode": true,
765
+ "type": "object",
766
+ "properties": {
767
+ "tooltip": {
768
+ "description": "The text of the button tooltip, preferably as an i18n key.",
769
+ "i18nClassification": "ACT: Text for tooltip of button.",
770
+ "type": "string",
771
+ "artifactType": "FlexChange",
772
+ "controlType": "sap.m.Button"
773
+ },
774
+ "icon": {
775
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
776
+ "type": "string",
777
+ "artifactType": "FlexChange",
778
+ "controlType": "sap.m.Button"
779
+ },
780
+ "activeIcon": {
781
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
782
+ "type": "string",
783
+ "artifactType": "FlexChange",
784
+ "controlType": "sap.m.Button"
785
+ },
786
+ "type": {
787
+ "$ref": "#/definitions/ButtonType",
788
+ "description": "Defines the Button type.",
789
+ "artifactType": "FlexChange",
790
+ "controlType": "sap.m.Button"
791
+ },
792
+ "width": {
793
+ "description": "The width property defines the width of the column.",
794
+ "type": "string",
795
+ "artifactType": "FlexChange",
796
+ "controlType": "sap.m.Column"
797
+ },
798
+ "hAlign": {
799
+ "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
800
+ "anyOf": [
801
+ {
802
+ "$ref": "#/definitions/HAlign"
803
+ },
804
+ {
805
+ "type": "string"
806
+ }
807
+ ],
808
+ "description": "The hAlign property defines the horizontal alignment of the column content.",
809
+ "artifactType": "FlexChange",
810
+ "controlType": "sap.m.Column"
811
+ }
812
+ },
813
+ "additionalProperties": false
814
+ },
759
815
  "TableCustomColumn": {
760
816
  "description": "Custom Column",
761
817
  "isViewNode": true,
@@ -1402,28 +1458,47 @@
1402
1458
  "type"
1403
1459
  ]
1404
1460
  },
1405
- "ObjectPageFooter<GenericFooterActions>": {
1461
+ "ObjectPageFooter<ObjectPageFooterActions>": {
1406
1462
  "description": "Footer",
1407
1463
  "isViewNode": true,
1408
1464
  "type": "object",
1409
1465
  "properties": {
1410
1466
  "actions": {
1411
- "$ref": "#/definitions/GenericFooterActions"
1467
+ "$ref": "#/definitions/ObjectPageFooterActions"
1412
1468
  }
1413
1469
  },
1414
1470
  "additionalProperties": false
1415
1471
  },
1416
- "GenericFooterActions": {
1472
+ "ObjectPageFooterActions": {
1417
1473
  "type": "object",
1418
1474
  "additionalProperties": {
1419
- "$ref": "#/definitions/FooterAction"
1475
+ "$ref": "#/definitions/ObjectPageFooterAction"
1420
1476
  }
1421
1477
  },
1422
- "FooterAction": {
1478
+ "ObjectPageFooterAction": {
1423
1479
  "description": "Footer Action",
1424
1480
  "isViewNode": true,
1425
1481
  "type": "object",
1426
1482
  "properties": {
1483
+ "visible": {
1484
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
1485
+ "anyOf": [
1486
+ {
1487
+ "enum": [
1488
+ false,
1489
+ true,
1490
+ "{ui>/editable}",
1491
+ "{= !${ui>/editable}}"
1492
+ ]
1493
+ },
1494
+ {
1495
+ "type": "string"
1496
+ }
1497
+ ],
1498
+ "description": "Whether the button should be visible on the screen.",
1499
+ "artifactType": "FlexChange",
1500
+ "controlType": "sap.m.Button"
1501
+ },
1427
1502
  "tooltip": {
1428
1503
  "description": "The text of the button tooltip, preferably as an i18n key.",
1429
1504
  "i18nClassification": "ACT: Text for tooltip of button.",
@@ -1432,13 +1507,13 @@
1432
1507
  "controlType": "sap.m.Button"
1433
1508
  },
1434
1509
  "icon": {
1435
- "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.",
1510
+ "description": "Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
1436
1511
  "type": "string",
1437
1512
  "artifactType": "FlexChange",
1438
1513
  "controlType": "sap.m.Button"
1439
1514
  },
1440
1515
  "activeIcon": {
1441
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
1516
+ "description": "Alternative icon for the active (depressed) state of the button. Can be an image or icon from the icon font (https://sapui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons), represented as RFC 3986 conformant URI.",
1442
1517
  "type": "string",
1443
1518
  "artifactType": "FlexChange",
1444
1519
  "controlType": "sap.m.Button"
@@ -1448,25 +1523,6 @@
1448
1523
  "description": "Defines the Button type.",
1449
1524
  "artifactType": "FlexChange",
1450
1525
  "controlType": "sap.m.Button"
1451
- },
1452
- "visible": {
1453
- "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
1454
- "anyOf": [
1455
- {
1456
- "enum": [
1457
- false,
1458
- true,
1459
- "{ui>/editable}",
1460
- "{= !${ui>/editable}}"
1461
- ]
1462
- },
1463
- {
1464
- "type": "string"
1465
- }
1466
- ],
1467
- "description": "Whether the button should be visible on the screen.",
1468
- "artifactType": "FlexChange",
1469
- "controlType": "sap.m.Button"
1470
1526
  }
1471
1527
  },
1472
1528
  "additionalProperties": false