@sap/ux-specification 1.90.17 → 1.90.20

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 +55 -2
  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 +175 -15
  15. package/dist/schemas/v2/ListReportConfig.json +187 -15
  16. package/dist/schemas/v2/ObjectPageConfig.json +127 -33
  17. package/dist/schemas/v2/OverviewPageConfig.json +57 -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 +64 -71
  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 +70 -22
  34. package/dist/src/specification/v2/controls/FilterBar.js +24 -0
  35. package/dist/src/specification/v2/controls/FilterBar.js.map +1 -1
  36. package/dist/src/specification/v2/controls/Footer.d.ts +20 -0
  37. package/dist/src/specification/v2/controls/{ObjectPageFooter.js → Footer.js} +1 -1
  38. package/dist/src/specification/v2/controls/Footer.js.map +1 -0
  39. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +4 -0
  40. package/dist/src/specification/v2/controls/Table.d.ts +12 -1
  41. package/dist/src/specification/v2/controls/Table.js.map +1 -1
  42. package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -8
  43. package/dist/src/specification/v2/controls/index.d.ts +1 -2
  44. package/dist/src/specification/v2/controls/index.js.map +1 -1
  45. package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +2 -1
  46. package/dist/src/specification/v2/pages/ListReportConfig.d.ts +2 -1
  47. package/dist/src/specification/v2/pages/OverviewPageConfig.d.ts +36 -2
  48. package/dist/src/specification/v2/pages/OverviewPageConfig.js.map +1 -1
  49. package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +2 -2
  50. package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +7 -7
  51. package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +5 -6
  52. package/dist/src/specification/v4/controls/Table.d.ts +2 -7
  53. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +59 -10
  54. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js +6 -0
  55. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.js.map +1 -1
  56. package/dist/src/sync/common/appProvider.js.map +1 -1
  57. package/dist/src/sync/common/decoration/control.d.ts +11 -1
  58. package/dist/src/sync/common/decoration/control.js +29 -3
  59. package/dist/src/sync/common/decoration/control.js.map +1 -1
  60. package/dist/src/sync/common/decoration/factory.js +2 -4
  61. package/dist/src/sync/common/decoration/factory.js.map +1 -1
  62. package/dist/src/sync/common/generate/objectPage.d.ts +9 -0
  63. package/dist/src/sync/common/generate/objectPage.js +89 -43
  64. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  65. package/dist/src/sync/common/generate/utils.d.ts +27 -0
  66. package/dist/src/sync/common/generate/utils.js +118 -3
  67. package/dist/src/sync/common/generate/utils.js.map +1 -1
  68. package/dist/src/sync/common/i18n.json +2 -0
  69. package/dist/src/sync/common/import/utils.d.ts +8 -1
  70. package/dist/src/sync/common/import/utils.js +15 -4
  71. package/dist/src/sync/common/import/utils.js.map +1 -1
  72. package/dist/src/sync/common/importProject.js +13 -22
  73. package/dist/src/sync/common/importProject.js.map +1 -1
  74. package/dist/src/sync/common/types.d.ts +30 -16
  75. package/dist/src/sync/common/types.js +25 -1
  76. package/dist/src/sync/common/types.js.map +1 -1
  77. package/dist/src/sync/common/utils.d.ts +4 -3
  78. package/dist/src/sync/common/utils.js +19 -24
  79. package/dist/src/sync/common/utils.js.map +1 -1
  80. package/dist/src/sync/v2/export/controls/Action.d.ts +15 -0
  81. package/dist/src/sync/v2/export/controls/Action.js +68 -15
  82. package/dist/src/sync/v2/export/controls/Action.js.map +1 -1
  83. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +18 -6
  84. package/dist/src/sync/v2/export/controls/FilterBar.js +102 -65
  85. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  86. package/dist/src/sync/v2/export/controls/FormAction.js +3 -2
  87. package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
  88. package/dist/src/sync/v2/export/controls/Fragment.d.ts +1 -1
  89. package/dist/src/sync/v2/export/controls/Fragment.js +239 -164
  90. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  91. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +2 -2
  92. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +9 -9
  93. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -1
  94. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +2 -2
  95. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +4 -4
  96. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -1
  97. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +1 -0
  98. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +12 -0
  99. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  100. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +6 -4
  101. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -1
  102. package/dist/src/sync/v2/export/controls/Table.d.ts +1 -0
  103. package/dist/src/sync/v2/export/controls/Table.js +12 -0
  104. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  105. package/dist/src/sync/v2/export/controls/TableColumn.d.ts +18 -2
  106. package/dist/src/sync/v2/export/controls/TableColumn.js +126 -1
  107. package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
  108. package/dist/src/sync/v2/export/export.js +137 -111
  109. package/dist/src/sync/v2/export/export.js.map +1 -1
  110. package/dist/src/sync/v2/export/manifest.js +2 -5
  111. package/dist/src/sync/v2/export/manifest.js.map +1 -1
  112. package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +2 -1
  113. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js +3 -0
  114. package/dist/src/sync/v2/export/pages/AnalyticalListPage.js.map +1 -1
  115. package/dist/src/sync/v2/export/pages/ListReport.d.ts +2 -1
  116. package/dist/src/sync/v2/export/pages/ListReport.js +3 -0
  117. package/dist/src/sync/v2/export/pages/ListReport.js.map +1 -1
  118. package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +2 -1
  119. package/dist/src/sync/v2/export/pages/OverviewPage.js +32 -2
  120. package/dist/src/sync/v2/export/pages/OverviewPage.js.map +1 -1
  121. package/dist/src/sync/v2/export/view-controller-generator.d.ts +16 -21
  122. package/dist/src/sync/v2/export/view-controller-generator.js +20 -36
  123. package/dist/src/sync/v2/export/view-controller-generator.js.map +1 -1
  124. package/dist/src/sync/v2/generate/analyticalListReport.js +14 -6
  125. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  126. package/dist/src/sync/v2/generate/listReport.js +13 -4
  127. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  128. package/dist/src/sync/v2/generate/objectPage.d.ts +1 -5
  129. package/dist/src/sync/v2/generate/objectPage.js +10 -10
  130. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  131. package/dist/src/sync/v2/generate/utils.d.ts +22 -11
  132. package/dist/src/sync/v2/generate/utils.js +282 -110
  133. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  134. package/dist/src/sync/v2/import/common/index.d.ts +22 -4
  135. package/dist/src/sync/v2/import/common/index.js +237 -27
  136. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  137. package/dist/src/sync/v2/import/controls/table.js +3 -2
  138. package/dist/src/sync/v2/import/controls/table.js.map +1 -1
  139. package/dist/src/sync/v2/import/pages/analyticalListPage.js +36 -5
  140. package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
  141. package/dist/src/sync/v2/import/pages/listReport.d.ts +0 -5
  142. package/dist/src/sync/v2/import/pages/listReport.js +21 -122
  143. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  144. package/dist/src/sync/v2/import/pages/objectPage.js +182 -107
  145. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  146. package/dist/src/sync/v2/import/utils.d.ts +4 -6
  147. package/dist/src/sync/v2/import/utils.js +43 -11
  148. package/dist/src/sync/v2/import/utils.js.map +1 -1
  149. package/dist/src/sync/v2/types.d.ts +8 -1
  150. package/dist/src/sync/v2/types.js +8 -1
  151. package/dist/src/sync/v2/types.js.map +1 -1
  152. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +3 -7
  153. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +2 -25
  154. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
  155. package/dist/src/sync/v4/export/controls/TableColumn.d.ts +1 -6
  156. package/dist/src/sync/v4/export/controls/TableColumn.js +0 -33
  157. package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  158. package/dist/src/sync/v4/export/controls/ToolBar.d.ts +5 -1
  159. package/dist/src/sync/v4/export/controls/ToolBar.js +3 -0
  160. package/dist/src/sync/v4/export/controls/ToolBar.js.map +1 -1
  161. package/dist/src/sync/v4/export/export.js +20 -16
  162. package/dist/src/sync/v4/export/export.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 +66 -85
  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 -9
  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,
@@ -123,6 +126,12 @@
123
126
  "artifactType": "FlexChange",
124
127
  "controlType": "sap.ui.comp.smarttable.SmartTable"
125
128
  },
129
+ "exportType": {
130
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
131
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
132
+ "artifactType": "FlexChange",
133
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
134
+ },
126
135
  "fitContainer": {
127
136
  "description": "Set to false if the table does not occupy the entire space available in the container.",
128
137
  "type": "boolean",
@@ -212,6 +221,14 @@
212
221
  "path"
213
222
  ]
214
223
  },
224
+ "sap.ui.comp.smarttable.ExportType": {
225
+ "description": "Provides the type of services available for export in the `SmartTable` control.",
226
+ "enum": [
227
+ "GW",
228
+ "UI5Client"
229
+ ],
230
+ "type": "string"
231
+ },
215
232
  "QuickVariantSelection": {
216
233
  "type": "object",
217
234
  "properties": {
@@ -395,13 +412,13 @@
395
412
  "controlType": "sap.m.Button"
396
413
  },
397
414
  "icon": {
398
- "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.",
415
+ "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.",
399
416
  "type": "string",
400
417
  "artifactType": "FlexChange",
401
418
  "controlType": "sap.m.Button"
402
419
  },
403
420
  "activeIcon": {
404
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
421
+ "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.",
405
422
  "type": "string",
406
423
  "artifactType": "FlexChange",
407
424
  "controlType": "sap.m.Button"
@@ -442,6 +459,9 @@
442
459
  {
443
460
  "$ref": "#/definitions/TableColumn"
444
461
  },
462
+ {
463
+ "$ref": "#/definitions/TableColumnAction"
464
+ },
445
465
  {
446
466
  "description": "Custom Columns",
447
467
  "isViewNode": true,
@@ -493,6 +513,59 @@
493
513
  ],
494
514
  "type": "string"
495
515
  },
516
+ "TableColumnAction": {
517
+ "description": "Column Action",
518
+ "isViewNode": true,
519
+ "type": "object",
520
+ "properties": {
521
+ "tooltip": {
522
+ "description": "The text of the button tooltip, preferably as an i18n key.",
523
+ "i18nClassification": "ACT: Text for tooltip of button.",
524
+ "type": "string",
525
+ "artifactType": "FlexChange",
526
+ "controlType": "sap.m.Button"
527
+ },
528
+ "icon": {
529
+ "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.",
530
+ "type": "string",
531
+ "artifactType": "FlexChange",
532
+ "controlType": "sap.m.Button"
533
+ },
534
+ "activeIcon": {
535
+ "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.",
536
+ "type": "string",
537
+ "artifactType": "FlexChange",
538
+ "controlType": "sap.m.Button"
539
+ },
540
+ "type": {
541
+ "$ref": "#/definitions/sap.m.ButtonType",
542
+ "description": "Defines the Button type.",
543
+ "artifactType": "FlexChange",
544
+ "controlType": "sap.m.Button"
545
+ },
546
+ "width": {
547
+ "description": "The width property defines the width of the column.",
548
+ "type": "string",
549
+ "artifactType": "FlexChange",
550
+ "controlType": "sap.m.Column"
551
+ },
552
+ "hAlign": {
553
+ "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
554
+ "anyOf": [
555
+ {
556
+ "$ref": "#/definitions/sap.ui.core.TextAlign"
557
+ },
558
+ {
559
+ "type": "string"
560
+ }
561
+ ],
562
+ "description": "The hAlign property defines the horizontal alignment of the column content.",
563
+ "artifactType": "FlexChange",
564
+ "controlType": "sap.m.Column"
565
+ }
566
+ },
567
+ "additionalProperties": false
568
+ },
496
569
  "TableCustomColumn": {
497
570
  "description": "Custom Column",
498
571
  "isViewNode": true,
@@ -637,6 +710,12 @@
637
710
  "artifactType": "FlexChange",
638
711
  "controlType": "sap.ui.comp.smarttable.SmartTable"
639
712
  },
713
+ "exportType": {
714
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
715
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
716
+ "artifactType": "FlexChange",
717
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
718
+ },
640
719
  "fitContainer": {
641
720
  "description": "Set to false if the table does not occupy the entire space available in the container.",
642
721
  "type": "boolean",
@@ -756,6 +835,12 @@
756
835
  "artifactType": "FlexChange",
757
836
  "controlType": "sap.ui.comp.smarttable.SmartTable"
758
837
  },
838
+ "exportType": {
839
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
840
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
841
+ "artifactType": "FlexChange",
842
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
843
+ },
759
844
  "fitContainer": {
760
845
  "description": "Set to false if the table does not occupy the entire space available in the container.",
761
846
  "type": "boolean",
@@ -857,6 +942,9 @@
857
942
  "type": "boolean",
858
943
  "artifactType": "FlexChange",
859
944
  "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
945
+ },
946
+ "selectionFields": {
947
+ "$ref": "#/definitions/SelectionFields"
860
948
  }
861
949
  },
862
950
  "additionalProperties": false
@@ -931,19 +1019,31 @@
931
1019
  "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.",
932
1020
  "type": "boolean",
933
1021
  "artifactType": "Manifest"
934
- },
935
- "fields": {
936
- "description": "For a fields' list you can define the set of standard date range values separately.",
937
- "type": "object",
938
- "additionalProperties": {
939
- "$ref": "#/definitions/SelectedValues"
940
- },
941
- "artifactType": "Manifest"
942
1022
  }
943
1023
  },
944
1024
  "additionalProperties": false
945
1025
  },
946
- "SelectedValues": {
1026
+ "SelectionFields": {
1027
+ "description": "Filter Fields",
1028
+ "isViewNode": true,
1029
+ "type": "object",
1030
+ "additionalProperties": {
1031
+ "description": "Filter Field",
1032
+ "isViewNode": true,
1033
+ "anyOf": [
1034
+ {
1035
+ "type": "object",
1036
+ "properties": {}
1037
+ },
1038
+ {
1039
+ "$ref": "#/definitions/SelectionFieldDateSettings"
1040
+ }
1041
+ ]
1042
+ }
1043
+ },
1044
+ "SelectionFieldDateSettings": {
1045
+ "description": "Filter Field for Date Settings",
1046
+ "isViewNode": true,
947
1047
  "type": "object",
948
1048
  "properties": {
949
1049
  "selectedValues": {
@@ -1001,15 +1101,18 @@
1001
1101
  "YESTERDAY"
1002
1102
  ],
1003
1103
  "type": "string"
1004
- }
1104
+ },
1105
+ "artifactType": "Manifest"
1005
1106
  },
1006
1107
  "exclude": {
1007
1108
  "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.",
1008
- "type": "boolean"
1109
+ "type": "boolean",
1110
+ "artifactType": "Manifest"
1009
1111
  },
1010
1112
  "customDateRangeImplementation": {
1011
1113
  "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.",
1012
- "type": "string"
1114
+ "type": "string",
1115
+ "artifactType": "Manifest"
1013
1116
  },
1014
1117
  "filter": {
1015
1118
  "description": "You can use the filter settings to include and exclude specific date range values.",
@@ -1179,11 +1282,57 @@
1179
1282
  ]
1180
1283
  }
1181
1284
  ]
1182
- }
1285
+ },
1286
+ "artifactType": "Manifest"
1287
+ },
1288
+ "defaultValue": {
1289
+ "$ref": "#/definitions/DefaultDateRange",
1290
+ "description": "You can set a default value for semantic date range.",
1291
+ "artifactType": "Manifest"
1183
1292
  }
1184
1293
  },
1185
1294
  "additionalProperties": false
1186
1295
  },
1296
+ "DefaultDateRange": {
1297
+ "type": "object",
1298
+ "properties": {
1299
+ "operation": {
1300
+ "$ref": "#/definitions/DefaultDateRangeValueType",
1301
+ "description": "The operation property is the value that will be set for semantic date range.",
1302
+ "artifactType": "Manifest"
1303
+ }
1304
+ },
1305
+ "additionalProperties": false,
1306
+ "required": [
1307
+ "operation"
1308
+ ]
1309
+ },
1310
+ "DefaultDateRangeValueType": {
1311
+ "enum": [
1312
+ "DATETOYEAR",
1313
+ "LAST2WEEKS",
1314
+ "LAST3WEEKS",
1315
+ "LAST4WEEKS",
1316
+ "LAST5WEEKS",
1317
+ "LASTMONTH",
1318
+ "LASTQUARTER",
1319
+ "LASTWEEK",
1320
+ "LASTYEAR",
1321
+ "QUARTER1",
1322
+ "QUARTER2",
1323
+ "QUARTER3",
1324
+ "QUARTER4",
1325
+ "THISMONTH",
1326
+ "THISQUARTER",
1327
+ "THISWEEK",
1328
+ "THISYEAR",
1329
+ "TODAY",
1330
+ "TOMORROW",
1331
+ "YEARTODATE",
1332
+ "YESTERDAY"
1333
+ ],
1334
+ "type": "string"
1335
+ },
1187
1336
  "ChartSettings": {
1188
1337
  "description": "Chart",
1189
1338
  "isViewNode": true,
@@ -1256,6 +1405,17 @@
1256
1405
  },
1257
1406
  "additionalProperties": false
1258
1407
  },
1408
+ "GenericFooter": {
1409
+ "description": "Footer",
1410
+ "isViewNode": true,
1411
+ "type": "object",
1412
+ "properties": {
1413
+ "actions": {
1414
+ "$ref": "#/definitions/Actions"
1415
+ }
1416
+ },
1417
+ "additionalProperties": false
1418
+ },
1259
1419
  "KPISettings": {
1260
1420
  "description": "KPI Settings",
1261
1421
  "isViewNode": true,
@@ -29,6 +29,9 @@
29
29
  "filterBar": {
30
30
  "$ref": "#/definitions/ListReportFilterBar"
31
31
  },
32
+ "footer": {
33
+ "$ref": "#/definitions/GenericFooter"
34
+ },
32
35
  "$schema": {
33
36
  "type": "string"
34
37
  }
@@ -117,6 +120,12 @@
117
120
  "artifactType": "FlexChange",
118
121
  "controlType": "sap.ui.comp.smarttable.SmartTable"
119
122
  },
123
+ "exportType": {
124
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
125
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
126
+ "artifactType": "FlexChange",
127
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
128
+ },
120
129
  "fitContainer": {
121
130
  "description": "Set to false if the table does not occupy the entire space available in the container.",
122
131
  "type": "boolean",
@@ -216,6 +225,14 @@
216
225
  "path"
217
226
  ]
218
227
  },
228
+ "sap.ui.comp.smarttable.ExportType": {
229
+ "description": "Provides the type of services available for export in the `SmartTable` control.",
230
+ "enum": [
231
+ "GW",
232
+ "UI5Client"
233
+ ],
234
+ "type": "string"
235
+ },
219
236
  "QuickVariantSelection": {
220
237
  "type": "object",
221
238
  "properties": {
@@ -399,13 +416,13 @@
399
416
  "controlType": "sap.m.Button"
400
417
  },
401
418
  "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.",
419
+ "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.",
403
420
  "type": "string",
404
421
  "artifactType": "FlexChange",
405
422
  "controlType": "sap.m.Button"
406
423
  },
407
424
  "activeIcon": {
408
- "description": "Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.",
425
+ "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.",
409
426
  "type": "string",
410
427
  "artifactType": "FlexChange",
411
428
  "controlType": "sap.m.Button"
@@ -446,6 +463,9 @@
446
463
  {
447
464
  "$ref": "#/definitions/TableColumn"
448
465
  },
466
+ {
467
+ "$ref": "#/definitions/TableColumnAction"
468
+ },
449
469
  {
450
470
  "description": "Custom Columns",
451
471
  "isViewNode": true,
@@ -497,6 +517,59 @@
497
517
  ],
498
518
  "type": "string"
499
519
  },
520
+ "TableColumnAction": {
521
+ "description": "Column Action",
522
+ "isViewNode": true,
523
+ "type": "object",
524
+ "properties": {
525
+ "tooltip": {
526
+ "description": "The text of the button tooltip, preferably as an i18n key.",
527
+ "i18nClassification": "ACT: Text for tooltip of button.",
528
+ "type": "string",
529
+ "artifactType": "FlexChange",
530
+ "controlType": "sap.m.Button"
531
+ },
532
+ "icon": {
533
+ "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.",
534
+ "type": "string",
535
+ "artifactType": "FlexChange",
536
+ "controlType": "sap.m.Button"
537
+ },
538
+ "activeIcon": {
539
+ "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.",
540
+ "type": "string",
541
+ "artifactType": "FlexChange",
542
+ "controlType": "sap.m.Button"
543
+ },
544
+ "type": {
545
+ "$ref": "#/definitions/sap.m.ButtonType",
546
+ "description": "Defines the Button type.",
547
+ "artifactType": "FlexChange",
548
+ "controlType": "sap.m.Button"
549
+ },
550
+ "width": {
551
+ "description": "The width property defines the width of the column.",
552
+ "type": "string",
553
+ "artifactType": "FlexChange",
554
+ "controlType": "sap.m.Column"
555
+ },
556
+ "hAlign": {
557
+ "pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
558
+ "anyOf": [
559
+ {
560
+ "$ref": "#/definitions/sap.ui.core.TextAlign"
561
+ },
562
+ {
563
+ "type": "string"
564
+ }
565
+ ],
566
+ "description": "The hAlign property defines the horizontal alignment of the column content.",
567
+ "artifactType": "FlexChange",
568
+ "controlType": "sap.m.Column"
569
+ }
570
+ },
571
+ "additionalProperties": false
572
+ },
500
573
  "TableCustomColumn": {
501
574
  "description": "Custom Column",
502
575
  "isViewNode": true,
@@ -646,6 +719,12 @@
646
719
  "artifactType": "FlexChange",
647
720
  "controlType": "sap.ui.comp.smarttable.SmartTable"
648
721
  },
722
+ "exportType": {
723
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
724
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
725
+ "artifactType": "FlexChange",
726
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
727
+ },
649
728
  "fitContainer": {
650
729
  "description": "Set to false if the table does not occupy the entire space available in the container.",
651
730
  "type": "boolean",
@@ -739,6 +818,12 @@
739
818
  "artifactType": "FlexChange",
740
819
  "controlType": "sap.ui.comp.smarttable.SmartTable"
741
820
  },
821
+ "exportType": {
822
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
823
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
824
+ "artifactType": "FlexChange",
825
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
826
+ },
742
827
  "fitContainer": {
743
828
  "description": "Set to false if the table does not occupy the entire space available in the container.",
744
829
  "type": "boolean",
@@ -863,6 +948,12 @@
863
948
  "artifactType": "FlexChange",
864
949
  "controlType": "sap.ui.comp.smarttable.SmartTable"
865
950
  },
951
+ "exportType": {
952
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
953
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
954
+ "artifactType": "FlexChange",
955
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
956
+ },
866
957
  "fitContainer": {
867
958
  "description": "Set to false if the table does not occupy the entire space available in the container.",
868
959
  "type": "boolean",
@@ -976,6 +1067,12 @@
976
1067
  "artifactType": "FlexChange",
977
1068
  "controlType": "sap.ui.comp.smarttable.SmartTable"
978
1069
  },
1070
+ "exportType": {
1071
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
1072
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
1073
+ "artifactType": "FlexChange",
1074
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
1075
+ },
979
1076
  "fitContainer": {
980
1077
  "description": "Set to false if the table does not occupy the entire space available in the container.",
981
1078
  "type": "boolean",
@@ -1072,6 +1169,9 @@
1072
1169
  "type": "boolean",
1073
1170
  "artifactType": "FlexChange",
1074
1171
  "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
1172
+ },
1173
+ "selectionFields": {
1174
+ "$ref": "#/definitions/SelectionFields"
1075
1175
  }
1076
1176
  },
1077
1177
  "additionalProperties": false
@@ -1146,19 +1246,31 @@
1146
1246
  "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.",
1147
1247
  "type": "boolean",
1148
1248
  "artifactType": "Manifest"
1149
- },
1150
- "fields": {
1151
- "description": "For a fields' list you can define the set of standard date range values separately.",
1152
- "type": "object",
1153
- "additionalProperties": {
1154
- "$ref": "#/definitions/SelectedValues"
1155
- },
1156
- "artifactType": "Manifest"
1157
1249
  }
1158
1250
  },
1159
1251
  "additionalProperties": false
1160
1252
  },
1161
- "SelectedValues": {
1253
+ "SelectionFields": {
1254
+ "description": "Filter Fields",
1255
+ "isViewNode": true,
1256
+ "type": "object",
1257
+ "additionalProperties": {
1258
+ "description": "Filter Field",
1259
+ "isViewNode": true,
1260
+ "anyOf": [
1261
+ {
1262
+ "type": "object",
1263
+ "properties": {}
1264
+ },
1265
+ {
1266
+ "$ref": "#/definitions/SelectionFieldDateSettings"
1267
+ }
1268
+ ]
1269
+ }
1270
+ },
1271
+ "SelectionFieldDateSettings": {
1272
+ "description": "Filter Field for Date Settings",
1273
+ "isViewNode": true,
1162
1274
  "type": "object",
1163
1275
  "properties": {
1164
1276
  "selectedValues": {
@@ -1216,15 +1328,18 @@
1216
1328
  "YESTERDAY"
1217
1329
  ],
1218
1330
  "type": "string"
1219
- }
1331
+ },
1332
+ "artifactType": "Manifest"
1220
1333
  },
1221
1334
  "exclude": {
1222
1335
  "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.",
1223
- "type": "boolean"
1336
+ "type": "boolean",
1337
+ "artifactType": "Manifest"
1224
1338
  },
1225
1339
  "customDateRangeImplementation": {
1226
1340
  "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.",
1227
- "type": "string"
1341
+ "type": "string",
1342
+ "artifactType": "Manifest"
1228
1343
  },
1229
1344
  "filter": {
1230
1345
  "description": "You can use the filter settings to include and exclude specific date range values.",
@@ -1394,7 +1509,64 @@
1394
1509
  ]
1395
1510
  }
1396
1511
  ]
1397
- }
1512
+ },
1513
+ "artifactType": "Manifest"
1514
+ },
1515
+ "defaultValue": {
1516
+ "$ref": "#/definitions/DefaultDateRange",
1517
+ "description": "You can set a default value for semantic date range.",
1518
+ "artifactType": "Manifest"
1519
+ }
1520
+ },
1521
+ "additionalProperties": false
1522
+ },
1523
+ "DefaultDateRange": {
1524
+ "type": "object",
1525
+ "properties": {
1526
+ "operation": {
1527
+ "$ref": "#/definitions/DefaultDateRangeValueType",
1528
+ "description": "The operation property is the value that will be set for semantic date range.",
1529
+ "artifactType": "Manifest"
1530
+ }
1531
+ },
1532
+ "additionalProperties": false,
1533
+ "required": [
1534
+ "operation"
1535
+ ]
1536
+ },
1537
+ "DefaultDateRangeValueType": {
1538
+ "enum": [
1539
+ "DATETOYEAR",
1540
+ "LAST2WEEKS",
1541
+ "LAST3WEEKS",
1542
+ "LAST4WEEKS",
1543
+ "LAST5WEEKS",
1544
+ "LASTMONTH",
1545
+ "LASTQUARTER",
1546
+ "LASTWEEK",
1547
+ "LASTYEAR",
1548
+ "QUARTER1",
1549
+ "QUARTER2",
1550
+ "QUARTER3",
1551
+ "QUARTER4",
1552
+ "THISMONTH",
1553
+ "THISQUARTER",
1554
+ "THISWEEK",
1555
+ "THISYEAR",
1556
+ "TODAY",
1557
+ "TOMORROW",
1558
+ "YEARTODATE",
1559
+ "YESTERDAY"
1560
+ ],
1561
+ "type": "string"
1562
+ },
1563
+ "GenericFooter": {
1564
+ "description": "Footer",
1565
+ "isViewNode": true,
1566
+ "type": "object",
1567
+ "properties": {
1568
+ "actions": {
1569
+ "$ref": "#/definitions/Actions"
1398
1570
  }
1399
1571
  },
1400
1572
  "additionalProperties": false