@sap/ux-specification 1.96.48 → 1.96.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. package/CHANGELOG.md +75 -11
  2. package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
  3. package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
  4. package/dist/documentation/v2/v2-ListReport.html +2 -2
  5. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  6. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  7. package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
  8. package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
  9. package/dist/documentation/v4/v4-FreestylePage.html +2 -2
  10. package/dist/documentation/v4/v4-ListReport.html +2 -2
  11. package/dist/documentation/v4/v4-ObjectPage.html +2 -2
  12. package/dist/index-min.js +137 -137
  13. package/dist/index-min.js.map +4 -4
  14. package/dist/package.json +8 -8
  15. package/dist/schemas/v2/AnalyticalListPageConfig.json +38 -0
  16. package/dist/schemas/v2/ListReportConfig.json +575 -537
  17. package/dist/schemas/v2/ObjectPageConfig.json +72 -4
  18. package/dist/schemas/v2/OverviewPageConfig.json +114 -74
  19. package/dist/schemas/v4/BuildingBlocksConfig.json +8 -0
  20. package/dist/schemas/v4/ListReportConfig.json +77 -5
  21. package/dist/schemas/v4/ObjectPageConfig.json +152 -23
  22. package/dist/src/api.d.ts.map +1 -1
  23. package/dist/src/api.js +6 -3
  24. package/dist/src/api.js.map +1 -1
  25. package/dist/src/sync/common/generate/objectPage.d.ts +4 -3
  26. package/dist/src/sync/common/generate/objectPage.d.ts.map +1 -1
  27. package/dist/src/sync/common/generate/objectPage.js +99 -68
  28. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  29. package/dist/src/sync/common/generate/utils.d.ts.map +1 -1
  30. package/dist/src/sync/common/generate/utils.js +7 -4
  31. package/dist/src/sync/common/generate/utils.js.map +1 -1
  32. package/dist/src/sync/common/importProject.d.ts.map +1 -1
  33. package/dist/src/sync/common/importProject.js +2 -4
  34. package/dist/src/sync/common/importProject.js.map +1 -1
  35. package/dist/src/sync/common/utils.d.ts +27 -3
  36. package/dist/src/sync/common/utils.d.ts.map +1 -1
  37. package/dist/src/sync/common/utils.js +119 -31
  38. package/dist/src/sync/common/utils.js.map +1 -1
  39. package/dist/src/sync/v2/application.js.map +1 -1
  40. package/dist/src/sync/v2/export/controls/Action.d.ts +21 -0
  41. package/dist/src/sync/v2/export/controls/Action.d.ts.map +1 -1
  42. package/dist/src/sync/v2/export/controls/Action.js +93 -1
  43. package/dist/src/sync/v2/export/controls/Action.js.map +1 -1
  44. package/dist/src/sync/v2/export/controls/Card.d.ts +6 -5
  45. package/dist/src/sync/v2/export/controls/Card.d.ts.map +1 -1
  46. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  47. package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js.map +1 -1
  48. package/dist/src/sync/v2/export/export.d.ts.map +1 -1
  49. package/dist/src/sync/v2/export/export.js +3 -1
  50. package/dist/src/sync/v2/export/export.js.map +1 -1
  51. package/dist/src/sync/v2/export/exportPage.d.ts.map +1 -1
  52. package/dist/src/sync/v2/export/exportPage.js.map +1 -1
  53. package/dist/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
  54. package/dist/src/sync/v2/generate/analyticalListReport.js +2 -0
  55. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  56. package/dist/src/sync/v2/generate/generate.d.ts +5 -5
  57. package/dist/src/sync/v2/generate/generate.d.ts.map +1 -1
  58. package/dist/src/sync/v2/generate/generate.js.map +1 -1
  59. package/dist/src/sync/v2/generate/listReport.d.ts.map +1 -1
  60. package/dist/src/sync/v2/generate/listReport.js +5 -2
  61. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  62. package/dist/src/sync/v2/generate/objectPage.d.ts.map +1 -1
  63. package/dist/src/sync/v2/generate/objectPage.js +62 -63
  64. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  65. package/dist/src/sync/v2/generate/utils.d.ts +20 -0
  66. package/dist/src/sync/v2/generate/utils.d.ts.map +1 -1
  67. package/dist/src/sync/v2/generate/utils.js +59 -2
  68. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  69. package/dist/src/sync/v2/import/app/appProvider.d.ts.map +1 -1
  70. package/dist/src/sync/v2/import/app/appProvider.js +9 -10
  71. package/dist/src/sync/v2/import/app/appProvider.js.map +1 -1
  72. package/dist/src/sync/v2/import/common/index.d.ts +9 -0
  73. package/dist/src/sync/v2/import/common/index.d.ts.map +1 -1
  74. package/dist/src/sync/v2/import/common/index.js +39 -13
  75. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  76. package/dist/src/sync/v2/import/pages/analyticalListPage.d.ts.map +1 -1
  77. package/dist/src/sync/v2/import/pages/analyticalListPage.js +4 -4
  78. package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
  79. package/dist/src/sync/v2/import/pages/listReport.d.ts.map +1 -1
  80. package/dist/src/sync/v2/import/pages/listReport.js +5 -6
  81. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  82. package/dist/src/sync/v2/import/pages/objectPage.d.ts.map +1 -1
  83. package/dist/src/sync/v2/import/pages/objectPage.js +81 -33
  84. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  85. package/dist/src/sync/v2/import/utils.d.ts +1 -2
  86. package/dist/src/sync/v2/import/utils.d.ts.map +1 -1
  87. package/dist/src/sync/v2/import/utils.js +1 -2
  88. package/dist/src/sync/v2/import/utils.js.map +1 -1
  89. package/dist/src/sync/v2/types.d.ts +6 -1
  90. package/dist/src/sync/v2/types.d.ts.map +1 -1
  91. package/dist/src/sync/v2/types.js +6 -1
  92. package/dist/src/sync/v2/types.js.map +1 -1
  93. package/dist/src/sync/v4/application.d.ts +10 -0
  94. package/dist/src/sync/v4/application.d.ts.map +1 -1
  95. package/dist/src/sync/v4/application.js +21 -1
  96. package/dist/src/sync/v4/application.js.map +1 -1
  97. package/dist/src/sync/v4/export/controls/FilterBar.d.ts +11 -0
  98. package/dist/src/sync/v4/export/controls/FilterBar.d.ts.map +1 -1
  99. package/dist/src/sync/v4/export/controls/FilterBar.js +77 -1
  100. package/dist/src/sync/v4/export/controls/FilterBar.js.map +1 -1
  101. package/dist/src/sync/v4/export/controls/ObjectPageCustomHeaderSection.d.ts +18 -0
  102. package/dist/src/sync/v4/export/controls/ObjectPageCustomHeaderSection.d.ts.map +1 -0
  103. package/dist/src/sync/v4/export/controls/ObjectPageCustomHeaderSection.js +158 -0
  104. package/dist/src/sync/v4/export/controls/ObjectPageCustomHeaderSection.js.map +1 -0
  105. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.d.ts +3 -2
  106. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.d.ts.map +1 -1
  107. package/dist/src/sync/v4/export/controls/ObjectPageHeaderSection.js.map +1 -1
  108. package/dist/src/sync/v4/export/controls/index.d.ts +1 -0
  109. package/dist/src/sync/v4/export/controls/index.d.ts.map +1 -1
  110. package/dist/src/sync/v4/export/controls/index.js +1 -0
  111. package/dist/src/sync/v4/export/controls/index.js.map +1 -1
  112. package/dist/src/sync/v4/export/export.d.ts.map +1 -1
  113. package/dist/src/sync/v4/export/export.js +66 -45
  114. package/dist/src/sync/v4/export/export.js.map +1 -1
  115. package/dist/src/sync/v4/generate/fpm-custom-page/annotations.js +4 -4
  116. package/dist/src/sync/v4/generate/fpm-custom-page/annotations.js.map +1 -1
  117. package/dist/src/sync/v4/generate/generate.d.ts +3 -3
  118. package/dist/src/sync/v4/generate/generate.d.ts.map +1 -1
  119. package/dist/src/sync/v4/generate/generate.js.map +1 -1
  120. package/dist/src/sync/v4/generate/listReport.d.ts +1 -1
  121. package/dist/src/sync/v4/generate/listReport.d.ts.map +1 -1
  122. package/dist/src/sync/v4/generate/listReport.js +72 -46
  123. package/dist/src/sync/v4/generate/listReport.js.map +1 -1
  124. package/dist/src/sync/v4/generate/objectPage.d.ts.map +1 -1
  125. package/dist/src/sync/v4/generate/objectPage.js +49 -27
  126. package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
  127. package/dist/src/sync/v4/import/fragment.d.ts.map +1 -1
  128. package/dist/src/sync/v4/import/fragment.js.map +1 -1
  129. package/dist/src/sync/v4/import/pages/listReport.d.ts.map +1 -1
  130. package/dist/src/sync/v4/import/pages/listReport.js +39 -2
  131. package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
  132. package/dist/src/sync/v4/import/pages/objectPage.d.ts.map +1 -1
  133. package/dist/src/sync/v4/import/pages/objectPage.js +32 -0
  134. package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
  135. package/dist/src/sync/v4/utils/utils.d.ts +14 -6
  136. package/dist/src/sync/v4/utils/utils.d.ts.map +1 -1
  137. package/dist/src/sync/v4/utils/utils.js +64 -11
  138. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  139. package/package.json +8 -8
@@ -120,6 +120,14 @@
120
120
  "type": "object",
121
121
  "additionalProperties": {
122
122
  "$ref": "#/definitions/ObjectPageHeaderAction"
123
+ },
124
+ "properties": {
125
+ "UpAndDownNavigation": {
126
+ "$ref": "#/definitions/UpAndDownNavigationOP"
127
+ },
128
+ "Share": {
129
+ "$ref": "#/definitions/ShareOP"
130
+ }
123
131
  }
124
132
  },
125
133
  "ObjectPageHeaderAction": {
@@ -142,7 +150,7 @@
142
150
  "type": "string"
143
151
  }
144
152
  ],
145
- "description": "Allows you to define if the action button should be visible on the screen.",
153
+ "description": "Allows you to define if the action button is visible on the screen.",
146
154
  "artifactType": "FlexChange",
147
155
  "controlType": "sap.uxap.ObjectPageHeaderActionButton"
148
156
  },
@@ -194,6 +202,34 @@
194
202
  ],
195
203
  "type": "string"
196
204
  },
205
+ "UpAndDownNavigationOP": {
206
+ "description": "Up and Down Navigation",
207
+ "isViewNode": true,
208
+ "type": "object",
209
+ "properties": {
210
+ "visible": {
211
+ "description": "Allows you to define if the button is visible on the screen.",
212
+ "type": "boolean",
213
+ "artifactType": "FlexChange",
214
+ "controlType": "sap.m.Button"
215
+ }
216
+ },
217
+ "additionalProperties": false
218
+ },
219
+ "ShareOP": {
220
+ "description": "Share",
221
+ "isViewNode": true,
222
+ "type": "object",
223
+ "properties": {
224
+ "visible": {
225
+ "description": "Allows you to define if the button is visible on the screen.",
226
+ "type": "boolean",
227
+ "artifactType": "FlexChange",
228
+ "controlType": "sap.m.Button"
229
+ }
230
+ },
231
+ "additionalProperties": false
232
+ },
197
233
  "ObjectPageLayout": {
198
234
  "description": "Page Layout",
199
235
  "isViewNode": true,
@@ -397,7 +433,7 @@
397
433
  "type": "string"
398
434
  }
399
435
  ],
400
- "description": "Allows you to define if the action button should be visible on the screen.",
436
+ "description": "Allows you to define if the action button is visible on the screen.",
401
437
  "artifactType": "FlexChange",
402
438
  "controlType": "sap.m.Button"
403
439
  },
@@ -700,7 +736,7 @@
700
736
  "type": "string"
701
737
  }
702
738
  ],
703
- "description": "Allows you to define if the action button should be visible on the screen.",
739
+ "description": "Allows you to define if the action button is visible on the screen.",
704
740
  "artifactType": "FlexChange",
705
741
  "controlType": "sap.m.Button"
706
742
  },
@@ -1642,6 +1678,11 @@
1642
1678
  "type": "object",
1643
1679
  "additionalProperties": {
1644
1680
  "$ref": "#/definitions/ObjectPageFooterAction"
1681
+ },
1682
+ "properties": {
1683
+ "SaveAndEdit": {
1684
+ "$ref": "#/definitions/SaveAndEditOP"
1685
+ }
1645
1686
  }
1646
1687
  },
1647
1688
  "ObjectPageFooterAction": {
@@ -1664,7 +1705,7 @@
1664
1705
  "type": "string"
1665
1706
  }
1666
1707
  ],
1667
- "description": "Allows you to define if the action button should be visible on the screen.",
1708
+ "description": "Allows you to define if the action button is visible on the screen.",
1668
1709
  "artifactType": "FlexChange",
1669
1710
  "controlType": "sap.m.Button"
1670
1711
  },
@@ -1695,6 +1736,33 @@
1695
1736
  }
1696
1737
  },
1697
1738
  "additionalProperties": false
1739
+ },
1740
+ "SaveAndEditOP": {
1741
+ "description": "Save and Edit",
1742
+ "isViewNode": true,
1743
+ "type": "object",
1744
+ "properties": {
1745
+ "visible": {
1746
+ "pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#%? _|,<>'()[\\]\\/:=.]+}$",
1747
+ "anyOf": [
1748
+ {
1749
+ "enum": [
1750
+ false,
1751
+ true,
1752
+ "{ui>/editable}",
1753
+ "{= !${ui>/editable}}"
1754
+ ]
1755
+ },
1756
+ {
1757
+ "type": "string"
1758
+ }
1759
+ ],
1760
+ "description": "Allows you to define if the button is visible on the screen.",
1761
+ "artifactType": "FlexChange",
1762
+ "controlType": "sap.m.Button"
1763
+ }
1764
+ },
1765
+ "additionalProperties": false
1698
1766
  }
1699
1767
  },
1700
1768
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -525,19 +525,8 @@
525
525
  "type": "boolean"
526
526
  },
527
527
  "objectStreamCardsSettings": {
528
- "description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards.",
529
- "type": "object",
530
- "properties": {
531
- "showFirstActionInFooter": {
532
- "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.",
533
- "type": "boolean"
534
- },
535
- "annotationPath": {
536
- "description": "Represents the annotation path.",
537
- "type": "string"
538
- }
539
- },
540
- "additionalProperties": false
528
+ "$ref": "#/definitions/ObjectStreamCardsSettingsDef",
529
+ "description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards."
541
530
  },
542
531
  "enableLocaleCurrencyFormatting": {
543
532
  "description": "Represents the flag to indicate the use of object number/smart field.",
@@ -577,6 +566,9 @@
577
566
  "properties": {
578
567
  "plotArea": {
579
568
  "$ref": "#/definitions/PlotAreaDef"
569
+ },
570
+ "timeAxis": {
571
+ "$ref": "#/definitions/TimeAxisDef"
580
572
  }
581
573
  },
582
574
  "additionalProperties": false
@@ -634,23 +626,23 @@
634
626
  "type": "object",
635
627
  "properties": {
636
628
  "cols": {
637
- "description": "Represents the card width calculated based on window width.",
629
+ "description": "Represents the number of the number of grid columns",
638
630
  "type": "number"
639
631
  },
640
632
  "rows": {
641
- "description": "Represents the number of line items to display for table and list cards.",
633
+ "description": "Represents the number of the number of grid rows",
642
634
  "type": "number"
643
635
  },
644
636
  "showOnlyHeader": {
645
- "description": "Set showOnlyHeader to true to render only the card header.",
637
+ "description": "Represents if user wants to show only header part of card in resizable layout",
646
638
  "type": "boolean"
647
639
  },
648
640
  "minimumTitleRow": {
649
- "description": "To show more lines of text in the title you can configure this property (maximum allowed: 3 lines).",
641
+ "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)",
650
642
  "type": "number"
651
643
  },
652
644
  "minimumSubTitleRow": {
653
- "description": "To show more lines of text in the sub-title you can configure this property (maximum allowed: 2 lines).",
645
+ "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)",
654
646
  "type": "number"
655
647
  }
656
648
  },
@@ -692,6 +684,49 @@
692
684
  "title"
693
685
  ]
694
686
  },
687
+ "ObjectStreamCardsSettingsDef": {
688
+ "description": "Represents the Object Stream properties - properties that are passed to the Object Stream cards",
689
+ "type": "object",
690
+ "additionalProperties": {},
691
+ "properties": {
692
+ "showFirstActionInFooter": {
693
+ "description": "Represents the flag to show first action in footer of the Quickview cards",
694
+ "type": "boolean"
695
+ },
696
+ "customActions": {
697
+ "description": "Represents the custom actions in the Quick View Cards",
698
+ "minItems": 1,
699
+ "type": "array",
700
+ "items": [
701
+ {
702
+ "$ref": "#/definitions/CustomActionsSetting"
703
+ }
704
+ ],
705
+ "additionalItems": {
706
+ "$ref": "#/definitions/CustomActionsSetting"
707
+ }
708
+ }
709
+ }
710
+ },
711
+ "CustomActionsSetting": {
712
+ "description": "Represents the properties for the custom actions in the Quick View Cards",
713
+ "type": "object",
714
+ "additionalProperties": {},
715
+ "properties": {
716
+ "text": {
717
+ "description": "Text displayed for extended actions in Quick View",
718
+ "type": "string"
719
+ },
720
+ "press": {
721
+ "description": "Name of the press handler for extended actions in Quick View",
722
+ "type": "string"
723
+ },
724
+ "position": {
725
+ "description": "Position of extended actions in Quick View",
726
+ "type": "number"
727
+ }
728
+ }
729
+ },
695
730
  "CustomCardNavigationType": {
696
731
  "enum": [
697
732
  "chartNav",
@@ -702,23 +737,23 @@
702
737
  "type": "string"
703
738
  },
704
739
  "PlotAreaDef": {
705
- "description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size.",
740
+ "description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
706
741
  "type": "object",
707
742
  "properties": {
708
743
  "isSmoothed": {
709
- "description": "isSmoothed represents whether smoother curves are required or not.",
744
+ "description": "Represents whether smoother curves are required or not",
710
745
  "type": "boolean"
711
746
  },
712
747
  "markerSize": {
713
- "description": "markerSize represents the size of the markers in scatter plots.",
748
+ "description": "Represents the size of the markers in scatter plots",
714
749
  "type": "number"
715
750
  },
716
751
  "dataLabel": {
717
- "description": "dataLabel is a parent property that defines other properties for type.",
752
+ "description": "dataLabel is a parent property that defines other properties for type",
718
753
  "type": "object",
719
754
  "properties": {
720
755
  "type": {
721
- "description": "The data label type defines whether to display percentage values or actual counts in the donut chart.",
756
+ "description": "Defines whether to display percentage values or actual counts in the donut chart",
722
757
  "enum": [
723
758
  "percentage",
724
759
  "value"
@@ -731,32 +766,45 @@
731
766
  },
732
767
  "additionalProperties": false
733
768
  },
769
+ "TimeAxisDef": {
770
+ "description": "Represents the configuration to customize the time axis",
771
+ "type": "object",
772
+ "additionalProperties": {},
773
+ "properties": {
774
+ "levels": {
775
+ "description": "Plot area is a parent property which defines multiple other properties for smoothness and marker size",
776
+ "type": "array",
777
+ "items": {}
778
+ }
779
+ }
780
+ },
734
781
  "TabSetting": {
782
+ "description": "Represents the tab specific properties - properties that are passed to a particular tab in a card",
735
783
  "type": "object",
736
784
  "additionalProperties": {},
737
785
  "properties": {
738
786
  "annotationPath": {
739
- "description": "Represents the annotation path.",
787
+ "description": "Represents the annotation path",
740
788
  "type": "string"
741
789
  },
742
790
  "selectionAnnotationPath": {
743
- "description": "Represents the selection annotation path.",
791
+ "description": "Represents the selection annotation path",
744
792
  "type": "string"
745
793
  },
746
794
  "chartAnnotationPath": {
747
- "description": "Represents the chart annotation path.",
795
+ "description": "Represents the chart annotation path",
748
796
  "type": "string"
749
797
  },
750
798
  "presentationAnnotationPath": {
751
- "description": "Represents the presentation annotation path.",
799
+ "description": "Represents the presentation annotation path",
752
800
  "type": "string"
753
801
  },
754
802
  "dataPointAnnotationPath": {
755
- "description": "Represents the data point annotation path.",
803
+ "description": "Represents the data point annotation path",
756
804
  "type": "string"
757
805
  },
758
806
  "identificationAnnotationPath": {
759
- "description": "Represents the identification annotation path.",
807
+ "description": "Represents the identification annotation path",
760
808
  "type": "string"
761
809
  },
762
810
  "dynamicSubtitleAnnotationPath": {
@@ -768,17 +816,20 @@
768
816
  "type": "string"
769
817
  },
770
818
  "chartProperties": {
771
- "description": "This property is responsible for setting specific chart settings.",
819
+ "description": "This property is responsible for setting specific chart settings",
772
820
  "type": "object",
773
821
  "properties": {
774
822
  "plotArea": {
775
823
  "$ref": "#/definitions/PlotAreaDef"
824
+ },
825
+ "timeAxis": {
826
+ "$ref": "#/definitions/TimeAxisDef"
776
827
  }
777
828
  },
778
829
  "additionalProperties": false
779
830
  },
780
831
  "colorPalette": {
781
- "description": "Represents the configuration to customize the column stacked chart.",
832
+ "description": "Represents the configuration to customize the column stacked chart",
782
833
  "anyOf": [
783
834
  {
784
835
  "type": "array",
@@ -901,23 +952,23 @@
901
952
  "type": "object",
902
953
  "properties": {
903
954
  "cols": {
904
- "description": "Represents the card width calculated based on window width.",
955
+ "description": "Represents the number of the number of grid columns",
905
956
  "type": "number"
906
957
  },
907
958
  "rows": {
908
- "description": "Represents the number of line items to display for table and list cards.",
959
+ "description": "Represents the number of the number of grid rows",
909
960
  "type": "number"
910
961
  },
911
962
  "showOnlyHeader": {
912
- "description": "Set showOnlyHeader to true to render only the card header.",
963
+ "description": "Represents if user wants to show only header part of card in resizable layout",
913
964
  "type": "boolean"
914
965
  },
915
966
  "minimumTitleRow": {
916
- "description": "To show more lines of text in the title you can configure this property (maximum allowed: 3 lines).",
967
+ "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)",
917
968
  "type": "number"
918
969
  },
919
970
  "minimumSubTitleRow": {
920
- "description": "To show more lines of text in the sub-title you can configure this property (maximum allowed: 2 lines).",
971
+ "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)",
921
972
  "type": "number"
922
973
  }
923
974
  },
@@ -1025,19 +1076,8 @@
1025
1076
  "type": "string"
1026
1077
  },
1027
1078
  "objectStreamCardsSettings": {
1028
- "description": "Configures additional settings for the cards displayed in the object stream.",
1029
- "type": "object",
1030
- "properties": {
1031
- "showFirstActionInFooter": {
1032
- "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.",
1033
- "type": "boolean"
1034
- },
1035
- "annotationPath": {
1036
- "description": "Represents the annotation path.",
1037
- "type": "string"
1038
- }
1039
- },
1040
- "additionalProperties": false
1079
+ "$ref": "#/definitions/ObjectStreamCardsSettingsDef",
1080
+ "description": "Configures additional settings for the cards displayed in the object stream."
1041
1081
  },
1042
1082
  "entitySet": {
1043
1083
  "description": "Represents the dominant entity set that will be displayed in the given card.",
@@ -1076,23 +1116,23 @@
1076
1116
  "type": "object",
1077
1117
  "properties": {
1078
1118
  "cols": {
1079
- "description": "Represents the card width calculated based on window width.",
1119
+ "description": "Represents the number of the number of grid columns",
1080
1120
  "type": "number"
1081
1121
  },
1082
1122
  "rows": {
1083
- "description": "Represents the number of line items to display for table and list cards.",
1123
+ "description": "Represents the number of the number of grid rows",
1084
1124
  "type": "number"
1085
1125
  },
1086
1126
  "showOnlyHeader": {
1087
- "description": "Set showOnlyHeader to true to render only the card header.",
1127
+ "description": "Represents if user wants to show only header part of card in resizable layout",
1088
1128
  "type": "boolean"
1089
1129
  },
1090
1130
  "minimumTitleRow": {
1091
- "description": "To show more lines of text in the title you can configure this property (maximum allowed: 3 lines).",
1131
+ "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)",
1092
1132
  "type": "number"
1093
1133
  },
1094
1134
  "minimumSubTitleRow": {
1095
- "description": "To show more lines of text in the sub-title you can configure this property (maximum allowed: 2 lines).",
1135
+ "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)",
1096
1136
  "type": "number"
1097
1137
  }
1098
1138
  },
@@ -1239,23 +1279,23 @@
1239
1279
  "type": "object",
1240
1280
  "properties": {
1241
1281
  "cols": {
1242
- "description": "Represents the card width calculated based on window width.",
1282
+ "description": "Represents the number of the number of grid columns",
1243
1283
  "type": "number"
1244
1284
  },
1245
1285
  "rows": {
1246
- "description": "Represents the number of line items to display for table and list cards.",
1286
+ "description": "Represents the number of the number of grid rows",
1247
1287
  "type": "number"
1248
1288
  },
1249
1289
  "showOnlyHeader": {
1250
- "description": "Set showOnlyHeader to true to render only the card header.",
1290
+ "description": "Represents if user wants to show only header part of card in resizable layout",
1251
1291
  "type": "boolean"
1252
1292
  },
1253
1293
  "minimumTitleRow": {
1254
- "description": "To show more lines of text in the title you can configure this property (maximum allowed: 3 lines).",
1294
+ "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)",
1255
1295
  "type": "number"
1256
1296
  },
1257
1297
  "minimumSubTitleRow": {
1258
- "description": "To show more lines of text in the sub-title you can configure this property (maximum allowed: 2 lines).",
1298
+ "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)",
1259
1299
  "type": "number"
1260
1300
  }
1261
1301
  },
@@ -1464,23 +1504,23 @@
1464
1504
  "type": "object",
1465
1505
  "properties": {
1466
1506
  "cols": {
1467
- "description": "Represents the card width calculated based on window width.",
1507
+ "description": "Represents the number of the number of grid columns",
1468
1508
  "type": "number"
1469
1509
  },
1470
1510
  "rows": {
1471
- "description": "Represents the number of line items to display for table and list cards.",
1511
+ "description": "Represents the number of the number of grid rows",
1472
1512
  "type": "number"
1473
1513
  },
1474
1514
  "showOnlyHeader": {
1475
- "description": "Set showOnlyHeader to true to render only the card header.",
1515
+ "description": "Represents if user wants to show only header part of card in resizable layout",
1476
1516
  "type": "boolean"
1477
1517
  },
1478
1518
  "minimumTitleRow": {
1479
- "description": "To show more lines of text in the title you can configure this property (maximum allowed: 3 lines).",
1519
+ "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)",
1480
1520
  "type": "number"
1481
1521
  },
1482
1522
  "minimumSubTitleRow": {
1483
- "description": "To show more lines of text in the sub-title you can configure this property (maximum allowed: 2 lines).",
1523
+ "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)",
1484
1524
  "type": "number"
1485
1525
  }
1486
1526
  },
@@ -1615,23 +1655,23 @@
1615
1655
  "type": "object",
1616
1656
  "properties": {
1617
1657
  "cols": {
1618
- "description": "Represents the card width calculated based on window width.",
1658
+ "description": "Represents the number of the number of grid columns",
1619
1659
  "type": "number"
1620
1660
  },
1621
1661
  "rows": {
1622
- "description": "Represents the number of line items to display for table and list cards.",
1662
+ "description": "Represents the number of the number of grid rows",
1623
1663
  "type": "number"
1624
1664
  },
1625
1665
  "showOnlyHeader": {
1626
- "description": "Set showOnlyHeader to true to render only the card header.",
1666
+ "description": "Represents if user wants to show only header part of card in resizable layout",
1627
1667
  "type": "boolean"
1628
1668
  },
1629
1669
  "minimumTitleRow": {
1630
- "description": "To show more lines of text in the title you can configure this property (maximum allowed: 3 lines).",
1670
+ "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)",
1631
1671
  "type": "number"
1632
1672
  },
1633
1673
  "minimumSubTitleRow": {
1634
- "description": "To show more lines of text in the sub-title you can configure this property (maximum allowed: 2 lines).",
1674
+ "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)",
1635
1675
  "type": "number"
1636
1676
  }
1637
1677
  },
@@ -1730,23 +1770,23 @@
1730
1770
  "type": "object",
1731
1771
  "properties": {
1732
1772
  "cols": {
1733
- "description": "Represents the card width calculated based on window width.",
1773
+ "description": "Represents the number of the number of grid columns",
1734
1774
  "type": "number"
1735
1775
  },
1736
1776
  "rows": {
1737
- "description": "Represents the number of line items to display for table and list cards.",
1777
+ "description": "Represents the number of the number of grid rows",
1738
1778
  "type": "number"
1739
1779
  },
1740
1780
  "showOnlyHeader": {
1741
- "description": "Set showOnlyHeader to true to render only the card header.",
1781
+ "description": "Represents if user wants to show only header part of card in resizable layout",
1742
1782
  "type": "boolean"
1743
1783
  },
1744
1784
  "minimumTitleRow": {
1745
- "description": "To show more lines of text in the title you can configure this property (maximum allowed: 3 lines).",
1785
+ "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)",
1746
1786
  "type": "number"
1747
1787
  },
1748
1788
  "minimumSubTitleRow": {
1749
- "description": "To show more lines of text in the sub-title you can configure this property (maximum allowed: 2 lines).",
1789
+ "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)",
1750
1790
  "type": "number"
1751
1791
  }
1752
1792
  },
@@ -688,6 +688,14 @@
688
688
  "type": "Property"
689
689
  }
690
690
  },
691
+ "key": {
692
+ "type": "string",
693
+ "description": "Unique identifier of the ActionGroup",
694
+ "artifactType": "XMLProperty",
695
+ "metadata": {
696
+ "type": "Property"
697
+ }
698
+ },
691
699
  "actions": {
692
700
  "type": "object",
693
701
  "additionalProperties": {