@sap/ux-specification 1.96.48 → 1.96.50

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 (139) hide show
  1. package/CHANGELOG.md +75 -11
  2. package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
  3. package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
  4. package/dist/documentation/v2/v2-ListReport.html +2 -2
  5. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  6. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  7. package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
  8. package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
  9. package/dist/documentation/v4/v4-FreestylePage.html +2 -2
  10. package/dist/documentation/v4/v4-ListReport.html +2 -2
  11. package/dist/documentation/v4/v4-ObjectPage.html +2 -2
  12. package/dist/index-min.js +137 -137
  13. package/dist/index-min.js.map +4 -4
  14. package/dist/package.json +8 -8
  15. package/dist/schemas/v2/AnalyticalListPageConfig.json +38 -0
  16. package/dist/schemas/v2/ListReportConfig.json +575 -537
  17. package/dist/schemas/v2/ObjectPageConfig.json +72 -4
  18. package/dist/schemas/v2/OverviewPageConfig.json +114 -74
  19. package/dist/schemas/v4/BuildingBlocksConfig.json +8 -0
  20. package/dist/schemas/v4/ListReportConfig.json +77 -5
  21. package/dist/schemas/v4/ObjectPageConfig.json +152 -23
  22. package/dist/src/api.d.ts.map +1 -1
  23. package/dist/src/api.js +6 -3
  24. package/dist/src/api.js.map +1 -1
  25. package/dist/src/sync/common/generate/objectPage.d.ts +4 -3
  26. package/dist/src/sync/common/generate/objectPage.d.ts.map +1 -1
  27. package/dist/src/sync/common/generate/objectPage.js +99 -68
  28. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  29. package/dist/src/sync/common/generate/utils.d.ts.map +1 -1
  30. package/dist/src/sync/common/generate/utils.js +7 -4
  31. package/dist/src/sync/common/generate/utils.js.map +1 -1
  32. package/dist/src/sync/common/importProject.d.ts.map +1 -1
  33. package/dist/src/sync/common/importProject.js +2 -4
  34. package/dist/src/sync/common/importProject.js.map +1 -1
  35. package/dist/src/sync/common/utils.d.ts +27 -3
  36. package/dist/src/sync/common/utils.d.ts.map +1 -1
  37. package/dist/src/sync/common/utils.js +119 -31
  38. package/dist/src/sync/common/utils.js.map +1 -1
  39. package/dist/src/sync/v2/application.js.map +1 -1
  40. package/dist/src/sync/v2/export/controls/Action.d.ts +21 -0
  41. package/dist/src/sync/v2/export/controls/Action.d.ts.map +1 -1
  42. package/dist/src/sync/v2/export/controls/Action.js +93 -1
  43. package/dist/src/sync/v2/export/controls/Action.js.map +1 -1
  44. package/dist/src/sync/v2/export/controls/Card.d.ts +6 -5
  45. package/dist/src/sync/v2/export/controls/Card.d.ts.map +1 -1
  46. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  47. package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js.map +1 -1
  48. package/dist/src/sync/v2/export/export.d.ts.map +1 -1
  49. package/dist/src/sync/v2/export/export.js +3 -1
  50. package/dist/src/sync/v2/export/export.js.map +1 -1
  51. package/dist/src/sync/v2/export/exportPage.d.ts.map +1 -1
  52. package/dist/src/sync/v2/export/exportPage.js.map +1 -1
  53. package/dist/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
  54. package/dist/src/sync/v2/generate/analyticalListReport.js +2 -0
  55. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  56. package/dist/src/sync/v2/generate/generate.d.ts +5 -5
  57. package/dist/src/sync/v2/generate/generate.d.ts.map +1 -1
  58. package/dist/src/sync/v2/generate/generate.js.map +1 -1
  59. package/dist/src/sync/v2/generate/listReport.d.ts.map +1 -1
  60. package/dist/src/sync/v2/generate/listReport.js +5 -2
  61. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  62. package/dist/src/sync/v2/generate/objectPage.d.ts.map +1 -1
  63. package/dist/src/sync/v2/generate/objectPage.js +62 -63
  64. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  65. package/dist/src/sync/v2/generate/utils.d.ts +20 -0
  66. package/dist/src/sync/v2/generate/utils.d.ts.map +1 -1
  67. package/dist/src/sync/v2/generate/utils.js +59 -2
  68. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  69. package/dist/src/sync/v2/import/app/appProvider.d.ts.map +1 -1
  70. package/dist/src/sync/v2/import/app/appProvider.js +9 -10
  71. package/dist/src/sync/v2/import/app/appProvider.js.map +1 -1
  72. package/dist/src/sync/v2/import/common/index.d.ts +9 -0
  73. package/dist/src/sync/v2/import/common/index.d.ts.map +1 -1
  74. package/dist/src/sync/v2/import/common/index.js +39 -13
  75. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  76. package/dist/src/sync/v2/import/pages/analyticalListPage.d.ts.map +1 -1
  77. package/dist/src/sync/v2/import/pages/analyticalListPage.js +4 -4
  78. package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
  79. package/dist/src/sync/v2/import/pages/listReport.d.ts.map +1 -1
  80. package/dist/src/sync/v2/import/pages/listReport.js +5 -6
  81. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  82. package/dist/src/sync/v2/import/pages/objectPage.d.ts.map +1 -1
  83. package/dist/src/sync/v2/import/pages/objectPage.js +81 -33
  84. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  85. package/dist/src/sync/v2/import/utils.d.ts +1 -2
  86. package/dist/src/sync/v2/import/utils.d.ts.map +1 -1
  87. package/dist/src/sync/v2/import/utils.js +1 -2
  88. package/dist/src/sync/v2/import/utils.js.map +1 -1
  89. package/dist/src/sync/v2/types.d.ts +6 -1
  90. package/dist/src/sync/v2/types.d.ts.map +1 -1
  91. package/dist/src/sync/v2/types.js +6 -1
  92. package/dist/src/sync/v2/types.js.map +1 -1
  93. package/dist/src/sync/v4/application.d.ts +10 -0
  94. package/dist/src/sync/v4/application.d.ts.map +1 -1
  95. package/dist/src/sync/v4/application.js +21 -1
  96. package/dist/src/sync/v4/application.js.map +1 -1
  97. package/dist/src/sync/v4/export/controls/FilterBar.d.ts +11 -0
  98. package/dist/src/sync/v4/export/controls/FilterBar.d.ts.map +1 -1
  99. package/dist/src/sync/v4/export/controls/FilterBar.js +77 -1
  100. package/dist/src/sync/v4/export/controls/FilterBar.js.map +1 -1
  101. package/dist/src/sync/v4/export/controls/ObjectPageCustomHeaderSection.d.ts +18 -0
  102. package/dist/src/sync/v4/export/controls/ObjectPageCustomHeaderSection.d.ts.map +1 -0
  103. package/dist/src/sync/v4/export/controls/ObjectPageCustomHeaderSection.js +158 -0
  104. package/dist/src/sync/v4/export/controls/ObjectPageCustomHeaderSection.js.map +1 -0
  105. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.d.ts +3 -2
  106. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.d.ts.map +1 -1
  107. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js.map +1 -1
  108. package/dist/src/sync/v4/export/controls/index.d.ts +1 -0
  109. package/dist/src/sync/v4/export/controls/index.d.ts.map +1 -1
  110. package/dist/src/sync/v4/export/controls/index.js +1 -0
  111. package/dist/src/sync/v4/export/controls/index.js.map +1 -1
  112. package/dist/src/sync/v4/export/export.d.ts.map +1 -1
  113. package/dist/src/sync/v4/export/export.js +66 -45
  114. package/dist/src/sync/v4/export/export.js.map +1 -1
  115. package/dist/src/sync/v4/generate/fpm-custom-page/annotations.js +4 -4
  116. package/dist/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
  117. package/dist/src/sync/v4/generate/generate.d.ts +3 -3
  118. package/dist/src/sync/v4/generate/generate.d.ts.map +1 -1
  119. package/dist/src/sync/v4/generate/generate.js.map +1 -1
  120. package/dist/src/sync/v4/generate/listReport.d.ts +1 -1
  121. package/dist/src/sync/v4/generate/listReport.d.ts.map +1 -1
  122. package/dist/src/sync/v4/generate/listReport.js +72 -46
  123. package/dist/src/sync/v4/generate/listReport.js.map +1 -1
  124. package/dist/src/sync/v4/generate/objectPage.d.ts.map +1 -1
  125. package/dist/src/sync/v4/generate/objectPage.js +49 -27
  126. package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
  127. package/dist/src/sync/v4/import/fragment.d.ts.map +1 -1
  128. package/dist/src/sync/v4/import/fragment.js.map +1 -1
  129. package/dist/src/sync/v4/import/pages/listReport.d.ts.map +1 -1
  130. package/dist/src/sync/v4/import/pages/listReport.js +39 -2
  131. package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
  132. package/dist/src/sync/v4/import/pages/objectPage.d.ts.map +1 -1
  133. package/dist/src/sync/v4/import/pages/objectPage.js +32 -0
  134. package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
  135. package/dist/src/sync/v4/utils/utils.d.ts +14 -6
  136. package/dist/src/sync/v4/utils/utils.d.ts.map +1 -1
  137. package/dist/src/sync/v4/utils/utils.js +64 -11
  138. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  139. package/package.json +8 -8
@@ -7,6 +7,13 @@
7
7
  "artifactType": "FlexChange",
8
8
  "controlType": "sap.f.DynamicPage"
9
9
  },
10
+ "header": {
11
+ "$ref": "#/definitions/Header",
12
+ "description": "Header"
13
+ },
14
+ "filterBar": {
15
+ "$ref": "#/definitions/ListReportFilterBar"
16
+ },
10
17
  "table": {
11
18
  "anyOf": [
12
19
  {
@@ -26,9 +33,6 @@
26
33
  }
27
34
  ]
28
35
  },
29
- "filterBar": {
30
- "$ref": "#/definitions/ListReportFilterBar"
31
- },
32
36
  "footer": {
33
37
  "$ref": "#/definitions/GenericFooter"
34
38
  },
@@ -38,241 +42,639 @@
38
42
  },
39
43
  "additionalProperties": false,
40
44
  "definitions": {
41
- "AnalyticalTable": {
42
- "description": "Table",
45
+ "Header": {
46
+ "description": "Header",
43
47
  "isViewNode": true,
44
- "controlProperty": "type",
45
48
  "type": "object",
46
49
  "properties": {
47
- "type": {
48
- "description": "Use type to define the table type. Note: Grid tables, analytical tables, and tree tables cannot be rendered on smartphones. Instead, responsive tables always show on smartphones.",
49
- "type": "string",
50
- "const": "AnalyticalTable",
51
- "artifactType": "Manifest"
52
- },
53
- "qualifier": {
54
- "description": "Represents the SelectionPresentationVariant qualifier. ALP looks for SelectionPresentationVariant with this qualifier and if not found, it looks for PresentationVariant with this qualifier.",
55
- "type": "string",
56
- "artifactType": "Manifest"
57
- },
58
- "defaultContentView": {
59
- "$ref": "#/definitions/DefaultContentView",
60
- "description": "Determines the visualization of content area",
61
- "artifactType": "Manifest"
62
- },
63
- "defaultFilterMode": {
64
- "$ref": "#/definitions/DefaultFilterMode",
65
- "description": "Determines the filter mode that is used",
66
- "artifactType": "Manifest"
67
- },
68
- "contentTitle": {
69
- "description": "Lets you define title for the content area",
70
- "i18nClassification": "TIT: Title for the content area",
50
+ "actions": {
51
+ "$ref": "#/definitions/HeaderActionsStandard"
52
+ }
53
+ },
54
+ "additionalProperties": false
55
+ },
56
+ "HeaderActionsStandard": {
57
+ "type": "object",
58
+ "properties": {
59
+ "Share": {
60
+ "$ref": "#/definitions/Share"
61
+ }
62
+ },
63
+ "additionalProperties": false
64
+ },
65
+ "Share": {
66
+ "description": "Share",
67
+ "isViewNode": true,
68
+ "type": "object",
69
+ "properties": {
70
+ "visible": {
71
+ "description": "Allows you to define if the button is visible on the screen.",
72
+ "type": "boolean",
73
+ "artifactType": "FlexChange",
74
+ "controlType": "sap.m.Button"
75
+ }
76
+ },
77
+ "additionalProperties": false
78
+ },
79
+ "ListReportFilterBar": {
80
+ "description": "Filter Bar",
81
+ "isViewNode": true,
82
+ "type": "object",
83
+ "properties": {
84
+ "annotationPath": {
85
+ "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
71
86
  "type": "string",
72
87
  "artifactType": "Manifest"
73
88
  },
74
- "allFiltersAsInParameters": {
75
- "description": "All filter fields will be set as in parameter",
89
+ "smartVariantManagement": {
90
+ "description": "Controls whether smart variant management is active. Default is true.",
76
91
  "type": "boolean",
77
92
  "artifactType": "Manifest"
78
93
  },
79
- "createWithFilters": {
80
- "$ref": "#/definitions/CreateWithFilters",
81
- "description": "createWithFilters adds a new create action that uses the filter settings as input.",
82
- "artifactType": "Manifest"
83
- },
84
- "multiSelect": {
85
- "description": "Single selection in tables is enabled by default. If you want, you can enable multi-select.",
94
+ "liveMode": {
95
+ "description": "If liveMode is set, the search will be automatically triggered when a filter value is set.",
86
96
  "type": "boolean",
87
- "artifactType": "Manifest"
97
+ "artifactType": "FlexChange",
98
+ "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
88
99
  },
89
- "showDraftToggle": {
90
- "description": "In the list report and on the object page, you can enable buttons to display and hide draft values. By default, these buttons are hidden. To enable them, set the showDraftToggle flag to true.",
100
+ "variantManagementHidden": {
101
+ "description": "If you set the flag to true, then standard variant management is not available in the app. The app name is displayed instead.\nIf you set the flag to false or if the flag is not at all contained in the manifest of the app, the standard variant management is available and can be enabled or disabled.",
91
102
  "type": "boolean",
92
103
  "artifactType": "Manifest"
93
104
  },
94
- "createWithParameterDialog": {
95
- "$ref": "#/definitions/Fields4Dialog",
96
- "description": "You can enable the creation of objects that have a maximum of 8 data fields through a dialog in the list report page.",
97
- "artifactType": "Manifest"
98
- },
99
- "selectAll": {
100
- "description": "The 'Select All' button is disabled by default. To enable it, set selectAll to true.",
101
- "type": "boolean",
105
+ "subTitleIfVariantMgmtHidden": {
106
+ "description": "You can choose an app-specific title by setting the corresponding value for the subTitleIfVariantMgmtHidden property.",
107
+ "i18nClassification": "TIT: Subtitle if variant management is hidden",
108
+ "type": "string",
102
109
  "artifactType": "Manifest"
103
110
  },
104
- "selectionLimit": {
105
- "description": "If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated.",
106
- "type": "number",
111
+ "dateSettings": {
112
+ "$ref": "#/definitions/DateRange",
113
+ "description": "Use to set date settings for fields in smart filter bar",
107
114
  "artifactType": "Manifest"
108
115
  },
109
- "showTablePersonalisation": {
110
- "description": "The showTablePersonalisation attribute can be set to false to hide the table personalization button.",
116
+ "showClearOnFB": {
117
+ "description": "Handles visibility of the Clear button on the FilterBar.",
111
118
  "type": "boolean",
112
119
  "artifactType": "FlexChange",
113
- "controlType": "sap.ui.comp.smarttable.SmartTable"
120
+ "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
114
121
  },
115
- "useExportToExcel": {
116
- "description": "useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel.",
122
+ "showFilterConfiguration": {
123
+ "description": "Handles visibility of the Filter button on the FilterBar.",
117
124
  "type": "boolean",
118
125
  "artifactType": "FlexChange",
119
- "controlType": "sap.ui.comp.smarttable.SmartTable"
120
- },
121
- "exportType": {
122
- "$ref": "#/definitions/smarttable.ExportType",
123
- "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
124
- "artifactType": "FlexChange",
125
- "controlType": "sap.ui.comp.smarttable.SmartTable"
126
+ "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
126
127
  },
127
- "fitContainer": {
128
- "description": "Set to false if the table does not occupy the entire space available in the container.",
128
+ "showRestoreOnFB": {
129
+ "description": "Handles visibility of the Restore button on the FilterBar.",
129
130
  "type": "boolean",
130
131
  "artifactType": "FlexChange",
131
- "controlType": "sap.ui.comp.smarttable.SmartTable"
132
- },
133
- "quickVariantSelection": {
134
- "$ref": "#/definitions/QuickVariantSelection",
135
- "description": "With quickVariantSelection you can switch on the multiple view feature. It links to variants you must have added to your annotations beforehand.",
136
- "artifactType": "Manifest"
137
- },
138
- "quickVariantSelectionX": {
139
- "$ref": "#/definitions/QuickVariantSelectionX",
140
- "description": "Switch on the multiple view feature (Multiple table mode with charts) and link to the variants you have added to your annotations.",
141
- "artifactType": "Manifest"
142
- },
143
- "condensedTableLayout": {
144
- "description": "For analytical tables, grid tables and tree tables you can define a condensed table layout by setting condensedTableLayout to true.",
145
- "type": "boolean",
146
- "artifactType": "Manifest"
147
- },
148
- "enableTableFilterInPageVariant": {
149
- "description": "If you have enabled harmonized variant management, by default, you cannot set a filter in the table personalization settings.\nTo enable filtering, set the enableTableFilterInPageVariant property to true.",
150
- "type": "boolean",
151
- "artifactType": "Manifest"
152
- },
153
- "dataLoadSettings": {
154
- "$ref": "#/definitions/DataLoadSettings",
155
- "description": "Change the default behavior for autoloading of data.",
156
- "artifactType": "Manifest"
157
- },
158
- "toolBar": {
159
- "$ref": "#/definitions/ToolBar",
160
- "description": "Tool Bar"
132
+ "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
161
133
  },
162
- "columns": {
163
- "$ref": "#/definitions/GenericColumns",
164
- "description": "Columns"
134
+ "selectionFields": {
135
+ "$ref": "#/definitions/SelectionFields"
165
136
  }
166
137
  },
167
138
  "additionalProperties": false
168
139
  },
169
- "DefaultContentView": {
170
- "enum": [
171
- "chart",
172
- "charttable",
173
- "table"
174
- ],
175
- "type": "string"
176
- },
177
- "DefaultFilterMode": {
178
- "enum": [
179
- "compact",
180
- "visual"
181
- ],
182
- "type": "string"
183
- },
184
- "CreateWithFilters": {
140
+ "DateRange": {
185
141
  "type": "object",
186
142
  "properties": {
187
- "strategy": {
188
- "description": "For the new create action to use the filter settings as input, set strategy to \"extension\" and implement the extension function as mentioned in help.sap.com for SAP S/4 HANA, section “Prefilling Fields When Creating a New Entity Using an Extension Point“.",
189
- "type": "string",
190
- "const": "extension",
143
+ "useDateRange": {
144
+ "description": "If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters.",
145
+ "type": "boolean",
191
146
  "artifactType": "Manifest"
192
- }
193
- },
194
- "additionalProperties": false,
195
- "required": [
196
- "strategy"
197
- ]
198
- },
199
- "Fields4Dialog": {
200
- "type": "object",
201
- "properties": {
202
- "fields": {
147
+ },
148
+ "selectedValues": {
149
+ "description": "The selectedValues property is a set of standard date range values that you want to include or exclude.",
203
150
  "type": "array",
204
151
  "items": {
152
+ "enum": [
153
+ "DATE",
154
+ "DATERANGE",
155
+ "DAYS",
156
+ "FROM",
157
+ "LAST2WEEKS",
158
+ "LAST3WEEKS",
159
+ "LAST4WEEKS",
160
+ "LAST5WEEKS",
161
+ "LASTDAYS",
162
+ "LASTMONTH",
163
+ "LASTMONTHS",
164
+ "LASTQUARTER",
165
+ "LASTQUARTERS",
166
+ "LASTWEEK",
167
+ "LASTWEEKS",
168
+ "LASTYEAR",
169
+ "LASTYEARS",
170
+ "MONTH",
171
+ "NEXT",
172
+ "NEXT2WEEKS",
173
+ "NEXT3WEEKS",
174
+ "NEXT4WEEKS",
175
+ "NEXT5WEEKS",
176
+ "NEXTDAYS",
177
+ "NEXTMONTH",
178
+ "NEXTMONTHS",
179
+ "NEXTQUARTER",
180
+ "NEXTQUARTERS",
181
+ "NEXTWEEK",
182
+ "NEXTWEEKS",
183
+ "NEXTYEARS",
184
+ "QUARTER",
185
+ "QUARTER1",
186
+ "QUARTER2",
187
+ "QUARTER3",
188
+ "QUARTER4",
189
+ "SPECIFICMONTH",
190
+ "THISMONTH",
191
+ "THISQUARTER",
192
+ "THISWEEK",
193
+ "TO",
194
+ "TODAY",
195
+ "TODAYFROMTO",
196
+ "TOMORROW",
197
+ "WEEK",
198
+ "YEAR",
199
+ "YEARTODATE",
200
+ "YESTERDAY"
201
+ ],
205
202
  "type": "string"
206
203
  },
207
204
  "artifactType": "Manifest"
205
+ },
206
+ "exclude": {
207
+ "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.",
208
+ "type": "boolean",
209
+ "artifactType": "Manifest"
208
210
  }
209
211
  },
210
- "additionalProperties": false,
211
- "required": [
212
- "fields"
213
- ]
212
+ "additionalProperties": false
214
213
  },
215
- "smarttable.ExportType": {
216
- "description": "Provides the type of services available for export in the `SmartTable` control.",
217
- "enum": [
218
- "GW",
219
- "UI5Client"
220
- ],
221
- "type": "string"
214
+ "SelectionFields": {
215
+ "description": "Filter Fields",
216
+ "isViewNode": true,
217
+ "type": "object",
218
+ "additionalProperties": {
219
+ "description": "Filter Field",
220
+ "isViewNode": true,
221
+ "anyOf": [
222
+ {
223
+ "type": "object",
224
+ "properties": {}
225
+ },
226
+ {
227
+ "$ref": "#/definitions/SelectionFieldDateSettings"
228
+ }
229
+ ]
230
+ }
222
231
  },
223
- "QuickVariantSelection": {
232
+ "SelectionFieldDateSettings": {
233
+ "description": "Filter Field for Date Settings",
234
+ "isViewNode": true,
224
235
  "type": "object",
225
236
  "properties": {
226
- "showCounts": {
227
- "description": "To show the number of records available, set showCounts to true.",
237
+ "selectedValues": {
238
+ "description": "The selectedValues property is a set of standard date range values that you want to include or exclude.",
239
+ "type": "array",
240
+ "items": {
241
+ "enum": [
242
+ "DATE",
243
+ "DATERANGE",
244
+ "DAYS",
245
+ "FROM",
246
+ "LAST2WEEKS",
247
+ "LAST3WEEKS",
248
+ "LAST4WEEKS",
249
+ "LAST5WEEKS",
250
+ "LASTDAYS",
251
+ "LASTMONTH",
252
+ "LASTMONTHS",
253
+ "LASTQUARTER",
254
+ "LASTQUARTERS",
255
+ "LASTWEEK",
256
+ "LASTWEEKS",
257
+ "LASTYEAR",
258
+ "LASTYEARS",
259
+ "MONTH",
260
+ "NEXT",
261
+ "NEXT2WEEKS",
262
+ "NEXT3WEEKS",
263
+ "NEXT4WEEKS",
264
+ "NEXT5WEEKS",
265
+ "NEXTDAYS",
266
+ "NEXTMONTH",
267
+ "NEXTMONTHS",
268
+ "NEXTQUARTER",
269
+ "NEXTQUARTERS",
270
+ "NEXTWEEK",
271
+ "NEXTWEEKS",
272
+ "NEXTYEARS",
273
+ "QUARTER",
274
+ "QUARTER1",
275
+ "QUARTER2",
276
+ "QUARTER3",
277
+ "QUARTER4",
278
+ "SPECIFICMONTH",
279
+ "THISMONTH",
280
+ "THISQUARTER",
281
+ "THISWEEK",
282
+ "TO",
283
+ "TODAY",
284
+ "TODAYFROMTO",
285
+ "TOMORROW",
286
+ "WEEK",
287
+ "YEAR",
288
+ "YEARTODATE",
289
+ "YESTERDAY"
290
+ ],
291
+ "type": "string"
292
+ },
293
+ "artifactType": "Manifest"
294
+ },
295
+ "exclude": {
296
+ "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.",
228
297
  "type": "boolean",
229
298
  "artifactType": "Manifest"
230
299
  },
231
- "variants": {
232
- "description": "The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations.",
233
- "type": "object",
234
- "additionalProperties": {
235
- "$ref": "#/definitions/QuickVariant"
300
+ "customDateRangeImplementation": {
301
+ "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.",
302
+ "type": "string",
303
+ "artifactType": "Manifest"
304
+ },
305
+ "filter": {
306
+ "description": "You can use the filter settings to include and exclude specific date range values.",
307
+ "type": "array",
308
+ "items": {
309
+ "type": "object",
310
+ "properties": {
311
+ "path": {
312
+ "$ref": "#/definitions/FilterPathType",
313
+ "description": "Choose 'key' to define filter values for single values of the date range, or 'category' to filter by a whole subset."
314
+ },
315
+ "contains": {
316
+ "description": "The 'contains' string specifies a filter describing a set of values of the date range type.",
317
+ "type": "string"
318
+ },
319
+ "equals": {
320
+ "description": "Defines a single value of the standard date range type.",
321
+ "type": "array",
322
+ "items": {
323
+ "enum": [
324
+ "DATE",
325
+ "DATERANGE",
326
+ "DAYS",
327
+ "FROM",
328
+ "LAST2WEEKS",
329
+ "LAST3WEEKS",
330
+ "LAST4WEEKS",
331
+ "LAST5WEEKS",
332
+ "LASTDAYS",
333
+ "LASTMONTH",
334
+ "LASTMONTHS",
335
+ "LASTQUARTER",
336
+ "LASTQUARTERS",
337
+ "LASTWEEK",
338
+ "LASTWEEKS",
339
+ "LASTYEAR",
340
+ "LASTYEARS",
341
+ "MONTH",
342
+ "NEXT",
343
+ "NEXT2WEEKS",
344
+ "NEXT3WEEKS",
345
+ "NEXT4WEEKS",
346
+ "NEXT5WEEKS",
347
+ "NEXTDAYS",
348
+ "NEXTMONTH",
349
+ "NEXTMONTHS",
350
+ "NEXTQUARTER",
351
+ "NEXTQUARTERS",
352
+ "NEXTWEEK",
353
+ "NEXTWEEKS",
354
+ "NEXTYEARS",
355
+ "QUARTER",
356
+ "QUARTER1",
357
+ "QUARTER2",
358
+ "QUARTER3",
359
+ "QUARTER4",
360
+ "SPECIFICMONTH",
361
+ "THISMONTH",
362
+ "THISQUARTER",
363
+ "THISWEEK",
364
+ "TO",
365
+ "TODAY",
366
+ "TODAYFROMTO",
367
+ "TOMORROW",
368
+ "WEEK",
369
+ "YEAR",
370
+ "YEARTODATE",
371
+ "YESTERDAY"
372
+ ],
373
+ "type": "string"
374
+ }
375
+ },
376
+ "exclude": {
377
+ "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.",
378
+ "type": "boolean"
379
+ }
380
+ },
381
+ "additionalProperties": false,
382
+ "required": [
383
+ "path"
384
+ ]
236
385
  },
237
386
  "artifactType": "Manifest"
387
+ },
388
+ "defaultValue": {
389
+ "$ref": "#/definitions/DefaultDateRange",
390
+ "description": "You can set a default value for semantic date range.",
391
+ "artifactType": "Manifest"
238
392
  }
239
393
  },
240
- "additionalProperties": false,
241
- "required": [
242
- "variants"
243
- ]
394
+ "additionalProperties": false
244
395
  },
245
- "QuickVariant": {
396
+ "FilterPathType": {
397
+ "enum": [
398
+ "category",
399
+ "key"
400
+ ],
401
+ "type": "string"
402
+ },
403
+ "DefaultDateRange": {
246
404
  "type": "object",
247
405
  "properties": {
248
- "key": {
249
- "description": "A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory.",
250
- "type": "string"
251
- },
252
- "annotationPath": {
253
- "description": "Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation.",
254
- "type": "string"
406
+ "operation": {
407
+ "$ref": "#/definitions/DefaultDateRangeValueType",
408
+ "description": "The operation property is the value that will be set for semantic date range.",
409
+ "artifactType": "Manifest"
255
410
  }
256
411
  },
257
412
  "additionalProperties": false,
258
413
  "required": [
259
- "annotationPath",
260
- "key"
414
+ "operation"
261
415
  ]
262
416
  },
263
- "QuickVariantSelectionX": {
417
+ "DefaultDateRangeValueType": {
418
+ "enum": [
419
+ "DATETOYEAR",
420
+ "LAST2WEEKS",
421
+ "LAST3WEEKS",
422
+ "LAST4WEEKS",
423
+ "LAST5WEEKS",
424
+ "LASTMONTH",
425
+ "LASTQUARTER",
426
+ "LASTWEEK",
427
+ "LASTYEAR",
428
+ "QUARTER1",
429
+ "QUARTER2",
430
+ "QUARTER3",
431
+ "QUARTER4",
432
+ "THISMONTH",
433
+ "THISQUARTER",
434
+ "THISWEEK",
435
+ "THISYEAR",
436
+ "TODAY",
437
+ "TOMORROW",
438
+ "YEARTODATE",
439
+ "YESTERDAY"
440
+ ],
441
+ "type": "string"
442
+ },
443
+ "AnalyticalTable": {
444
+ "description": "Table",
445
+ "isViewNode": true,
446
+ "controlProperty": "type",
264
447
  "type": "object",
265
448
  "properties": {
266
- "enableAutoBinding": {
267
- "description": "When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property.",
268
- "type": "boolean",
449
+ "type": {
450
+ "description": "Use type to define the table type. Note: Grid tables, analytical tables, and tree tables cannot be rendered on smartphones. Instead, responsive tables always show on smartphones.",
451
+ "type": "string",
452
+ "const": "AnalyticalTable",
269
453
  "artifactType": "Manifest"
270
454
  },
271
- "variants": {
272
- "description": "The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations.",
273
- "type": "object",
274
- "additionalProperties": {
275
- "$ref": "#/definitions/QuickVariantX"
455
+ "qualifier": {
456
+ "description": "Represents the SelectionPresentationVariant qualifier. ALP looks for SelectionPresentationVariant with this qualifier and if not found, it looks for PresentationVariant with this qualifier.",
457
+ "type": "string",
458
+ "artifactType": "Manifest"
459
+ },
460
+ "defaultContentView": {
461
+ "$ref": "#/definitions/DefaultContentView",
462
+ "description": "Determines the visualization of content area",
463
+ "artifactType": "Manifest"
464
+ },
465
+ "defaultFilterMode": {
466
+ "$ref": "#/definitions/DefaultFilterMode",
467
+ "description": "Determines the filter mode that is used",
468
+ "artifactType": "Manifest"
469
+ },
470
+ "contentTitle": {
471
+ "description": "Lets you define title for the content area",
472
+ "i18nClassification": "TIT: Title for the content area",
473
+ "type": "string",
474
+ "artifactType": "Manifest"
475
+ },
476
+ "allFiltersAsInParameters": {
477
+ "description": "All filter fields will be set as in parameter",
478
+ "type": "boolean",
479
+ "artifactType": "Manifest"
480
+ },
481
+ "createWithFilters": {
482
+ "$ref": "#/definitions/CreateWithFilters",
483
+ "description": "createWithFilters adds a new create action that uses the filter settings as input.",
484
+ "artifactType": "Manifest"
485
+ },
486
+ "multiSelect": {
487
+ "description": "Single selection in tables is enabled by default. If you want, you can enable multi-select.",
488
+ "type": "boolean",
489
+ "artifactType": "Manifest"
490
+ },
491
+ "showDraftToggle": {
492
+ "description": "In the list report and on the object page, you can enable buttons to display and hide draft values. By default, these buttons are hidden. To enable them, set the showDraftToggle flag to true.",
493
+ "type": "boolean",
494
+ "artifactType": "Manifest"
495
+ },
496
+ "createWithParameterDialog": {
497
+ "$ref": "#/definitions/Fields4Dialog",
498
+ "description": "You can enable the creation of objects that have a maximum of 8 data fields through a dialog in the list report page.",
499
+ "artifactType": "Manifest"
500
+ },
501
+ "selectAll": {
502
+ "description": "The 'Select All' button is disabled by default. To enable it, set selectAll to true.",
503
+ "type": "boolean",
504
+ "artifactType": "Manifest"
505
+ },
506
+ "selectionLimit": {
507
+ "description": "If new data needs to be loaded from the back-end system for this, the number of lines to be loaded is restricted to the specified limit. The default value for this limit is 200. If selectAll is true, the selection limit is not evaluated.",
508
+ "type": "number",
509
+ "artifactType": "Manifest"
510
+ },
511
+ "showTablePersonalisation": {
512
+ "description": "The showTablePersonalisation attribute can be set to false to hide the table personalization button.",
513
+ "type": "boolean",
514
+ "artifactType": "FlexChange",
515
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
516
+ },
517
+ "useExportToExcel": {
518
+ "description": "useExportToExcel must be set to true if you want to export data to a spreadsheet application, for example Microsoft Excel.",
519
+ "type": "boolean",
520
+ "artifactType": "FlexChange",
521
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
522
+ },
523
+ "exportType": {
524
+ "$ref": "#/definitions/smarttable.ExportType",
525
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
526
+ "artifactType": "FlexChange",
527
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
528
+ },
529
+ "fitContainer": {
530
+ "description": "Set to false if the table does not occupy the entire space available in the container.",
531
+ "type": "boolean",
532
+ "artifactType": "FlexChange",
533
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
534
+ },
535
+ "quickVariantSelection": {
536
+ "$ref": "#/definitions/QuickVariantSelection",
537
+ "description": "With quickVariantSelection you can switch on the multiple view feature. It links to variants you must have added to your annotations beforehand.",
538
+ "artifactType": "Manifest"
539
+ },
540
+ "quickVariantSelectionX": {
541
+ "$ref": "#/definitions/QuickVariantSelectionX",
542
+ "description": "Switch on the multiple view feature (Multiple table mode with charts) and link to the variants you have added to your annotations.",
543
+ "artifactType": "Manifest"
544
+ },
545
+ "condensedTableLayout": {
546
+ "description": "For analytical tables, grid tables and tree tables you can define a condensed table layout by setting condensedTableLayout to true.",
547
+ "type": "boolean",
548
+ "artifactType": "Manifest"
549
+ },
550
+ "enableTableFilterInPageVariant": {
551
+ "description": "If you have enabled harmonized variant management, by default, you cannot set a filter in the table personalization settings.\nTo enable filtering, set the enableTableFilterInPageVariant property to true.",
552
+ "type": "boolean",
553
+ "artifactType": "Manifest"
554
+ },
555
+ "dataLoadSettings": {
556
+ "$ref": "#/definitions/DataLoadSettings",
557
+ "description": "Change the default behavior for autoloading of data.",
558
+ "artifactType": "Manifest"
559
+ },
560
+ "toolBar": {
561
+ "$ref": "#/definitions/ToolBar",
562
+ "description": "Tool Bar"
563
+ },
564
+ "columns": {
565
+ "$ref": "#/definitions/GenericColumns",
566
+ "description": "Columns"
567
+ }
568
+ },
569
+ "additionalProperties": false
570
+ },
571
+ "DefaultContentView": {
572
+ "enum": [
573
+ "chart",
574
+ "charttable",
575
+ "table"
576
+ ],
577
+ "type": "string"
578
+ },
579
+ "DefaultFilterMode": {
580
+ "enum": [
581
+ "compact",
582
+ "visual"
583
+ ],
584
+ "type": "string"
585
+ },
586
+ "CreateWithFilters": {
587
+ "type": "object",
588
+ "properties": {
589
+ "strategy": {
590
+ "description": "For the new create action to use the filter settings as input, set strategy to \"extension\" and implement the extension function as mentioned in help.sap.com for SAP S/4 HANA, section “Prefilling Fields When Creating a New Entity Using an Extension Point“.",
591
+ "type": "string",
592
+ "const": "extension",
593
+ "artifactType": "Manifest"
594
+ }
595
+ },
596
+ "additionalProperties": false,
597
+ "required": [
598
+ "strategy"
599
+ ]
600
+ },
601
+ "Fields4Dialog": {
602
+ "type": "object",
603
+ "properties": {
604
+ "fields": {
605
+ "type": "array",
606
+ "items": {
607
+ "type": "string"
608
+ },
609
+ "artifactType": "Manifest"
610
+ }
611
+ },
612
+ "additionalProperties": false,
613
+ "required": [
614
+ "fields"
615
+ ]
616
+ },
617
+ "smarttable.ExportType": {
618
+ "description": "Provides the type of services available for export in the `SmartTable` control.",
619
+ "enum": [
620
+ "GW",
621
+ "UI5Client"
622
+ ],
623
+ "type": "string"
624
+ },
625
+ "QuickVariantSelection": {
626
+ "type": "object",
627
+ "properties": {
628
+ "showCounts": {
629
+ "description": "To show the number of records available, set showCounts to true.",
630
+ "type": "boolean",
631
+ "artifactType": "Manifest"
632
+ },
633
+ "variants": {
634
+ "description": "The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations.",
635
+ "type": "object",
636
+ "additionalProperties": {
637
+ "$ref": "#/definitions/QuickVariant"
638
+ },
639
+ "artifactType": "Manifest"
640
+ }
641
+ },
642
+ "additionalProperties": false,
643
+ "required": [
644
+ "variants"
645
+ ]
646
+ },
647
+ "QuickVariant": {
648
+ "type": "object",
649
+ "properties": {
650
+ "key": {
651
+ "description": "A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory.",
652
+ "type": "string"
653
+ },
654
+ "annotationPath": {
655
+ "description": "Use annotationPath to define a specific variant that points to a SelectionVariant or SelectionPresentationVariant annotation.",
656
+ "type": "string"
657
+ }
658
+ },
659
+ "additionalProperties": false,
660
+ "required": [
661
+ "annotationPath",
662
+ "key"
663
+ ]
664
+ },
665
+ "QuickVariantSelectionX": {
666
+ "type": "object",
667
+ "properties": {
668
+ "enableAutoBinding": {
669
+ "description": "When set to true, this enables automatic binding of the table with either the tableBindingPath (if it exists) or the entitySet property.",
670
+ "type": "boolean",
671
+ "artifactType": "Manifest"
672
+ },
673
+ "variants": {
674
+ "description": "The variants section contains a set of entries that point to SelectionVariants or SelectionPresentationVariants defined in the annotations.",
675
+ "type": "object",
676
+ "additionalProperties": {
677
+ "$ref": "#/definitions/QuickVariantX"
276
678
  },
277
679
  "artifactType": "Manifest"
278
680
  },
@@ -1094,370 +1496,6 @@
1094
1496
  },
1095
1497
  "additionalProperties": false
1096
1498
  },
1097
- "ListReportFilterBar": {
1098
- "description": "Filter Bar",
1099
- "isViewNode": true,
1100
- "type": "object",
1101
- "properties": {
1102
- "annotationPath": {
1103
- "description": "Lets you to add default values for FilterBar using SelectionVariant annotation",
1104
- "type": "string",
1105
- "artifactType": "Manifest"
1106
- },
1107
- "smartVariantManagement": {
1108
- "description": "Controls whether smart variant management is active. Default is true.",
1109
- "type": "boolean",
1110
- "artifactType": "Manifest"
1111
- },
1112
- "liveMode": {
1113
- "description": "If liveMode is set, the search will be automatically triggered when a filter value is set.",
1114
- "type": "boolean",
1115
- "artifactType": "FlexChange",
1116
- "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
1117
- },
1118
- "variantManagementHidden": {
1119
- "description": "If you set the flag to true, then standard variant management is not available in the app. The app name is displayed instead.\nIf you set the flag to false or if the flag is not at all contained in the manifest of the app, the standard variant management is available and can be enabled or disabled.",
1120
- "type": "boolean",
1121
- "artifactType": "Manifest"
1122
- },
1123
- "subTitleIfVariantMgmtHidden": {
1124
- "description": "You can choose an app-specific title by setting the corresponding value for the subTitleIfVariantMgmtHidden property.",
1125
- "i18nClassification": "TIT: Subtitle if variant management is hidden",
1126
- "type": "string",
1127
- "artifactType": "Manifest"
1128
- },
1129
- "dateSettings": {
1130
- "$ref": "#/definitions/DateRange",
1131
- "description": "Use to set date settings for fields in smart filter bar",
1132
- "artifactType": "Manifest"
1133
- },
1134
- "showClearOnFB": {
1135
- "description": "Handles visibility of the Clear button on the FilterBar.",
1136
- "type": "boolean",
1137
- "artifactType": "FlexChange",
1138
- "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
1139
- },
1140
- "showFilterConfiguration": {
1141
- "description": "Handles visibility of the Filter button on the FilterBar.",
1142
- "type": "boolean",
1143
- "artifactType": "FlexChange",
1144
- "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
1145
- },
1146
- "showRestoreOnFB": {
1147
- "description": "Handles visibility of the Restore button on the FilterBar.",
1148
- "type": "boolean",
1149
- "artifactType": "FlexChange",
1150
- "controlType": "sap.ui.comp.smartfilterbar.SmartFilterBar"
1151
- },
1152
- "selectionFields": {
1153
- "$ref": "#/definitions/SelectionFields"
1154
- }
1155
- },
1156
- "additionalProperties": false
1157
- },
1158
- "DateRange": {
1159
- "type": "object",
1160
- "properties": {
1161
- "useDateRange": {
1162
- "description": "If set to true all date fields with filter restriction interval will be treated as DateTimeRange filters.",
1163
- "type": "boolean",
1164
- "artifactType": "Manifest"
1165
- },
1166
- "selectedValues": {
1167
- "description": "The selectedValues property is a set of standard date range values that you want to include or exclude.",
1168
- "type": "array",
1169
- "items": {
1170
- "enum": [
1171
- "DATE",
1172
- "DATERANGE",
1173
- "DAYS",
1174
- "FROM",
1175
- "LAST2WEEKS",
1176
- "LAST3WEEKS",
1177
- "LAST4WEEKS",
1178
- "LAST5WEEKS",
1179
- "LASTDAYS",
1180
- "LASTMONTH",
1181
- "LASTMONTHS",
1182
- "LASTQUARTER",
1183
- "LASTQUARTERS",
1184
- "LASTWEEK",
1185
- "LASTWEEKS",
1186
- "LASTYEAR",
1187
- "LASTYEARS",
1188
- "MONTH",
1189
- "NEXT",
1190
- "NEXT2WEEKS",
1191
- "NEXT3WEEKS",
1192
- "NEXT4WEEKS",
1193
- "NEXT5WEEKS",
1194
- "NEXTDAYS",
1195
- "NEXTMONTH",
1196
- "NEXTMONTHS",
1197
- "NEXTQUARTER",
1198
- "NEXTQUARTERS",
1199
- "NEXTWEEK",
1200
- "NEXTWEEKS",
1201
- "NEXTYEARS",
1202
- "QUARTER",
1203
- "QUARTER1",
1204
- "QUARTER2",
1205
- "QUARTER3",
1206
- "QUARTER4",
1207
- "SPECIFICMONTH",
1208
- "THISMONTH",
1209
- "THISQUARTER",
1210
- "THISWEEK",
1211
- "TO",
1212
- "TODAY",
1213
- "TODAYFROMTO",
1214
- "TOMORROW",
1215
- "WEEK",
1216
- "YEAR",
1217
- "YEARTODATE",
1218
- "YESTERDAY"
1219
- ],
1220
- "type": "string"
1221
- },
1222
- "artifactType": "Manifest"
1223
- },
1224
- "exclude": {
1225
- "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.",
1226
- "type": "boolean",
1227
- "artifactType": "Manifest"
1228
- }
1229
- },
1230
- "additionalProperties": false
1231
- },
1232
- "SelectionFields": {
1233
- "description": "Filter Fields",
1234
- "isViewNode": true,
1235
- "type": "object",
1236
- "additionalProperties": {
1237
- "description": "Filter Field",
1238
- "isViewNode": true,
1239
- "anyOf": [
1240
- {
1241
- "type": "object",
1242
- "properties": {}
1243
- },
1244
- {
1245
- "$ref": "#/definitions/SelectionFieldDateSettings"
1246
- }
1247
- ]
1248
- }
1249
- },
1250
- "SelectionFieldDateSettings": {
1251
- "description": "Filter Field for Date Settings",
1252
- "isViewNode": true,
1253
- "type": "object",
1254
- "properties": {
1255
- "selectedValues": {
1256
- "description": "The selectedValues property is a set of standard date range values that you want to include or exclude.",
1257
- "type": "array",
1258
- "items": {
1259
- "enum": [
1260
- "DATE",
1261
- "DATERANGE",
1262
- "DAYS",
1263
- "FROM",
1264
- "LAST2WEEKS",
1265
- "LAST3WEEKS",
1266
- "LAST4WEEKS",
1267
- "LAST5WEEKS",
1268
- "LASTDAYS",
1269
- "LASTMONTH",
1270
- "LASTMONTHS",
1271
- "LASTQUARTER",
1272
- "LASTQUARTERS",
1273
- "LASTWEEK",
1274
- "LASTWEEKS",
1275
- "LASTYEAR",
1276
- "LASTYEARS",
1277
- "MONTH",
1278
- "NEXT",
1279
- "NEXT2WEEKS",
1280
- "NEXT3WEEKS",
1281
- "NEXT4WEEKS",
1282
- "NEXT5WEEKS",
1283
- "NEXTDAYS",
1284
- "NEXTMONTH",
1285
- "NEXTMONTHS",
1286
- "NEXTQUARTER",
1287
- "NEXTQUARTERS",
1288
- "NEXTWEEK",
1289
- "NEXTWEEKS",
1290
- "NEXTYEARS",
1291
- "QUARTER",
1292
- "QUARTER1",
1293
- "QUARTER2",
1294
- "QUARTER3",
1295
- "QUARTER4",
1296
- "SPECIFICMONTH",
1297
- "THISMONTH",
1298
- "THISQUARTER",
1299
- "THISWEEK",
1300
- "TO",
1301
- "TODAY",
1302
- "TODAYFROMTO",
1303
- "TOMORROW",
1304
- "WEEK",
1305
- "YEAR",
1306
- "YEARTODATE",
1307
- "YESTERDAY"
1308
- ],
1309
- "type": "string"
1310
- },
1311
- "artifactType": "Manifest"
1312
- },
1313
- "exclude": {
1314
- "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.",
1315
- "type": "boolean",
1316
- "artifactType": "Manifest"
1317
- },
1318
- "customDateRangeImplementation": {
1319
- "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.",
1320
- "type": "string",
1321
- "artifactType": "Manifest"
1322
- },
1323
- "filter": {
1324
- "description": "You can use the filter settings to include and exclude specific date range values.",
1325
- "type": "array",
1326
- "items": {
1327
- "type": "object",
1328
- "properties": {
1329
- "path": {
1330
- "$ref": "#/definitions/FilterPathType",
1331
- "description": "Choose 'key' to define filter values for single values of the date range, or 'category' to filter by a whole subset."
1332
- },
1333
- "contains": {
1334
- "description": "The 'contains' string specifies a filter describing a set of values of the date range type.",
1335
- "type": "string"
1336
- },
1337
- "equals": {
1338
- "description": "Defines a single value of the standard date range type.",
1339
- "type": "array",
1340
- "items": {
1341
- "enum": [
1342
- "DATE",
1343
- "DATERANGE",
1344
- "DAYS",
1345
- "FROM",
1346
- "LAST2WEEKS",
1347
- "LAST3WEEKS",
1348
- "LAST4WEEKS",
1349
- "LAST5WEEKS",
1350
- "LASTDAYS",
1351
- "LASTMONTH",
1352
- "LASTMONTHS",
1353
- "LASTQUARTER",
1354
- "LASTQUARTERS",
1355
- "LASTWEEK",
1356
- "LASTWEEKS",
1357
- "LASTYEAR",
1358
- "LASTYEARS",
1359
- "MONTH",
1360
- "NEXT",
1361
- "NEXT2WEEKS",
1362
- "NEXT3WEEKS",
1363
- "NEXT4WEEKS",
1364
- "NEXT5WEEKS",
1365
- "NEXTDAYS",
1366
- "NEXTMONTH",
1367
- "NEXTMONTHS",
1368
- "NEXTQUARTER",
1369
- "NEXTQUARTERS",
1370
- "NEXTWEEK",
1371
- "NEXTWEEKS",
1372
- "NEXTYEARS",
1373
- "QUARTER",
1374
- "QUARTER1",
1375
- "QUARTER2",
1376
- "QUARTER3",
1377
- "QUARTER4",
1378
- "SPECIFICMONTH",
1379
- "THISMONTH",
1380
- "THISQUARTER",
1381
- "THISWEEK",
1382
- "TO",
1383
- "TODAY",
1384
- "TODAYFROMTO",
1385
- "TOMORROW",
1386
- "WEEK",
1387
- "YEAR",
1388
- "YEARTODATE",
1389
- "YESTERDAY"
1390
- ],
1391
- "type": "string"
1392
- }
1393
- },
1394
- "exclude": {
1395
- "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.",
1396
- "type": "boolean"
1397
- }
1398
- },
1399
- "additionalProperties": false,
1400
- "required": [
1401
- "path"
1402
- ]
1403
- },
1404
- "artifactType": "Manifest"
1405
- },
1406
- "defaultValue": {
1407
- "$ref": "#/definitions/DefaultDateRange",
1408
- "description": "You can set a default value for semantic date range.",
1409
- "artifactType": "Manifest"
1410
- }
1411
- },
1412
- "additionalProperties": false
1413
- },
1414
- "FilterPathType": {
1415
- "enum": [
1416
- "category",
1417
- "key"
1418
- ],
1419
- "type": "string"
1420
- },
1421
- "DefaultDateRange": {
1422
- "type": "object",
1423
- "properties": {
1424
- "operation": {
1425
- "$ref": "#/definitions/DefaultDateRangeValueType",
1426
- "description": "The operation property is the value that will be set for semantic date range.",
1427
- "artifactType": "Manifest"
1428
- }
1429
- },
1430
- "additionalProperties": false,
1431
- "required": [
1432
- "operation"
1433
- ]
1434
- },
1435
- "DefaultDateRangeValueType": {
1436
- "enum": [
1437
- "DATETOYEAR",
1438
- "LAST2WEEKS",
1439
- "LAST3WEEKS",
1440
- "LAST4WEEKS",
1441
- "LAST5WEEKS",
1442
- "LASTMONTH",
1443
- "LASTQUARTER",
1444
- "LASTWEEK",
1445
- "LASTYEAR",
1446
- "QUARTER1",
1447
- "QUARTER2",
1448
- "QUARTER3",
1449
- "QUARTER4",
1450
- "THISMONTH",
1451
- "THISQUARTER",
1452
- "THISWEEK",
1453
- "THISYEAR",
1454
- "TODAY",
1455
- "TOMORROW",
1456
- "YEARTODATE",
1457
- "YESTERDAY"
1458
- ],
1459
- "type": "string"
1460
- },
1461
1499
  "GenericFooter": {
1462
1500
  "description": "Footer",
1463
1501
  "isViewNode": true,