@sap/ux-specification 1.71.97 → 1.71.99

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 (55) hide show
  1. package/CHANGELOG.md +69 -2
  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/index-min.js +25 -25
  8. package/dist/index-min.js.map +3 -3
  9. package/dist/package.json +7 -7
  10. package/dist/schemas/v2/OverviewPageConfig.json +451 -318
  11. package/dist/src/extensionLogger.d.ts.map +1 -1
  12. package/dist/src/extensionLogger.js +6 -1
  13. package/dist/src/extensionLogger.js.map +1 -1
  14. package/dist/src/sync/common/distTagEvaluator.d.ts.map +1 -1
  15. package/dist/src/sync/common/distTagEvaluator.js +2 -2
  16. package/dist/src/sync/common/distTagEvaluator.js.map +1 -1
  17. package/dist/src/sync/common/dist_tag.json +12 -3
  18. package/dist/src/sync/common/i18n.json +1 -1
  19. package/dist/src/sync/common/importProject.d.ts.map +1 -1
  20. package/dist/src/sync/common/importProject.js +30 -34
  21. package/dist/src/sync/common/importProject.js.map +1 -1
  22. package/dist/src/sync/common/utils.d.ts +1 -1
  23. package/dist/src/sync/common/utils.d.ts.map +1 -1
  24. package/dist/src/sync/common/utils.js +8 -10
  25. package/dist/src/sync/common/utils.js.map +1 -1
  26. package/dist/src/sync/v2/export/controls/Table.js +1 -1
  27. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  28. package/dist/src/sync/v2/export/export.d.ts.map +1 -1
  29. package/dist/src/sync/v2/export/export.js +4 -4
  30. package/dist/src/sync/v2/export/export.js.map +1 -1
  31. package/dist/src/sync/v2/export/exportPage.js +1 -1
  32. package/dist/src/sync/v2/export/exportPage.js.map +1 -1
  33. package/dist/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
  34. package/dist/src/sync/v2/generate/analyticalListReport.js +1 -4
  35. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  36. package/dist/src/sync/v2/generate/generate.d.ts.map +1 -1
  37. package/dist/src/sync/v2/generate/generate.js +1 -4
  38. package/dist/src/sync/v2/generate/generate.js.map +1 -1
  39. package/dist/src/sync/v2/generate/listReport.d.ts.map +1 -1
  40. package/dist/src/sync/v2/generate/listReport.js +6 -4
  41. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  42. package/dist/src/sync/v2/generate/objectPage.js +1 -1
  43. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  44. package/dist/src/sync/v2/import/common/index.js +4 -4
  45. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  46. package/dist/src/sync/v2/import/pages/listReport.d.ts.map +1 -1
  47. package/dist/src/sync/v2/import/pages/listReport.js +1 -4
  48. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  49. package/dist/src/sync/v2/import/pages/objectPage.js +1 -1
  50. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  51. package/dist/src/sync/v2/types.d.ts +1 -0
  52. package/dist/src/sync/v2/types.d.ts.map +1 -1
  53. package/dist/src/sync/v2/types.js +2 -1
  54. package/dist/src/sync/v2/types.js.map +1 -1
  55. package/package.json +7 -7
@@ -128,7 +128,7 @@
128
128
  "artifactType": "Manifest"
129
129
  },
130
130
  "settings": {
131
- "$ref": "#/definitions/CustomCardSettings",
131
+ "$ref": "#/definitions/CommonCardSettings",
132
132
  "description": "Represents the properties that are passed to the custom card.",
133
133
  "artifactType": "Manifest"
134
134
  }
@@ -138,173 +138,56 @@
138
138
  "template"
139
139
  ]
140
140
  },
141
- "CustomCardSettings": {
141
+ "CommonCardSettings": {
142
142
  "displayName": "settings",
143
143
  "type": "object",
144
- "additionalProperties": {},
145
144
  "properties": {
146
- "itemText": {
147
- "description": "Represents the user defined string in placeholder card.",
148
- "type": "string"
149
- },
150
- "valueSelectionInfo": {
151
- "description": "Represents things like people, number of items.",
152
- "type": "string"
153
- },
154
- "staticContent": {
155
- "description": "Represents the static content that will be displayed in this card.",
156
- "type": "array",
157
- "items": {
158
- "type": "object",
159
- "additionalProperties": {}
160
- }
161
- },
162
- "listFlavor": {
163
- "description": "Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard.",
164
- "enum": [
165
- "bar",
166
- "carousel",
167
- "standard"
168
- ],
169
- "type": "string"
170
- },
171
- "listType": {
172
- "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.",
173
- "enum": [
174
- "condensed",
175
- "extended"
176
- ],
177
- "type": "string"
178
- },
179
- "sortBy": {
180
- "description": "Represents the sort key for the entity set.",
181
- "type": "string"
182
- },
183
- "sortOrder": {
184
- "description": "Represents the sort order for the entity set.",
185
- "enum": [
186
- "ascending",
187
- "descending"
188
- ],
189
- "type": "string"
190
- },
191
- "annotationPath": {
192
- "description": "Represents the annotation path.",
193
- "type": "string"
194
- },
195
- "chartAnnotationPath": {
196
- "description": "Represents the chart annotation path.",
197
- "type": "string"
198
- },
199
- "dataPointAnnotationPath": {
200
- "description": "Represents the data point annotation path.",
201
- "type": "string"
202
- },
203
- "kpiAnnotationPath": {
204
- "description": "Represents the KPI annotation path.",
205
- "type": "string"
206
- },
207
- "selectionPresentationAnnotationPath": {
208
- "description": "Represents the selection presentation annotation path.",
209
- "type": "string"
210
- },
211
- "dynamicSubtitleAnnotationPath": {
212
- "description": "Represents the dynamic subtitle annotation path.",
213
- "type": "string"
214
- },
215
- "ignoreSapText": {
216
- "description": "Represents the flag to indicate priority of number formatting over sap text.",
217
- "type": "boolean"
218
- },
219
- "objectStreamCardsSettings": {
220
- "$ref": "#/definitions/ObjectStreamCardsSettingsDef",
221
- "description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards."
222
- },
223
- "enableLocaleCurrencyFormatting": {
224
- "description": "Represents the flag to indicate the use of object number/smart field.",
225
- "type": "boolean"
226
- },
227
- "navigation": {
228
- "$ref": "#/definitions/CustomCardNavigationType",
229
- "description": "Represents the configuration to alter the navigation mode in OVP Analytical Cards."
230
- },
231
- "showFilterInHeader": {
232
- "description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
233
- "type": "boolean"
234
- },
235
- "showSortingInHeader": {
236
- "description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
237
- "type": "boolean"
238
- },
239
- "imageSupported": {
240
- "description": "Flag for enabling images in a condensed list card.",
241
- "type": "boolean"
242
- },
243
- "showLineItemDetail": {
244
- "description": "Flag for show line item detail in list and table card.",
245
- "type": "boolean"
246
- },
247
- "showLabelText": {
248
- "description": "This property is responsible for showing and hiding text labels on the geo spots.",
249
- "type": "boolean"
250
- },
251
- "customParams": {
252
- "description": "This property is responsible for passing custom parameters present in the entity set to the navigating application.",
253
- "type": "string"
254
- },
255
- "chartProperties": {
256
- "description": "This property is responsible for setting specific chart settings.",
257
- "type": "object",
258
- "properties": {
259
- "plotArea": {
260
- "$ref": "#/definitions/PlotAreaDef"
261
- },
262
- "timeAxis": {
263
- "$ref": "#/definitions/TimeAxisDef"
264
- }
265
- },
266
- "additionalProperties": false
267
- },
268
- "colorPalette": {
269
- "description": "Represents the configuration to customize the column stacked chart.",
270
- "anyOf": [
271
- {
272
- "type": "array",
273
- "items": {
274
- "type": "object",
275
- "additionalProperties": {}
276
- }
277
- },
278
- {
279
- "type": "object",
280
- "additionalProperties": {}
281
- }
282
- ]
283
- },
284
145
  "entitySet": {
285
146
  "description": "Represents the dominant entity set that will be displayed in the given card.",
286
- "type": "string"
147
+ "type": "string",
148
+ "artifactType": "Manifest"
287
149
  },
288
150
  "title": {
289
151
  "description": "The language-dependent title of the card, used in the card header.",
290
152
  "i18nClassification": "TIT: Title of the card, used in the card header",
291
- "type": "string"
153
+ "type": "string",
154
+ "artifactType": "Manifest"
292
155
  },
293
156
  "subTitle": {
294
157
  "description": "The language-dependent subtitle of the card, used in the card header.",
295
158
  "i18nClassification": "TIT: Subtitle of the card, used in the card header",
159
+ "type": "string",
160
+ "artifactType": "Manifest"
161
+ },
162
+ "annotationPath": {
163
+ "description": "Represents the annotation path.",
296
164
  "type": "string"
297
165
  },
298
166
  "identificationAnnotationPath": {
299
167
  "description": "Represents the identification annotation path.",
168
+ "type": "string",
169
+ "artifactType": "Manifest"
170
+ },
171
+ "dataPointAnnotationPath": {
172
+ "description": "Represents the data point annotation path.",
300
173
  "type": "string"
301
174
  },
302
175
  "selectionAnnotationPath": {
303
176
  "description": "Represents the selection annotation path.",
304
- "type": "string"
177
+ "type": "string",
178
+ "artifactType": "Manifest"
305
179
  },
306
180
  "presentationAnnotationPath": {
307
181
  "description": "Represents the presentation annotation path.",
182
+ "type": "string",
183
+ "artifactType": "Manifest"
184
+ },
185
+ "selectionPresentationAnnotationPath": {
186
+ "description": "Represents the selection presentation annotation path.",
187
+ "type": "string"
188
+ },
189
+ "kpiAnnotationPath": {
190
+ "description": "Represents the KPI annotation path.",
308
191
  "type": "string"
309
192
  },
310
193
  "category": {
@@ -352,7 +235,8 @@
352
235
  },
353
236
  "requireAppAuthorization": {
354
237
  "description": "Define an authorization check at card level.",
355
- "type": "string"
238
+ "type": "string",
239
+ "artifactType": "Manifest"
356
240
  },
357
241
  "tabs": {
358
242
  "description": "Represents the card with view switch control.",
@@ -365,110 +249,51 @@
365
249
  "minItems": 1,
366
250
  "additionalItems": {
367
251
  "$ref": "#/definitions/TabSetting"
368
- }
252
+ },
253
+ "artifactType": "Manifest"
369
254
  },
370
255
  "addODataSelect": {
371
256
  "description": "add $Select parameter in data fetch URL",
372
- "type": "boolean"
373
- }
374
- },
375
- "required": [
376
- "title"
377
- ]
378
- },
379
- "ObjectStreamCardsSettingsDef": {
380
- "description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards",
381
- "type": "object",
382
- "additionalProperties": {},
383
- "properties": {
384
- "showFirstActionInFooter": {
385
- "description": "Represents the flag to show first action in footer of the Quickview cards",
386
- "type": "boolean"
257
+ "type": "boolean",
258
+ "artifactType": "Manifest"
387
259
  },
388
- "customActions": {
389
- "description": "Represents the custom actions in the Quick View Cards",
390
- "minItems": 1,
391
- "type": "array",
392
- "items": [
393
- {
394
- "$ref": "#/definitions/CustomActionsSetting"
395
- }
260
+ "sortBy": {
261
+ "description": "Defines the property by which the list shall be sorted.",
262
+ "type": "string"
263
+ },
264
+ "sortOrder": {
265
+ "description": "Sort order (ascending or descending)",
266
+ "enum": [
267
+ "ascending",
268
+ "descending"
396
269
  ],
397
- "additionalItems": {
398
- "$ref": "#/definitions/CustomActionsSetting"
399
- }
400
- }
401
- }
402
- },
403
- "CustomActionsSetting": {
404
- "description": "Represents the properties for the custom actions in the Quick View Cards",
405
- "type": "object",
406
- "additionalProperties": {},
407
- "properties": {
408
- "text": {
409
- "description": "Text displayed for extended actions in Quick View",
410
270
  "type": "string"
411
271
  },
412
- "press": {
413
- "description": "Name of the press handler for extended actions in Quick View",
272
+ "dynamicSubtitleAnnotationPath": {
273
+ "description": "Represents the dynamic subtitle annotation path.",
414
274
  "type": "string"
415
275
  },
416
- "position": {
417
- "description": "Position of extended actions in Quick View",
418
- "type": "number"
419
- }
420
- }
421
- },
422
- "CustomCardNavigationType": {
423
- "enum": [
424
- "chartNav",
425
- "dataPointNav",
426
- "headerNav",
427
- "noHeaderNav"
428
- ],
429
- "type": "string"
430
- },
431
- "PlotAreaDef": {
432
- "description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
433
- "type": "object",
434
- "properties": {
435
- "isSmoothed": {
436
- "description": "Represents whether smoother curves are required or not",
276
+ "enableLocaleCurrencyFormatting": {
277
+ "description": "Represents the flag to indicate the use of object number/smart field.",
437
278
  "type": "boolean"
438
279
  },
439
- "markerSize": {
440
- "description": "Represents the size of the markers in scatter plots",
441
- "type": "number"
280
+ "showFilterInHeader": {
281
+ "description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
282
+ "type": "boolean"
442
283
  },
443
- "dataLabel": {
444
- "description": "dataLabel is a parent property that defines other properties for type",
445
- "type": "object",
446
- "properties": {
447
- "type": {
448
- "description": "Defines whether to display percentage values or actual counts in the donut chart",
449
- "enum": [
450
- "percentage",
451
- "value"
452
- ],
453
- "type": "string"
454
- }
455
- },
456
- "additionalProperties": false
284
+ "showSortingInHeader": {
285
+ "description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
286
+ "type": "boolean"
287
+ },
288
+ "customParams": {
289
+ "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"
457
291
  }
458
292
  },
459
- "additionalProperties": false
460
- },
461
- "TimeAxisDef": {
462
- "description": "Represents the configuration to customize the time axis",
463
- "type": "object",
464
- "additionalProperties": {},
465
- "properties": {
466
- "levels": {
467
- "description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
468
- "type": "array",
469
- "items": {}
470
- }
471
- }
293
+ "additionalProperties": false,
294
+ "required": [
295
+ "title"
296
+ ]
472
297
  },
473
298
  "TabSetting": {
474
299
  "description": "Represents the tab specific properties - properties that are passed to a particular tab in a card",
@@ -538,6 +363,48 @@
538
363
  }
539
364
  }
540
365
  },
366
+ "PlotAreaDef": {
367
+ "description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
368
+ "type": "object",
369
+ "properties": {
370
+ "isSmoothed": {
371
+ "description": "Represents whether smoother curves are required or not",
372
+ "type": "boolean"
373
+ },
374
+ "markerSize": {
375
+ "description": "Represents the size of the markers in scatter plots",
376
+ "type": "number"
377
+ },
378
+ "dataLabel": {
379
+ "description": "dataLabel is a parent property that defines other properties for type",
380
+ "type": "object",
381
+ "properties": {
382
+ "type": {
383
+ "description": "Defines whether to display percentage values or actual counts in the donut chart",
384
+ "enum": [
385
+ "percentage",
386
+ "value"
387
+ ],
388
+ "type": "string"
389
+ }
390
+ },
391
+ "additionalProperties": false
392
+ }
393
+ },
394
+ "additionalProperties": false
395
+ },
396
+ "TimeAxisDef": {
397
+ "description": "Represents the configuration to customize the time axis",
398
+ "type": "object",
399
+ "additionalProperties": {},
400
+ "properties": {
401
+ "levels": {
402
+ "description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
403
+ "type": "array",
404
+ "items": {}
405
+ }
406
+ }
407
+ },
541
408
  "ListCard": {
542
409
  "description": "List Card",
543
410
  "isViewNode": true,
@@ -580,30 +447,18 @@
580
447
  "$ref": "#/definitions/ListTypeType",
581
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."
582
449
  },
583
- "annotationPath": {
584
- "description": "Represents the annotation path.",
585
- "type": "string"
450
+ "showLineItemDetail": {
451
+ "description": "Flag for show line item detail in list and table card.",
452
+ "type": "boolean"
453
+ },
454
+ "imageSupported": {
455
+ "description": "Flag for enabling images in a condensed list card.",
456
+ "type": "boolean"
586
457
  },
587
458
  "valueSelectionInfo": {
588
459
  "description": "Represents things like people, number of items.",
589
460
  "type": "string"
590
461
  },
591
- "sortBy": {
592
- "description": "Defines the property by which the list shall be sorted.",
593
- "type": "string"
594
- },
595
- "sortOrder": {
596
- "$ref": "#/definitions/SortOrderType",
597
- "description": "Defines the sort order."
598
- },
599
- "dataPointAnnotationPath": {
600
- "description": "Represents the data point annotation path.",
601
- "type": "string"
602
- },
603
- "showLineItemDetail": {
604
- "description": "Flag for show line item detail in list and table card.",
605
- "type": "boolean"
606
- },
607
462
  "entitySet": {
608
463
  "description": "Represents the dominant entity set that will be displayed in the given card.",
609
464
  "type": "string"
@@ -618,10 +473,18 @@
618
473
  "i18nClassification": "TIT: Subtitle of the card, used in the card header",
619
474
  "type": "string"
620
475
  },
476
+ "annotationPath": {
477
+ "description": "Represents the annotation path.",
478
+ "type": "string"
479
+ },
621
480
  "identificationAnnotationPath": {
622
481
  "description": "Represents the identification annotation path.",
623
482
  "type": "string"
624
483
  },
484
+ "dataPointAnnotationPath": {
485
+ "description": "Represents the data point annotation path.",
486
+ "type": "string"
487
+ },
625
488
  "selectionAnnotationPath": {
626
489
  "description": "Represents the selection annotation path.",
627
490
  "type": "string"
@@ -630,6 +493,14 @@
630
493
  "description": "Represents the presentation annotation path.",
631
494
  "type": "string"
632
495
  },
496
+ "selectionPresentationAnnotationPath": {
497
+ "description": "Represents the selection presentation annotation path.",
498
+ "type": "string"
499
+ },
500
+ "kpiAnnotationPath": {
501
+ "description": "Represents the KPI annotation path.",
502
+ "type": "string"
503
+ },
633
504
  "category": {
634
505
  "description": "The category of the card, as used in the card header.",
635
506
  "type": "string"
@@ -693,6 +564,38 @@
693
564
  "addODataSelect": {
694
565
  "description": "add $Select parameter in data fetch URL",
695
566
  "type": "boolean"
567
+ },
568
+ "sortBy": {
569
+ "description": "Defines the property by which the list shall be sorted.",
570
+ "type": "string"
571
+ },
572
+ "sortOrder": {
573
+ "description": "Sort order (ascending or descending)",
574
+ "enum": [
575
+ "ascending",
576
+ "descending"
577
+ ],
578
+ "type": "string"
579
+ },
580
+ "dynamicSubtitleAnnotationPath": {
581
+ "description": "Represents the dynamic subtitle annotation path.",
582
+ "type": "string"
583
+ },
584
+ "enableLocaleCurrencyFormatting": {
585
+ "description": "Represents the flag to indicate the use of object number/smart field.",
586
+ "type": "boolean"
587
+ },
588
+ "showFilterInHeader": {
589
+ "description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
590
+ "type": "boolean"
591
+ },
592
+ "showSortingInHeader": {
593
+ "description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
594
+ "type": "boolean"
595
+ },
596
+ "customParams": {
597
+ "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"
696
599
  }
697
600
  },
698
601
  "additionalProperties": false,
@@ -715,13 +618,6 @@
715
618
  ],
716
619
  "type": "string"
717
620
  },
718
- "SortOrderType": {
719
- "enum": [
720
- "ascending",
721
- "descending"
722
- ],
723
- "type": "string"
724
- },
725
621
  "StackCard": {
726
622
  "description": "Stack Card",
727
623
  "isViewNode": true,
@@ -782,10 +678,18 @@
782
678
  "i18nClassification": "TIT: Subtitle of the card, used in the card header",
783
679
  "type": "string"
784
680
  },
681
+ "annotationPath": {
682
+ "description": "Represents the annotation path.",
683
+ "type": "string"
684
+ },
785
685
  "identificationAnnotationPath": {
786
686
  "description": "Represents the identification annotation path.",
787
687
  "type": "string"
788
688
  },
689
+ "dataPointAnnotationPath": {
690
+ "description": "Represents the data point annotation path.",
691
+ "type": "string"
692
+ },
789
693
  "selectionAnnotationPath": {
790
694
  "description": "Represents the selection annotation path.",
791
695
  "type": "string"
@@ -794,6 +698,14 @@
794
698
  "description": "Represents the presentation annotation path.",
795
699
  "type": "string"
796
700
  },
701
+ "selectionPresentationAnnotationPath": {
702
+ "description": "Represents the selection presentation annotation path.",
703
+ "type": "string"
704
+ },
705
+ "kpiAnnotationPath": {
706
+ "description": "Represents the KPI annotation path.",
707
+ "type": "string"
708
+ },
797
709
  "category": {
798
710
  "description": "The category of the card, as used in the card header.",
799
711
  "type": "string"
@@ -849,20 +761,95 @@
849
761
  "$ref": "#/definitions/TabSetting"
850
762
  }
851
763
  ],
852
- "minItems": 1,
764
+ "minItems": 1,
765
+ "additionalItems": {
766
+ "$ref": "#/definitions/TabSetting"
767
+ }
768
+ },
769
+ "addODataSelect": {
770
+ "description": "add $Select parameter in data fetch URL",
771
+ "type": "boolean"
772
+ },
773
+ "sortBy": {
774
+ "description": "Defines the property by which the list shall be sorted.",
775
+ "type": "string"
776
+ },
777
+ "sortOrder": {
778
+ "description": "Sort order (ascending or descending)",
779
+ "enum": [
780
+ "ascending",
781
+ "descending"
782
+ ],
783
+ "type": "string"
784
+ },
785
+ "dynamicSubtitleAnnotationPath": {
786
+ "description": "Represents the dynamic subtitle annotation path.",
787
+ "type": "string"
788
+ },
789
+ "enableLocaleCurrencyFormatting": {
790
+ "description": "Represents the flag to indicate the use of object number/smart field.",
791
+ "type": "boolean"
792
+ },
793
+ "showFilterInHeader": {
794
+ "description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
795
+ "type": "boolean"
796
+ },
797
+ "showSortingInHeader": {
798
+ "description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
799
+ "type": "boolean"
800
+ },
801
+ "customParams": {
802
+ "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"
804
+ }
805
+ },
806
+ "additionalProperties": false,
807
+ "required": [
808
+ "title"
809
+ ]
810
+ },
811
+ "ObjectStreamCardsSettingsDef": {
812
+ "description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards",
813
+ "type": "object",
814
+ "additionalProperties": {},
815
+ "properties": {
816
+ "showFirstActionInFooter": {
817
+ "description": "Represents the flag to show first action in footer of the Quickview cards",
818
+ "type": "boolean"
819
+ },
820
+ "customActions": {
821
+ "description": "Represents the custom actions in the Quick View Cards",
822
+ "minItems": 1,
823
+ "type": "array",
824
+ "items": [
825
+ {
826
+ "$ref": "#/definitions/CustomActionsSetting"
827
+ }
828
+ ],
853
829
  "additionalItems": {
854
- "$ref": "#/definitions/TabSetting"
830
+ "$ref": "#/definitions/CustomActionsSetting"
855
831
  }
832
+ }
833
+ }
834
+ },
835
+ "CustomActionsSetting": {
836
+ "description": "Represents the properties for the custom actions in the Quick View Cards",
837
+ "type": "object",
838
+ "additionalProperties": {},
839
+ "properties": {
840
+ "text": {
841
+ "description": "Text displayed for extended actions in Quick View",
842
+ "type": "string"
856
843
  },
857
- "addODataSelect": {
858
- "description": "add $Select parameter in data fetch URL",
859
- "type": "boolean"
844
+ "press": {
845
+ "description": "Name of the press handler for extended actions in Quick View",
846
+ "type": "string"
847
+ },
848
+ "position": {
849
+ "description": "Position of extended actions in Quick View",
850
+ "type": "number"
860
851
  }
861
- },
862
- "additionalProperties": false,
863
- "required": [
864
- "title"
865
- ]
852
+ }
866
853
  },
867
854
  "LinklistCard": {
868
855
  "description": "Link List Card",
@@ -905,14 +892,6 @@
905
892
  "$ref": "#/definitions/LinkListFlavorType",
906
893
  "description": "listFlavor represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard."
907
894
  },
908
- "sortBy": {
909
- "description": "sortBy defines the property by which the list shall be sorted.",
910
- "type": "string"
911
- },
912
- "sortOrder": {
913
- "$ref": "#/definitions/SortOrderType",
914
- "description": "sortOrder defines the sort order. Valid values are 'ascending' or 'descending'"
915
- },
916
895
  "headerAnnotationPath": {
917
896
  "description": "headerAnnotationPath represents the path to a HeaderInfo annotation.",
918
897
  "type": "string"
@@ -924,10 +903,6 @@
924
903
  "$ref": "#/definitions/StaticContent"
925
904
  }
926
905
  },
927
- "annotationPath": {
928
- "description": "Represents the annotation path.",
929
- "type": "string"
930
- },
931
906
  "entitySet": {
932
907
  "description": "Represents the dominant entity set that will be displayed in the given card.",
933
908
  "type": "string"
@@ -942,10 +917,18 @@
942
917
  "i18nClassification": "TIT: Subtitle of the card, used in the card header",
943
918
  "type": "string"
944
919
  },
920
+ "annotationPath": {
921
+ "description": "Represents the annotation path.",
922
+ "type": "string"
923
+ },
945
924
  "identificationAnnotationPath": {
946
925
  "description": "Represents the identification annotation path.",
947
926
  "type": "string"
948
927
  },
928
+ "dataPointAnnotationPath": {
929
+ "description": "Represents the data point annotation path.",
930
+ "type": "string"
931
+ },
949
932
  "selectionAnnotationPath": {
950
933
  "description": "Represents the selection annotation path.",
951
934
  "type": "string"
@@ -954,6 +937,14 @@
954
937
  "description": "Represents the presentation annotation path.",
955
938
  "type": "string"
956
939
  },
940
+ "selectionPresentationAnnotationPath": {
941
+ "description": "Represents the selection presentation annotation path.",
942
+ "type": "string"
943
+ },
944
+ "kpiAnnotationPath": {
945
+ "description": "Represents the KPI annotation path.",
946
+ "type": "string"
947
+ },
957
948
  "category": {
958
949
  "description": "The category of the card, as used in the card header.",
959
950
  "type": "string"
@@ -1017,6 +1008,38 @@
1017
1008
  "addODataSelect": {
1018
1009
  "description": "add $Select parameter in data fetch URL",
1019
1010
  "type": "boolean"
1011
+ },
1012
+ "sortBy": {
1013
+ "description": "Defines the property by which the list shall be sorted.",
1014
+ "type": "string"
1015
+ },
1016
+ "sortOrder": {
1017
+ "description": "Sort order (ascending or descending)",
1018
+ "enum": [
1019
+ "ascending",
1020
+ "descending"
1021
+ ],
1022
+ "type": "string"
1023
+ },
1024
+ "dynamicSubtitleAnnotationPath": {
1025
+ "description": "Represents the dynamic subtitle annotation path.",
1026
+ "type": "string"
1027
+ },
1028
+ "enableLocaleCurrencyFormatting": {
1029
+ "description": "Represents the flag to indicate the use of object number/smart field.",
1030
+ "type": "boolean"
1031
+ },
1032
+ "showFilterInHeader": {
1033
+ "description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
1034
+ "type": "boolean"
1035
+ },
1036
+ "showSortingInHeader": {
1037
+ "description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
1038
+ "type": "boolean"
1039
+ },
1040
+ "customParams": {
1041
+ "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"
1020
1043
  }
1021
1044
  },
1022
1045
  "additionalProperties": false,
@@ -1114,42 +1137,14 @@
1114
1137
  "displayName": "settings",
1115
1138
  "type": "object",
1116
1139
  "properties": {
1117
- "annotationPath": {
1118
- "description": "Represents the annotation path.",
1119
- "type": "string"
1120
- },
1121
- "listFlavor": {
1122
- "$ref": "#/definitions/ListFlavorType",
1123
- "description": "Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard."
1124
- },
1125
- "listType": {
1126
- "$ref": "#/definitions/ListTypeType",
1127
- "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."
1128
- },
1129
- "dataPointAnnotationPath": {
1130
- "description": "Represents the data point annotation path.",
1131
- "type": "string"
1132
- },
1133
- "selectionPresentationAnnotationPath": {
1134
- "description": "Represents the selection presentation annotation path.",
1135
- "type": "string"
1140
+ "showLineItemDetail": {
1141
+ "description": "Flag for show line item detail in list and table card.",
1142
+ "type": "boolean"
1136
1143
  },
1137
1144
  "valueSelectionInfo": {
1138
1145
  "description": "Represents things like people, number of items.",
1139
1146
  "type": "string"
1140
1147
  },
1141
- "sortBy": {
1142
- "description": "Defines the property by which the list shall be sorted.",
1143
- "type": "string"
1144
- },
1145
- "sortOrder": {
1146
- "$ref": "#/definitions/SortOrderType",
1147
- "description": "Defines the sort order."
1148
- },
1149
- "showLineItemDetail": {
1150
- "description": "Flag for show line item detail in list and table card.",
1151
- "type": "boolean"
1152
- },
1153
1148
  "entitySet": {
1154
1149
  "description": "Represents the dominant entity set that will be displayed in the given card.",
1155
1150
  "type": "string"
@@ -1164,10 +1159,18 @@
1164
1159
  "i18nClassification": "TIT: Subtitle of the card, used in the card header",
1165
1160
  "type": "string"
1166
1161
  },
1162
+ "annotationPath": {
1163
+ "description": "Represents the annotation path.",
1164
+ "type": "string"
1165
+ },
1167
1166
  "identificationAnnotationPath": {
1168
1167
  "description": "Represents the identification annotation path.",
1169
1168
  "type": "string"
1170
1169
  },
1170
+ "dataPointAnnotationPath": {
1171
+ "description": "Represents the data point annotation path.",
1172
+ "type": "string"
1173
+ },
1171
1174
  "selectionAnnotationPath": {
1172
1175
  "description": "Represents the selection annotation path.",
1173
1176
  "type": "string"
@@ -1176,6 +1179,14 @@
1176
1179
  "description": "Represents the presentation annotation path.",
1177
1180
  "type": "string"
1178
1181
  },
1182
+ "selectionPresentationAnnotationPath": {
1183
+ "description": "Represents the selection presentation annotation path.",
1184
+ "type": "string"
1185
+ },
1186
+ "kpiAnnotationPath": {
1187
+ "description": "Represents the KPI annotation path.",
1188
+ "type": "string"
1189
+ },
1179
1190
  "category": {
1180
1191
  "description": "The category of the card, as used in the card header.",
1181
1192
  "type": "string"
@@ -1239,6 +1250,38 @@
1239
1250
  "addODataSelect": {
1240
1251
  "description": "add $Select parameter in data fetch URL",
1241
1252
  "type": "boolean"
1253
+ },
1254
+ "sortBy": {
1255
+ "description": "Defines the property by which the list shall be sorted.",
1256
+ "type": "string"
1257
+ },
1258
+ "sortOrder": {
1259
+ "description": "Sort order (ascending or descending)",
1260
+ "enum": [
1261
+ "ascending",
1262
+ "descending"
1263
+ ],
1264
+ "type": "string"
1265
+ },
1266
+ "dynamicSubtitleAnnotationPath": {
1267
+ "description": "Represents the dynamic subtitle annotation path.",
1268
+ "type": "string"
1269
+ },
1270
+ "enableLocaleCurrencyFormatting": {
1271
+ "description": "Represents the flag to indicate the use of object number/smart field.",
1272
+ "type": "boolean"
1273
+ },
1274
+ "showFilterInHeader": {
1275
+ "description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
1276
+ "type": "boolean"
1277
+ },
1278
+ "showSortingInHeader": {
1279
+ "description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
1280
+ "type": "boolean"
1281
+ },
1282
+ "customParams": {
1283
+ "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"
1242
1285
  }
1243
1286
  },
1244
1287
  "additionalProperties": false,
@@ -1278,19 +1321,53 @@
1278
1321
  "AnalyticalCardSettings": {
1279
1322
  "displayName": "settings",
1280
1323
  "type": "object",
1324
+ "additionalProperties": {},
1281
1325
  "properties": {
1282
1326
  "chartAnnotationPath": {
1283
1327
  "description": "Represents the chart annotation path.",
1284
1328
  "type": "string"
1285
1329
  },
1286
- "dataPointAnnotationPath": {
1287
- "description": "Represents the data point annotation path.",
1288
- "type": "string"
1330
+ "ignoreSapText": {
1331
+ "description": "Represents the flag to indicate priority of number formatting over sap text.",
1332
+ "type": "boolean"
1333
+ },
1334
+ "navigation": {
1335
+ "$ref": "#/definitions/CardNavigationType",
1336
+ "description": "Represents the configuration to alter the navigation mode in OVP Analytical Cards."
1289
1337
  },
1290
1338
  "valueSelectionInfo": {
1291
1339
  "description": "Represents things like people, number of items.",
1292
1340
  "type": "string"
1293
1341
  },
1342
+ "chartProperties": {
1343
+ "description": "This property is responsible for setting specific chart settings.",
1344
+ "type": "object",
1345
+ "properties": {
1346
+ "plotArea": {
1347
+ "$ref": "#/definitions/PlotAreaDef"
1348
+ },
1349
+ "timeAxis": {
1350
+ "$ref": "#/definitions/TimeAxisDef"
1351
+ }
1352
+ },
1353
+ "additionalProperties": false
1354
+ },
1355
+ "colorPalette": {
1356
+ "description": "Color palette for semantic coloring.",
1357
+ "anyOf": [
1358
+ {
1359
+ "type": "array",
1360
+ "items": {
1361
+ "type": "object",
1362
+ "additionalProperties": {}
1363
+ }
1364
+ },
1365
+ {
1366
+ "type": "object",
1367
+ "additionalProperties": {}
1368
+ }
1369
+ ]
1370
+ },
1294
1371
  "entitySet": {
1295
1372
  "description": "Represents the dominant entity set that will be displayed in the given card.",
1296
1373
  "type": "string"
@@ -1305,10 +1382,18 @@
1305
1382
  "i18nClassification": "TIT: Subtitle of the card, used in the card header",
1306
1383
  "type": "string"
1307
1384
  },
1385
+ "annotationPath": {
1386
+ "description": "Represents the annotation path.",
1387
+ "type": "string"
1388
+ },
1308
1389
  "identificationAnnotationPath": {
1309
1390
  "description": "Represents the identification annotation path.",
1310
1391
  "type": "string"
1311
1392
  },
1393
+ "dataPointAnnotationPath": {
1394
+ "description": "Represents the data point annotation path.",
1395
+ "type": "string"
1396
+ },
1312
1397
  "selectionAnnotationPath": {
1313
1398
  "description": "Represents the selection annotation path.",
1314
1399
  "type": "string"
@@ -1317,6 +1402,14 @@
1317
1402
  "description": "Represents the presentation annotation path.",
1318
1403
  "type": "string"
1319
1404
  },
1405
+ "selectionPresentationAnnotationPath": {
1406
+ "description": "Represents the selection presentation annotation path.",
1407
+ "type": "string"
1408
+ },
1409
+ "kpiAnnotationPath": {
1410
+ "description": "Represents the KPI annotation path.",
1411
+ "type": "string"
1412
+ },
1320
1413
  "category": {
1321
1414
  "description": "The category of the card, as used in the card header.",
1322
1415
  "type": "string"
@@ -1380,12 +1473,52 @@
1380
1473
  "addODataSelect": {
1381
1474
  "description": "add $Select parameter in data fetch URL",
1382
1475
  "type": "boolean"
1476
+ },
1477
+ "sortBy": {
1478
+ "description": "Defines the property by which the list shall be sorted.",
1479
+ "type": "string"
1480
+ },
1481
+ "sortOrder": {
1482
+ "description": "Sort order (ascending or descending)",
1483
+ "enum": [
1484
+ "ascending",
1485
+ "descending"
1486
+ ],
1487
+ "type": "string"
1488
+ },
1489
+ "dynamicSubtitleAnnotationPath": {
1490
+ "description": "Represents the dynamic subtitle annotation path.",
1491
+ "type": "string"
1492
+ },
1493
+ "enableLocaleCurrencyFormatting": {
1494
+ "description": "Represents the flag to indicate the use of object number/smart field.",
1495
+ "type": "boolean"
1496
+ },
1497
+ "showFilterInHeader": {
1498
+ "description": "Represents a switch to Show or Hide Filters in Cards Headers in OVP application.",
1499
+ "type": "boolean"
1500
+ },
1501
+ "showSortingInHeader": {
1502
+ "description": "Represents a switch to Show or Hide Sorting in Cards Headers in OVP application.",
1503
+ "type": "boolean"
1504
+ },
1505
+ "customParams": {
1506
+ "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"
1383
1508
  }
1384
1509
  },
1385
- "additionalProperties": false,
1386
1510
  "required": [
1387
1511
  "title"
1388
1512
  ]
1513
+ },
1514
+ "CardNavigationType": {
1515
+ "enum": [
1516
+ "chartNav",
1517
+ "dataPointNav",
1518
+ "headerNav",
1519
+ "noHeaderNav"
1520
+ ],
1521
+ "type": "string"
1389
1522
  }
1390
1523
  },
1391
1524
  "$schema": "http://json-schema.org/draft-07/schema#"