@sap/ux-specification 1.71.94 → 1.71.96
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 +59 -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 +31 -31
- package/dist/index-min.js.map +4 -4
- package/dist/package.json +5 -5
- package/dist/schemas/v2/AnalyticalListPageConfig.json +38 -0
- package/dist/schemas/v2/ListReportConfig.json +103 -65
- package/dist/schemas/v2/ObjectPageConfig.json +72 -4
- package/dist/schemas/v2/OverviewPageConfig.json +109 -69
- package/dist/src/sync/common/generate/objectPage.d.ts +6 -5
- package/dist/src/sync/common/generate/objectPage.d.ts.map +1 -1
- package/dist/src/sync/common/generate/objectPage.js +117 -86
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/generate/utils.d.ts.map +1 -1
- package/dist/src/sync/common/generate/utils.js +6 -4
- package/dist/src/sync/common/generate/utils.js.map +1 -1
- package/dist/src/sync/common/importProject.d.ts.map +1 -1
- package/dist/src/sync/common/importProject.js +1 -3
- package/dist/src/sync/common/importProject.js.map +1 -1
- package/dist/src/sync/common/utils.d.ts +1 -1
- package/dist/src/sync/common/utils.d.ts.map +1 -1
- package/dist/src/sync/common/utils.js +17 -14
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/application.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Action.d.ts +21 -0
- package/dist/src/sync/v2/export/controls/Action.d.ts.map +1 -1
- package/dist/src/sync/v2/export/controls/Action.js +93 -1
- package/dist/src/sync/v2/export/controls/Action.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Card.d.ts +6 -5
- package/dist/src/sync/v2/export/controls/Card.d.ts.map +1 -1
- package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js.map +1 -1
- package/dist/src/sync/v2/export/export.d.ts.map +1 -1
- package/dist/src/sync/v2/export/export.js +3 -1
- 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.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js +2 -0
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/src/sync/v2/generate/generate.d.ts +5 -5
- package/dist/src/sync/v2/generate/generate.d.ts.map +1 -1
- package/dist/src/sync/v2/generate/generate.js.map +1 -1
- package/dist/src/sync/v2/generate/listReport.d.ts.map +1 -1
- package/dist/src/sync/v2/generate/listReport.js +6 -2
- package/dist/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.d.ts.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.js +61 -62
- package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.d.ts +20 -0
- package/dist/src/sync/v2/generate/utils.d.ts.map +1 -1
- package/dist/src/sync/v2/generate/utils.js +62 -2
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/app/appProvider.d.ts.map +1 -1
- package/dist/src/sync/v2/import/app/appProvider.js +9 -10
- package/dist/src/sync/v2/import/app/appProvider.js.map +1 -1
- package/dist/src/sync/v2/import/common/index.d.ts +9 -0
- package/dist/src/sync/v2/import/common/index.d.ts.map +1 -1
- package/dist/src/sync/v2/import/common/index.js +39 -13
- package/dist/src/sync/v2/import/common/index.js.map +1 -1
- package/dist/src/sync/v2/import/pages/analyticalListPage.d.ts.map +1 -1
- package/dist/src/sync/v2/import/pages/analyticalListPage.js +3 -3
- package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
- package/dist/src/sync/v2/import/pages/listReport.d.ts.map +1 -1
- package/dist/src/sync/v2/import/pages/listReport.js +3 -3
- package/dist/src/sync/v2/import/pages/listReport.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 +80 -32
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v2/types.d.ts +6 -1
- package/dist/src/sync/v2/types.d.ts.map +1 -1
- package/dist/src/sync/v2/types.js +6 -1
- package/dist/src/sync/v2/types.js.map +1 -1
- package/package.json +5 -5
|
@@ -217,19 +217,8 @@
|
|
|
217
217
|
"type": "boolean"
|
|
218
218
|
},
|
|
219
219
|
"objectStreamCardsSettings": {
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"properties": {
|
|
223
|
-
"showFirstActionInFooter": {
|
|
224
|
-
"description": "If this flag is set to true, the first action on the footer of the quick view card will be a navigation action.\nIf the flag is set to false, the navigation action on the footer of the quick view card isn't displayed. Other actions are shown instead.\nThe default value of the flag is false.",
|
|
225
|
-
"type": "boolean"
|
|
226
|
-
},
|
|
227
|
-
"annotationPath": {
|
|
228
|
-
"description": "Represents the annotation path.",
|
|
229
|
-
"type": "string"
|
|
230
|
-
}
|
|
231
|
-
},
|
|
232
|
-
"additionalProperties": false
|
|
220
|
+
"$ref": "#/definitions/ObjectStreamCardsSettingsDef",
|
|
221
|
+
"description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards."
|
|
233
222
|
},
|
|
234
223
|
"enableLocaleCurrencyFormatting": {
|
|
235
224
|
"description": "Represents the flag to indicate the use of object number/smart field.",
|
|
@@ -269,6 +258,9 @@
|
|
|
269
258
|
"properties": {
|
|
270
259
|
"plotArea": {
|
|
271
260
|
"$ref": "#/definitions/PlotAreaDef"
|
|
261
|
+
},
|
|
262
|
+
"timeAxis": {
|
|
263
|
+
"$ref": "#/definitions/TimeAxisDef"
|
|
272
264
|
}
|
|
273
265
|
},
|
|
274
266
|
"additionalProperties": false
|
|
@@ -326,23 +318,23 @@
|
|
|
326
318
|
"type": "object",
|
|
327
319
|
"properties": {
|
|
328
320
|
"cols": {
|
|
329
|
-
"description": "Represents the number of the number of grid columns
|
|
321
|
+
"description": "Represents the number of the number of grid columns",
|
|
330
322
|
"type": "number"
|
|
331
323
|
},
|
|
332
324
|
"rows": {
|
|
333
|
-
"description": "Represents the number of the number of grid rows
|
|
325
|
+
"description": "Represents the number of the number of grid rows",
|
|
334
326
|
"type": "number"
|
|
335
327
|
},
|
|
336
328
|
"showOnlyHeader": {
|
|
337
|
-
"description": "Represents if user wants to show only header part of card in resizable layout
|
|
329
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
338
330
|
"type": "boolean"
|
|
339
331
|
},
|
|
340
332
|
"minimumTitleRow": {
|
|
341
|
-
"description": "If
|
|
333
|
+
"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)",
|
|
342
334
|
"type": "number"
|
|
343
335
|
},
|
|
344
336
|
"minimumSubTitleRow": {
|
|
345
|
-
"description": "If
|
|
337
|
+
"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)",
|
|
346
338
|
"type": "number"
|
|
347
339
|
}
|
|
348
340
|
},
|
|
@@ -384,6 +376,49 @@
|
|
|
384
376
|
"title"
|
|
385
377
|
]
|
|
386
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"
|
|
387
|
+
},
|
|
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
|
+
}
|
|
396
|
+
],
|
|
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
|
+
"type": "string"
|
|
411
|
+
},
|
|
412
|
+
"press": {
|
|
413
|
+
"description": "Name of the press handler for extended actions in Quick View",
|
|
414
|
+
"type": "string"
|
|
415
|
+
},
|
|
416
|
+
"position": {
|
|
417
|
+
"description": "Position of extended actions in Quick View",
|
|
418
|
+
"type": "number"
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
},
|
|
387
422
|
"CustomCardNavigationType": {
|
|
388
423
|
"enum": [
|
|
389
424
|
"chartNav",
|
|
@@ -394,23 +429,23 @@
|
|
|
394
429
|
"type": "string"
|
|
395
430
|
},
|
|
396
431
|
"PlotAreaDef": {
|
|
397
|
-
"description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size
|
|
432
|
+
"description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
|
|
398
433
|
"type": "object",
|
|
399
434
|
"properties": {
|
|
400
435
|
"isSmoothed": {
|
|
401
|
-
"description": "
|
|
436
|
+
"description": "Represents whether smoother curves are required or not",
|
|
402
437
|
"type": "boolean"
|
|
403
438
|
},
|
|
404
439
|
"markerSize": {
|
|
405
|
-
"description": "
|
|
440
|
+
"description": "Represents the size of the markers in scatter plots",
|
|
406
441
|
"type": "number"
|
|
407
442
|
},
|
|
408
443
|
"dataLabel": {
|
|
409
|
-
"description": "dataLabel is a parent property that defines other properties for type
|
|
444
|
+
"description": "dataLabel is a parent property that defines other properties for type",
|
|
410
445
|
"type": "object",
|
|
411
446
|
"properties": {
|
|
412
447
|
"type": {
|
|
413
|
-
"description": "
|
|
448
|
+
"description": "Defines whether to display percentage values or actual counts in the donut chart",
|
|
414
449
|
"enum": [
|
|
415
450
|
"percentage",
|
|
416
451
|
"value"
|
|
@@ -423,32 +458,45 @@
|
|
|
423
458
|
},
|
|
424
459
|
"additionalProperties": false
|
|
425
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
|
+
}
|
|
472
|
+
},
|
|
426
473
|
"TabSetting": {
|
|
474
|
+
"description": "Represents the tab specific properties - properties that are passed to a particular tab in a card",
|
|
427
475
|
"type": "object",
|
|
428
476
|
"additionalProperties": {},
|
|
429
477
|
"properties": {
|
|
430
478
|
"annotationPath": {
|
|
431
|
-
"description": "Represents the annotation path
|
|
479
|
+
"description": "Represents the annotation path",
|
|
432
480
|
"type": "string"
|
|
433
481
|
},
|
|
434
482
|
"selectionAnnotationPath": {
|
|
435
|
-
"description": "Represents the selection annotation path
|
|
483
|
+
"description": "Represents the selection annotation path",
|
|
436
484
|
"type": "string"
|
|
437
485
|
},
|
|
438
486
|
"chartAnnotationPath": {
|
|
439
|
-
"description": "Represents the chart annotation path
|
|
487
|
+
"description": "Represents the chart annotation path",
|
|
440
488
|
"type": "string"
|
|
441
489
|
},
|
|
442
490
|
"presentationAnnotationPath": {
|
|
443
|
-
"description": "Represents the presentation annotation path
|
|
491
|
+
"description": "Represents the presentation annotation path",
|
|
444
492
|
"type": "string"
|
|
445
493
|
},
|
|
446
494
|
"dataPointAnnotationPath": {
|
|
447
|
-
"description": "Represents the data point annotation path
|
|
495
|
+
"description": "Represents the data point annotation path",
|
|
448
496
|
"type": "string"
|
|
449
497
|
},
|
|
450
498
|
"identificationAnnotationPath": {
|
|
451
|
-
"description": "Represents the identification annotation path
|
|
499
|
+
"description": "Represents the identification annotation path",
|
|
452
500
|
"type": "string"
|
|
453
501
|
},
|
|
454
502
|
"dynamicSubtitleAnnotationPath": {
|
|
@@ -460,17 +508,20 @@
|
|
|
460
508
|
"type": "string"
|
|
461
509
|
},
|
|
462
510
|
"chartProperties": {
|
|
463
|
-
"description": "This property is responsible for setting specific chart settings
|
|
511
|
+
"description": "This property is responsible for setting specific chart settings",
|
|
464
512
|
"type": "object",
|
|
465
513
|
"properties": {
|
|
466
514
|
"plotArea": {
|
|
467
515
|
"$ref": "#/definitions/PlotAreaDef"
|
|
516
|
+
},
|
|
517
|
+
"timeAxis": {
|
|
518
|
+
"$ref": "#/definitions/TimeAxisDef"
|
|
468
519
|
}
|
|
469
520
|
},
|
|
470
521
|
"additionalProperties": false
|
|
471
522
|
},
|
|
472
523
|
"colorPalette": {
|
|
473
|
-
"description": "Represents the configuration to customize the column stacked chart
|
|
524
|
+
"description": "Represents the configuration to customize the column stacked chart",
|
|
474
525
|
"anyOf": [
|
|
475
526
|
{
|
|
476
527
|
"type": "array",
|
|
@@ -590,23 +641,23 @@
|
|
|
590
641
|
"type": "object",
|
|
591
642
|
"properties": {
|
|
592
643
|
"cols": {
|
|
593
|
-
"description": "Represents the number of the number of grid columns
|
|
644
|
+
"description": "Represents the number of the number of grid columns",
|
|
594
645
|
"type": "number"
|
|
595
646
|
},
|
|
596
647
|
"rows": {
|
|
597
|
-
"description": "Represents the number of the number of grid rows
|
|
648
|
+
"description": "Represents the number of the number of grid rows",
|
|
598
649
|
"type": "number"
|
|
599
650
|
},
|
|
600
651
|
"showOnlyHeader": {
|
|
601
|
-
"description": "Represents if user wants to show only header part of card in resizable layout
|
|
652
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
602
653
|
"type": "boolean"
|
|
603
654
|
},
|
|
604
655
|
"minimumTitleRow": {
|
|
605
|
-
"description": "If
|
|
656
|
+
"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)",
|
|
606
657
|
"type": "number"
|
|
607
658
|
},
|
|
608
659
|
"minimumSubTitleRow": {
|
|
609
|
-
"description": "If
|
|
660
|
+
"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)",
|
|
610
661
|
"type": "number"
|
|
611
662
|
}
|
|
612
663
|
},
|
|
@@ -714,19 +765,8 @@
|
|
|
714
765
|
"type": "string"
|
|
715
766
|
},
|
|
716
767
|
"objectStreamCardsSettings": {
|
|
717
|
-
"
|
|
718
|
-
"
|
|
719
|
-
"properties": {
|
|
720
|
-
"showFirstActionInFooter": {
|
|
721
|
-
"description": "If this flag is set to true, the first action on the footer of the quick view card will be a navigation action.\nIf the flag is set to false, the navigation action on the footer of the quick view card isn't displayed. Other actions are shown instead.\nThe default value of the flag is false.",
|
|
722
|
-
"type": "boolean"
|
|
723
|
-
},
|
|
724
|
-
"annotationPath": {
|
|
725
|
-
"description": "Represents the annotation path.",
|
|
726
|
-
"type": "string"
|
|
727
|
-
}
|
|
728
|
-
},
|
|
729
|
-
"additionalProperties": false
|
|
768
|
+
"$ref": "#/definitions/ObjectStreamCardsSettingsDef",
|
|
769
|
+
"description": "Configures additional settings for the cards displayed in the object stream."
|
|
730
770
|
},
|
|
731
771
|
"entitySet": {
|
|
732
772
|
"description": "Represents the dominant entity set that will be displayed in the given card.",
|
|
@@ -765,23 +805,23 @@
|
|
|
765
805
|
"type": "object",
|
|
766
806
|
"properties": {
|
|
767
807
|
"cols": {
|
|
768
|
-
"description": "Represents the number of the number of grid columns
|
|
808
|
+
"description": "Represents the number of the number of grid columns",
|
|
769
809
|
"type": "number"
|
|
770
810
|
},
|
|
771
811
|
"rows": {
|
|
772
|
-
"description": "Represents the number of the number of grid rows
|
|
812
|
+
"description": "Represents the number of the number of grid rows",
|
|
773
813
|
"type": "number"
|
|
774
814
|
},
|
|
775
815
|
"showOnlyHeader": {
|
|
776
|
-
"description": "Represents if user wants to show only header part of card in resizable layout
|
|
816
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
777
817
|
"type": "boolean"
|
|
778
818
|
},
|
|
779
819
|
"minimumTitleRow": {
|
|
780
|
-
"description": "If
|
|
820
|
+
"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)",
|
|
781
821
|
"type": "number"
|
|
782
822
|
},
|
|
783
823
|
"minimumSubTitleRow": {
|
|
784
|
-
"description": "If
|
|
824
|
+
"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)",
|
|
785
825
|
"type": "number"
|
|
786
826
|
}
|
|
787
827
|
},
|
|
@@ -925,23 +965,23 @@
|
|
|
925
965
|
"type": "object",
|
|
926
966
|
"properties": {
|
|
927
967
|
"cols": {
|
|
928
|
-
"description": "Represents the number of the number of grid columns
|
|
968
|
+
"description": "Represents the number of the number of grid columns",
|
|
929
969
|
"type": "number"
|
|
930
970
|
},
|
|
931
971
|
"rows": {
|
|
932
|
-
"description": "Represents the number of the number of grid rows
|
|
972
|
+
"description": "Represents the number of the number of grid rows",
|
|
933
973
|
"type": "number"
|
|
934
974
|
},
|
|
935
975
|
"showOnlyHeader": {
|
|
936
|
-
"description": "Represents if user wants to show only header part of card in resizable layout
|
|
976
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
937
977
|
"type": "boolean"
|
|
938
978
|
},
|
|
939
979
|
"minimumTitleRow": {
|
|
940
|
-
"description": "If
|
|
980
|
+
"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)",
|
|
941
981
|
"type": "number"
|
|
942
982
|
},
|
|
943
983
|
"minimumSubTitleRow": {
|
|
944
|
-
"description": "If
|
|
984
|
+
"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)",
|
|
945
985
|
"type": "number"
|
|
946
986
|
}
|
|
947
987
|
},
|
|
@@ -1147,23 +1187,23 @@
|
|
|
1147
1187
|
"type": "object",
|
|
1148
1188
|
"properties": {
|
|
1149
1189
|
"cols": {
|
|
1150
|
-
"description": "Represents the number of the number of grid columns
|
|
1190
|
+
"description": "Represents the number of the number of grid columns",
|
|
1151
1191
|
"type": "number"
|
|
1152
1192
|
},
|
|
1153
1193
|
"rows": {
|
|
1154
|
-
"description": "Represents the number of the number of grid rows
|
|
1194
|
+
"description": "Represents the number of the number of grid rows",
|
|
1155
1195
|
"type": "number"
|
|
1156
1196
|
},
|
|
1157
1197
|
"showOnlyHeader": {
|
|
1158
|
-
"description": "Represents if user wants to show only header part of card in resizable layout
|
|
1198
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
1159
1199
|
"type": "boolean"
|
|
1160
1200
|
},
|
|
1161
1201
|
"minimumTitleRow": {
|
|
1162
|
-
"description": "If
|
|
1202
|
+
"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)",
|
|
1163
1203
|
"type": "number"
|
|
1164
1204
|
},
|
|
1165
1205
|
"minimumSubTitleRow": {
|
|
1166
|
-
"description": "If
|
|
1206
|
+
"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)",
|
|
1167
1207
|
"type": "number"
|
|
1168
1208
|
}
|
|
1169
1209
|
},
|
|
@@ -1288,23 +1328,23 @@
|
|
|
1288
1328
|
"type": "object",
|
|
1289
1329
|
"properties": {
|
|
1290
1330
|
"cols": {
|
|
1291
|
-
"description": "Represents the number of the number of grid columns
|
|
1331
|
+
"description": "Represents the number of the number of grid columns",
|
|
1292
1332
|
"type": "number"
|
|
1293
1333
|
},
|
|
1294
1334
|
"rows": {
|
|
1295
|
-
"description": "Represents the number of the number of grid rows
|
|
1335
|
+
"description": "Represents the number of the number of grid rows",
|
|
1296
1336
|
"type": "number"
|
|
1297
1337
|
},
|
|
1298
1338
|
"showOnlyHeader": {
|
|
1299
|
-
"description": "Represents if user wants to show only header part of card in resizable layout
|
|
1339
|
+
"description": "Represents if user wants to show only header part of card in resizable layout",
|
|
1300
1340
|
"type": "boolean"
|
|
1301
1341
|
},
|
|
1302
1342
|
"minimumTitleRow": {
|
|
1303
|
-
"description": "If
|
|
1343
|
+
"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)",
|
|
1304
1344
|
"type": "number"
|
|
1305
1345
|
},
|
|
1306
1346
|
"minimumSubTitleRow": {
|
|
1307
|
-
"description": "If
|
|
1347
|
+
"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)",
|
|
1308
1348
|
"type": "number"
|
|
1309
1349
|
}
|
|
1310
1350
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ConvertedMetadata, EntitySet, EntityType } from '@sap-ux/vocabularies-types';
|
|
2
2
|
import type { FacetConfig, GenerateAppSchemaParameters } from '@sap/ux-specification-types';
|
|
3
|
-
import { FioriElementsVersion, SectionType } from '@sap/ux-specification-types';
|
|
3
|
+
import { FioriElementsVersion, SectionType, v2 } from '@sap/ux-specification-types';
|
|
4
4
|
import type { Definition } from 'typescript-json-schema';
|
|
5
5
|
/**
|
|
6
6
|
* Adds definitions for forms in object page sections to the app schema
|
|
@@ -34,17 +34,18 @@ export declare function getActionNameAndId(item: any, oDataServiceAVT: Converted
|
|
|
34
34
|
* Add Object Page Footer Action Buttons to app-specific schema
|
|
35
35
|
*
|
|
36
36
|
* @param {object} appSchema Schema of the app
|
|
37
|
-
* @param {
|
|
38
|
-
* @param {
|
|
37
|
+
* @param {GenerateAppSchemaParameters} generateParameters - Schema parameters
|
|
38
|
+
* @param {FioriElementsVersion} version - Fiori elements versions
|
|
39
|
+
* @param {SapUiAppPagesV2} pages - pages found in manifest
|
|
39
40
|
*/
|
|
40
|
-
export declare function addFooterActions(appSchema: Definition, generateParameters: GenerateAppSchemaParameters): void;
|
|
41
|
+
export declare function addFooterActions(appSchema: Definition, generateParameters: GenerateAppSchemaParameters, version?: FioriElementsVersion, pages?: v2.SapUiAppPagesV2): void;
|
|
41
42
|
/**
|
|
42
43
|
* Add Object Page Header Action Buttons to app-specific schema
|
|
43
44
|
* @param {object} appSchema Schema of the app
|
|
44
45
|
* @param {EntityType} entityType - current entity type
|
|
45
46
|
* @param {ConvertedMetadata} oDataServiceAVT - complete service information, as returned by annotation vocabularies tool
|
|
46
47
|
*/
|
|
47
|
-
export declare function addHeaderActions(appSchema: Definition, entityType: EntityType, oDataServiceAVT: ConvertedMetadata, addHeaderActionCallBack: any): void;
|
|
48
|
+
export declare function addHeaderActions(appSchema: Definition, entityType: EntityType, oDataServiceAVT: ConvertedMetadata, addHeaderActionCallBack: any, isV2?: boolean): void;
|
|
48
49
|
/**
|
|
49
50
|
* Adds common Object Page Header definitions to the app schema
|
|
50
51
|
* @param appSchema - app-specific JSOn schema
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"objectPage.d.ts","sourceRoot":"","sources":["../../../../../src/sync/common/generate/objectPage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAI3F,OAAO,KAAK,EAAE,WAAW,EAAE,2BAA2B,EAAE,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"objectPage.d.ts","sourceRoot":"","sources":["../../../../../src/sync/common/generate/objectPage.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAI3F,OAAO,KAAK,EAAE,WAAW,EAAE,2BAA2B,EAAE,MAAM,6BAA6B,CAAC;AAC5F,OAAO,EAGH,oBAAoB,EAIpB,WAAW,EAEX,EAAE,EACL,MAAM,6BAA6B,CAAC;AAUrC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AA6WzD;;;;;;;;;GASG;AACH,wBAAgB,UAAU,CACtB,WAAW,EAAE,WAAW,EACxB,OAAO,EAAE,WAAW,EACpB,gBAAgB,EAAE,UAAU,EAC5B,SAAS,EAAE,UAAU,EACrB,OAAO,EAAE,oBAAoB,EAC7B,QAAQ,EAAE,MAAM,GACjB,MAAM,GAAG,SAAS,CAwDpB;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CAAC,oBAAoB,EAAE,MAAM,EAAE,eAAe,EAAE,iBAAiB,GAAG,MAAM,CAarG;AAED;;;;GAIG;AAEH,wBAAgB,kBAAkB,CAC9B,IAAI,EAAE,GAAG,EACT,eAAe,EAAE,iBAAiB,GACnC;IAAE,UAAU,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAC;IAAC,SAAS,EAAE,MAAM,CAAA;CAAE,CA0B7D;AAsBD;;;;;;;GAOG;AACH,wBAAgB,gBAAgB,CAC5B,SAAS,EAAE,UAAU,EACrB,kBAAkB,EAAE,2BAA2B,EAC/C,OAAO,CAAC,EAAE,oBAAoB,EAC9B,KAAK,CAAC,EAAE,EAAE,CAAC,eAAe,GAC3B,IAAI,CAsEN;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAC5B,SAAS,EAAE,UAAU,EACrB,UAAU,EAAE,UAAU,EACtB,eAAe,EAAE,iBAAiB,EAClC,uBAAuB,KAAA,EACvB,IAAI,UAAQ,GACb,IAAI,CAsCN;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,UAAU,GAAG,IAAI,CAYzF;AAED;;;;;GAKG;AACH,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,iBAAiB,GAAG,SAAS,GAAG,SAAS,CAMlH"}
|