@sap/ux-specification 1.96.4 → 1.96.9

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 (165) hide show
  1. package/CHANGELOG.md +95 -0
  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-ApplicationV4.html +1 -1
  10. package/dist/documentation/v4/v4-ListReport.html +1 -1
  11. package/dist/documentation/v4/v4-ObjectPage.html +1 -1
  12. package/dist/index-min.js +1 -1
  13. package/dist/schemas/v2/AnalyticalListPageConfig.json +48 -24
  14. package/dist/schemas/v2/ApplicationV2.json +14 -14
  15. package/dist/schemas/v2/ListReportConfig.json +48 -24
  16. package/dist/schemas/v2/OverviewPageConfig.json +29 -28
  17. package/dist/schemas/v4/ApplicationV4.json +9 -5
  18. package/dist/schemas/v4/ListReportConfig.json +609 -209
  19. package/dist/schemas/v4/ObjectPageConfig.json +6 -38
  20. package/dist/specification/v2/index-min.js +1 -1
  21. package/dist/specification/v4/index-min.js +1 -1
  22. package/dist/src/api.d.ts +3 -3
  23. package/dist/src/apiTypes.d.ts +17 -20
  24. package/dist/src/extensionLogger.d.ts +1 -1
  25. package/dist/src/project.d.ts +1 -1
  26. package/dist/src/specification/common/Application.d.ts +24 -4
  27. package/dist/src/specification/common/page.d.ts +1 -1
  28. package/dist/src/specification/common/webapp/manifest/Manifest.d.ts +6 -6
  29. package/dist/src/specification/common/webapp/manifest/sapUi5.d.ts +1 -1
  30. package/dist/src/specification/schemaAccess.d.ts +1 -1
  31. package/dist/src/specification/v2/ApplicationV2.d.ts +3 -17
  32. package/dist/src/specification/v2/controls/Facets.d.ts +1 -1
  33. package/dist/src/specification/v2/controls/FilterBar.d.ts +47 -31
  34. package/dist/src/specification/v2/controls/Footer.d.ts +2 -2
  35. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +1 -1
  36. package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +1 -1
  37. package/dist/src/specification/v2/controls/ObjectPageSection.d.ts +2 -2
  38. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +2 -2
  39. package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +1 -1
  40. package/dist/src/specification/v2/controls/Table.d.ts +3 -3
  41. package/dist/src/specification/v2/controls/ToolBar.d.ts +1 -1
  42. package/dist/src/specification/v2/page.d.ts +1 -1
  43. package/dist/src/specification/v2/pages/AnalyticalListPageConfig.d.ts +4 -4
  44. package/dist/src/specification/v2/pages/ListReportConfig.d.ts +2 -2
  45. package/dist/src/specification/v2/pages/ObjectPageConfig.d.ts +3 -3
  46. package/dist/src/specification/v2/pages/OverviewPageConfig.d.ts +38 -4
  47. package/dist/src/specification/v2/webapp/manifest/sapUi5.d.ts +2 -2
  48. package/dist/src/specification/v2/webapp/manifest/sapUiPageV2.d.ts +2 -2
  49. package/dist/src/specification/v4/ApplicationV4.d.ts +4 -14
  50. package/dist/src/specification/v4/controls/ObjectPageHeader.d.ts +1 -1
  51. package/dist/src/specification/v4/controls/ObjectPageHeaderSection.d.ts +2 -14
  52. package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +2 -2
  53. package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +3 -3
  54. package/dist/src/specification/v4/controls/ObjectPageToolBar.d.ts +1 -1
  55. package/dist/src/specification/v4/controls/Table.d.ts +162 -25
  56. package/dist/src/specification/v4/controls/ToolBar.d.ts +26 -1
  57. package/dist/src/specification/v4/page.d.ts +2 -2
  58. package/dist/src/specification/v4/pages/ListReportConfig.d.ts +17 -3
  59. package/dist/src/specification/v4/pages/ObjectPageConfig.d.ts +2 -2
  60. package/dist/src/specification/v4/pages/index.d.ts +0 -1
  61. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +77 -0
  62. package/dist/src/specification/v4/webapp/manifest/sapUi5.d.ts +12 -3
  63. package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.d.ts +20 -1
  64. package/dist/src/sync/common/appProvider.d.ts +6 -5
  65. package/dist/src/sync/common/decoration/control.d.ts +1 -1
  66. package/dist/src/sync/common/decoration/decorators.d.ts +1 -1
  67. package/dist/src/sync/common/decoration/factory.d.ts +3 -3
  68. package/dist/src/sync/common/decoration/flex.d.ts +3 -3
  69. package/dist/src/sync/common/flexUtils.d.ts +4 -4
  70. package/dist/src/sync/common/generate/objectPage.d.ts +5 -3
  71. package/dist/src/sync/common/generate/utils.d.ts +43 -9
  72. package/dist/src/sync/common/import/utils.d.ts +4 -3
  73. package/dist/src/sync/common/importProject.d.ts +4 -4
  74. package/dist/src/sync/common/types.d.ts +28 -6
  75. package/dist/src/sync/common/utils.d.ts +18 -8
  76. package/dist/src/sync/i18n.d.ts +1 -1
  77. package/dist/src/sync/v2/application.d.ts +2 -2
  78. package/dist/src/sync/v2/export/controls/Action.d.ts +1 -1
  79. package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.d.ts +1 -1
  80. package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.d.ts +1 -1
  81. package/dist/src/sync/v2/export/controls/Card.d.ts +1 -1
  82. package/dist/src/sync/v2/export/controls/Field.d.ts +1 -1
  83. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +17 -4
  84. package/dist/src/sync/v2/export/controls/FormAction.d.ts +1 -1
  85. package/dist/src/sync/v2/export/controls/Fragment.d.ts +5 -11
  86. package/dist/src/sync/v2/export/controls/ObjectPageChart.d.ts +1 -1
  87. package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.d.ts +3 -3
  88. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +1 -1
  89. package/dist/src/sync/v2/export/controls/ObjectPageHeader.d.ts +1 -1
  90. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +1 -1
  91. package/dist/src/sync/v2/export/controls/ObjectPageLayout.d.ts +1 -1
  92. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +6 -6
  93. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +3 -3
  94. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +1 -1
  95. package/dist/src/sync/v2/export/controls/Table.d.ts +3 -2
  96. package/dist/src/sync/v2/export/controls/TableColumn.d.ts +2 -2
  97. package/dist/src/sync/v2/export/controls/ToolBar.d.ts +1 -1
  98. package/dist/src/sync/v2/export/export.d.ts +3 -3
  99. package/dist/src/sync/v2/export/exportPage.d.ts +2 -2
  100. package/dist/src/sync/v2/export/factory.d.ts +2 -1
  101. package/dist/src/sync/v2/export/manifest.d.ts +1 -1
  102. package/dist/src/sync/v2/export/pages/AnalyticalListPage.d.ts +4 -4
  103. package/dist/src/sync/v2/export/pages/ListReport.d.ts +2 -2
  104. package/dist/src/sync/v2/export/pages/ObjectPage.d.ts +3 -3
  105. package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +3 -2
  106. package/dist/src/sync/v2/export/view-controller-generator.d.ts +2 -2
  107. package/dist/src/sync/v2/generate/analyticalListReport.d.ts +1 -1
  108. package/dist/src/sync/v2/generate/generate.d.ts +2 -2
  109. package/dist/src/sync/v2/generate/listReport.d.ts +7 -4
  110. package/dist/src/sync/v2/generate/objectPage.d.ts +1 -1
  111. package/dist/src/sync/v2/generate/overviewPage.d.ts +1 -1
  112. package/dist/src/sync/v2/generate/utils.d.ts +12 -5
  113. package/dist/src/sync/v2/import/app/appProvider.d.ts +4 -4
  114. package/dist/src/sync/v2/import/app/ovpProvider.d.ts +3 -3
  115. package/dist/src/sync/v2/import/common/index.d.ts +6 -5
  116. package/dist/src/sync/v2/import/controls/table.d.ts +1 -1
  117. package/dist/src/sync/v2/import/pages/analyticalListPage.d.ts +2 -2
  118. package/dist/src/sync/v2/import/pages/listReport.d.ts +2 -2
  119. package/dist/src/sync/v2/import/pages/objectPage.d.ts +1 -1
  120. package/dist/src/sync/v2/import/pages/overviewPage.d.ts +2 -2
  121. package/dist/src/sync/v2/import/utils.d.ts +3 -2
  122. package/dist/src/sync/v2/types.d.ts +7 -7
  123. package/dist/src/sync/v4/application.d.ts +9 -5
  124. package/dist/src/sync/v4/export/controls/FilterBar.d.ts +1 -1
  125. package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.d.ts +2 -1
  126. package/dist/src/sync/v4/export/controls/ObjectPageHeader.d.ts +1 -1
  127. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.d.ts +1 -1
  128. package/dist/src/sync/v4/export/controls/ObjectPageLayout.d.ts +1 -1
  129. package/dist/src/sync/v4/export/controls/ObjectPageTable.d.ts +1 -1
  130. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +1 -1
  131. package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts +1 -1
  132. package/dist/src/sync/v4/export/controls/Table.d.ts +125 -9
  133. package/dist/src/sync/v4/export/controls/TableColumn.d.ts +39 -1
  134. package/dist/src/sync/v4/export/controls/ToolBar.d.ts +1 -1
  135. package/dist/src/sync/v4/export/controls/ToolBarAction.d.ts +4 -1
  136. package/dist/src/sync/v4/export/export.d.ts +2 -2
  137. package/dist/src/sync/v4/export/exportCustomColumn.d.ts +2 -2
  138. package/dist/src/sync/v4/export/factory.d.ts +2 -1
  139. package/dist/src/sync/v4/export/flexibleColumnLayout.d.ts +1 -1
  140. package/dist/src/sync/v4/export/manifest.d.ts +2 -2
  141. package/dist/src/sync/v4/export/pages/ListReport.d.ts +8 -3
  142. package/dist/src/sync/v4/export/pages/ObjectPage.d.ts +2 -2
  143. package/dist/src/sync/v4/export/pages/index.d.ts +0 -1
  144. package/dist/src/sync/v4/export/types.d.ts +7 -5
  145. package/dist/src/sync/v4/export/utils.d.ts +1 -1
  146. package/dist/src/sync/v4/generate/generate.d.ts +5 -4
  147. package/dist/src/sync/v4/generate/listReport.d.ts +2 -4
  148. package/dist/src/sync/v4/generate/objectPage.d.ts +1 -1
  149. package/dist/src/sync/v4/import/app/appProvider.d.ts +6 -5
  150. package/dist/src/sync/v4/import/fragment.d.ts +2 -2
  151. package/dist/src/sync/v4/import/index.d.ts +0 -1
  152. package/dist/src/sync/v4/import/pages/listReport.d.ts +8 -7
  153. package/dist/src/sync/v4/import/pages/objectPage.d.ts +2 -2
  154. package/dist/src/sync/v4/import/utils.d.ts +2 -2
  155. package/dist/src/sync/v4/types.d.ts +2 -2
  156. package/dist/src/sync/v4/utils/utils.d.ts +14 -12
  157. package/dist/test/test-data/flexChange/v2/stta.prod.man/index.d.ts +1 -1
  158. package/dist/test/test-projects/index.d.ts +1 -1
  159. package/dist/test/test-utils/utils.d.ts +5 -4
  160. package/package.json +12 -12
  161. package/dist/documentation/v4/v4-AnalyticalListPage.html +0 -49
  162. package/dist/schemas/v4/AnalyticalListPageConfig.json +0 -481
  163. package/dist/src/specification/v4/pages/AnalyticalListPageConfig.d.ts +0 -13
  164. package/dist/src/sync/v4/export/pages/AnalyticalListPage.d.ts +0 -8
  165. package/dist/src/sync/v4/import/pages/analyticalListPage.d.ts +0 -11
@@ -942,6 +942,9 @@
942
942
  "type": "boolean",
943
943
  "artifactType": "FlexChange",
944
944
  "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
945
+ },
946
+ "selectionFields": {
947
+ "$ref": "#/definitions/SelectionFields"
945
948
  }
946
949
  },
947
950
  "additionalProperties": false
@@ -1016,19 +1019,31 @@
1016
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.",
1017
1020
  "type": "boolean",
1018
1021
  "artifactType": "Manifest"
1019
- },
1020
- "fields": {
1021
- "description": "For a fields' list you can define the set of standard date range values separately.",
1022
- "type": "object",
1023
- "additionalProperties": {
1024
- "$ref": "#/definitions/SelectedValues"
1025
- },
1026
- "artifactType": "Manifest"
1027
1022
  }
1028
1023
  },
1029
1024
  "additionalProperties": false
1030
1025
  },
1031
- "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,
1032
1047
  "type": "object",
1033
1048
  "properties": {
1034
1049
  "selectedValues": {
@@ -1086,15 +1101,18 @@
1086
1101
  "YESTERDAY"
1087
1102
  ],
1088
1103
  "type": "string"
1089
- }
1104
+ },
1105
+ "artifactType": "Manifest"
1090
1106
  },
1091
1107
  "exclude": {
1092
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.",
1093
- "type": "boolean"
1109
+ "type": "boolean",
1110
+ "artifactType": "Manifest"
1094
1111
  },
1095
1112
  "customDateRangeImplementation": {
1096
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.",
1097
- "type": "string"
1114
+ "type": "string",
1115
+ "artifactType": "Manifest"
1098
1116
  },
1099
1117
  "filter": {
1100
1118
  "description": "You can use the filter settings to include and exclude specific date range values.",
@@ -1264,25 +1282,31 @@
1264
1282
  ]
1265
1283
  }
1266
1284
  ]
1267
- }
1285
+ },
1286
+ "artifactType": "Manifest"
1268
1287
  },
1269
1288
  "defaultValue": {
1289
+ "$ref": "#/definitions/DefaultDateRange",
1270
1290
  "description": "You can set a default value for semantic date range.",
1271
- "type": "object",
1272
- "properties": {
1273
- "operation": {
1274
- "$ref": "#/definitions/DefaultDateRangeValueType",
1275
- "description": "The operation property is the value that will be set for semantic date range."
1276
- }
1277
- },
1278
- "additionalProperties": false,
1279
- "required": [
1280
- "operation"
1281
- ]
1291
+ "artifactType": "Manifest"
1282
1292
  }
1283
1293
  },
1284
1294
  "additionalProperties": false
1285
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
+ },
1286
1310
  "DefaultDateRangeValueType": {
1287
1311
  "enum": [
1288
1312
  "DATETOYEAR",
@@ -25,16 +25,6 @@
25
25
  "AppSettings": {
26
26
  "type": "object",
27
27
  "properties": {
28
- "title": {
29
- "description": "To change the application header, in your project artifacts, change the i18n property file for your app under webapp/i18n/i18n.properties ->appTitle. Then, refer to the title as {{appTitle}} in the sap.app section of the manifest file.",
30
- "i18nClassification": "TIT: Title of the application",
31
- "type": "string"
32
- },
33
- "description": {
34
- "description": "To change the application header, in your project artifacts, change i18n property file for your app under webapp/i18n/i18n.properties ->appDescription. Then, refer to the description as {{appDescription}} in the sap.app section of the manifest file.",
35
- "i18nClassification": "TIT: Description of the application",
36
- "type": "string"
37
- },
38
28
  "forceGlobalRefresh": {
39
29
  "description": "If forceGlobalRefresh is not explicitly set to false, a global model refresh is triggered when the annotated side effects are executed.",
40
30
  "type": "boolean"
@@ -47,10 +37,6 @@
47
37
  "$ref": "#/definitions/TableColumnVerticalAlignment",
48
38
  "description": "tableColumnVerticalAlignment provides an option for vertical alignment for the whole responsive table."
49
39
  },
50
- "flexEnabled": {
51
- "description": "The flexEnabled indicates if the application supports UI adaptation.",
52
- "type": "boolean"
53
- },
54
40
  "draftDiscardConfirmationSettings": {
55
41
  "$ref": "#/definitions/DraftDiscardConfirmationSettings",
56
42
  "description": "Allows applications to configure confirmation popups in various scenarios"
@@ -58,6 +44,20 @@
58
44
  "statePreservationMode": {
59
45
  "$ref": "#/definitions/StatePreservationMode",
60
46
  "description": "Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases."
47
+ },
48
+ "title": {
49
+ "description": "To change the application header, in your project artifacts, change the i18n property file\nfor your app under webapp/i18n/i18n.properties ->appTitle. Then, refer to the title as\n{{appTitle}} in the sap.app section of the manifest file.",
50
+ "i18nClassification": "TIT: Title of the application",
51
+ "type": "string"
52
+ },
53
+ "description": {
54
+ "description": "To change the application header, in your project artifacts, change the i18n property file\nfor your app under webapp/i18n/i18n.properties ->appDescription. Then, refer to the description\nas {{appDescription}} in the sap.app section of the manifest file.",
55
+ "i18nClassification": "TIT: Description of the application",
56
+ "type": "string"
57
+ },
58
+ "flexEnabled": {
59
+ "description": "To enable key user adaptation for the application, set the flexEnabled property to \"true\".",
60
+ "type": "boolean"
61
61
  }
62
62
  },
63
63
  "additionalProperties": false
@@ -1169,6 +1169,9 @@
1169
1169
  "type": "boolean",
1170
1170
  "artifactType": "FlexChange",
1171
1171
  "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
1172
+ },
1173
+ "selectionFields": {
1174
+ "$ref": "#/definitions/SelectionFields"
1172
1175
  }
1173
1176
  },
1174
1177
  "additionalProperties": false
@@ -1243,19 +1246,31 @@
1243
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.",
1244
1247
  "type": "boolean",
1245
1248
  "artifactType": "Manifest"
1246
- },
1247
- "fields": {
1248
- "description": "For a fields' list you can define the set of standard date range values separately.",
1249
- "type": "object",
1250
- "additionalProperties": {
1251
- "$ref": "#/definitions/SelectedValues"
1252
- },
1253
- "artifactType": "Manifest"
1254
1249
  }
1255
1250
  },
1256
1251
  "additionalProperties": false
1257
1252
  },
1258
- "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,
1259
1274
  "type": "object",
1260
1275
  "properties": {
1261
1276
  "selectedValues": {
@@ -1313,15 +1328,18 @@
1313
1328
  "YESTERDAY"
1314
1329
  ],
1315
1330
  "type": "string"
1316
- }
1331
+ },
1332
+ "artifactType": "Manifest"
1317
1333
  },
1318
1334
  "exclude": {
1319
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.",
1320
- "type": "boolean"
1336
+ "type": "boolean",
1337
+ "artifactType": "Manifest"
1321
1338
  },
1322
1339
  "customDateRangeImplementation": {
1323
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.",
1324
- "type": "string"
1341
+ "type": "string",
1342
+ "artifactType": "Manifest"
1325
1343
  },
1326
1344
  "filter": {
1327
1345
  "description": "You can use the filter settings to include and exclude specific date range values.",
@@ -1491,25 +1509,31 @@
1491
1509
  ]
1492
1510
  }
1493
1511
  ]
1494
- }
1512
+ },
1513
+ "artifactType": "Manifest"
1495
1514
  },
1496
1515
  "defaultValue": {
1516
+ "$ref": "#/definitions/DefaultDateRange",
1497
1517
  "description": "You can set a default value for semantic date range.",
1498
- "type": "object",
1499
- "properties": {
1500
- "operation": {
1501
- "$ref": "#/definitions/DefaultDateRangeValueType",
1502
- "description": "The operation property is the value that will be set for semantic date range."
1503
- }
1504
- },
1505
- "additionalProperties": false,
1506
- "required": [
1507
- "operation"
1508
- ]
1518
+ "artifactType": "Manifest"
1509
1519
  }
1510
1520
  },
1511
1521
  "additionalProperties": false
1512
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
+ },
1513
1537
  "DefaultDateRangeValueType": {
1514
1538
  "enum": [
1515
1539
  "DATETOYEAR",
@@ -73,7 +73,7 @@
73
73
  "type": "object",
74
74
  "properties": {
75
75
  "dateSettings": {
76
- "$ref": "#/definitions/DateRange",
76
+ "$ref": "#/definitions/DateRangeOVP",
77
77
  "description": "You can define date ranges, such as lastYear or nextQuarter on the Smart Filter Bar"
78
78
  }
79
79
  },
@@ -135,13 +135,19 @@
135
135
  ],
136
136
  "type": "string"
137
137
  },
138
- "DateRange": {
138
+ "DateRangeOVP": {
139
139
  "type": "object",
140
140
  "properties": {
141
+ "fields": {
142
+ "description": "For a fields' list you can define the set of standard date range values separately.",
143
+ "type": "object",
144
+ "additionalProperties": {
145
+ "$ref": "#/definitions/SelectedValues"
146
+ }
147
+ },
141
148
  "useDateRange": {
142
149
  "description": "If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters.",
143
- "type": "boolean",
144
- "artifactType": "Manifest"
150
+ "type": "boolean"
145
151
  },
146
152
  "selectedValues": {
147
153
  "description": "The selectedValues property is a set of standard date range values that you want to include or exclude.",
@@ -198,26 +204,17 @@
198
204
  "YESTERDAY"
199
205
  ],
200
206
  "type": "string"
201
- },
202
- "artifactType": "Manifest"
207
+ }
203
208
  },
204
209
  "exclude": {
205
210
  "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.",
206
- "type": "boolean",
207
- "artifactType": "Manifest"
208
- },
209
- "fields": {
210
- "description": "For a fields' list you can define the set of standard date range values separately.",
211
- "type": "object",
212
- "additionalProperties": {
213
- "$ref": "#/definitions/SelectedValues"
214
- },
215
- "artifactType": "Manifest"
211
+ "type": "boolean"
216
212
  }
217
213
  },
218
214
  "additionalProperties": false
219
215
  },
220
216
  "SelectedValues": {
217
+ "isViewNode": false,
221
218
  "type": "object",
222
219
  "properties": {
223
220
  "selectedValues": {
@@ -456,22 +453,26 @@
456
453
  }
457
454
  },
458
455
  "defaultValue": {
459
- "description": "You can set a default value for semantic date range.",
460
- "type": "object",
461
- "properties": {
462
- "operation": {
463
- "$ref": "#/definitions/DefaultDateRangeValueType",
464
- "description": "The operation property is the value that will be set for semantic date range."
465
- }
466
- },
467
- "additionalProperties": false,
468
- "required": [
469
- "operation"
470
- ]
456
+ "$ref": "#/definitions/DefaultDateRange",
457
+ "description": "You can set a default value for semantic date range."
471
458
  }
472
459
  },
473
460
  "additionalProperties": false
474
461
  },
462
+ "DefaultDateRange": {
463
+ "type": "object",
464
+ "properties": {
465
+ "operation": {
466
+ "$ref": "#/definitions/DefaultDateRangeValueType",
467
+ "description": "The operation property is the value that will be set for semantic date range.",
468
+ "artifactType": "Manifest"
469
+ }
470
+ },
471
+ "additionalProperties": false,
472
+ "required": [
473
+ "operation"
474
+ ]
475
+ },
475
476
  "DefaultDateRangeValueType": {
476
477
  "enum": [
477
478
  "DATETOYEAR",
@@ -25,19 +25,23 @@
25
25
  "AppSettings": {
26
26
  "type": "object",
27
27
  "properties": {
28
+ "flexibleColumnLayout": {
29
+ "$ref": "#/definitions/FlexibleColumnLayoutV4",
30
+ "description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas. For the overview page, this layout is not relevant."
31
+ },
28
32
  "title": {
29
- "description": "To change the application header, in your project artifacts, change i18n property file for your app under webapp/i18n/i18n.properties ->appTitle. Then, refer to the title as {{appTitle}} in the sap.app section of the manifest file.",
33
+ "description": "To change the application header, in your project artifacts, change the i18n property file\nfor your app under webapp/i18n/i18n.properties ->appTitle. Then, refer to the title as\n{{appTitle}} in the sap.app section of the manifest file.",
30
34
  "i18nClassification": "TIT: Title of the application",
31
35
  "type": "string"
32
36
  },
33
37
  "description": {
34
- "description": "To change the application header, in your project artifacts, change i18n property file for your app under webapp/i18n/i18n.properties ->appDescription. Then, refer to the description as {{appDescription}} in the sap.app section of the manifest file.",
38
+ "description": "To change the application header, in your project artifacts, change the i18n property file\nfor your app under webapp/i18n/i18n.properties ->appDescription. Then, refer to the description\nas {{appDescription}} in the sap.app section of the manifest file.",
35
39
  "i18nClassification": "TIT: Description of the application",
36
40
  "type": "string"
37
41
  },
38
- "flexibleColumnLayout": {
39
- "$ref": "#/definitions/FlexibleColumnLayoutV4",
40
- "description": "The flexible column layout allows users to see more details on the page, and to expand and collapse the screen areas. For the overview page, this layout is not relevant."
42
+ "flexEnabled": {
43
+ "description": "To enable key user adaptation for the application, set the flexEnabled property to \"true\".",
44
+ "type": "boolean"
41
45
  }
42
46
  },
43
47
  "additionalProperties": false