@sap/ux-specification 1.71.99 → 1.71.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +63 -32
- package/dist/documentation/runDocu-min.js +4 -4
- package/dist/documentation/runDocu-min.js.map +3 -3
- package/dist/documentation/styleDocu.css +4 -0
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/index-min.js +62 -65
- package/dist/index-min.js.map +4 -4
- package/dist/package.json +6 -7
- package/dist/schemas/v2/ObjectPageConfig.json +167 -111
- package/dist/schemas/v2/OverviewPageConfig.json +459 -397
- package/dist/src/api.js +1 -1
- package/dist/src/sync/common/decoration/control.d.ts +4 -0
- package/dist/src/sync/common/decoration/control.d.ts.map +1 -1
- package/dist/src/sync/common/decoration/control.js +8 -1
- package/dist/src/sync/common/decoration/control.js.map +1 -1
- package/dist/src/sync/common/generate/utils.d.ts.map +1 -1
- package/dist/src/sync/common/generate/utils.js +56 -47
- package/dist/src/sync/common/generate/utils.js.map +1 -1
- package/dist/src/sync/common/utils.d.ts.map +1 -1
- package/dist/src/sync/common/utils.js +51 -42
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/application.d.ts +4 -3
- package/dist/src/sync/v2/application.d.ts.map +1 -1
- package/dist/src/sync/v2/application.js +17 -13
- package/dist/src/sync/v2/application.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Card.d.ts +69 -77
- package/dist/src/sync/v2/export/controls/Card.d.ts.map +1 -1
- package/dist/src/sync/v2/export/controls/Card.js +99 -252
- package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +14 -6
- package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js +87 -27
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v2/export/export.d.ts +2 -1
- package/dist/src/sync/v2/export/export.d.ts.map +1 -1
- package/dist/src/sync/v2/export/export.js +37 -61
- package/dist/src/sync/v2/export/export.js.map +1 -1
- package/dist/src/sync/v2/export/exportPage.d.ts.map +1 -1
- package/dist/src/sync/v2/export/exportPage.js +0 -14
- package/dist/src/sync/v2/export/exportPage.js.map +1 -1
- package/dist/src/sync/v2/export/pages/ObjectPage.d.ts +1 -0
- package/dist/src/sync/v2/export/pages/ObjectPage.d.ts.map +1 -1
- package/dist/src/sync/v2/export/pages/ObjectPage.js +18 -0
- package/dist/src/sync/v2/export/pages/ObjectPage.js.map +1 -1
- package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +12 -5
- package/dist/src/sync/v2/export/pages/OverviewPage.d.ts.map +1 -1
- package/dist/src/sync/v2/export/pages/OverviewPage.js +36 -10
- package/dist/src/sync/v2/export/pages/OverviewPage.js.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js +55 -4
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.d.ts.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +7 -1
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v2/import/pages/overviewPage.d.ts.map +1 -1
- package/dist/src/sync/v2/import/pages/overviewPage.js +63 -53
- package/dist/src/sync/v2/import/pages/overviewPage.js.map +1 -1
- package/package.json +6 -7
|
@@ -2,73 +2,110 @@
|
|
|
2
2
|
"type": "object",
|
|
3
3
|
"properties": {
|
|
4
4
|
"globalFilterModel": {
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Represents the name of global filter OData model, which contains entities definition that are relevant for global filters.",
|
|
6
|
+
"pattern": "^[a-zA-Z0-9_\\\\.\\\\-\\\\|@]*$",
|
|
6
7
|
"type": "string",
|
|
7
8
|
"artifactType": "Manifest"
|
|
8
9
|
},
|
|
9
10
|
"globalFilterEntityType": {
|
|
10
|
-
"description": "
|
|
11
|
+
"description": "Represents the entity to use as global filter in the smart filter bar control.",
|
|
12
|
+
"pattern": "^[a-zA-Z0-9_\\\\.\\\\-\\\\|@]*$",
|
|
11
13
|
"type": "string",
|
|
12
14
|
"artifactType": "Manifest"
|
|
13
15
|
},
|
|
14
16
|
"globalFilterEntitySet": {
|
|
15
|
-
"description": "
|
|
17
|
+
"description": "Represents the entity set to use as global filter in the smart filter bar control.",
|
|
18
|
+
"pattern": "^[a-zA-Z0-9_\\\\.\\\\-\\\\|@]*$",
|
|
16
19
|
"type": "string",
|
|
17
20
|
"artifactType": "Manifest"
|
|
18
21
|
},
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
+
"showBasicSearch": {
|
|
23
|
+
"description": "Represents a switch to include basic search in the global filters. The default value is false.",
|
|
24
|
+
"type": "boolean",
|
|
25
|
+
"artifactType": "Manifest"
|
|
26
|
+
},
|
|
27
|
+
"disableErrorPage": {
|
|
28
|
+
"description": "Represents a switch to disable the error page shown on load of overview page when no data is retrieved from the backend. The default value is false.",
|
|
29
|
+
"type": "boolean",
|
|
22
30
|
"artifactType": "Manifest"
|
|
23
31
|
},
|
|
24
32
|
"smartVariantRequired": {
|
|
25
|
-
"description": "
|
|
33
|
+
"description": "Represents a switch to activate smart variant management in the global filters. The default value is true.",
|
|
26
34
|
"type": "boolean",
|
|
27
35
|
"artifactType": "Manifest"
|
|
28
36
|
},
|
|
37
|
+
"bHeaderExpanded": {
|
|
38
|
+
"description": "Represents a switch to show smart filter bar in expanded or collapsed mode. The default value is false.",
|
|
39
|
+
"type": "boolean",
|
|
40
|
+
"artifactType": "Manifest"
|
|
41
|
+
},
|
|
42
|
+
"containerLayout": {
|
|
43
|
+
"$ref": "#/definitions/ContainerLayoutType",
|
|
44
|
+
"description": "Represents the layout of the card container. The default value is fixed.",
|
|
45
|
+
"artifactType": "Manifest"
|
|
46
|
+
},
|
|
29
47
|
"showDateInRelativeFormat": {
|
|
30
|
-
"description": "
|
|
48
|
+
"description": "Represents a switch to enable or disable relative or normal date formating. The default value is true.",
|
|
49
|
+
"type": "boolean",
|
|
50
|
+
"artifactType": "Manifest"
|
|
51
|
+
},
|
|
52
|
+
"disableTableCardFlexibility": {
|
|
53
|
+
"description": "Represents a switch to enable or disable the flexibility of table cards. The default value is false.",
|
|
31
54
|
"type": "boolean",
|
|
32
55
|
"artifactType": "Manifest"
|
|
33
56
|
},
|
|
34
57
|
"enableLiveFilter": {
|
|
35
|
-
"description": "
|
|
58
|
+
"description": "Represents the switch to activate live update in the global filters, else manual update will be required. The default value is true.",
|
|
36
59
|
"type": "boolean",
|
|
37
60
|
"artifactType": "Manifest"
|
|
38
61
|
},
|
|
39
|
-
"
|
|
40
|
-
"description": "
|
|
62
|
+
"enableLazyRendering": {
|
|
63
|
+
"description": "Enable loading of cards when they enter viewport. The default value is false.",
|
|
41
64
|
"type": "boolean",
|
|
42
65
|
"artifactType": "Manifest"
|
|
43
66
|
},
|
|
67
|
+
"refreshStrategyOnAppRestore": {
|
|
68
|
+
"$ref": "#/definitions/RefreshStrategiesPropDef",
|
|
69
|
+
"description": "Represents the refresh strategies configured for OVP while coming back to the source app.",
|
|
70
|
+
"artifactType": "Manifest"
|
|
71
|
+
},
|
|
44
72
|
"considerAnalyticalParameters": {
|
|
45
|
-
"description": "
|
|
73
|
+
"description": "Flag to enable/disable analytical parameter support for Smart filter bar. The default value is false.",
|
|
46
74
|
"type": "boolean",
|
|
47
75
|
"artifactType": "Manifest"
|
|
48
76
|
},
|
|
49
77
|
"refreshIntervalInMinutes": {
|
|
50
|
-
"description": "
|
|
78
|
+
"description": "Time interval in minutes to auto refresh the card models. The default value is 1.",
|
|
51
79
|
"type": "number",
|
|
52
80
|
"artifactType": "Manifest"
|
|
53
81
|
},
|
|
54
82
|
"useDateRangeType": {
|
|
55
|
-
"description": "
|
|
83
|
+
"description": "Flag to enable/disable semantic date range control for Smart filter bar. The default value is false.",
|
|
56
84
|
"type": "boolean",
|
|
57
85
|
"artifactType": "Manifest"
|
|
58
86
|
},
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"artifactType": "Manifest"
|
|
87
|
+
"chartSettings": {
|
|
88
|
+
"$ref": "#/definitions/ChartSettingsType",
|
|
89
|
+
"description": "Represents the object to store analytical chart settings."
|
|
63
90
|
},
|
|
64
|
-
"
|
|
65
|
-
"description": "
|
|
66
|
-
"type": "
|
|
91
|
+
"dataLoadSettings": {
|
|
92
|
+
"description": "Represents the object to define data loading behaviour for an overview page application",
|
|
93
|
+
"type": "object",
|
|
94
|
+
"additionalProperties": {},
|
|
95
|
+
"properties": {
|
|
96
|
+
"loadDataOnAppLaunch": {
|
|
97
|
+
"$ref": "#/definitions/LoadDataOnAppLaunchType",
|
|
98
|
+
"description": "Data load behaviour options on application launch. The default value is 'always'."
|
|
99
|
+
}
|
|
100
|
+
},
|
|
67
101
|
"artifactType": "Manifest"
|
|
68
102
|
},
|
|
69
|
-
"
|
|
70
|
-
"description": "
|
|
71
|
-
"type": "
|
|
103
|
+
"resizableLayout": {
|
|
104
|
+
"description": "Represents the resizable layout.",
|
|
105
|
+
"type": "object",
|
|
106
|
+
"additionalProperties": {
|
|
107
|
+
"$ref": "#/definitions/ResizableLayoutVariant"
|
|
108
|
+
},
|
|
72
109
|
"artifactType": "Manifest"
|
|
73
110
|
},
|
|
74
111
|
"cards": {
|
|
@@ -111,6 +148,77 @@
|
|
|
111
148
|
],
|
|
112
149
|
"type": "string"
|
|
113
150
|
},
|
|
151
|
+
"RefreshStrategiesPropDef": {
|
|
152
|
+
"description": "Represents the refresh strategies configured for external display navigation while coming back to the source app",
|
|
153
|
+
"type": "object",
|
|
154
|
+
"properties": {
|
|
155
|
+
"entitySets": {
|
|
156
|
+
"description": "Represents the map of entity sets configured for refresh strategies",
|
|
157
|
+
"type": "object",
|
|
158
|
+
"additionalProperties": {}
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"additionalProperties": false
|
|
162
|
+
},
|
|
163
|
+
"ChartSettingsType": {
|
|
164
|
+
"type": "object",
|
|
165
|
+
"properties": {
|
|
166
|
+
"showDataLabel": {
|
|
167
|
+
"description": "Flag to enable data labels on analytical charts. The default value is false.",
|
|
168
|
+
"type": "boolean",
|
|
169
|
+
"artifactType": "Manifest"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
"additionalProperties": false
|
|
173
|
+
},
|
|
174
|
+
"LoadDataOnAppLaunchType": {
|
|
175
|
+
"enum": [
|
|
176
|
+
"always",
|
|
177
|
+
"ifAnyFilterExist",
|
|
178
|
+
"never"
|
|
179
|
+
],
|
|
180
|
+
"type": "string"
|
|
181
|
+
},
|
|
182
|
+
"ResizableLayoutVariant": {
|
|
183
|
+
"description": "Represents the resizable layout variant\n\nThis interface was referenced by `undefined`'s JSON-Schema definition\nvia the `patternProperty` \"^cols_[0-9]+$\".",
|
|
184
|
+
"type": "object",
|
|
185
|
+
"additionalProperties": {
|
|
186
|
+
"$ref": "#/definitions/ResizableLayoutVariantCardProperties"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"ResizableLayoutVariantCardProperties": {
|
|
190
|
+
"description": "Represents the card properties is a layout variant\n\nThis interface was referenced by `ResizableLayoutVariant`'s JSON-Schema definition\nvia the `patternProperty` \"^[a-zA-Z0-9_\\.\\-]+$\".",
|
|
191
|
+
"type": "object",
|
|
192
|
+
"properties": {
|
|
193
|
+
"col": {
|
|
194
|
+
"description": "Represents the grid column",
|
|
195
|
+
"type": "number"
|
|
196
|
+
},
|
|
197
|
+
"row": {
|
|
198
|
+
"description": "Represents the grid row",
|
|
199
|
+
"type": "number"
|
|
200
|
+
},
|
|
201
|
+
"colSpan": {
|
|
202
|
+
"description": "Represents the column span",
|
|
203
|
+
"type": "number"
|
|
204
|
+
},
|
|
205
|
+
"rowSpan": {
|
|
206
|
+
"description": "Represents the row span",
|
|
207
|
+
"type": "number"
|
|
208
|
+
},
|
|
209
|
+
"visible": {
|
|
210
|
+
"description": "Represents the visibility of the card",
|
|
211
|
+
"type": "boolean"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"additionalProperties": false,
|
|
215
|
+
"required": [
|
|
216
|
+
"col",
|
|
217
|
+
"colSpan",
|
|
218
|
+
"row",
|
|
219
|
+
"rowSpan"
|
|
220
|
+
]
|
|
221
|
+
},
|
|
114
222
|
"CustomCard": {
|
|
115
223
|
"description": "Custom Card",
|
|
116
224
|
"isViewNode": true,
|
|
@@ -161,7 +269,8 @@
|
|
|
161
269
|
},
|
|
162
270
|
"annotationPath": {
|
|
163
271
|
"description": "Represents the annotation path.",
|
|
164
|
-
"type": "string"
|
|
272
|
+
"type": "string",
|
|
273
|
+
"artifactType": "Manifest"
|
|
165
274
|
},
|
|
166
275
|
"identificationAnnotationPath": {
|
|
167
276
|
"description": "Represents the identification annotation path.",
|
|
@@ -170,7 +279,8 @@
|
|
|
170
279
|
},
|
|
171
280
|
"dataPointAnnotationPath": {
|
|
172
281
|
"description": "Represents the data point annotation path.",
|
|
173
|
-
"type": "string"
|
|
282
|
+
"type": "string",
|
|
283
|
+
"artifactType": "Manifest"
|
|
174
284
|
},
|
|
175
285
|
"selectionAnnotationPath": {
|
|
176
286
|
"description": "Represents the selection annotation path.",
|
|
@@ -184,48 +294,24 @@
|
|
|
184
294
|
},
|
|
185
295
|
"selectionPresentationAnnotationPath": {
|
|
186
296
|
"description": "Represents the selection presentation annotation path.",
|
|
187
|
-
"type": "string"
|
|
297
|
+
"type": "string",
|
|
298
|
+
"artifactType": "Manifest"
|
|
188
299
|
},
|
|
189
300
|
"kpiAnnotationPath": {
|
|
190
301
|
"description": "Represents the KPI annotation path.",
|
|
191
|
-
"type": "string"
|
|
302
|
+
"type": "string",
|
|
303
|
+
"artifactType": "Manifest"
|
|
192
304
|
},
|
|
193
305
|
"category": {
|
|
194
306
|
"description": "The category of the card, as used in the card header.",
|
|
195
|
-
"type": "string"
|
|
307
|
+
"type": "string",
|
|
308
|
+
"artifactType": "Manifest"
|
|
196
309
|
},
|
|
197
310
|
"defaultSpan": {
|
|
198
311
|
"description": "To load cards with specific requirements, define a default size as part of the card definition in the descriptor file.",
|
|
199
312
|
"anyOf": [
|
|
200
313
|
{
|
|
201
|
-
"
|
|
202
|
-
"properties": {
|
|
203
|
-
"cols": {
|
|
204
|
-
"description": "Represents the number of the number of grid columns",
|
|
205
|
-
"type": "number"
|
|
206
|
-
},
|
|
207
|
-
"rows": {
|
|
208
|
-
"description": "Represents the number of the number of grid rows",
|
|
209
|
-
"type": "number"
|
|
210
|
-
},
|
|
211
|
-
"showOnlyHeader": {
|
|
212
|
-
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
213
|
-
"type": "boolean"
|
|
214
|
-
},
|
|
215
|
-
"minimumTitleRow": {
|
|
216
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)",
|
|
217
|
-
"type": "number"
|
|
218
|
-
},
|
|
219
|
-
"minimumSubTitleRow": {
|
|
220
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)",
|
|
221
|
-
"type": "number"
|
|
222
|
-
}
|
|
223
|
-
},
|
|
224
|
-
"additionalProperties": false,
|
|
225
|
-
"required": [
|
|
226
|
-
"cols",
|
|
227
|
-
"rows"
|
|
228
|
-
]
|
|
314
|
+
"$ref": "#/definitions/DefaultSpanObject"
|
|
229
315
|
},
|
|
230
316
|
{
|
|
231
317
|
"const": "auto",
|
|
@@ -241,13 +327,7 @@
|
|
|
241
327
|
"tabs": {
|
|
242
328
|
"description": "Represents the card with view switch control.",
|
|
243
329
|
"type": "array",
|
|
244
|
-
"items":
|
|
245
|
-
{
|
|
246
|
-
"$ref": "#/definitions/TabSetting"
|
|
247
|
-
}
|
|
248
|
-
],
|
|
249
|
-
"minItems": 1,
|
|
250
|
-
"additionalItems": {
|
|
330
|
+
"items": {
|
|
251
331
|
"$ref": "#/definitions/TabSetting"
|
|
252
332
|
},
|
|
253
333
|
"artifactType": "Manifest"
|
|
@@ -259,7 +339,8 @@
|
|
|
259
339
|
},
|
|
260
340
|
"sortBy": {
|
|
261
341
|
"description": "Defines the property by which the list shall be sorted.",
|
|
262
|
-
"type": "string"
|
|
342
|
+
"type": "string",
|
|
343
|
+
"artifactType": "Manifest"
|
|
263
344
|
},
|
|
264
345
|
"sortOrder": {
|
|
265
346
|
"description": "Sort order (ascending or descending)",
|
|
@@ -267,27 +348,33 @@
|
|
|
267
348
|
"ascending",
|
|
268
349
|
"descending"
|
|
269
350
|
],
|
|
270
|
-
"type": "string"
|
|
351
|
+
"type": "string",
|
|
352
|
+
"artifactType": "Manifest"
|
|
271
353
|
},
|
|
272
354
|
"dynamicSubtitleAnnotationPath": {
|
|
273
355
|
"description": "Represents the dynamic subtitle annotation path.",
|
|
274
|
-
"type": "string"
|
|
356
|
+
"type": "string",
|
|
357
|
+
"artifactType": "Manifest"
|
|
275
358
|
},
|
|
276
359
|
"enableLocaleCurrencyFormatting": {
|
|
277
360
|
"description": "Represents the flag to indicate the use of object number/smart field.",
|
|
278
|
-
"type": "boolean"
|
|
361
|
+
"type": "boolean",
|
|
362
|
+
"artifactType": "Manifest"
|
|
279
363
|
},
|
|
280
364
|
"showFilterInHeader": {
|
|
281
365
|
"description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
|
|
282
|
-
"type": "boolean"
|
|
366
|
+
"type": "boolean",
|
|
367
|
+
"artifactType": "Manifest"
|
|
283
368
|
},
|
|
284
369
|
"showSortingInHeader": {
|
|
285
370
|
"description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
|
|
286
|
-
"type": "boolean"
|
|
371
|
+
"type": "boolean",
|
|
372
|
+
"artifactType": "Manifest"
|
|
287
373
|
},
|
|
288
374
|
"customParams": {
|
|
289
375
|
"description": "Custom parameters for intent-based navigation to the target application.\nEnter the name of the custom parameter function defined in your custom controller file.",
|
|
290
|
-
"type": "string"
|
|
376
|
+
"type": "string",
|
|
377
|
+
"artifactType": "Manifest"
|
|
291
378
|
}
|
|
292
379
|
},
|
|
293
380
|
"additionalProperties": false,
|
|
@@ -295,6 +382,41 @@
|
|
|
295
382
|
"title"
|
|
296
383
|
]
|
|
297
384
|
},
|
|
385
|
+
"DefaultSpanObject": {
|
|
386
|
+
"type": "object",
|
|
387
|
+
"properties": {
|
|
388
|
+
"cols": {
|
|
389
|
+
"description": "Represents the number of the number of grid columns",
|
|
390
|
+
"type": "number",
|
|
391
|
+
"artifactType": "Manifest"
|
|
392
|
+
},
|
|
393
|
+
"rows": {
|
|
394
|
+
"description": "Represents the number of the number of grid rows",
|
|
395
|
+
"type": "number",
|
|
396
|
+
"artifactType": "Manifest"
|
|
397
|
+
},
|
|
398
|
+
"showOnlyHeader": {
|
|
399
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
400
|
+
"type": "boolean",
|
|
401
|
+
"artifactType": "Manifest"
|
|
402
|
+
},
|
|
403
|
+
"minimumTitleRow": {
|
|
404
|
+
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)",
|
|
405
|
+
"type": "number",
|
|
406
|
+
"artifactType": "Manifest"
|
|
407
|
+
},
|
|
408
|
+
"minimumSubTitleRow": {
|
|
409
|
+
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)",
|
|
410
|
+
"type": "number",
|
|
411
|
+
"artifactType": "Manifest"
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
"additionalProperties": false,
|
|
415
|
+
"required": [
|
|
416
|
+
"cols",
|
|
417
|
+
"rows"
|
|
418
|
+
]
|
|
419
|
+
},
|
|
298
420
|
"TabSetting": {
|
|
299
421
|
"description": "Represents the tab specific properties - properties that are passed to a particular tab in a card",
|
|
300
422
|
"type": "object",
|
|
@@ -422,15 +544,13 @@
|
|
|
422
544
|
"const": "sap.ovp.cards.list",
|
|
423
545
|
"artifactType": "Manifest"
|
|
424
546
|
},
|
|
425
|
-
"
|
|
547
|
+
"settings": {
|
|
426
548
|
"$ref": "#/definitions/ListCardSettings",
|
|
427
|
-
"description": "Represents the properties that are passed to the list card."
|
|
428
|
-
"artifactType": "Manifest"
|
|
549
|
+
"description": "Represents the properties that are passed to the list card."
|
|
429
550
|
}
|
|
430
551
|
},
|
|
431
552
|
"additionalProperties": false,
|
|
432
553
|
"required": [
|
|
433
|
-
"listCardSettings",
|
|
434
554
|
"model",
|
|
435
555
|
"template"
|
|
436
556
|
]
|
|
@@ -441,102 +561,91 @@
|
|
|
441
561
|
"properties": {
|
|
442
562
|
"listFlavor": {
|
|
443
563
|
"$ref": "#/definitions/ListFlavorType",
|
|
444
|
-
"description": "Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard."
|
|
564
|
+
"description": "Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard.",
|
|
565
|
+
"artifactType": "Manifest"
|
|
445
566
|
},
|
|
446
567
|
"listType": {
|
|
447
568
|
"$ref": "#/definitions/ListTypeType",
|
|
448
|
-
"description": "Represents the type of list to use for this card. The list can be extended to display more information or condensed to take up less space on the card."
|
|
569
|
+
"description": "Represents the type of list to use for this card. The list can be extended to display more information or condensed to take up less space on the card.",
|
|
570
|
+
"artifactType": "Manifest"
|
|
449
571
|
},
|
|
450
572
|
"showLineItemDetail": {
|
|
451
573
|
"description": "Flag for show line item detail in list and table card.",
|
|
452
|
-
"type": "boolean"
|
|
574
|
+
"type": "boolean",
|
|
575
|
+
"artifactType": "Manifest"
|
|
453
576
|
},
|
|
454
577
|
"imageSupported": {
|
|
455
578
|
"description": "Flag for enabling images in a condensed list card.",
|
|
456
|
-
"type": "boolean"
|
|
579
|
+
"type": "boolean",
|
|
580
|
+
"artifactType": "Manifest"
|
|
457
581
|
},
|
|
458
582
|
"valueSelectionInfo": {
|
|
459
583
|
"description": "Represents things like people, number of items.",
|
|
460
|
-
"type": "string"
|
|
584
|
+
"type": "string",
|
|
585
|
+
"artifactType": "Manifest"
|
|
461
586
|
},
|
|
462
587
|
"entitySet": {
|
|
463
588
|
"description": "Represents the dominant entity set that will be displayed in the given card.",
|
|
464
|
-
"type": "string"
|
|
589
|
+
"type": "string",
|
|
590
|
+
"artifactType": "Manifest"
|
|
465
591
|
},
|
|
466
592
|
"title": {
|
|
467
593
|
"description": "The language-dependent title of the card, used in the card header.",
|
|
468
594
|
"i18nClassification": "TIT: Title of the card, used in the card header",
|
|
469
|
-
"type": "string"
|
|
595
|
+
"type": "string",
|
|
596
|
+
"artifactType": "Manifest"
|
|
470
597
|
},
|
|
471
598
|
"subTitle": {
|
|
472
599
|
"description": "The language-dependent subtitle of the card, used in the card header.",
|
|
473
600
|
"i18nClassification": "TIT: Subtitle of the card, used in the card header",
|
|
474
|
-
"type": "string"
|
|
601
|
+
"type": "string",
|
|
602
|
+
"artifactType": "Manifest"
|
|
475
603
|
},
|
|
476
604
|
"annotationPath": {
|
|
477
605
|
"description": "Represents the annotation path.",
|
|
478
|
-
"type": "string"
|
|
606
|
+
"type": "string",
|
|
607
|
+
"artifactType": "Manifest"
|
|
479
608
|
},
|
|
480
609
|
"identificationAnnotationPath": {
|
|
481
610
|
"description": "Represents the identification annotation path.",
|
|
482
|
-
"type": "string"
|
|
611
|
+
"type": "string",
|
|
612
|
+
"artifactType": "Manifest"
|
|
483
613
|
},
|
|
484
614
|
"dataPointAnnotationPath": {
|
|
485
615
|
"description": "Represents the data point annotation path.",
|
|
486
|
-
"type": "string"
|
|
616
|
+
"type": "string",
|
|
617
|
+
"artifactType": "Manifest"
|
|
487
618
|
},
|
|
488
619
|
"selectionAnnotationPath": {
|
|
489
620
|
"description": "Represents the selection annotation path.",
|
|
490
|
-
"type": "string"
|
|
621
|
+
"type": "string",
|
|
622
|
+
"artifactType": "Manifest"
|
|
491
623
|
},
|
|
492
624
|
"presentationAnnotationPath": {
|
|
493
625
|
"description": "Represents the presentation annotation path.",
|
|
494
|
-
"type": "string"
|
|
626
|
+
"type": "string",
|
|
627
|
+
"artifactType": "Manifest"
|
|
495
628
|
},
|
|
496
629
|
"selectionPresentationAnnotationPath": {
|
|
497
630
|
"description": "Represents the selection presentation annotation path.",
|
|
498
|
-
"type": "string"
|
|
631
|
+
"type": "string",
|
|
632
|
+
"artifactType": "Manifest"
|
|
499
633
|
},
|
|
500
634
|
"kpiAnnotationPath": {
|
|
501
635
|
"description": "Represents the KPI annotation path.",
|
|
502
|
-
"type": "string"
|
|
636
|
+
"type": "string",
|
|
637
|
+
"artifactType": "Manifest"
|
|
503
638
|
},
|
|
504
639
|
"category": {
|
|
505
640
|
"description": "The category of the card, as used in the card header.",
|
|
506
|
-
"type": "string"
|
|
641
|
+
"type": "string",
|
|
642
|
+
"artifactType": "Manifest"
|
|
507
643
|
},
|
|
508
644
|
"defaultSpan": {
|
|
509
645
|
"description": "To load cards with specific requirements, define a default size as part of the card definition in the descriptor file.",
|
|
510
646
|
"anyOf": [
|
|
511
647
|
{
|
|
512
|
-
"
|
|
513
|
-
"properties": {
|
|
514
|
-
"cols": {
|
|
515
|
-
"description": "Represents the number of the number of grid columns",
|
|
516
|
-
"type": "number"
|
|
517
|
-
},
|
|
518
|
-
"rows": {
|
|
519
|
-
"description": "Represents the number of the number of grid rows",
|
|
520
|
-
"type": "number"
|
|
521
|
-
},
|
|
522
|
-
"showOnlyHeader": {
|
|
523
|
-
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
524
|
-
"type": "boolean"
|
|
525
|
-
},
|
|
526
|
-
"minimumTitleRow": {
|
|
527
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)",
|
|
528
|
-
"type": "number"
|
|
529
|
-
},
|
|
530
|
-
"minimumSubTitleRow": {
|
|
531
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)",
|
|
532
|
-
"type": "number"
|
|
533
|
-
}
|
|
534
|
-
},
|
|
535
|
-
"additionalProperties": false,
|
|
536
|
-
"required": [
|
|
537
|
-
"cols",
|
|
538
|
-
"rows"
|
|
539
|
-
]
|
|
648
|
+
"$ref": "#/definitions/DefaultSpanObject"
|
|
540
649
|
},
|
|
541
650
|
{
|
|
542
651
|
"const": "auto",
|
|
@@ -546,28 +655,26 @@
|
|
|
546
655
|
},
|
|
547
656
|
"requireAppAuthorization": {
|
|
548
657
|
"description": "Define an authorization check at card level.",
|
|
549
|
-
"type": "string"
|
|
658
|
+
"type": "string",
|
|
659
|
+
"artifactType": "Manifest"
|
|
550
660
|
},
|
|
551
661
|
"tabs": {
|
|
552
662
|
"description": "Represents the card with view switch control.",
|
|
553
663
|
"type": "array",
|
|
554
|
-
"items":
|
|
555
|
-
{
|
|
556
|
-
"$ref": "#/definitions/TabSetting"
|
|
557
|
-
}
|
|
558
|
-
],
|
|
559
|
-
"minItems": 1,
|
|
560
|
-
"additionalItems": {
|
|
664
|
+
"items": {
|
|
561
665
|
"$ref": "#/definitions/TabSetting"
|
|
562
|
-
}
|
|
666
|
+
},
|
|
667
|
+
"artifactType": "Manifest"
|
|
563
668
|
},
|
|
564
669
|
"addODataSelect": {
|
|
565
670
|
"description": "add $Select parameter in data fetch URL",
|
|
566
|
-
"type": "boolean"
|
|
671
|
+
"type": "boolean",
|
|
672
|
+
"artifactType": "Manifest"
|
|
567
673
|
},
|
|
568
674
|
"sortBy": {
|
|
569
675
|
"description": "Defines the property by which the list shall be sorted.",
|
|
570
|
-
"type": "string"
|
|
676
|
+
"type": "string",
|
|
677
|
+
"artifactType": "Manifest"
|
|
571
678
|
},
|
|
572
679
|
"sortOrder": {
|
|
573
680
|
"description": "Sort order (ascending or descending)",
|
|
@@ -575,27 +682,33 @@
|
|
|
575
682
|
"ascending",
|
|
576
683
|
"descending"
|
|
577
684
|
],
|
|
578
|
-
"type": "string"
|
|
685
|
+
"type": "string",
|
|
686
|
+
"artifactType": "Manifest"
|
|
579
687
|
},
|
|
580
688
|
"dynamicSubtitleAnnotationPath": {
|
|
581
689
|
"description": "Represents the dynamic subtitle annotation path.",
|
|
582
|
-
"type": "string"
|
|
690
|
+
"type": "string",
|
|
691
|
+
"artifactType": "Manifest"
|
|
583
692
|
},
|
|
584
693
|
"enableLocaleCurrencyFormatting": {
|
|
585
694
|
"description": "Represents the flag to indicate the use of object number/smart field.",
|
|
586
|
-
"type": "boolean"
|
|
695
|
+
"type": "boolean",
|
|
696
|
+
"artifactType": "Manifest"
|
|
587
697
|
},
|
|
588
698
|
"showFilterInHeader": {
|
|
589
699
|
"description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
|
|
590
|
-
"type": "boolean"
|
|
700
|
+
"type": "boolean",
|
|
701
|
+
"artifactType": "Manifest"
|
|
591
702
|
},
|
|
592
703
|
"showSortingInHeader": {
|
|
593
704
|
"description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
|
|
594
|
-
"type": "boolean"
|
|
705
|
+
"type": "boolean",
|
|
706
|
+
"artifactType": "Manifest"
|
|
595
707
|
},
|
|
596
708
|
"customParams": {
|
|
597
709
|
"description": "Custom parameters for intent-based navigation to the target application.\nEnter the name of the custom parameter function defined in your custom controller file.",
|
|
598
|
-
"type": "string"
|
|
710
|
+
"type": "string",
|
|
711
|
+
"artifactType": "Manifest"
|
|
599
712
|
}
|
|
600
713
|
},
|
|
601
714
|
"additionalProperties": false,
|
|
@@ -635,16 +748,14 @@
|
|
|
635
748
|
"const": "sap.ovp.cards.stack",
|
|
636
749
|
"artifactType": "Manifest"
|
|
637
750
|
},
|
|
638
|
-
"
|
|
751
|
+
"settings": {
|
|
639
752
|
"$ref": "#/definitions/StackCardSettings",
|
|
640
|
-
"description": "Represents the properties that are passed to the stack card."
|
|
641
|
-
"artifactType": "Manifest"
|
|
753
|
+
"description": "Represents the properties that are passed to the stack card."
|
|
642
754
|
}
|
|
643
755
|
},
|
|
644
756
|
"additionalProperties": false,
|
|
645
757
|
"required": [
|
|
646
758
|
"model",
|
|
647
|
-
"stackCardSettings",
|
|
648
759
|
"template"
|
|
649
760
|
]
|
|
650
761
|
},
|
|
@@ -654,94 +765,81 @@
|
|
|
654
765
|
"properties": {
|
|
655
766
|
"itemText": {
|
|
656
767
|
"description": "Represents the user defined string in placeholder card.",
|
|
657
|
-
"type": "string"
|
|
768
|
+
"type": "string",
|
|
769
|
+
"artifactType": "Manifest"
|
|
658
770
|
},
|
|
659
771
|
"objectStreamCardsNavigationProperty": {
|
|
660
772
|
"description": "The navigation property used to display information from a secondary entity set.",
|
|
661
|
-
"type": "string"
|
|
773
|
+
"type": "string",
|
|
774
|
+
"artifactType": "Manifest"
|
|
662
775
|
},
|
|
663
776
|
"objectStreamCardsSettings": {
|
|
664
777
|
"$ref": "#/definitions/ObjectStreamCardsSettingsDef",
|
|
665
|
-
"description": "Configures additional settings for the cards displayed in the object stream."
|
|
778
|
+
"description": "Configures additional settings for the cards displayed in the object stream.",
|
|
779
|
+
"artifactType": "Manifest"
|
|
666
780
|
},
|
|
667
781
|
"entitySet": {
|
|
668
782
|
"description": "Represents the dominant entity set that will be displayed in the given card.",
|
|
669
|
-
"type": "string"
|
|
783
|
+
"type": "string",
|
|
784
|
+
"artifactType": "Manifest"
|
|
670
785
|
},
|
|
671
786
|
"title": {
|
|
672
787
|
"description": "The language-dependent title of the card, used in the card header.",
|
|
673
788
|
"i18nClassification": "TIT: Title of the card, used in the card header",
|
|
674
|
-
"type": "string"
|
|
789
|
+
"type": "string",
|
|
790
|
+
"artifactType": "Manifest"
|
|
675
791
|
},
|
|
676
792
|
"subTitle": {
|
|
677
793
|
"description": "The language-dependent subtitle of the card, used in the card header.",
|
|
678
794
|
"i18nClassification": "TIT: Subtitle of the card, used in the card header",
|
|
679
|
-
"type": "string"
|
|
795
|
+
"type": "string",
|
|
796
|
+
"artifactType": "Manifest"
|
|
680
797
|
},
|
|
681
798
|
"annotationPath": {
|
|
682
799
|
"description": "Represents the annotation path.",
|
|
683
|
-
"type": "string"
|
|
800
|
+
"type": "string",
|
|
801
|
+
"artifactType": "Manifest"
|
|
684
802
|
},
|
|
685
803
|
"identificationAnnotationPath": {
|
|
686
804
|
"description": "Represents the identification annotation path.",
|
|
687
|
-
"type": "string"
|
|
805
|
+
"type": "string",
|
|
806
|
+
"artifactType": "Manifest"
|
|
688
807
|
},
|
|
689
808
|
"dataPointAnnotationPath": {
|
|
690
809
|
"description": "Represents the data point annotation path.",
|
|
691
|
-
"type": "string"
|
|
810
|
+
"type": "string",
|
|
811
|
+
"artifactType": "Manifest"
|
|
692
812
|
},
|
|
693
813
|
"selectionAnnotationPath": {
|
|
694
814
|
"description": "Represents the selection annotation path.",
|
|
695
|
-
"type": "string"
|
|
815
|
+
"type": "string",
|
|
816
|
+
"artifactType": "Manifest"
|
|
696
817
|
},
|
|
697
818
|
"presentationAnnotationPath": {
|
|
698
819
|
"description": "Represents the presentation annotation path.",
|
|
699
|
-
"type": "string"
|
|
820
|
+
"type": "string",
|
|
821
|
+
"artifactType": "Manifest"
|
|
700
822
|
},
|
|
701
823
|
"selectionPresentationAnnotationPath": {
|
|
702
824
|
"description": "Represents the selection presentation annotation path.",
|
|
703
|
-
"type": "string"
|
|
825
|
+
"type": "string",
|
|
826
|
+
"artifactType": "Manifest"
|
|
704
827
|
},
|
|
705
828
|
"kpiAnnotationPath": {
|
|
706
829
|
"description": "Represents the KPI annotation path.",
|
|
707
|
-
"type": "string"
|
|
830
|
+
"type": "string",
|
|
831
|
+
"artifactType": "Manifest"
|
|
708
832
|
},
|
|
709
833
|
"category": {
|
|
710
834
|
"description": "The category of the card, as used in the card header.",
|
|
711
|
-
"type": "string"
|
|
835
|
+
"type": "string",
|
|
836
|
+
"artifactType": "Manifest"
|
|
712
837
|
},
|
|
713
838
|
"defaultSpan": {
|
|
714
839
|
"description": "To load cards with specific requirements, define a default size as part of the card definition in the descriptor file.",
|
|
715
840
|
"anyOf": [
|
|
716
841
|
{
|
|
717
|
-
"
|
|
718
|
-
"properties": {
|
|
719
|
-
"cols": {
|
|
720
|
-
"description": "Represents the number of the number of grid columns",
|
|
721
|
-
"type": "number"
|
|
722
|
-
},
|
|
723
|
-
"rows": {
|
|
724
|
-
"description": "Represents the number of the number of grid rows",
|
|
725
|
-
"type": "number"
|
|
726
|
-
},
|
|
727
|
-
"showOnlyHeader": {
|
|
728
|
-
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
729
|
-
"type": "boolean"
|
|
730
|
-
},
|
|
731
|
-
"minimumTitleRow": {
|
|
732
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)",
|
|
733
|
-
"type": "number"
|
|
734
|
-
},
|
|
735
|
-
"minimumSubTitleRow": {
|
|
736
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)",
|
|
737
|
-
"type": "number"
|
|
738
|
-
}
|
|
739
|
-
},
|
|
740
|
-
"additionalProperties": false,
|
|
741
|
-
"required": [
|
|
742
|
-
"cols",
|
|
743
|
-
"rows"
|
|
744
|
-
]
|
|
842
|
+
"$ref": "#/definitions/DefaultSpanObject"
|
|
745
843
|
},
|
|
746
844
|
{
|
|
747
845
|
"const": "auto",
|
|
@@ -751,28 +849,26 @@
|
|
|
751
849
|
},
|
|
752
850
|
"requireAppAuthorization": {
|
|
753
851
|
"description": "Define an authorization check at card level.",
|
|
754
|
-
"type": "string"
|
|
852
|
+
"type": "string",
|
|
853
|
+
"artifactType": "Manifest"
|
|
755
854
|
},
|
|
756
855
|
"tabs": {
|
|
757
856
|
"description": "Represents the card with view switch control.",
|
|
758
857
|
"type": "array",
|
|
759
|
-
"items":
|
|
760
|
-
{
|
|
761
|
-
"$ref": "#/definitions/TabSetting"
|
|
762
|
-
}
|
|
763
|
-
],
|
|
764
|
-
"minItems": 1,
|
|
765
|
-
"additionalItems": {
|
|
858
|
+
"items": {
|
|
766
859
|
"$ref": "#/definitions/TabSetting"
|
|
767
|
-
}
|
|
860
|
+
},
|
|
861
|
+
"artifactType": "Manifest"
|
|
768
862
|
},
|
|
769
863
|
"addODataSelect": {
|
|
770
864
|
"description": "add $Select parameter in data fetch URL",
|
|
771
|
-
"type": "boolean"
|
|
865
|
+
"type": "boolean",
|
|
866
|
+
"artifactType": "Manifest"
|
|
772
867
|
},
|
|
773
868
|
"sortBy": {
|
|
774
869
|
"description": "Defines the property by which the list shall be sorted.",
|
|
775
|
-
"type": "string"
|
|
870
|
+
"type": "string",
|
|
871
|
+
"artifactType": "Manifest"
|
|
776
872
|
},
|
|
777
873
|
"sortOrder": {
|
|
778
874
|
"description": "Sort order (ascending or descending)",
|
|
@@ -780,27 +876,33 @@
|
|
|
780
876
|
"ascending",
|
|
781
877
|
"descending"
|
|
782
878
|
],
|
|
783
|
-
"type": "string"
|
|
879
|
+
"type": "string",
|
|
880
|
+
"artifactType": "Manifest"
|
|
784
881
|
},
|
|
785
882
|
"dynamicSubtitleAnnotationPath": {
|
|
786
883
|
"description": "Represents the dynamic subtitle annotation path.",
|
|
787
|
-
"type": "string"
|
|
884
|
+
"type": "string",
|
|
885
|
+
"artifactType": "Manifest"
|
|
788
886
|
},
|
|
789
887
|
"enableLocaleCurrencyFormatting": {
|
|
790
888
|
"description": "Represents the flag to indicate the use of object number/smart field.",
|
|
791
|
-
"type": "boolean"
|
|
889
|
+
"type": "boolean",
|
|
890
|
+
"artifactType": "Manifest"
|
|
792
891
|
},
|
|
793
892
|
"showFilterInHeader": {
|
|
794
893
|
"description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
|
|
795
|
-
"type": "boolean"
|
|
894
|
+
"type": "boolean",
|
|
895
|
+
"artifactType": "Manifest"
|
|
796
896
|
},
|
|
797
897
|
"showSortingInHeader": {
|
|
798
898
|
"description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
|
|
799
|
-
"type": "boolean"
|
|
899
|
+
"type": "boolean",
|
|
900
|
+
"artifactType": "Manifest"
|
|
800
901
|
},
|
|
801
902
|
"customParams": {
|
|
802
903
|
"description": "Custom parameters for intent-based navigation to the target application.\nEnter the name of the custom parameter function defined in your custom controller file.",
|
|
803
|
-
"type": "string"
|
|
904
|
+
"type": "string",
|
|
905
|
+
"artifactType": "Manifest"
|
|
804
906
|
}
|
|
805
907
|
},
|
|
806
908
|
"additionalProperties": false,
|
|
@@ -868,15 +970,13 @@
|
|
|
868
970
|
"const": "sap.ovp.cards.linklist",
|
|
869
971
|
"artifactType": "Manifest"
|
|
870
972
|
},
|
|
871
|
-
"
|
|
973
|
+
"settings": {
|
|
872
974
|
"$ref": "#/definitions/LinkListCardSettings",
|
|
873
|
-
"description": "Represents the properties that are passed to the link list card."
|
|
874
|
-
"artifactType": "Manifest"
|
|
975
|
+
"description": "Represents the properties that are passed to the link list card."
|
|
875
976
|
}
|
|
876
977
|
},
|
|
877
978
|
"additionalProperties": false,
|
|
878
979
|
"required": [
|
|
879
|
-
"linkListCardSettings",
|
|
880
980
|
"template"
|
|
881
981
|
]
|
|
882
982
|
},
|
|
@@ -884,103 +984,86 @@
|
|
|
884
984
|
"displayName": "settings",
|
|
885
985
|
"type": "object",
|
|
886
986
|
"properties": {
|
|
887
|
-
"targetUri": {
|
|
888
|
-
"description": "The targetUri is a URI defining the link to a quick view, related application or external resource.",
|
|
889
|
-
"type": "string"
|
|
890
|
-
},
|
|
891
987
|
"listFlavor": {
|
|
892
988
|
"$ref": "#/definitions/LinkListFlavorType",
|
|
893
|
-
"description": "listFlavor represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard."
|
|
989
|
+
"description": "listFlavor represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard.",
|
|
990
|
+
"artifactType": "Manifest"
|
|
894
991
|
},
|
|
895
992
|
"headerAnnotationPath": {
|
|
896
993
|
"description": "headerAnnotationPath represents the path to a HeaderInfo annotation.",
|
|
897
|
-
"type": "string"
|
|
994
|
+
"type": "string",
|
|
995
|
+
"artifactType": "Manifest"
|
|
898
996
|
},
|
|
899
997
|
"staticContent": {
|
|
900
998
|
"description": "staticContent represents the static content of a static link list card.",
|
|
901
999
|
"type": "array",
|
|
902
1000
|
"items": {
|
|
903
1001
|
"$ref": "#/definitions/StaticContent"
|
|
904
|
-
}
|
|
1002
|
+
},
|
|
1003
|
+
"artifactType": "Manifest"
|
|
905
1004
|
},
|
|
906
1005
|
"entitySet": {
|
|
907
1006
|
"description": "Represents the dominant entity set that will be displayed in the given card.",
|
|
908
|
-
"type": "string"
|
|
1007
|
+
"type": "string",
|
|
1008
|
+
"artifactType": "Manifest"
|
|
909
1009
|
},
|
|
910
1010
|
"title": {
|
|
911
1011
|
"description": "The language-dependent title of the card, used in the card header.",
|
|
912
1012
|
"i18nClassification": "TIT: Title of the card, used in the card header",
|
|
913
|
-
"type": "string"
|
|
1013
|
+
"type": "string",
|
|
1014
|
+
"artifactType": "Manifest"
|
|
914
1015
|
},
|
|
915
1016
|
"subTitle": {
|
|
916
1017
|
"description": "The language-dependent subtitle of the card, used in the card header.",
|
|
917
1018
|
"i18nClassification": "TIT: Subtitle of the card, used in the card header",
|
|
918
|
-
"type": "string"
|
|
1019
|
+
"type": "string",
|
|
1020
|
+
"artifactType": "Manifest"
|
|
919
1021
|
},
|
|
920
1022
|
"annotationPath": {
|
|
921
1023
|
"description": "Represents the annotation path.",
|
|
922
|
-
"type": "string"
|
|
1024
|
+
"type": "string",
|
|
1025
|
+
"artifactType": "Manifest"
|
|
923
1026
|
},
|
|
924
1027
|
"identificationAnnotationPath": {
|
|
925
1028
|
"description": "Represents the identification annotation path.",
|
|
926
|
-
"type": "string"
|
|
1029
|
+
"type": "string",
|
|
1030
|
+
"artifactType": "Manifest"
|
|
927
1031
|
},
|
|
928
1032
|
"dataPointAnnotationPath": {
|
|
929
1033
|
"description": "Represents the data point annotation path.",
|
|
930
|
-
"type": "string"
|
|
1034
|
+
"type": "string",
|
|
1035
|
+
"artifactType": "Manifest"
|
|
931
1036
|
},
|
|
932
1037
|
"selectionAnnotationPath": {
|
|
933
1038
|
"description": "Represents the selection annotation path.",
|
|
934
|
-
"type": "string"
|
|
1039
|
+
"type": "string",
|
|
1040
|
+
"artifactType": "Manifest"
|
|
935
1041
|
},
|
|
936
1042
|
"presentationAnnotationPath": {
|
|
937
1043
|
"description": "Represents the presentation annotation path.",
|
|
938
|
-
"type": "string"
|
|
1044
|
+
"type": "string",
|
|
1045
|
+
"artifactType": "Manifest"
|
|
939
1046
|
},
|
|
940
1047
|
"selectionPresentationAnnotationPath": {
|
|
941
1048
|
"description": "Represents the selection presentation annotation path.",
|
|
942
|
-
"type": "string"
|
|
1049
|
+
"type": "string",
|
|
1050
|
+
"artifactType": "Manifest"
|
|
943
1051
|
},
|
|
944
1052
|
"kpiAnnotationPath": {
|
|
945
1053
|
"description": "Represents the KPI annotation path.",
|
|
946
|
-
"type": "string"
|
|
1054
|
+
"type": "string",
|
|
1055
|
+
"artifactType": "Manifest"
|
|
947
1056
|
},
|
|
948
1057
|
"category": {
|
|
949
1058
|
"description": "The category of the card, as used in the card header.",
|
|
950
|
-
"type": "string"
|
|
1059
|
+
"type": "string",
|
|
1060
|
+
"artifactType": "Manifest"
|
|
951
1061
|
},
|
|
952
1062
|
"defaultSpan": {
|
|
953
1063
|
"description": "To load cards with specific requirements, define a default size as part of the card definition in the descriptor file.",
|
|
954
1064
|
"anyOf": [
|
|
955
1065
|
{
|
|
956
|
-
"
|
|
957
|
-
"properties": {
|
|
958
|
-
"cols": {
|
|
959
|
-
"description": "Represents the number of the number of grid columns",
|
|
960
|
-
"type": "number"
|
|
961
|
-
},
|
|
962
|
-
"rows": {
|
|
963
|
-
"description": "Represents the number of the number of grid rows",
|
|
964
|
-
"type": "number"
|
|
965
|
-
},
|
|
966
|
-
"showOnlyHeader": {
|
|
967
|
-
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
968
|
-
"type": "boolean"
|
|
969
|
-
},
|
|
970
|
-
"minimumTitleRow": {
|
|
971
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)",
|
|
972
|
-
"type": "number"
|
|
973
|
-
},
|
|
974
|
-
"minimumSubTitleRow": {
|
|
975
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)",
|
|
976
|
-
"type": "number"
|
|
977
|
-
}
|
|
978
|
-
},
|
|
979
|
-
"additionalProperties": false,
|
|
980
|
-
"required": [
|
|
981
|
-
"cols",
|
|
982
|
-
"rows"
|
|
983
|
-
]
|
|
1066
|
+
"$ref": "#/definitions/DefaultSpanObject"
|
|
984
1067
|
},
|
|
985
1068
|
{
|
|
986
1069
|
"const": "auto",
|
|
@@ -990,28 +1073,26 @@
|
|
|
990
1073
|
},
|
|
991
1074
|
"requireAppAuthorization": {
|
|
992
1075
|
"description": "Define an authorization check at card level.",
|
|
993
|
-
"type": "string"
|
|
1076
|
+
"type": "string",
|
|
1077
|
+
"artifactType": "Manifest"
|
|
994
1078
|
},
|
|
995
1079
|
"tabs": {
|
|
996
1080
|
"description": "Represents the card with view switch control.",
|
|
997
1081
|
"type": "array",
|
|
998
|
-
"items":
|
|
999
|
-
{
|
|
1000
|
-
"$ref": "#/definitions/TabSetting"
|
|
1001
|
-
}
|
|
1002
|
-
],
|
|
1003
|
-
"minItems": 1,
|
|
1004
|
-
"additionalItems": {
|
|
1082
|
+
"items": {
|
|
1005
1083
|
"$ref": "#/definitions/TabSetting"
|
|
1006
|
-
}
|
|
1084
|
+
},
|
|
1085
|
+
"artifactType": "Manifest"
|
|
1007
1086
|
},
|
|
1008
1087
|
"addODataSelect": {
|
|
1009
1088
|
"description": "add $Select parameter in data fetch URL",
|
|
1010
|
-
"type": "boolean"
|
|
1089
|
+
"type": "boolean",
|
|
1090
|
+
"artifactType": "Manifest"
|
|
1011
1091
|
},
|
|
1012
1092
|
"sortBy": {
|
|
1013
1093
|
"description": "Defines the property by which the list shall be sorted.",
|
|
1014
|
-
"type": "string"
|
|
1094
|
+
"type": "string",
|
|
1095
|
+
"artifactType": "Manifest"
|
|
1015
1096
|
},
|
|
1016
1097
|
"sortOrder": {
|
|
1017
1098
|
"description": "Sort order (ascending or descending)",
|
|
@@ -1019,27 +1100,33 @@
|
|
|
1019
1100
|
"ascending",
|
|
1020
1101
|
"descending"
|
|
1021
1102
|
],
|
|
1022
|
-
"type": "string"
|
|
1103
|
+
"type": "string",
|
|
1104
|
+
"artifactType": "Manifest"
|
|
1023
1105
|
},
|
|
1024
1106
|
"dynamicSubtitleAnnotationPath": {
|
|
1025
1107
|
"description": "Represents the dynamic subtitle annotation path.",
|
|
1026
|
-
"type": "string"
|
|
1108
|
+
"type": "string",
|
|
1109
|
+
"artifactType": "Manifest"
|
|
1027
1110
|
},
|
|
1028
1111
|
"enableLocaleCurrencyFormatting": {
|
|
1029
1112
|
"description": "Represents the flag to indicate the use of object number/smart field.",
|
|
1030
|
-
"type": "boolean"
|
|
1113
|
+
"type": "boolean",
|
|
1114
|
+
"artifactType": "Manifest"
|
|
1031
1115
|
},
|
|
1032
1116
|
"showFilterInHeader": {
|
|
1033
1117
|
"description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
|
|
1034
|
-
"type": "boolean"
|
|
1118
|
+
"type": "boolean",
|
|
1119
|
+
"artifactType": "Manifest"
|
|
1035
1120
|
},
|
|
1036
1121
|
"showSortingInHeader": {
|
|
1037
1122
|
"description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
|
|
1038
|
-
"type": "boolean"
|
|
1123
|
+
"type": "boolean",
|
|
1124
|
+
"artifactType": "Manifest"
|
|
1039
1125
|
},
|
|
1040
1126
|
"customParams": {
|
|
1041
1127
|
"description": "Custom parameters for intent-based navigation to the target application.\nEnter the name of the custom parameter function defined in your custom controller file.",
|
|
1042
|
-
"type": "string"
|
|
1128
|
+
"type": "string",
|
|
1129
|
+
"artifactType": "Manifest"
|
|
1043
1130
|
}
|
|
1044
1131
|
},
|
|
1045
1132
|
"additionalProperties": false,
|
|
@@ -1115,21 +1202,14 @@
|
|
|
1115
1202
|
"const": "sap.ovp.cards.table",
|
|
1116
1203
|
"artifactType": "Manifest"
|
|
1117
1204
|
},
|
|
1118
|
-
"
|
|
1205
|
+
"settings": {
|
|
1119
1206
|
"$ref": "#/definitions/TableCardSettings",
|
|
1120
|
-
"description": "Represents the properties that are passed to the table card."
|
|
1121
|
-
"artifactType": "Manifest"
|
|
1122
|
-
},
|
|
1123
|
-
"disableTableCardFlexibility": {
|
|
1124
|
-
"description": "If you set disableTableCardFlexibility to true, then at runtime, DataField records are sorted according to the importance set in the com.sap.vocabularies.UI.v1.ImportanceType annotation, and their order of entry.\nIf you set disableTableCardFlexibility to false, then at runtime, table columns are sorted according to the importance set in the com.sap.vocabularies.UI.v1.ImportanceType annotation, and their order of entry.",
|
|
1125
|
-
"type": "boolean",
|
|
1126
|
-
"artifactType": "Manifest"
|
|
1207
|
+
"description": "Represents the properties that are passed to the table card."
|
|
1127
1208
|
}
|
|
1128
1209
|
},
|
|
1129
1210
|
"additionalProperties": false,
|
|
1130
1211
|
"required": [
|
|
1131
1212
|
"model",
|
|
1132
|
-
"tableCardSettings",
|
|
1133
1213
|
"template"
|
|
1134
1214
|
]
|
|
1135
1215
|
},
|
|
@@ -1139,90 +1219,76 @@
|
|
|
1139
1219
|
"properties": {
|
|
1140
1220
|
"showLineItemDetail": {
|
|
1141
1221
|
"description": "Flag for show line item detail in list and table card.",
|
|
1142
|
-
"type": "boolean"
|
|
1222
|
+
"type": "boolean",
|
|
1223
|
+
"artifactType": "Manifest"
|
|
1143
1224
|
},
|
|
1144
1225
|
"valueSelectionInfo": {
|
|
1145
1226
|
"description": "Represents things like people, number of items.",
|
|
1146
|
-
"type": "string"
|
|
1227
|
+
"type": "string",
|
|
1228
|
+
"artifactType": "Manifest"
|
|
1147
1229
|
},
|
|
1148
1230
|
"entitySet": {
|
|
1149
1231
|
"description": "Represents the dominant entity set that will be displayed in the given card.",
|
|
1150
|
-
"type": "string"
|
|
1232
|
+
"type": "string",
|
|
1233
|
+
"artifactType": "Manifest"
|
|
1151
1234
|
},
|
|
1152
1235
|
"title": {
|
|
1153
1236
|
"description": "The language-dependent title of the card, used in the card header.",
|
|
1154
1237
|
"i18nClassification": "TIT: Title of the card, used in the card header",
|
|
1155
|
-
"type": "string"
|
|
1238
|
+
"type": "string",
|
|
1239
|
+
"artifactType": "Manifest"
|
|
1156
1240
|
},
|
|
1157
1241
|
"subTitle": {
|
|
1158
1242
|
"description": "The language-dependent subtitle of the card, used in the card header.",
|
|
1159
1243
|
"i18nClassification": "TIT: Subtitle of the card, used in the card header",
|
|
1160
|
-
"type": "string"
|
|
1244
|
+
"type": "string",
|
|
1245
|
+
"artifactType": "Manifest"
|
|
1161
1246
|
},
|
|
1162
1247
|
"annotationPath": {
|
|
1163
1248
|
"description": "Represents the annotation path.",
|
|
1164
|
-
"type": "string"
|
|
1249
|
+
"type": "string",
|
|
1250
|
+
"artifactType": "Manifest"
|
|
1165
1251
|
},
|
|
1166
1252
|
"identificationAnnotationPath": {
|
|
1167
1253
|
"description": "Represents the identification annotation path.",
|
|
1168
|
-
"type": "string"
|
|
1254
|
+
"type": "string",
|
|
1255
|
+
"artifactType": "Manifest"
|
|
1169
1256
|
},
|
|
1170
1257
|
"dataPointAnnotationPath": {
|
|
1171
1258
|
"description": "Represents the data point annotation path.",
|
|
1172
|
-
"type": "string"
|
|
1259
|
+
"type": "string",
|
|
1260
|
+
"artifactType": "Manifest"
|
|
1173
1261
|
},
|
|
1174
1262
|
"selectionAnnotationPath": {
|
|
1175
1263
|
"description": "Represents the selection annotation path.",
|
|
1176
|
-
"type": "string"
|
|
1264
|
+
"type": "string",
|
|
1265
|
+
"artifactType": "Manifest"
|
|
1177
1266
|
},
|
|
1178
1267
|
"presentationAnnotationPath": {
|
|
1179
1268
|
"description": "Represents the presentation annotation path.",
|
|
1180
|
-
"type": "string"
|
|
1269
|
+
"type": "string",
|
|
1270
|
+
"artifactType": "Manifest"
|
|
1181
1271
|
},
|
|
1182
1272
|
"selectionPresentationAnnotationPath": {
|
|
1183
1273
|
"description": "Represents the selection presentation annotation path.",
|
|
1184
|
-
"type": "string"
|
|
1274
|
+
"type": "string",
|
|
1275
|
+
"artifactType": "Manifest"
|
|
1185
1276
|
},
|
|
1186
1277
|
"kpiAnnotationPath": {
|
|
1187
1278
|
"description": "Represents the KPI annotation path.",
|
|
1188
|
-
"type": "string"
|
|
1279
|
+
"type": "string",
|
|
1280
|
+
"artifactType": "Manifest"
|
|
1189
1281
|
},
|
|
1190
1282
|
"category": {
|
|
1191
1283
|
"description": "The category of the card, as used in the card header.",
|
|
1192
|
-
"type": "string"
|
|
1284
|
+
"type": "string",
|
|
1285
|
+
"artifactType": "Manifest"
|
|
1193
1286
|
},
|
|
1194
1287
|
"defaultSpan": {
|
|
1195
1288
|
"description": "To load cards with specific requirements, define a default size as part of the card definition in the descriptor file.",
|
|
1196
1289
|
"anyOf": [
|
|
1197
1290
|
{
|
|
1198
|
-
"
|
|
1199
|
-
"properties": {
|
|
1200
|
-
"cols": {
|
|
1201
|
-
"description": "Represents the number of the number of grid columns",
|
|
1202
|
-
"type": "number"
|
|
1203
|
-
},
|
|
1204
|
-
"rows": {
|
|
1205
|
-
"description": "Represents the number of the number of grid rows",
|
|
1206
|
-
"type": "number"
|
|
1207
|
-
},
|
|
1208
|
-
"showOnlyHeader": {
|
|
1209
|
-
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
1210
|
-
"type": "boolean"
|
|
1211
|
-
},
|
|
1212
|
-
"minimumTitleRow": {
|
|
1213
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)",
|
|
1214
|
-
"type": "number"
|
|
1215
|
-
},
|
|
1216
|
-
"minimumSubTitleRow": {
|
|
1217
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)",
|
|
1218
|
-
"type": "number"
|
|
1219
|
-
}
|
|
1220
|
-
},
|
|
1221
|
-
"additionalProperties": false,
|
|
1222
|
-
"required": [
|
|
1223
|
-
"cols",
|
|
1224
|
-
"rows"
|
|
1225
|
-
]
|
|
1291
|
+
"$ref": "#/definitions/DefaultSpanObject"
|
|
1226
1292
|
},
|
|
1227
1293
|
{
|
|
1228
1294
|
"const": "auto",
|
|
@@ -1232,28 +1298,26 @@
|
|
|
1232
1298
|
},
|
|
1233
1299
|
"requireAppAuthorization": {
|
|
1234
1300
|
"description": "Define an authorization check at card level.",
|
|
1235
|
-
"type": "string"
|
|
1301
|
+
"type": "string",
|
|
1302
|
+
"artifactType": "Manifest"
|
|
1236
1303
|
},
|
|
1237
1304
|
"tabs": {
|
|
1238
1305
|
"description": "Represents the card with view switch control.",
|
|
1239
1306
|
"type": "array",
|
|
1240
|
-
"items":
|
|
1241
|
-
{
|
|
1242
|
-
"$ref": "#/definitions/TabSetting"
|
|
1243
|
-
}
|
|
1244
|
-
],
|
|
1245
|
-
"minItems": 1,
|
|
1246
|
-
"additionalItems": {
|
|
1307
|
+
"items": {
|
|
1247
1308
|
"$ref": "#/definitions/TabSetting"
|
|
1248
|
-
}
|
|
1309
|
+
},
|
|
1310
|
+
"artifactType": "Manifest"
|
|
1249
1311
|
},
|
|
1250
1312
|
"addODataSelect": {
|
|
1251
1313
|
"description": "add $Select parameter in data fetch URL",
|
|
1252
|
-
"type": "boolean"
|
|
1314
|
+
"type": "boolean",
|
|
1315
|
+
"artifactType": "Manifest"
|
|
1253
1316
|
},
|
|
1254
1317
|
"sortBy": {
|
|
1255
1318
|
"description": "Defines the property by which the list shall be sorted.",
|
|
1256
|
-
"type": "string"
|
|
1319
|
+
"type": "string",
|
|
1320
|
+
"artifactType": "Manifest"
|
|
1257
1321
|
},
|
|
1258
1322
|
"sortOrder": {
|
|
1259
1323
|
"description": "Sort order (ascending or descending)",
|
|
@@ -1261,27 +1325,33 @@
|
|
|
1261
1325
|
"ascending",
|
|
1262
1326
|
"descending"
|
|
1263
1327
|
],
|
|
1264
|
-
"type": "string"
|
|
1328
|
+
"type": "string",
|
|
1329
|
+
"artifactType": "Manifest"
|
|
1265
1330
|
},
|
|
1266
1331
|
"dynamicSubtitleAnnotationPath": {
|
|
1267
1332
|
"description": "Represents the dynamic subtitle annotation path.",
|
|
1268
|
-
"type": "string"
|
|
1333
|
+
"type": "string",
|
|
1334
|
+
"artifactType": "Manifest"
|
|
1269
1335
|
},
|
|
1270
1336
|
"enableLocaleCurrencyFormatting": {
|
|
1271
1337
|
"description": "Represents the flag to indicate the use of object number/smart field.",
|
|
1272
|
-
"type": "boolean"
|
|
1338
|
+
"type": "boolean",
|
|
1339
|
+
"artifactType": "Manifest"
|
|
1273
1340
|
},
|
|
1274
1341
|
"showFilterInHeader": {
|
|
1275
1342
|
"description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
|
|
1276
|
-
"type": "boolean"
|
|
1343
|
+
"type": "boolean",
|
|
1344
|
+
"artifactType": "Manifest"
|
|
1277
1345
|
},
|
|
1278
1346
|
"showSortingInHeader": {
|
|
1279
1347
|
"description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
|
|
1280
|
-
"type": "boolean"
|
|
1348
|
+
"type": "boolean",
|
|
1349
|
+
"artifactType": "Manifest"
|
|
1281
1350
|
},
|
|
1282
1351
|
"customParams": {
|
|
1283
1352
|
"description": "Custom parameters for intent-based navigation to the target application.\nEnter the name of the custom parameter function defined in your custom controller file.",
|
|
1284
|
-
"type": "string"
|
|
1353
|
+
"type": "string",
|
|
1354
|
+
"artifactType": "Manifest"
|
|
1285
1355
|
}
|
|
1286
1356
|
},
|
|
1287
1357
|
"additionalProperties": false,
|
|
@@ -1306,10 +1376,9 @@
|
|
|
1306
1376
|
"const": "sap.ovp.cards.charts.analytical",
|
|
1307
1377
|
"artifactType": "Manifest"
|
|
1308
1378
|
},
|
|
1309
|
-
"
|
|
1379
|
+
"settings": {
|
|
1310
1380
|
"$ref": "#/definitions/AnalyticalCardSettings",
|
|
1311
|
-
"description": "Represents the properties that are passed to the analytical card."
|
|
1312
|
-
"artifactType": "Manifest"
|
|
1381
|
+
"description": "Represents the properties that are passed to the analytical card."
|
|
1313
1382
|
}
|
|
1314
1383
|
},
|
|
1315
1384
|
"additionalProperties": false,
|
|
@@ -1325,19 +1394,23 @@
|
|
|
1325
1394
|
"properties": {
|
|
1326
1395
|
"chartAnnotationPath": {
|
|
1327
1396
|
"description": "Represents the chart annotation path.",
|
|
1328
|
-
"type": "string"
|
|
1397
|
+
"type": "string",
|
|
1398
|
+
"artifactType": "Manifest"
|
|
1329
1399
|
},
|
|
1330
1400
|
"ignoreSapText": {
|
|
1331
1401
|
"description": "Represents the flag to indicate priority of number formatting over sap text.",
|
|
1332
|
-
"type": "boolean"
|
|
1402
|
+
"type": "boolean",
|
|
1403
|
+
"artifactType": "Manifest"
|
|
1333
1404
|
},
|
|
1334
1405
|
"navigation": {
|
|
1335
1406
|
"$ref": "#/definitions/CardNavigationType",
|
|
1336
|
-
"description": "Represents the configuration to alter the navigation mode in OVP Analytical Cards."
|
|
1407
|
+
"description": "Represents the configuration to alter the navigation mode in OVP Analytical Cards.",
|
|
1408
|
+
"artifactType": "Manifest"
|
|
1337
1409
|
},
|
|
1338
1410
|
"valueSelectionInfo": {
|
|
1339
1411
|
"description": "Represents things like people, number of items.",
|
|
1340
|
-
"type": "string"
|
|
1412
|
+
"type": "string",
|
|
1413
|
+
"artifactType": "Manifest"
|
|
1341
1414
|
},
|
|
1342
1415
|
"chartProperties": {
|
|
1343
1416
|
"description": "This property is responsible for setting specific chart settings.",
|
|
@@ -1350,7 +1423,8 @@
|
|
|
1350
1423
|
"$ref": "#/definitions/TimeAxisDef"
|
|
1351
1424
|
}
|
|
1352
1425
|
},
|
|
1353
|
-
"additionalProperties": false
|
|
1426
|
+
"additionalProperties": false,
|
|
1427
|
+
"artifactType": "Manifest"
|
|
1354
1428
|
},
|
|
1355
1429
|
"colorPalette": {
|
|
1356
1430
|
"description": "Color palette for semantic coloring.",
|
|
@@ -1370,82 +1444,66 @@
|
|
|
1370
1444
|
},
|
|
1371
1445
|
"entitySet": {
|
|
1372
1446
|
"description": "Represents the dominant entity set that will be displayed in the given card.",
|
|
1373
|
-
"type": "string"
|
|
1447
|
+
"type": "string",
|
|
1448
|
+
"artifactType": "Manifest"
|
|
1374
1449
|
},
|
|
1375
1450
|
"title": {
|
|
1376
1451
|
"description": "The language-dependent title of the card, used in the card header.",
|
|
1377
1452
|
"i18nClassification": "TIT: Title of the card, used in the card header",
|
|
1378
|
-
"type": "string"
|
|
1453
|
+
"type": "string",
|
|
1454
|
+
"artifactType": "Manifest"
|
|
1379
1455
|
},
|
|
1380
1456
|
"subTitle": {
|
|
1381
1457
|
"description": "The language-dependent subtitle of the card, used in the card header.",
|
|
1382
1458
|
"i18nClassification": "TIT: Subtitle of the card, used in the card header",
|
|
1383
|
-
"type": "string"
|
|
1459
|
+
"type": "string",
|
|
1460
|
+
"artifactType": "Manifest"
|
|
1384
1461
|
},
|
|
1385
1462
|
"annotationPath": {
|
|
1386
1463
|
"description": "Represents the annotation path.",
|
|
1387
|
-
"type": "string"
|
|
1464
|
+
"type": "string",
|
|
1465
|
+
"artifactType": "Manifest"
|
|
1388
1466
|
},
|
|
1389
1467
|
"identificationAnnotationPath": {
|
|
1390
1468
|
"description": "Represents the identification annotation path.",
|
|
1391
|
-
"type": "string"
|
|
1469
|
+
"type": "string",
|
|
1470
|
+
"artifactType": "Manifest"
|
|
1392
1471
|
},
|
|
1393
1472
|
"dataPointAnnotationPath": {
|
|
1394
1473
|
"description": "Represents the data point annotation path.",
|
|
1395
|
-
"type": "string"
|
|
1474
|
+
"type": "string",
|
|
1475
|
+
"artifactType": "Manifest"
|
|
1396
1476
|
},
|
|
1397
1477
|
"selectionAnnotationPath": {
|
|
1398
1478
|
"description": "Represents the selection annotation path.",
|
|
1399
|
-
"type": "string"
|
|
1479
|
+
"type": "string",
|
|
1480
|
+
"artifactType": "Manifest"
|
|
1400
1481
|
},
|
|
1401
1482
|
"presentationAnnotationPath": {
|
|
1402
1483
|
"description": "Represents the presentation annotation path.",
|
|
1403
|
-
"type": "string"
|
|
1484
|
+
"type": "string",
|
|
1485
|
+
"artifactType": "Manifest"
|
|
1404
1486
|
},
|
|
1405
1487
|
"selectionPresentationAnnotationPath": {
|
|
1406
1488
|
"description": "Represents the selection presentation annotation path.",
|
|
1407
|
-
"type": "string"
|
|
1489
|
+
"type": "string",
|
|
1490
|
+
"artifactType": "Manifest"
|
|
1408
1491
|
},
|
|
1409
1492
|
"kpiAnnotationPath": {
|
|
1410
1493
|
"description": "Represents the KPI annotation path.",
|
|
1411
|
-
"type": "string"
|
|
1494
|
+
"type": "string",
|
|
1495
|
+
"artifactType": "Manifest"
|
|
1412
1496
|
},
|
|
1413
1497
|
"category": {
|
|
1414
1498
|
"description": "The category of the card, as used in the card header.",
|
|
1415
|
-
"type": "string"
|
|
1499
|
+
"type": "string",
|
|
1500
|
+
"artifactType": "Manifest"
|
|
1416
1501
|
},
|
|
1417
1502
|
"defaultSpan": {
|
|
1418
1503
|
"description": "To load cards with specific requirements, define a default size as part of the card definition in the descriptor file.",
|
|
1419
1504
|
"anyOf": [
|
|
1420
1505
|
{
|
|
1421
|
-
"
|
|
1422
|
-
"properties": {
|
|
1423
|
-
"cols": {
|
|
1424
|
-
"description": "Represents the number of the number of grid columns",
|
|
1425
|
-
"type": "number"
|
|
1426
|
-
},
|
|
1427
|
-
"rows": {
|
|
1428
|
-
"description": "Represents the number of the number of grid rows",
|
|
1429
|
-
"type": "number"
|
|
1430
|
-
},
|
|
1431
|
-
"showOnlyHeader": {
|
|
1432
|
-
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
1433
|
-
"type": "boolean"
|
|
1434
|
-
},
|
|
1435
|
-
"minimumTitleRow": {
|
|
1436
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in title(Maximum allowed 3 lines)",
|
|
1437
|
-
"type": "number"
|
|
1438
|
-
},
|
|
1439
|
-
"minimumSubTitleRow": {
|
|
1440
|
-
"description": "If user wants to show more text in title then he/she can configure no of lines to be shown in sub-title(Maximum allowed 2 lines)",
|
|
1441
|
-
"type": "number"
|
|
1442
|
-
}
|
|
1443
|
-
},
|
|
1444
|
-
"additionalProperties": false,
|
|
1445
|
-
"required": [
|
|
1446
|
-
"cols",
|
|
1447
|
-
"rows"
|
|
1448
|
-
]
|
|
1506
|
+
"$ref": "#/definitions/DefaultSpanObject"
|
|
1449
1507
|
},
|
|
1450
1508
|
{
|
|
1451
1509
|
"const": "auto",
|
|
@@ -1455,28 +1513,26 @@
|
|
|
1455
1513
|
},
|
|
1456
1514
|
"requireAppAuthorization": {
|
|
1457
1515
|
"description": "Define an authorization check at card level.",
|
|
1458
|
-
"type": "string"
|
|
1516
|
+
"type": "string",
|
|
1517
|
+
"artifactType": "Manifest"
|
|
1459
1518
|
},
|
|
1460
1519
|
"tabs": {
|
|
1461
1520
|
"description": "Represents the card with view switch control.",
|
|
1462
1521
|
"type": "array",
|
|
1463
|
-
"items":
|
|
1464
|
-
{
|
|
1465
|
-
"$ref": "#/definitions/TabSetting"
|
|
1466
|
-
}
|
|
1467
|
-
],
|
|
1468
|
-
"minItems": 1,
|
|
1469
|
-
"additionalItems": {
|
|
1522
|
+
"items": {
|
|
1470
1523
|
"$ref": "#/definitions/TabSetting"
|
|
1471
|
-
}
|
|
1524
|
+
},
|
|
1525
|
+
"artifactType": "Manifest"
|
|
1472
1526
|
},
|
|
1473
1527
|
"addODataSelect": {
|
|
1474
1528
|
"description": "add $Select parameter in data fetch URL",
|
|
1475
|
-
"type": "boolean"
|
|
1529
|
+
"type": "boolean",
|
|
1530
|
+
"artifactType": "Manifest"
|
|
1476
1531
|
},
|
|
1477
1532
|
"sortBy": {
|
|
1478
1533
|
"description": "Defines the property by which the list shall be sorted.",
|
|
1479
|
-
"type": "string"
|
|
1534
|
+
"type": "string",
|
|
1535
|
+
"artifactType": "Manifest"
|
|
1480
1536
|
},
|
|
1481
1537
|
"sortOrder": {
|
|
1482
1538
|
"description": "Sort order (ascending or descending)",
|
|
@@ -1484,27 +1540,33 @@
|
|
|
1484
1540
|
"ascending",
|
|
1485
1541
|
"descending"
|
|
1486
1542
|
],
|
|
1487
|
-
"type": "string"
|
|
1543
|
+
"type": "string",
|
|
1544
|
+
"artifactType": "Manifest"
|
|
1488
1545
|
},
|
|
1489
1546
|
"dynamicSubtitleAnnotationPath": {
|
|
1490
1547
|
"description": "Represents the dynamic subtitle annotation path.",
|
|
1491
|
-
"type": "string"
|
|
1548
|
+
"type": "string",
|
|
1549
|
+
"artifactType": "Manifest"
|
|
1492
1550
|
},
|
|
1493
1551
|
"enableLocaleCurrencyFormatting": {
|
|
1494
1552
|
"description": "Represents the flag to indicate the use of object number/smart field.",
|
|
1495
|
-
"type": "boolean"
|
|
1553
|
+
"type": "boolean",
|
|
1554
|
+
"artifactType": "Manifest"
|
|
1496
1555
|
},
|
|
1497
1556
|
"showFilterInHeader": {
|
|
1498
1557
|
"description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
|
|
1499
|
-
"type": "boolean"
|
|
1558
|
+
"type": "boolean",
|
|
1559
|
+
"artifactType": "Manifest"
|
|
1500
1560
|
},
|
|
1501
1561
|
"showSortingInHeader": {
|
|
1502
1562
|
"description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
|
|
1503
|
-
"type": "boolean"
|
|
1563
|
+
"type": "boolean",
|
|
1564
|
+
"artifactType": "Manifest"
|
|
1504
1565
|
},
|
|
1505
1566
|
"customParams": {
|
|
1506
1567
|
"description": "Custom parameters for intent-based navigation to the target application.\nEnter the name of the custom parameter function defined in your custom controller file.",
|
|
1507
|
-
"type": "string"
|
|
1568
|
+
"type": "string",
|
|
1569
|
+
"artifactType": "Manifest"
|
|
1508
1570
|
}
|
|
1509
1571
|
},
|
|
1510
1572
|
"required": [
|