@sap/ux-specification 1.90.10 → 1.90.14

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 (170) hide show
  1. package/CHANGELOG.md +88 -0
  2. package/README.md +4 -4
  3. package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
  4. package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
  5. package/dist/documentation/v2/v2-ListReport.html +1 -1
  6. package/dist/documentation/v2/v2-ObjectPage.html +1 -1
  7. package/dist/documentation/v2/v2-OverviewPage.html +1 -1
  8. package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
  9. package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
  10. package/dist/documentation/v4/v4-ListReport.html +1 -1
  11. package/dist/documentation/v4/v4-ObjectPage.html +1 -1
  12. package/dist/index-min.js +1 -1
  13. package/dist/schemas/v2/AnalyticalListPageConfig.json +87 -12
  14. package/dist/schemas/v2/ApplicationV2.json +2 -0
  15. package/dist/schemas/v2/ListReportConfig.json +86 -11
  16. package/dist/schemas/v2/ObjectPageConfig.json +319 -96
  17. package/dist/schemas/v2/OverviewPageConfig.json +14 -34
  18. package/dist/schemas/v4/ApplicationV4.json +2 -0
  19. package/dist/schemas/v4/ObjectPageConfig.json +35 -2
  20. package/dist/specification/v2/index-min.js +1 -1
  21. package/dist/src/apiTypes.d.ts +8 -0
  22. package/dist/src/specification/v2/ApplicationV2.d.ts +2 -0
  23. package/dist/src/specification/v2/controls/AnalyticalListPageChart.d.ts +1 -1
  24. package/dist/src/specification/v2/controls/Card.d.ts +9 -9
  25. package/dist/src/specification/v2/controls/Card.js.map +1 -1
  26. package/dist/src/specification/v2/controls/Field.d.ts +10 -0
  27. package/dist/src/specification/v2/controls/{DataField.js → Field.js} +1 -1
  28. package/dist/src/specification/v2/controls/Field.js.map +1 -0
  29. package/dist/src/specification/v2/controls/FormAction.d.ts +43 -0
  30. package/dist/src/specification/v2/controls/FormAction.js +20 -0
  31. package/dist/src/specification/v2/controls/FormAction.js.map +1 -0
  32. package/dist/src/specification/v2/controls/ObjectPageChart.d.ts +1 -1
  33. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +11 -0
  34. package/dist/src/specification/v2/controls/ObjectPageFooter.js +3 -0
  35. package/dist/src/specification/v2/controls/ObjectPageFooter.js.map +1 -0
  36. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +4 -5
  37. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.d.ts +21 -5
  38. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js +0 -5
  39. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js.map +1 -1
  40. package/dist/src/specification/v2/controls/ObjectPageSection.d.ts +25 -15
  41. package/dist/src/specification/v2/controls/ObjectPageSection.js.map +1 -1
  42. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +12 -5
  43. package/dist/src/specification/v2/controls/ObjectPageTable.js.map +1 -1
  44. package/dist/src/specification/v2/controls/Table.d.ts +4 -3
  45. package/dist/src/specification/v2/controls/ToolBar.d.ts +2 -6
  46. package/dist/src/specification/v2/controls/index.d.ts +4 -1
  47. package/dist/src/specification/v2/controls/index.js +1 -1
  48. package/dist/src/specification/v2/controls/index.js.map +1 -1
  49. package/dist/src/specification/v2/pages/ObjectPageConfig.d.ts +2 -1
  50. package/dist/src/specification/v4/ApplicationV4.d.ts +2 -0
  51. package/dist/src/specification/v4/controls/ObjectPageFooter.d.ts +11 -0
  52. package/dist/src/specification/v4/controls/ObjectPageFooter.js +3 -0
  53. package/dist/src/specification/v4/controls/ObjectPageFooter.js.map +1 -0
  54. package/dist/src/specification/v4/controls/ObjectPageHeader.d.ts +6 -1
  55. package/dist/src/specification/v4/controls/index.d.ts +1 -0
  56. package/dist/src/specification/v4/pages/ObjectPageConfig.d.ts +2 -1
  57. package/dist/src/specification/v4/webapp/manifest/sapUi5.d.ts +2 -1
  58. package/dist/src/specification/v4/webapp/manifest/sapUi5.js.map +1 -1
  59. package/dist/src/sync/common/decoration/control.d.ts +8 -1
  60. package/dist/src/sync/common/decoration/control.js +58 -17
  61. package/dist/src/sync/common/decoration/control.js.map +1 -1
  62. package/dist/src/sync/common/generate/objectPage.d.ts +41 -1
  63. package/dist/src/sync/common/generate/objectPage.js +214 -25
  64. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  65. package/dist/src/sync/common/import/utils.d.ts +6 -0
  66. package/dist/src/sync/common/import/utils.js +21 -0
  67. package/dist/src/sync/common/import/utils.js.map +1 -1
  68. package/dist/src/sync/common/importProject.js +64 -62
  69. package/dist/src/sync/common/importProject.js.map +1 -1
  70. package/dist/src/sync/common/types.d.ts +9 -2
  71. package/dist/src/sync/common/types.js +8 -0
  72. package/dist/src/sync/common/types.js.map +1 -1
  73. package/dist/src/sync/common/utils.d.ts +4 -3
  74. package/dist/src/sync/common/utils.js +86 -91
  75. package/dist/src/sync/common/utils.js.map +1 -1
  76. package/dist/src/sync/v2/application.d.ts +1 -0
  77. package/dist/src/sync/v2/application.js +3 -0
  78. package/dist/src/sync/v2/application.js.map +1 -1
  79. package/dist/src/sync/v2/export/controls/Card.d.ts +4 -3
  80. package/dist/src/sync/v2/export/controls/Card.js +16 -9
  81. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  82. package/dist/src/sync/v2/export/controls/Field.d.ts +4 -0
  83. package/dist/src/sync/v2/export/controls/{DataField.js → Field.js} +7 -7
  84. package/dist/src/sync/v2/export/controls/Field.js.map +1 -0
  85. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +1 -2
  86. package/dist/src/sync/v2/export/controls/FilterBar.js +7 -9
  87. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  88. package/dist/src/sync/v2/export/controls/FormAction.d.ts +15 -0
  89. package/dist/src/sync/v2/export/controls/FormAction.js +133 -0
  90. package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -0
  91. package/dist/src/sync/v2/export/controls/Fragment.js +5 -6
  92. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  93. package/dist/src/sync/v2/export/controls/ObjectPageChart.d.ts +4 -1
  94. package/dist/src/sync/v2/export/controls/ObjectPageChart.js +13 -0
  95. package/dist/src/sync/v2/export/controls/ObjectPageChart.js.map +1 -1
  96. package/dist/src/sync/v2/export/controls/ObjectPageHeader.js +1 -1
  97. package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +1 -1
  98. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +6 -2
  99. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +43 -4
  100. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
  101. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +32 -0
  102. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +144 -0
  103. package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -0
  104. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +5 -4
  105. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +19 -7
  106. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  107. package/dist/src/sync/v2/export/controls/Table.d.ts +12 -4
  108. package/dist/src/sync/v2/export/controls/Table.js +87 -40
  109. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  110. package/dist/src/sync/v2/export/controls/TableColumn.js +1 -1
  111. package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
  112. package/dist/src/sync/v2/export/controls/index.d.ts +3 -1
  113. package/dist/src/sync/v2/export/controls/index.js +3 -1
  114. package/dist/src/sync/v2/export/controls/index.js.map +1 -1
  115. package/dist/src/sync/v2/export/export.js +129 -91
  116. package/dist/src/sync/v2/export/export.js.map +1 -1
  117. package/dist/src/sync/v2/generate/analyticalListReport.d.ts +3 -9
  118. package/dist/src/sync/v2/generate/analyticalListReport.js +15 -16
  119. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  120. package/dist/src/sync/v2/generate/generate.js +28 -6
  121. package/dist/src/sync/v2/generate/generate.js.map +1 -1
  122. package/dist/src/sync/v2/generate/listReport.d.ts +3 -10
  123. package/dist/src/sync/v2/generate/listReport.js +24 -30
  124. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  125. package/dist/src/sync/v2/generate/objectPage.d.ts +3 -10
  126. package/dist/src/sync/v2/generate/objectPage.js +210 -145
  127. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  128. package/dist/src/sync/v2/generate/utils.d.ts +1 -2
  129. package/dist/src/sync/v2/generate/utils.js +7 -2
  130. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  131. package/dist/src/sync/v2/import/pages/listReport.js +6 -5
  132. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  133. package/dist/src/sync/v2/import/pages/objectPage.js +163 -92
  134. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  135. package/dist/src/sync/v2/import/pages/overviewPage.js +1 -0
  136. package/dist/src/sync/v2/import/pages/overviewPage.js.map +1 -1
  137. package/dist/src/sync/v2/types.d.ts +17 -0
  138. package/dist/src/sync/v2/types.js +16 -0
  139. package/dist/src/sync/v2/types.js.map +1 -1
  140. package/dist/src/sync/v4/application.js +10 -10
  141. package/dist/src/sync/v4/application.js.map +1 -1
  142. package/dist/src/sync/v4/export/controls/ObjectPageTable.js +4 -3
  143. package/dist/src/sync/v4/export/controls/ObjectPageTable.js.map +1 -1
  144. package/dist/src/sync/v4/export/controls/Table.js +4 -3
  145. package/dist/src/sync/v4/export/controls/Table.js.map +1 -1
  146. package/dist/src/sync/v4/export/export.js +156 -134
  147. package/dist/src/sync/v4/export/export.js.map +1 -1
  148. package/dist/src/sync/v4/export/manifest.js +96 -76
  149. package/dist/src/sync/v4/export/manifest.js.map +1 -1
  150. package/dist/src/sync/v4/generate/generate.js +10 -2
  151. package/dist/src/sync/v4/generate/generate.js.map +1 -1
  152. package/dist/src/sync/v4/generate/objectPage.d.ts +3 -6
  153. package/dist/src/sync/v4/generate/objectPage.js +92 -36
  154. package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
  155. package/dist/src/sync/v4/import/app/appProvider.js +108 -80
  156. package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
  157. package/dist/src/sync/v4/import/fragment.js +41 -46
  158. package/dist/src/sync/v4/import/fragment.js.map +1 -1
  159. package/dist/src/sync/v4/import/pages/listReport.js +1 -1
  160. package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
  161. package/dist/src/sync/v4/utils/StableIdHelper.d.ts +0 -3
  162. package/dist/src/sync/v4/utils/StableIdHelper.js +9 -11
  163. package/dist/src/sync/v4/utils/StableIdHelper.js.map +1 -1
  164. package/dist/src/sync/v4/utils/utils.js +2 -2
  165. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  166. package/package.json +4 -5
  167. package/dist/src/specification/v2/controls/DataField.d.ts +0 -7
  168. package/dist/src/specification/v2/controls/DataField.js.map +0 -1
  169. package/dist/src/sync/v2/export/controls/DataField.d.ts +0 -4
  170. package/dist/src/sync/v2/export/controls/DataField.js.map +0 -1
@@ -709,7 +709,7 @@
709
709
  ]
710
710
  },
711
711
  "requireAppAuthorization": {
712
- "description": "Used to set authorization check at card level",
712
+ "description": "Define an authorization check at card level",
713
713
  "type": "string"
714
714
  }
715
715
  },
@@ -924,7 +924,7 @@
924
924
  ]
925
925
  },
926
926
  "requireAppAuthorization": {
927
- "description": "Used to set authorization check at card level",
927
+ "description": "Define an authorization check at card level",
928
928
  "type": "string"
929
929
  }
930
930
  },
@@ -1043,20 +1043,6 @@
1043
1043
  "$ref": "#/definitions/StackCardSettings",
1044
1044
  "description": "Represents the properties that are passed to the stack card.",
1045
1045
  "artifactType": "Manifest"
1046
- },
1047
- "tabs": {
1048
- "description": "Represents the Stack Card with view switch control.",
1049
- "type": "array",
1050
- "items": [
1051
- {
1052
- "$ref": "#/definitions/TabSetting"
1053
- }
1054
- ],
1055
- "minItems": 1,
1056
- "additionalItems": {
1057
- "$ref": "#/definitions/TabSetting"
1058
- },
1059
- "artifactType": "Manifest"
1060
1046
  }
1061
1047
  },
1062
1048
  "additionalProperties": false,
@@ -1165,7 +1151,7 @@
1165
1151
  ]
1166
1152
  },
1167
1153
  "requireAppAuthorization": {
1168
- "description": "Used to set authorization check at card level",
1154
+ "description": "Define an authorization check at card level",
1169
1155
  "type": "string"
1170
1156
  }
1171
1157
  },
@@ -1199,20 +1185,6 @@
1199
1185
  "$ref": "#/definitions/LinkListCardSettings",
1200
1186
  "description": "Represents the properties that are passed to the link list card.",
1201
1187
  "artifactType": "Manifest"
1202
- },
1203
- "tabs": {
1204
- "description": "Represents the card with view switch control.",
1205
- "type": "array",
1206
- "items": [
1207
- {
1208
- "$ref": "#/definitions/TabSetting"
1209
- }
1210
- ],
1211
- "minItems": 1,
1212
- "additionalItems": {
1213
- "$ref": "#/definitions/TabSetting"
1214
- },
1215
- "artifactType": "Manifest"
1216
1188
  }
1217
1189
  },
1218
1190
  "additionalProperties": false,
@@ -1310,6 +1282,14 @@
1310
1282
  "items": {
1311
1283
  "$ref": "#/definitions/StaticContent"
1312
1284
  }
1285
+ },
1286
+ "requireAppAuthorization": {
1287
+ "description": "Define an authorization check at card level",
1288
+ "type": "string"
1289
+ },
1290
+ "annotationPath": {
1291
+ "description": "Represents the annotation path.",
1292
+ "type": "string"
1313
1293
  }
1314
1294
  },
1315
1295
  "additionalProperties": false,
@@ -1541,7 +1521,7 @@
1541
1521
  ]
1542
1522
  },
1543
1523
  "requireAppAuthorization": {
1544
- "description": "Used to set authorization check at card level",
1524
+ "description": "Define an authorization check at card level",
1545
1525
  "type": "string"
1546
1526
  }
1547
1527
  },
@@ -1692,7 +1672,7 @@
1692
1672
  ]
1693
1673
  },
1694
1674
  "requireAppAuthorization": {
1695
- "description": "Used to set authorization check at card level",
1675
+ "description": "Define an authorization check at card level",
1696
1676
  "type": "string"
1697
1677
  }
1698
1678
  },
@@ -1793,7 +1773,7 @@
1793
1773
  ]
1794
1774
  },
1795
1775
  "requireAppAuthorization": {
1796
- "description": "Used to set authorization check at card level",
1776
+ "description": "Define an authorization check at card level",
1797
1777
  "type": "string"
1798
1778
  }
1799
1779
  },
@@ -27,10 +27,12 @@
27
27
  "properties": {
28
28
  "title": {
29
29
  "description": "To change the application header, in your project artifacts, change i18n property file for your app under webapp/i18n/i18n.properties ->appTitle. Then, refer to the title as {{appTitle}} in the sap.app section of the manifest file.",
30
+ "i18nClassification": "TIT: Title of the application",
30
31
  "type": "string"
31
32
  },
32
33
  "description": {
33
34
  "description": "To change the application header, in your project artifacts, change i18n property file for your app under webapp/i18n/i18n.properties ->appDescription. Then, refer to the description as {{appDescription}} in the sap.app section of the manifest file.",
35
+ "i18nClassification": "TIT: Description of the application",
34
36
  "type": "string"
35
37
  },
36
38
  "flexibleColumnLayout": {
@@ -2,7 +2,7 @@
2
2
  "type": "object",
3
3
  "properties": {
4
4
  "header": {
5
- "$ref": "#/definitions/ObjectPageHeader"
5
+ "$ref": "#/definitions/ObjectPageHeader<GenericActions>"
6
6
  },
7
7
  "layout": {
8
8
  "$ref": "#/definitions/ObjectPageLayout"
@@ -22,13 +22,16 @@
22
22
  }
23
23
  ]
24
24
  },
25
+ "footer": {
26
+ "$ref": "#/definitions/ObjectPageFooter<GenericFooterActions>"
27
+ },
25
28
  "$schema": {
26
29
  "type": "string"
27
30
  }
28
31
  },
29
32
  "additionalProperties": false,
30
33
  "definitions": {
31
- "ObjectPageHeader": {
34
+ "ObjectPageHeader<GenericActions>": {
32
35
  "description": "Header",
33
36
  "isViewNode": true,
34
37
  "type": "object",
@@ -53,12 +56,23 @@
53
56
  "type": "boolean",
54
57
  "artifactType": "Manifest"
55
58
  },
59
+ "actions": {
60
+ "$ref": "#/definitions/GenericActions"
61
+ },
56
62
  "sections": {
57
63
  "$ref": "#/definitions/HeaderSections"
58
64
  }
59
65
  },
60
66
  "additionalProperties": false
61
67
  },
68
+ "GenericActions": {
69
+ "type": "object",
70
+ "additionalProperties": {
71
+ "type": "object",
72
+ "properties": {},
73
+ "additionalProperties": true
74
+ }
75
+ },
62
76
  "HeaderSections": {
63
77
  "description": "Header Sections",
64
78
  "isViewNode": true,
@@ -705,6 +719,25 @@
705
719
  "Before"
706
720
  ],
707
721
  "type": "string"
722
+ },
723
+ "ObjectPageFooter<GenericFooterActions>": {
724
+ "description": "Footer",
725
+ "isViewNode": true,
726
+ "type": "object",
727
+ "properties": {
728
+ "actions": {
729
+ "$ref": "#/definitions/GenericFooterActions"
730
+ }
731
+ },
732
+ "additionalProperties": false
733
+ },
734
+ "GenericFooterActions": {
735
+ "type": "object",
736
+ "additionalProperties": {
737
+ "type": "object",
738
+ "properties": {},
739
+ "additionalProperties": true
740
+ }
708
741
  }
709
742
  },
710
743
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -1 +1 @@
1
- (()=>{"use strict";var e={6442:(e,a)=>{var t;Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.OData="OData",e.ODataAnnotation="ODataAnnotation"}(a.DataSourceType||(a.DataSourceType={})),function(e){e.ui="sap.ui",e.app="sap.app",e.generic="sap.ui.generic.app",e.ovp="sap.ovp",e.ui5="sap.ui5"}(t=a.ManifestSection||(a.ManifestSection={})),a.GENERICAPPSETTINGS=`${t.generic}/settings`},3404:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(6442)),n(t(5281))},5281:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),a.FIORI_FCL_ROOT_VIEW_NAME="sap.fe.templates.RootContainer.view.Fcl",a.FIORI_FCL_ROOT_ID="appRootView",function(e){e.XML="XML",e.HTML="HTML",e.JS="JS",e.JSON="JSON"}(a.ViewTypes||(a.ViewTypes={})),a.SAPUI5_VIEW_CLASS="sap.ui.core.mvc.View",a.SAPUI5_FRAGMENT_CLASS="sap.ui.core.Fragment"},3846:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(a.TableColumnVerticalAlignment||(a.TableColumnVerticalAlignment={}))},2387:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.bar="bar",e.column="column",e.line="line",e.combination="combination",e.pie="pie",e.donut="donut",e.scatter="scatter",e.bubble="bubble",e.heatmap="heatmap",e.bullet="bullet",e.verticalBullet="vertical_bullet",e.stackedBar="stacked_bar",e.stackedColumn="stacked_column",e.stackedCombination="stacked_combination",e.horizontalStackedCombination="horizontal_stacked_combination",e.dualBar="dual_bar",e.dualColumn="dual_column",e.dualLine="dual_line",e.dualStackedBar="dual_stacked_bar",e.dualStackedColumn="dual_stacked_column",e.dualCombination="dual_combination",e.dualStackedCombination="dual_stacked_combination",e.dualHorizontalCombination="dual_horizontal_combination",e.dualHorizontalStackedCombination="dual_horizontal_stacked_combination",e.hundredStackedBar="100_stacked_bar",e.hundredStackedColumn="100_stacked_column",e.hundredDualStackedBar="100_dual_stacked_bar",e.hundredDualStackedColumn="100_dual_stacked_column",e.waterfall="waterfall",e.horizontalWaterfall="horizontal_waterfall"}(a.ChartType||(a.ChartType={}))},6745:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.cardBubble="cardBubble",e.cardchartsline="cardchartsline",e.cardchartsdonut="cardchartsdonut"}(a.ChartCardType||(a.ChartCardType={})),function(e){e.analytical="sap.ovp.cards.charts.analytical",e.analyticalv4="sap.ovp.cards.v4.charts.analytical",e.list="sap.ovp.cards.list",e.listv4="sap.ovp.cards.v4.list",e.linklist="sap.ovp.cards.linklist",e.linklistv4="sap.ovp.cards.v4.linklist",e.table="sap.ovp.cards.table",e.tablev4="sap.ovp.cards.v4.table",e.stack="sap.ovp.cards.stack"}(a.CardTemplateType||(a.CardTemplateType={})),a.cardTemplateTypeMap={"sap.ovp.cards.charts.analytical":"AnalyticalCard","sap.ovp.cards.v4.charts.analytical":"AnalyticalCard","sap.ovp.cards.list":"ListCard","sap.ovp.cards.v4.list":"ListCard","sap.ovp.cards.linklist":"LinklistCard","sap.ovp.cards.v4.linklist":"LinklistCard","sap.ovp.cards.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(a.CardSettingsType||(a.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(a.MeasureAggregateValues||(a.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(a.ListFlavorType||(a.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(a.ListTypeType||(a.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(a.SortOrderType||(a.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(a.LinkListFlavorType||(a.LinkListFlavorType={}))},2922:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(a.DateRangeType||(a.DateRangeType={}))},3872:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Circle="Circle",e.Square="Square"}(a.AvatarShape||(a.AvatarShape={}))},163:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Editable="{ui>/editable}",e.NotEditable="{= !${ui>/editable}}"}(a.BindingValue||(a.BindingValue={}))},7876:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(a.SectionPosition||(a.SectionPosition={})),function(e){e.XML="XML"}(a.ExtensionFragmentTypes||(a.ExtensionFragmentTypes={}))},9649:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.inline="inline"}(a.CreateMode||(a.CreateMode={}))},2906:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.initial="Initial",e.left="Left",e.center="Center",e.right="Right",e.begin="Begin",e.end="End"}(a.HAlign||(a.HAlign={})),function(e){e.XML="XML"}(a.customColumnViewTypes||(a.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(a.TableTypeV2||(a.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(a.TableColumnExtensionTypeV2||(a.TableColumnExtensionTypeV2={})),function(e){e.Block="Block",e.GridLarge="GridLarge",e.GridSmall="GridSmall"}(a.PopinLayout||(a.PopinLayout={})),function(e){e.extension="extension"}(a.Strategy||(a.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(a.DefaultContentView||(a.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(a.DefaultFilterMode||(a.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(a.LoadDataOnAppLaunchSettings||(a.LoadDataOnAppLaunchSettings={}))},6402:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(2922)),n(t(2906)),n(t(3872)),n(t(163)),n(t(7876)),n(t(6745)),n(t(9649)),n(t(2387))},390:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(3800)),n(t(6402)),n(t(9809)),n(t(3846))},2505:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.fixed="fixed",e.resizable="resizable"}(a.ContainerLayoutType||(a.ContainerLayoutType={}))},3800:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}(t(2505))},9809:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}(t(4149))},4149:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(4867)),n(t(1374))},1374:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0});t(5877);a.SAPUI5_VIEW_EXTENSION="sap.ui.viewExtensions",a.SAPUI5_CONTROLLER_EXTENSION="sap.ui.controllerExtensions",a.SAPUI5_VIEW_EXTENSION_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage.view.Details",a.SAPUI5_VIEW_EXTENSION_LIST_REPORT="sap.suite.ui.generic.template.ListReport.view.ListReport",a.SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE="sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage"},4867:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),a.FE_TEMPLATE_V2="sap.suite.ui.generic.template",a.FE_TEMPLATE_V2_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage",a.FE_TEMPLATE_V2_LIST_REPORT="sap.suite.ui.generic.template.ListReport",a.FE_TEMPLATE_V2_ALP="sap.suite.ui.generic.template.AnalyticalListPage"},9734:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e["not-adaptable-visibility"]="not-adaptable-visibility"}(a.DesigntimeValues||(a.DesigntimeValues={}))},8554:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Tabs="Tabs",e.Page="Page"}(a.SectionLayoutType||(a.SectionLayoutType={}))},4685:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before"}(a.SectionPosition||(a.SectionPosition={})),function(e){e.XML="XML"}(a.CustomSectionViewTypesV4||(a.CustomSectionViewTypesV4={}))},7093:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Multi="Multi",e.None="None",e.Single="Single",e.Auto="Auto"}(a.SelectionMode||(a.SelectionMode={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable"}(a.TableTypeV4||(a.TableTypeV4={})),function(e){e.NewPage="NewPage",e.Inline="Inline",e.CreationRow="CreationRow"}(a.TableCreationModeType||(a.TableCreationModeType={})),function(e){e.Disabled="Disabled",e.Enabled="Enabled",e.Auto="Auto"}(a.InitialLoadType||(a.InitialLoadType={}))},8452:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.single="single",e.multi="multi"}(a.SelectType||(a.SelectType={}))},1709:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(7093)),n(t(8452)),n(t(9734)),n(t(8554)),n(t(4685))},5877:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(7005)),n(t(1709)),n(t(5113))},5759:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control",e.Page="Page"}(a.VariantManagementTypeListReport||(a.VariantManagementTypeListReport={}))},8999:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control"}(a.VariantManagementTypeObjectPage||(a.VariantManagementTypeObjectPage={}))},7005:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(8999)),n(t(5759))},5113:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}(t(6568))},5817:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before",e.End="End"}(a.Placement||(a.Placement={})),function(e){e.Default="Default",e.Adaptation="Adaptation",e.Hidden="Hidden"}(a.Availability||(a.Availability={}))},6568:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(8778)),n(t(8741)),n(t(3404)),n(t(5817))},8741:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),a.FIORI_FCL_ROUTER_CLASS="sap.f.routing.Router",function(e){e.BeginColumnPages="beginColumnPages",e.MidColumnPages="midColumnPages",e.EndColumnPages="endColumnPages"}(a.FlexibleColumnLayoutAggregations||(a.FlexibleColumnLayoutAggregations={})),a.SAPUI5_DEPENDENCY_LIB_SAP_F="sap.f"},8778:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),a.FE_TEMPLATE_V4="sap.fe.templates",a.FE_TEMPLATE_V4_CUSTOM_PAGE="sap.fe.core.fpm",a.FE_TEMPLATE_V4_OBJECT_PAGE="sap.fe.templates.ObjectPage",a.FE_TEMPLATE_V4_LIST_REPORT="sap.fe.templates.ListReport",a.FE_TEMPLATE_V4_ALP="sap.fe.templates.AnalyticalListPage",a.SAPUI5_FRAGMENT_TYPE_V4="XMLFragment",function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet"}(a.SectionPositionV4||(a.SectionPositionV4={}))}},a={};var t=function t(n){var i=a[n];if(void 0!==i)return i.exports;var o=a[n]={exports:{}};return e[n](o,o.exports,t),o.exports}(390);module.exports=t})();
1
+ (()=>{"use strict";var e={6442:(e,t)=>{var a;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.OData="OData",e.ODataAnnotation="ODataAnnotation"}(t.DataSourceType||(t.DataSourceType={})),function(e){e.ui="sap.ui",e.app="sap.app",e.generic="sap.ui.generic.app",e.ovp="sap.ovp",e.ui5="sap.ui5"}(a=t.ManifestSection||(t.ManifestSection={})),t.GENERICAPPSETTINGS=`${a.generic}/settings`},3404:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(6442)),n(a(5281))},5281:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROOT_VIEW_NAME="sap.fe.templates.RootContainer.view.Fcl",t.FIORI_FCL_ROOT_ID="appRootView",function(e){e.XML="XML",e.HTML="HTML",e.JS="JS",e.JSON="JSON"}(t.ViewTypes||(t.ViewTypes={})),t.SAPUI5_VIEW_CLASS="sap.ui.core.mvc.View",t.SAPUI5_FRAGMENT_CLASS="sap.ui.core.Fragment"},3846:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(t.TableColumnVerticalAlignment||(t.TableColumnVerticalAlignment={}))},2387:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.bar="bar",e.column="column",e.line="line",e.combination="combination",e.pie="pie",e.donut="donut",e.scatter="scatter",e.bubble="bubble",e.heatmap="heatmap",e.bullet="bullet",e.verticalBullet="vertical_bullet",e.stackedBar="stacked_bar",e.stackedColumn="stacked_column",e.stackedCombination="stacked_combination",e.horizontalStackedCombination="horizontal_stacked_combination",e.dualBar="dual_bar",e.dualColumn="dual_column",e.dualLine="dual_line",e.dualStackedBar="dual_stacked_bar",e.dualStackedColumn="dual_stacked_column",e.dualCombination="dual_combination",e.dualStackedCombination="dual_stacked_combination",e.dualHorizontalCombination="dual_horizontal_combination",e.dualHorizontalStackedCombination="dual_horizontal_stacked_combination",e.hundredStackedBar="100_stacked_bar",e.hundredStackedColumn="100_stacked_column",e.hundredDualStackedBar="100_dual_stacked_bar",e.hundredDualStackedColumn="100_dual_stacked_column",e.waterfall="waterfall",e.horizontalWaterfall="horizontal_waterfall"}(t.ChartType||(t.ChartType={}))},6745:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.cardBubble="cardBubble",e.cardchartsline="cardchartsline",e.cardchartsdonut="cardchartsdonut"}(t.ChartCardType||(t.ChartCardType={})),function(e){e.analytical="sap.ovp.cards.charts.analytical",e.analyticalv4="sap.ovp.cards.v4.charts.analytical",e.list="sap.ovp.cards.list",e.listv4="sap.ovp.cards.v4.list",e.linklist="sap.ovp.cards.linklist",e.linklistv4="sap.ovp.cards.v4.linklist",e.table="sap.ovp.cards.table",e.tablev4="sap.ovp.cards.v4.table",e.stack="sap.ovp.cards.stack"}(t.CardTemplateType||(t.CardTemplateType={})),t.cardTemplateTypeMap={"sap.ovp.cards.charts.analytical":"AnalyticalCard","sap.ovp.cards.v4.charts.analytical":"AnalyticalCard","sap.ovp.cards.list":"ListCard","sap.ovp.cards.v4.list":"ListCard","sap.ovp.cards.linklist":"LinklistCard","sap.ovp.cards.v4.linklist":"LinklistCard","sap.ovp.cards.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(t.CardSettingsType||(t.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(t.MeasureAggregateValues||(t.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(t.ListFlavorType||(t.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(t.ListTypeType||(t.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(t.SortOrderType||(t.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(t.LinkListFlavorType||(t.LinkListFlavorType={}))},2922:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(t.DateRangeType||(t.DateRangeType={}))},247:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Accept="Accept",e.Attention="Attention",e.Back="Back",e.Critical="Critical",e.Default="Default",e.Emphasized="Emphasized",e.Ghost="Ghost",e.Negative="Negative",e.Neutral="Neutral",e.Reject="Reject",e.Success="Success",e.Transparent="Transparent",e.Unstyled="Unstyled",e.Up="Up"}(t.ButtonType||(t.ButtonType={}))},3872:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Circle="Circle",e.Square="Square"}(t.AvatarShape||(t.AvatarShape={}))},7876:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.ExtensionFragmentTypes||(t.ExtensionFragmentTypes={}))},9649:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.inline="inline"}(t.CreateMode||(t.CreateMode={}))},2906:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.initial="Initial",e.left="Left",e.center="Center",e.right="Right",e.begin="Begin",e.end="End"}(t.HAlign||(t.HAlign={})),function(e){e.XML="XML"}(t.customColumnViewTypes||(t.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(t.TableTypeV2||(t.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(t.TableColumnExtensionTypeV2||(t.TableColumnExtensionTypeV2={})),function(e){e.Block="Block",e.GridLarge="GridLarge",e.GridSmall="GridSmall"}(t.PopinLayout||(t.PopinLayout={})),function(e){e.extension="extension"}(t.Strategy||(t.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(t.DefaultContentView||(t.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(t.DefaultFilterMode||(t.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(t.LoadDataOnAppLaunchSettings||(t.LoadDataOnAppLaunchSettings={}))},6402:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(2922)),n(a(2906)),n(a(3872)),n(a(7876)),n(a(6745)),n(a(9649)),n(a(2387)),n(a(247))},390:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(3800)),n(a(6402)),n(a(9809)),n(a(3846))},2505:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.fixed="fixed",e.resizable="resizable"}(t.ContainerLayoutType||(t.ContainerLayoutType={}))},3800:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(2505))},9809:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(4149))},4149:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(4867)),n(a(1374))},1374:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0});a(5877);t.SAPUI5_VIEW_EXTENSION="sap.ui.viewExtensions",t.SAPUI5_CONTROLLER_EXTENSION="sap.ui.controllerExtensions",t.SAPUI5_VIEW_EXTENSION_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage.view.Details",t.SAPUI5_VIEW_EXTENSION_LIST_REPORT="sap.suite.ui.generic.template.ListReport.view.ListReport",t.SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE="sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage"},4867:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V2="sap.suite.ui.generic.template",t.FE_TEMPLATE_V2_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage",t.FE_TEMPLATE_V2_LIST_REPORT="sap.suite.ui.generic.template.ListReport",t.FE_TEMPLATE_V2_ALP="sap.suite.ui.generic.template.AnalyticalListPage"},9734:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e["not-adaptable-visibility"]="not-adaptable-visibility"}(t.DesigntimeValues||(t.DesigntimeValues={}))},8554:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Tabs="Tabs",e.Page="Page"}(t.SectionLayoutType||(t.SectionLayoutType={}))},4685:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.CustomSectionViewTypesV4||(t.CustomSectionViewTypesV4={}))},7093:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Multi="Multi",e.None="None",e.Single="Single",e.Auto="Auto"}(t.SelectionMode||(t.SelectionMode={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable"}(t.TableTypeV4||(t.TableTypeV4={})),function(e){e.NewPage="NewPage",e.Inline="Inline",e.CreationRow="CreationRow"}(t.TableCreationModeType||(t.TableCreationModeType={})),function(e){e.Disabled="Disabled",e.Enabled="Enabled",e.Auto="Auto"}(t.InitialLoadType||(t.InitialLoadType={}))},8452:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.single="single",e.multi="multi"}(t.SelectType||(t.SelectType={}))},1709:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(7093)),n(a(8452)),n(a(9734)),n(a(8554)),n(a(4685))},5877:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(7005)),n(a(1709)),n(a(5113))},5759:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control",e.Page="Page"}(t.VariantManagementTypeListReport||(t.VariantManagementTypeListReport={}))},8999:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control"}(t.VariantManagementTypeObjectPage||(t.VariantManagementTypeObjectPage={}))},7005:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8999)),n(a(5759))},5113:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(6568))},5817:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before",e.End="End"}(t.Placement||(t.Placement={})),function(e){e.Default="Default",e.Adaptation="Adaptation",e.Hidden="Hidden"}(t.Availability||(t.Availability={}))},6568:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8778)),n(a(8741)),n(a(3404)),n(a(5817))},8741:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROUTER_CLASS="sap.f.routing.Router",function(e){e.BeginColumnPages="beginColumnPages",e.MidColumnPages="midColumnPages",e.EndColumnPages="endColumnPages"}(t.FlexibleColumnLayoutAggregations||(t.FlexibleColumnLayoutAggregations={})),t.SAPUI5_DEPENDENCY_LIB_SAP_F="sap.f"},8778:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V4="sap.fe.templates",t.FE_TEMPLATE_V4_CUSTOM_PAGE="sap.fe.core.fpm",t.FE_TEMPLATE_V4_OBJECT_PAGE="sap.fe.templates.ObjectPage",t.FE_TEMPLATE_V4_LIST_REPORT="sap.fe.templates.ListReport",t.FE_TEMPLATE_V4_ALP="sap.fe.templates.AnalyticalListPage",t.SAPUI5_FRAGMENT_TYPE_V4="XMLFragment",function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet"}(t.SectionPositionV4||(t.SectionPositionV4={}))}},t={};var a=function a(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,a),o.exports}(390);module.exports=a})();
@@ -5,6 +5,7 @@ import { Page as PageV4 } from './specification/v4/page';
5
5
  import { FileData, File, ExportResults, ServiceMetadata } from './sync/common/types';
6
6
  import { ApplicationV2, ObjectPageConfig as ObjectPageConfigV2, ListReportConfig as ListReportConfigV2, OverviewPageConfig as OverviewPageConfigV2, AnalyticalListPageConfig as AnalyticalListPageConfigV2, Manifest as ManifestV2, FlexChangeLayer } from './v2';
7
7
  import { ApplicationV4, ObjectPageConfig as ObjectPageConfigV4, ListReportConfig as ListReportConfigV4, Manifest as ManifestV4 } from './v4';
8
+ import { ConverterOutput } from '@sap-ux/vocabularies-types';
8
9
  export declare type MessageMetadataType = (object | string | number)[];
9
10
  /**
10
11
  * Interface used to define a logger for the specificaton API
@@ -279,6 +280,13 @@ export interface ImportProjectParameters {
279
280
  fragments?: FileData[];
280
281
  logger?: ExtensionLogger;
281
282
  }
283
+ export interface GenerateAppSchemaParameters {
284
+ manifest: ManifestV2 | ManifestV4;
285
+ serviceAVT: ConverterOutput;
286
+ fioriElementsVersion: FioriElementsVersion;
287
+ fragments?: FileData[];
288
+ logger?: ExtensionLogger;
289
+ }
282
290
  /**
283
291
  * API Version
284
292
  */
@@ -8,10 +8,12 @@ export declare enum TableColumnVerticalAlignment {
8
8
  export interface AppSettings {
9
9
  /**
10
10
  * To change the application header, in your project artifacts, change the i18n property file for your app under webapp/i18n/i18n.properties ->appTitle. Then, refer to the title as {{appTitle}} in the sap.app section of the manifest file.
11
+ * @i18nClassification TIT: Title of the application
11
12
  */
12
13
  title?: string;
13
14
  /**
14
15
  * To change the application header, in your project artifacts, change i18n property file for your app under webapp/i18n/i18n.properties ->appDescription. Then, refer to the description as {{appDescription}} in the sap.app section of the manifest file.
16
+ * @i18nClassification TIT: Description of the application
15
17
  */
16
18
  description?: string;
17
19
  /**
@@ -31,7 +31,7 @@ export declare enum ChartType {
31
31
  horizontalWaterfall = "horizontal_waterfall"
32
32
  }
33
33
  /**
34
- * Chart Settings
34
+ * Chart
35
35
  * @isViewNode true
36
36
  */
37
37
  export interface ChartSettings {
@@ -104,7 +104,7 @@ export interface CommonCardSettings {
104
104
  */
105
105
  defaultSpan?: DefaultSpanDef;
106
106
  /**
107
- * Used to set authorization check at card level
107
+ * Define an authorization check at card level
108
108
  */
109
109
  requireAppAuthorization?: string;
110
110
  }
@@ -217,10 +217,6 @@ export interface StackCard {
217
217
  * Represents the properties that are passed to the stack card.
218
218
  */
219
219
  stackCardSettings: StackCardSettings;
220
- /**
221
- * Represents the Stack Card with view switch control.
222
- */
223
- tabs?: [TabSetting, ...TabSetting[]];
224
220
  }
225
221
  /**
226
222
  * Link List Card
@@ -240,10 +236,6 @@ export interface LinklistCard {
240
236
  * Represents the properties that are passed to the link list card.
241
237
  */
242
238
  linkListCardSettings: LinkListCardSettings;
243
- /**
244
- * Represents the card with view switch control.
245
- */
246
- tabs?: [TabSetting, ...TabSetting[]];
247
239
  }
248
240
  /**
249
241
  * Table Card
@@ -647,6 +639,14 @@ export interface LinkListCardSettings {
647
639
  * staticContent represents the static content of a static link list card.
648
640
  */
649
641
  staticContent?: StaticContent[];
642
+ /**
643
+ * Define an authorization check at card level
644
+ */
645
+ requireAppAuthorization?: string;
646
+ /**
647
+ * Represents the annotation path.
648
+ */
649
+ annotationPath?: string;
650
650
  }
651
651
  export interface StaticContent {
652
652
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"Card.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Card.ts"],"names":[],"mappings":";;AAqHA,IAAY,aAIX;AAJD,WAAY,aAAa;IACrB,0CAAyB,CAAA;IACzB,kDAAiC,CAAA;IACjC,oDAAmC,CAAA;AACvC,CAAC,EAJW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAIxB;AAED,IAAY,gBAUX;AAVD,WAAY,gBAAgB;IACxB,kEAA8C,CAAA;IAC9C,uEAAmD,CAAA;IACnD,+CAA2B,CAAA;IAC3B,oDAAgC,CAAA;IAChC,uDAAmC,CAAA;IACnC,4DAAwC,CAAA;IACxC,iDAA6B,CAAA;IAC7B,sDAAkC,CAAA;IAClC,iDAA6B,CAAA;AACjC,CAAC,EAVW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAU3B;AAEY,QAAA,mBAAmB,GAAG;IAC/B,iCAAiC,EAAE,gBAAgB;IACnD,oCAAoC,EAAE,gBAAgB;IACtD,oBAAoB,EAAE,UAAU;IAChC,uBAAuB,EAAE,UAAU;IACnC,wBAAwB,EAAE,cAAc;IACxC,2BAA2B,EAAE,cAAc;IAC3C,qBAAqB,EAAE,WAAW;IAClC,wBAAwB,EAAE,WAAW;IACrC,qBAAqB,EAAE,WAAW;CACrC,CAAC;AAEF,IAAY,gBASX;AATD,WAAY,gBAAgB;IACxB,qEAAiD,CAAA;IACjD,yEAAqD,CAAA;IACrD,yDAAqC,CAAA;IACrC,6DAAyC,CAAA;IACzC,2DAAuC,CAAA;IACvC,iEAA6C,CAAA;IAC7C,2DAAuC,CAAA;IACvC,+DAA2C,CAAA;AAC/C,CAAC,EATW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAS3B;AAED,IAAY,sBAMX;AAND,WAAY,sBAAsB;IAC9B,6CAAmB,CAAA;IACnB,qCAAW,CAAA;IACX,qCAAW,CAAA;IACX,qCAAW,CAAA;IACX,0CAAgB,CAAA;AACpB,CAAC,EANW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAMjC;AA8TD,IAAY,cAIX;AAJD,WAAY,cAAc;IACtB,uCAAqB,CAAA;IACrB,6BAAW,CAAA;IACX,uCAAqB,CAAA;AACzB,CAAC,EAJW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAIzB;AAED,IAAY,YAGX;AAHD,WAAY,YAAY;IACpB,qCAAqB,CAAA;IACrB,uCAAuB,CAAA;AAC3B,CAAC,EAHW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAGvB;AAED,IAAY,aAGX;AAHD,WAAY,aAAa;IACrB,wCAAuB,CAAA;IACvB,0CAAyB,CAAA;AAC7B,CAAC,EAHW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAGxB;AAiID,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC1B,2CAAqB,CAAA;IACrB,2CAAqB,CAAA;AACzB,CAAC,EAHW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAG7B"}
1
+ {"version":3,"file":"Card.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Card.ts"],"names":[],"mappings":";;AAqHA,IAAY,aAIX;AAJD,WAAY,aAAa;IACrB,0CAAyB,CAAA;IACzB,kDAAiC,CAAA;IACjC,oDAAmC,CAAA;AACvC,CAAC,EAJW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAIxB;AAED,IAAY,gBAUX;AAVD,WAAY,gBAAgB;IACxB,kEAA8C,CAAA;IAC9C,uEAAmD,CAAA;IACnD,+CAA2B,CAAA;IAC3B,oDAAgC,CAAA;IAChC,uDAAmC,CAAA;IACnC,4DAAwC,CAAA;IACxC,iDAA6B,CAAA;IAC7B,sDAAkC,CAAA;IAClC,iDAA6B,CAAA;AACjC,CAAC,EAVW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAU3B;AAEY,QAAA,mBAAmB,GAAG;IAC/B,iCAAiC,EAAE,gBAAgB;IACnD,oCAAoC,EAAE,gBAAgB;IACtD,oBAAoB,EAAE,UAAU;IAChC,uBAAuB,EAAE,UAAU;IACnC,wBAAwB,EAAE,cAAc;IACxC,2BAA2B,EAAE,cAAc;IAC3C,qBAAqB,EAAE,WAAW;IAClC,wBAAwB,EAAE,WAAW;IACrC,qBAAqB,EAAE,WAAW;CACrC,CAAC;AAEF,IAAY,gBASX;AATD,WAAY,gBAAgB;IACxB,qEAAiD,CAAA;IACjD,yEAAqD,CAAA;IACrD,yDAAqC,CAAA;IACrC,6DAAyC,CAAA;IACzC,2DAAuC,CAAA;IACvC,iEAA6C,CAAA;IAC7C,2DAAuC,CAAA;IACvC,+DAA2C,CAAA;AAC/C,CAAC,EATW,gBAAgB,GAAhB,wBAAgB,KAAhB,wBAAgB,QAS3B;AAED,IAAY,sBAMX;AAND,WAAY,sBAAsB;IAC9B,6CAAmB,CAAA;IACnB,qCAAW,CAAA;IACX,qCAAW,CAAA;IACX,qCAAW,CAAA;IACX,0CAAgB,CAAA;AACpB,CAAC,EANW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAMjC;AAsTD,IAAY,cAIX;AAJD,WAAY,cAAc;IACtB,uCAAqB,CAAA;IACrB,6BAAW,CAAA;IACX,uCAAqB,CAAA;AACzB,CAAC,EAJW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAIzB;AAED,IAAY,YAGX;AAHD,WAAY,YAAY;IACpB,qCAAqB,CAAA;IACrB,uCAAuB,CAAA;AAC3B,CAAC,EAHW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAGvB;AAED,IAAY,aAGX;AAHD,WAAY,aAAa;IACrB,wCAAuB,CAAA;IACvB,0CAAyB,CAAA;AAC7B,CAAC,EAHW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAGxB;AAiID,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC1B,2CAAqB,CAAA;IACrB,2CAAqB,CAAA;AACzB,CAAC,EAHW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAG7B"}
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Field
3
+ * @isViewNode true
4
+ */
5
+ export interface Field {
6
+ /**
7
+ * Whether the field should be visible on the screen.
8
+ */
9
+ visible?: boolean;
10
+ }
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=DataField.js.map
3
+ //# sourceMappingURL=Field.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Field.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Field.ts"],"names":[],"mappings":""}
@@ -0,0 +1,43 @@
1
+ export declare type SapUiCoreURI = string;
2
+ export declare enum ButtonType {
3
+ Accept = "Accept",
4
+ Attention = "Attention",
5
+ Back = "Back",
6
+ Critical = "Critical",
7
+ Default = "Default",
8
+ Emphasized = "Emphasized",
9
+ Ghost = "Ghost",
10
+ Negative = "Negative",
11
+ Neutral = "Neutral",
12
+ Reject = "Reject",
13
+ Success = "Success",
14
+ Transparent = "Transparent",
15
+ Unstyled = "Unstyled",
16
+ Up = "Up"
17
+ }
18
+ /**
19
+ * Action
20
+ * @isViewNode true
21
+ */
22
+ export interface FormAction {
23
+ /**
24
+ * Text for tooltip of button
25
+ */
26
+ tooltip?: string;
27
+ /**
28
+ * Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.
29
+ */
30
+ icon?: SapUiCoreURI;
31
+ /**
32
+ * Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.
33
+ */
34
+ activeIcon?: SapUiCoreURI;
35
+ /**
36
+ * Defines the Button type.
37
+ */
38
+ type?: ButtonType;
39
+ /**
40
+ * Whether the button should be visible on the screen.
41
+ */
42
+ visible?: boolean;
43
+ }
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var ButtonType;
4
+ (function (ButtonType) {
5
+ ButtonType["Accept"] = "Accept";
6
+ ButtonType["Attention"] = "Attention";
7
+ ButtonType["Back"] = "Back";
8
+ ButtonType["Critical"] = "Critical";
9
+ ButtonType["Default"] = "Default";
10
+ ButtonType["Emphasized"] = "Emphasized";
11
+ ButtonType["Ghost"] = "Ghost";
12
+ ButtonType["Negative"] = "Negative";
13
+ ButtonType["Neutral"] = "Neutral";
14
+ ButtonType["Reject"] = "Reject";
15
+ ButtonType["Success"] = "Success";
16
+ ButtonType["Transparent"] = "Transparent";
17
+ ButtonType["Unstyled"] = "Unstyled";
18
+ ButtonType["Up"] = "Up";
19
+ })(ButtonType = exports.ButtonType || (exports.ButtonType = {}));
20
+ //# sourceMappingURL=FormAction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormAction.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/FormAction.ts"],"names":[],"mappings":";;AAEA,IAAY,UAeX;AAfD,WAAY,UAAU;IAClB,+BAAiB,CAAA;IACjB,qCAAuB,CAAA;IACvB,2BAAa,CAAA;IACb,mCAAqB,CAAA;IACrB,iCAAmB,CAAA;IACnB,uCAAyB,CAAA;IACzB,6BAAe,CAAA;IACf,mCAAqB,CAAA;IACrB,iCAAmB,CAAA;IACnB,+BAAiB,CAAA;IACjB,iCAAmB,CAAA;IACnB,yCAA2B,CAAA;IAC3B,mCAAqB,CAAA;IACrB,uBAAS,CAAA;AACb,CAAC,EAfW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAerB"}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Chart Settings
2
+ * Chart
3
3
  * @isViewNode true
4
4
  */
5
5
  export interface ObjectPageChart {
@@ -0,0 +1,11 @@
1
+ export declare type FooterActionV2 = object;
2
+ export interface GenericFooterActions {
3
+ [id: string]: FooterActionV2;
4
+ }
5
+ /**
6
+ * Footer
7
+ * @isViewNode true
8
+ */
9
+ export interface ObjectPageFooter<ACT = GenericFooterActions> {
10
+ actions?: ACT;
11
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ObjectPageFooter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObjectPageFooter.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/ObjectPageFooter.ts"],"names":[],"mappings":""}
@@ -1,4 +1,5 @@
1
- import { DataField } from './DataField';
1
+ import { FormAction } from './FormAction';
2
+ import { Field } from './Field';
2
3
  /**
3
4
  * Object Page Form
4
5
  * @isViewNode true
@@ -8,10 +9,8 @@ export interface ObjectPageForm {
8
9
  actions?: ObjectPageFormActions;
9
10
  }
10
11
  export interface ObjectPageFormFields {
11
- [key: string]: DataField;
12
+ [key: string]: Field;
12
13
  }
13
14
  export interface ObjectPageFormActions {
14
- [key: string]: ObjectPageFormAction;
15
+ [key: string]: FormAction;
15
16
  }
16
- declare type ObjectPageFormAction = object;
17
- export {};
@@ -1,11 +1,27 @@
1
- export declare enum BindingValue {
2
- Editable = "{ui>/editable}",
3
- NotEditable = "{= !${ui>/editable}}"
4
- }
1
+ import { ButtonType, SapUiCoreURI } from '.';
5
2
  /**
6
3
  * Header Action
7
4
  * @isViewNode true
8
5
  */
9
6
  export interface HeaderAction {
10
- visible?: boolean | BindingValue;
7
+ /**
8
+ * Text for tooltip of button
9
+ */
10
+ tooltip?: string;
11
+ /**
12
+ * Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.
13
+ */
14
+ icon?: SapUiCoreURI;
15
+ /**
16
+ * Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.
17
+ */
18
+ activeIcon?: SapUiCoreURI;
19
+ /**
20
+ * Defines the Button type.
21
+ */
22
+ type?: ButtonType;
23
+ /**
24
+ * Whether the button should be visible on the screen.
25
+ */
26
+ visible?: boolean;
11
27
  }
@@ -1,8 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- var BindingValue;
4
- (function (BindingValue) {
5
- BindingValue["Editable"] = "{ui>/editable}";
6
- BindingValue["NotEditable"] = "{= !${ui>/editable}}";
7
- })(BindingValue = exports.BindingValue || (exports.BindingValue = {}));
8
3
  //# sourceMappingURL=ObjectPageHeaderAction.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ObjectPageHeaderAction.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/ObjectPageHeaderAction.ts"],"names":[],"mappings":";;AAAA,IAAY,YAGX;AAHD,WAAY,YAAY;IACpB,2CAA2B,CAAA;IAC3B,oDAAoC,CAAA;AACxC,CAAC,EAHW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAGvB"}
1
+ {"version":3,"file":"ObjectPageHeaderAction.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/ObjectPageHeaderAction.ts"],"names":[],"mappings":""}
@@ -1,35 +1,45 @@
1
1
  import { ObjectPageResponsiveTableWithMultiSelect, ObjectPageResponsiveTableWithInlineDelete, ObjectPageAnalyticalTable, ObjectPageGridTable, ObjectPageTreeTable, ObjectPageChart, ObjectPageForm } from './index';
2
2
  import { ViewTypes, SAPUI5_FRAGMENT_CLASS, SAPUI5_VIEW_CLASS } from '../../common/webapp/manifest/sapUi5';
3
3
  /**
4
- * Table
4
+ * Section
5
5
  * @isViewNode true
6
6
  */
7
- export interface ObjectPageSectionTableV2 {
8
- table?: ObjectPageResponsiveTableWithMultiSelect | ObjectPageResponsiveTableWithInlineDelete | ObjectPageAnalyticalTable | ObjectPageGridTable | ObjectPageTreeTable;
7
+ export interface ObjectPageSection {
8
+ /**
9
+ * Whether the section should be visible on the screen.
10
+ */
11
+ visible?: boolean;
9
12
  }
10
13
  /**
11
- * Chart
14
+ * Form
12
15
  * @isViewNode true
13
16
  */
14
- export interface ObjectPageSectionChartV2 {
15
- chart?: ObjectPageChart;
17
+ export interface ObjectPageSectionFormV2 extends ObjectPageSection {
18
+ form?: ObjectPageForm;
16
19
  }
17
- export interface GenericSections {
18
- [key: string]: ObjectPageSectionTableV2 | ObjectPageSectionChartV2 | ObjectPageSectionFormV2;
20
+ /**
21
+ * Table
22
+ * @isViewNode true
23
+ */
24
+ export interface ObjectPageSectionTableV2 extends ObjectPageSection {
25
+ table?: ObjectPageResponsiveTableWithMultiSelect | ObjectPageResponsiveTableWithInlineDelete | ObjectPageAnalyticalTable | ObjectPageGridTable | ObjectPageTreeTable;
19
26
  }
20
27
  /**
21
- * Form
28
+ * Chart
22
29
  * @isViewNode true
23
30
  */
24
- export interface ObjectPageSectionFormV2 {
25
- form?: ObjectPageForm;
31
+ export interface ObjectPageSectionChartV2 extends ObjectPageSection {
32
+ chart?: ObjectPageChart;
26
33
  }
27
34
  /**
28
- * Subsections
35
+ * Subsection
29
36
  * @isViewNode true
30
37
  */
31
- export interface ObjectPageSubSectionsV2 {
32
- subsections: GenericSections;
38
+ export interface ObjectPageSubSectionV2 extends ObjectPageSection {
39
+ subsections?: object;
40
+ }
41
+ export interface GenericSections {
42
+ [key: string]: ObjectPageSectionTableV2 | ObjectPageSectionChartV2 | ObjectPageSectionFormV2 | ObjectPageSubSectionV2;
33
43
  }
34
44
  /**
35
45
  * Custom Sections
@@ -42,7 +52,7 @@ export interface ObjectPageCustomSectionBase {
42
52
  relatedFacet: string;
43
53
  relativePosition: SectionPosition;
44
54
  /**
45
- * The label of the custom section, preferrable as an i18n key
55
+ * The label of the custom section, preferably as an i18n key
46
56
  * @i18nClassification TIT: Custom section title
47
57
  */
48
58
  title: string;
@@ -1 +1 @@
1
- {"version":3,"file":"ObjectPageSection.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/ObjectPageSection.ts"],"names":[],"mappings":";;AA0FA,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,4CAAyB,CAAA;IACzB,8CAA2B,CAAA;IAC3B,gDAA6B,CAAA;AACjC,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B;AAED,IAAY,sBAEX;AAFD,WAAY,sBAAsB;IAC9B,qCAAW,CAAA;AACf,CAAC,EAFW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAEjC"}
1
+ {"version":3,"file":"ObjectPageSection.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/ObjectPageSection.ts"],"names":[],"mappings":";;AAyGA,IAAY,eAIX;AAJD,WAAY,eAAe;IACvB,4CAAyB,CAAA;IACzB,8CAA2B,CAAA;IAC3B,gDAA6B,CAAA;AACjC,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B;AAED,IAAY,sBAEX;AAFD,WAAY,sBAAsB;IAC9B,qCAAW,CAAA;AACf,CAAC,EAFW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAEjC"}