@sap/ux-specification 1.96.0 → 1.96.2

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 (130) hide show
  1. package/CHANGELOG.md +45 -4
  2. package/dist/documentation/runDocu-min.js +1 -1
  3. package/dist/documentation/styleDocu.css +4 -5
  4. package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
  5. package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
  6. package/dist/documentation/v2/v2-ListReport.html +1 -1
  7. package/dist/documentation/v2/v2-ObjectPage.html +1 -1
  8. package/dist/documentation/v2/v2-OverviewPage.html +1 -1
  9. package/dist/documentation/v4/v4-AnalyticalListPage.html +1 -1
  10. package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
  11. package/dist/documentation/v4/v4-ListReport.html +1 -1
  12. package/dist/documentation/v4/v4-ObjectPage.html +1 -1
  13. package/dist/index-min.js +1 -1
  14. package/dist/schemas/v2/AnalyticalListPageConfig.json +10 -38
  15. package/dist/schemas/v2/ListReportConfig.json +5 -28
  16. package/dist/schemas/v2/ObjectPageConfig.json +150 -48
  17. package/dist/schemas/v2/OverviewPageConfig.json +258 -196
  18. package/dist/schemas/v4/AnalyticalListPageConfig.json +18 -2
  19. package/dist/schemas/v4/ListReportConfig.json +18 -2
  20. package/dist/schemas/v4/ObjectPageConfig.json +0 -20
  21. package/dist/scripts/extractDocu.js +18 -8
  22. package/dist/scripts/extractDocu.js.map +1 -1
  23. package/dist/scripts/runDocu.js +105 -89
  24. package/dist/scripts/runDocu.js.map +1 -1
  25. package/dist/specification/v2/index-min.js +1 -1
  26. package/dist/src/apiTypes.d.ts +4 -3
  27. package/dist/src/apiTypes.js +3 -1
  28. package/dist/src/apiTypes.js.map +1 -1
  29. package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.d.ts → Action.d.ts} +30 -3
  30. package/dist/src/specification/v2/controls/{FormAction.js → Action.js} +1 -1
  31. package/dist/src/specification/v2/controls/Action.js.map +1 -0
  32. package/dist/src/specification/v2/controls/Card.d.ts +20 -72
  33. package/dist/src/specification/v2/controls/Card.js.map +1 -1
  34. package/dist/src/specification/v2/controls/FilterBar.d.ts +4 -0
  35. package/dist/src/specification/v2/controls/ObjectPageFooter.d.ts +2 -2
  36. package/dist/src/specification/v2/controls/{FormAction.d.ts → ObjectPageFooterAction.d.ts} +4 -3
  37. package/dist/src/specification/v2/controls/{ObjectPageHeaderAction.js → ObjectPageFooterAction.js} +1 -1
  38. package/dist/src/specification/v2/controls/ObjectPageFooterAction.js.map +1 -0
  39. package/dist/src/specification/v2/controls/ObjectPageForm.d.ts +1 -2
  40. package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +1 -1
  41. package/dist/src/specification/v2/controls/ObjectPageToolBar.d.ts +1 -5
  42. package/dist/src/specification/v2/controls/Table.d.ts +1 -9
  43. package/dist/src/specification/v2/controls/ToolBar.d.ts +2 -2
  44. package/dist/src/specification/v2/controls/index.d.ts +8 -9
  45. package/dist/src/specification/v2/controls/index.js +2 -2
  46. package/dist/src/specification/v2/controls/index.js.map +1 -1
  47. package/dist/src/specification/v4/controls/ObjectPageTable.d.ts +2 -2
  48. package/dist/src/specification/v4/controls/Table.d.ts +2 -2
  49. package/dist/src/specification/v4/webapp/manifest/ManifestSettings.d.ts +8 -19
  50. package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.d.ts +2 -1
  51. package/dist/src/specification/v4/webapp/manifest/sapUiPageV4.js.map +1 -1
  52. package/dist/src/sync/common/generate/objectPage.js +12 -8
  53. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  54. package/dist/src/sync/common/utils.d.ts +1 -1
  55. package/dist/src/sync/common/utils.js.map +1 -1
  56. package/dist/src/sync/v2/export/controls/Action.d.ts +14 -0
  57. package/dist/src/sync/v2/export/controls/Action.js +74 -0
  58. package/dist/src/sync/v2/export/controls/Action.js.map +1 -0
  59. package/dist/src/sync/v2/export/controls/Card.d.ts +3 -7
  60. package/dist/src/sync/v2/export/controls/Card.js +15 -43
  61. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  62. package/dist/src/sync/v2/export/controls/FilterBar.d.ts +1 -0
  63. package/dist/src/sync/v2/export/controls/FilterBar.js +10 -0
  64. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  65. package/dist/src/sync/v2/export/controls/Fragment.js +5 -4
  66. package/dist/src/sync/v2/export/controls/Fragment.js.map +1 -1
  67. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.d.ts +9 -0
  68. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js +62 -0
  69. package/dist/src/sync/v2/export/controls/ObjectPageFooterAction.js.map +1 -0
  70. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js +11 -29
  71. package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
  72. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +2 -1
  73. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +3 -0
  74. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  75. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.d.ts +9 -0
  76. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js +59 -0
  77. package/dist/src/sync/v2/export/controls/ObjectPageToolBarAction.js.map +1 -0
  78. package/dist/src/sync/v2/export/controls/Table.d.ts +3 -4
  79. package/dist/src/sync/v2/export/controls/Table.js +4 -21
  80. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  81. package/dist/src/sync/v2/export/controls/ToolBar.d.ts +4 -0
  82. package/dist/src/sync/v2/export/controls/ToolBar.js +6 -0
  83. package/dist/src/sync/v2/export/controls/ToolBar.js.map +1 -0
  84. package/dist/src/sync/v2/export/controls/index.d.ts +12 -8
  85. package/dist/src/sync/v2/export/controls/index.js +12 -8
  86. package/dist/src/sync/v2/export/controls/index.js.map +1 -1
  87. package/dist/src/sync/v2/export/export.js +1 -1
  88. package/dist/src/sync/v2/export/export.js.map +1 -1
  89. package/dist/src/sync/v2/generate/objectPage.d.ts +0 -1
  90. package/dist/src/sync/v2/generate/objectPage.js +188 -111
  91. package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
  92. package/dist/src/sync/v2/generate/utils.d.ts +3 -3
  93. package/dist/src/sync/v2/generate/utils.js +22 -14
  94. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  95. package/dist/src/sync/v2/import/common/index.d.ts +8 -1
  96. package/dist/src/sync/v2/import/common/index.js +107 -43
  97. package/dist/src/sync/v2/import/common/index.js.map +1 -1
  98. package/dist/src/sync/v2/import/pages/listReport.js +31 -0
  99. package/dist/src/sync/v2/import/pages/listReport.js.map +1 -1
  100. package/dist/src/sync/v2/import/pages/objectPage.d.ts +1 -1
  101. package/dist/src/sync/v2/import/pages/objectPage.js +303 -238
  102. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  103. package/dist/src/sync/v2/import/utils.d.ts +1 -1
  104. package/dist/src/sync/v2/import/utils.js +2 -2
  105. package/dist/src/sync/v2/import/utils.js.map +1 -1
  106. package/dist/src/sync/v2/types.d.ts +21 -2
  107. package/dist/src/sync/v2/types.js +7 -0
  108. package/dist/src/sync/v2/types.js.map +1 -1
  109. package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js +5 -1
  110. package/dist/src/sync/v4/export/controls/ObjectPageCustomSection.js.map +1 -1
  111. package/dist/src/sync/v4/export/controls/ObjectPageTable.js +2 -2
  112. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.d.ts +3 -2
  113. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js +3 -10
  114. package/dist/src/sync/v4/export/controls/ObjectPageTableColumn.js.map +1 -1
  115. package/dist/src/sync/v4/export/controls/Table.js +1 -1
  116. package/dist/src/sync/v4/export/controls/TableColumn.d.ts +3 -1
  117. package/dist/src/sync/v4/export/controls/TableColumn.js +5 -2
  118. package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
  119. package/dist/src/sync/v4/export/export.js +3 -0
  120. package/dist/src/sync/v4/export/export.js.map +1 -1
  121. package/dist/src/sync/v4/import/pages/listReport.d.ts +1 -3
  122. package/dist/src/sync/v4/import/pages/listReport.js +27 -17
  123. package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
  124. package/dist/src/sync/v4/import/pages/objectPage.js +10 -12
  125. package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
  126. package/dist/src/sync/v4/utils/utils.js +5 -1
  127. package/dist/src/sync/v4/utils/utils.js.map +1 -1
  128. package/package.json +6 -8
  129. package/dist/src/specification/v2/controls/FormAction.js.map +0 -1
  130. package/dist/src/specification/v2/controls/ObjectPageHeaderAction.js.map +0 -1
@@ -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={}))},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.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.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(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(7900))},7900:(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(2616)),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={}))},2616:(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,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={}))},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.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.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(6745)),n(t(2922)),n(t(2906)),n(t(2387)),n(t(7876)),n(t(9649))},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(7900))},7900:(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(2616)),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={}))},2616:(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})();
@@ -6,7 +6,7 @@ import { FileData, File, ExportResults, ServiceMetadata } from './sync/common/ty
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
8
  import { ConverterOutput } from '@sap-ux/vocabularies-types';
9
- import { CustomPage, CustomTableColumn } from '@sap-ux/fe-fpm-writer';
9
+ import { CustomPage, CustomTableColumn, CustomSection } from '@sap-ux/fe-fpm-writer';
10
10
  import { Editor } from 'mem-fs-editor';
11
11
  export declare type MessageMetadataType = (object | string | number)[];
12
12
  /**
@@ -291,7 +291,8 @@ export interface GenerateAppSchemaParameters {
291
291
  }
292
292
  export declare enum CustomExtensionType {
293
293
  CustomPage = "CustomPage",
294
- CustomColumn = "CustomColumn"
294
+ CustomColumn = "CustomColumn",
295
+ CustomSection = "CustomSection"
295
296
  }
296
297
  export interface GenerateCustomExtensionParams {
297
298
  customExtension: CustomExtensionType;
@@ -299,7 +300,7 @@ export interface GenerateCustomExtensionParams {
299
300
  data: CustomExtensionData;
300
301
  fsEditor?: Editor;
301
302
  }
302
- export declare type CustomExtensionData = CustomPage | CustomTableColumn;
303
+ export declare type CustomExtensionData = CustomPage | CustomTableColumn | CustomSection;
303
304
  export declare const FPMWriterMap: Map<CustomExtensionType, (basePath: string, data: CustomExtensionData, fs?: Editor) => Editor>;
304
305
  /**
305
306
  * API Version
@@ -7,9 +7,11 @@ var CustomExtensionType;
7
7
  (function (CustomExtensionType) {
8
8
  CustomExtensionType["CustomPage"] = "CustomPage";
9
9
  CustomExtensionType["CustomColumn"] = "CustomColumn";
10
+ CustomExtensionType["CustomSection"] = "CustomSection";
10
11
  })(CustomExtensionType = exports.CustomExtensionType || (exports.CustomExtensionType = {}));
11
12
  exports.FPMWriterMap = new Map([
12
13
  [CustomExtensionType.CustomPage, fe_fpm_writer_1.generateCustomPage],
13
- [CustomExtensionType.CustomColumn, fe_fpm_writer_1.generateCustomColumn]
14
+ [CustomExtensionType.CustomColumn, fe_fpm_writer_1.generateCustomColumn],
15
+ [CustomExtensionType.CustomSection, fe_fpm_writer_1.generateCustomSection]
14
16
  ]);
15
17
  //# sourceMappingURL=apiTypes.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"apiTypes.js","sourceRoot":"","sources":["../../src/apiTypes.ts"],"names":[],"mappings":";;AAAA,+DAA0D;AAC1D,sDAAmE;AAoBnE,yDAAgH;AAwVhH,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,gDAAyB,CAAA;IACzB,oDAA6B,CAAA;AACjC,CAAC,EAHW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAG9B;AAWY,QAAA,YAAY,GAAG,IAAI,GAAG,CAGjC;IACE,CAAC,mBAAmB,CAAC,UAAU,EAAE,kCAAkB,CAAC;IACpD,CAAC,mBAAmB,CAAC,YAAY,EAAE,oCAAoB,CAAC;CAC3D,CAAC,CAAC"}
1
+ {"version":3,"file":"apiTypes.js","sourceRoot":"","sources":["../../src/apiTypes.ts"],"names":[],"mappings":";;AAAA,+DAA0D;AAC1D,sDAAmE;AAoBnE,yDAO+B;AAwV/B,IAAY,mBAIX;AAJD,WAAY,mBAAmB;IAC3B,gDAAyB,CAAA;IACzB,oDAA6B,CAAA;IAC7B,sDAA+B,CAAA;AACnC,CAAC,EAJW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAI9B;AAWY,QAAA,YAAY,GAAG,IAAI,GAAG,CAGjC;IACE,CAAC,mBAAmB,CAAC,UAAU,EAAE,kCAAkB,CAAC;IACpD,CAAC,mBAAmB,CAAC,YAAY,EAAE,oCAAoB,CAAC;IACxD,CAAC,mBAAmB,CAAC,aAAa,EAAE,qCAAqB,CAAC;CAC7D,CAAC,CAAC"}
@@ -1,11 +1,12 @@
1
1
  /// <reference types="@sapui5/ts-types" />
2
2
  /**
3
- * Header Action
3
+ * Action
4
4
  * @isViewNode true
5
5
  */
6
- export interface HeaderAction {
6
+ export interface Action {
7
7
  /**
8
- * Text for tooltip of button
8
+ * The text of the button tooltip, preferably as an i18n key.
9
+ * @i18nClassification ACT: Text for tooltip of button.
9
10
  */
10
11
  tooltip?: string;
11
12
  /**
@@ -20,6 +21,32 @@ export interface HeaderAction {
20
21
  * Defines the Button type.
21
22
  */
22
23
  type?: sap.m.ButtonType;
24
+ }
25
+ /**
26
+ * Form Action
27
+ * @isViewNode true
28
+ */
29
+ export interface FormAction extends Action {
30
+ /**
31
+ * Whether the button should be visible on the screen.
32
+ */
33
+ visible?: boolean;
34
+ }
35
+ /**
36
+ * Header Action
37
+ * @isViewNode true
38
+ */
39
+ export interface HeaderAction extends Action {
40
+ /**
41
+ * Whether the button should be visible on the screen.
42
+ */
43
+ visible?: boolean;
44
+ }
45
+ /**
46
+ * ToolBar Action
47
+ * @isViewNode true
48
+ */
49
+ export interface ObjectPageToolBarAction extends Action {
23
50
  /**
24
51
  * Whether the button should be visible on the screen.
25
52
  */
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=FormAction.js.map
3
+ //# sourceMappingURL=Action.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Action.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Action.ts"],"names":[],"mappings":""}
@@ -73,6 +73,10 @@ export interface TabSetting {
73
73
  [k: string]: any;
74
74
  }
75
75
  export interface CommonCardSettings {
76
+ /**
77
+ * Represents the dominant entity set that will be displayed in the given card.
78
+ */
79
+ entitySet?: string;
76
80
  /**
77
81
  * The language-dependent title of the card, used in the card header.
78
82
  * @i18nClassification TIT: Title of the card, used in the card header
@@ -104,9 +108,17 @@ export interface CommonCardSettings {
104
108
  */
105
109
  defaultSpan?: DefaultSpanDef;
106
110
  /**
107
- * Define an authorization check at card level
111
+ * Define an authorization check at card level.
108
112
  */
109
113
  requireAppAuthorization?: string;
114
+ /**
115
+ * Represents the card with view switch control.
116
+ */
117
+ tabs?: [TabSetting, ...TabSetting[]];
118
+ /**
119
+ * add $Select parameter in data fetch URL
120
+ */
121
+ addODataSelect?: boolean;
110
122
  }
111
123
  export declare enum ChartCardType {
112
124
  cardBubble = "cardBubble",
@@ -194,10 +206,6 @@ export interface ListCard {
194
206
  * Represents the properties that are passed to the list card.
195
207
  */
196
208
  listCardSettings: ListCardSettings;
197
- /**
198
- * Represents the List Card with view switch control.
199
- */
200
- tabs?: [TabSetting, ...TabSetting[]];
201
209
  }
202
210
  /**
203
211
  * Stack Card
@@ -255,10 +263,6 @@ export interface TableCard {
255
263
  * Represents the properties that are passed to the table card.
256
264
  */
257
265
  tableCardSettings: TableCardSettings;
258
- /**
259
- * Represents the card with view switch control.
260
- */
261
- tabs?: [TabSetting, ...TabSetting[]];
262
266
  /**
263
267
  * If you set disableTableCardFlexibility to true, then at runtime, DataField records are sorted according to the importance set in the com.sap.vocabularies.UI.v1.ImportanceType annotation, and their order of entry.
264
268
  * If you set disableTableCardFlexibility to false, then at runtime, table columns are sorted according to the importance set in the com.sap.vocabularies.UI.v1.ImportanceType annotation, and their order of entry.
@@ -283,20 +287,12 @@ export interface AnalyticalCard {
283
287
  * Represents the properties that are passed to the analytical card.
284
288
  */
285
289
  analyticalCardSettings: AnalyticalCardSettings | AnalyticalCardSettingsv4;
286
- /**
287
- * Represents the Analytical Card with view switch control.
288
- */
289
- tabs?: [TabSetting, ...TabSetting[]];
290
290
  }
291
291
  export declare type CustomCardNavigationType = 'dataPointNav' | 'chartNav' | 'headerNav' | 'noHeaderNav';
292
292
  /**
293
293
  * @displayName settings
294
294
  */
295
295
  export interface CustomCardSettings extends CommonCardSettings {
296
- /**
297
- * Represents the dominant entity set that will be displayed in the given card.
298
- */
299
- entitySet?: string;
300
296
  /**
301
297
  * Represents the user defined string in placeholder card.
302
298
  */
@@ -422,10 +418,6 @@ export interface CustomCardSettings extends CommonCardSettings {
422
418
  * @displayName settings
423
419
  */
424
420
  export interface AnalyticalCardSettings extends CommonCardSettings {
425
- /**
426
- * Represents the dominant entity set that will be displayed in the given card.
427
- */
428
- entitySet: string;
429
421
  /**
430
422
  * Represents the chart annotation path.
431
423
  */
@@ -465,10 +457,6 @@ export declare enum SortOrderType {
465
457
  * @displayName settings
466
458
  */
467
459
  export interface ListCardSettings extends CommonCardSettings {
468
- /**
469
- * Represents the dominant entity set that will be displayed in the given card.
470
- */
471
- entitySet: string;
472
460
  /**
473
461
  * Represents the flavor of the list to use in this card. The flavor can be bar chart, carousel or standard.
474
462
  */
@@ -493,29 +481,19 @@ export interface ListCardSettings extends CommonCardSettings {
493
481
  * Defines the sort order.
494
482
  */
495
483
  sortOrder?: SortOrderType;
496
- /**
497
- * add $Select parameter in data fetch URL
498
- */
499
- addODataSelect?: boolean;
500
- /**
501
- * Represents the card with view switch control.
502
- * This property doesn't exist in the app descriptor json schema for settings, but is there on the card level next to the template.
503
- * However, in the reference application it is in the settings of a sap.ovp.cards.list.
504
- */
505
- tabs?: [TabSetting, ...TabSetting[]];
506
484
  /**
507
485
  * Represents the data point annotation path.
508
486
  */
509
487
  dataPointAnnotationPath?: string;
488
+ /**
489
+ * Flag for show line item detail in list and table card.
490
+ */
491
+ showLineItemDetail?: boolean;
510
492
  }
511
493
  /**
512
494
  * @displayName settings
513
495
  */
514
496
  export interface StackCardSettings extends CommonCardSettings {
515
- /**
516
- * Represents the dominant entity set that will be displayed in the given card.
517
- */
518
- entitySet: string;
519
497
  /**
520
498
  * Represents the user defined string in placeholder card.
521
499
  */
@@ -544,10 +522,6 @@ export interface StackCardSettings extends CommonCardSettings {
544
522
  * @displayName settings
545
523
  */
546
524
  export interface TableCardSettings extends CommonCardSettings {
547
- /**
548
- * Represents the dominant entity set that will be displayed in the given card.
549
- */
550
- entitySet: string;
551
525
  /**
552
526
  * Represents the annotation path.
553
527
  */
@@ -581,9 +555,9 @@ export interface TableCardSettings extends CommonCardSettings {
581
555
  */
582
556
  sortOrder?: SortOrderType;
583
557
  /**
584
- * Represents the card with view switch control.
558
+ * Flag for show line item detail in list and table card.
585
559
  */
586
- tabs?: [TabSetting, ...TabSetting[]];
560
+ showLineItemDetail?: boolean;
587
561
  }
588
562
  export declare enum LinkListFlavorType {
589
563
  standard = "standard",
@@ -592,21 +566,7 @@ export declare enum LinkListFlavorType {
592
566
  /**
593
567
  * @displayName settings
594
568
  */
595
- export interface LinkListCardSettings {
596
- /**
597
- * entitySet represents the entity set that will be displayed in this card.
598
- */
599
- entitySet?: string;
600
- /**
601
- * title represents the language-dependent title of the card, as used in the card header.
602
- * @i18nClassification TIT: Title of the card, used in the card header
603
- */
604
- title: string;
605
- /**
606
- * YOu can define the language-dependent subtitle of the card, as used in the card header.
607
- * @i18nClassification TIT: Subtitle of the card, used in the card header
608
- */
609
- subTitle?: string;
569
+ export interface LinkListCardSettings extends CommonCardSettings {
610
570
  /**
611
571
  * The targetUri is a URI defining the link to a quick view, related application or external resource.
612
572
  */
@@ -627,22 +587,10 @@ export interface LinkListCardSettings {
627
587
  * headerAnnotationPath represents the path to a HeaderInfo annotation.
628
588
  */
629
589
  headerAnnotationPath?: string;
630
- /**
631
- * identificationAnnotationPath represents the path to an Identification annotation.
632
- */
633
- identificationAnnotationPath?: string;
634
- /**
635
- * To load cards with specific requirements, define a default size as part of the card definition in the descriptor file.
636
- */
637
- defaultSpan?: DefaultSpanDef;
638
590
  /**
639
591
  * staticContent represents the static content of a static link list card.
640
592
  */
641
593
  staticContent?: StaticContent[];
642
- /**
643
- * Define an authorization check at card level
644
- */
645
- requireAppAuthorization?: string;
646
594
  /**
647
595
  * Represents the annotation path.
648
596
  */
@@ -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;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"}
1
+ {"version":3,"file":"Card.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Card.ts"],"names":[],"mappings":";;AAiIA,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;AAkSD,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;AA+GD,IAAY,kBAGX;AAHD,WAAY,kBAAkB;IAC1B,2CAAqB,CAAA;IACrB,2CAAqB,CAAA;AACzB,CAAC,EAHW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAG7B"}
@@ -179,4 +179,8 @@ export interface AnalyticalListPageFilterBar extends CommonFilterBar {
179
179
  * Go button is displayed for compact filters when this is set to true
180
180
  */
181
181
  showGoButtonOnFilterBar?: boolean;
182
+ /**
183
+ * Lets you to add default values for FilterBar using SelectionVariant annotation
184
+ */
185
+ filterDefaultsFromSelectionVariant?: boolean;
182
186
  }
@@ -1,6 +1,6 @@
1
- export declare type FooterActionV2 = object;
1
+ import { FooterAction } from './ObjectPageFooterAction';
2
2
  export interface GenericFooterActions {
3
- [id: string]: FooterActionV2;
3
+ [id: string]: FooterAction;
4
4
  }
5
5
  /**
6
6
  * Footer
@@ -1,11 +1,12 @@
1
1
  /// <reference types="@sapui5/ts-types" />
2
2
  /**
3
- * Action
3
+ * Footer Action
4
4
  * @isViewNode true
5
5
  */
6
- export interface FormAction {
6
+ export interface FooterAction {
7
7
  /**
8
- * Text for tooltip of button
8
+ * The text of the button tooltip, preferably as an i18n key.
9
+ * @i18nClassification ACT: Text for tooltip of button.
9
10
  */
10
11
  tooltip?: string;
11
12
  /**
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=ObjectPageHeaderAction.js.map
3
+ //# sourceMappingURL=ObjectPageFooterAction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ObjectPageFooterAction.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/ObjectPageFooterAction.ts"],"names":[],"mappings":""}
@@ -1,5 +1,4 @@
1
- import { FormAction } from './FormAction';
2
- import { Field } from './Field';
1
+ import { FormAction, Field } from '.';
3
2
  /**
4
3
  * Object Page Form
5
4
  * @isViewNode true
@@ -1,5 +1,5 @@
1
1
  /// <reference types="@sapui5/ts-types" />
2
- import { HeaderAction } from '../controls/ObjectPageHeaderAction';
2
+ import { HeaderAction } from '.';
3
3
  export interface GenericActions {
4
4
  [id: string]: HeaderAction;
5
5
  }
@@ -1,8 +1,4 @@
1
- /**
2
- * Action
3
- * @isViewNode true
4
- */
5
- export declare type ObjectPageToolBarAction = object;
1
+ import { ObjectPageToolBarAction } from '.';
6
2
  /**
7
3
  * Actions
8
4
  * @isViewNode true
@@ -25,7 +25,7 @@ export interface TableCustomColumn {
25
25
  */
26
26
  id?: string;
27
27
  /**
28
- * The label of the custom column, preferrable as an i18n key.
28
+ * The label of the custom column, preferably as an i18n key.
29
29
  * @i18nClassification COL: Custom column header text
30
30
  */
31
31
  text?: string;
@@ -345,10 +345,6 @@ export interface AnalyticalTable extends CommonTableSettings {
345
345
  * @i18nClassification TIT: Title for the content area
346
346
  */
347
347
  contentTitle?: string;
348
- /**
349
- * Lets you to add default values for FilterBar using SelectionVariant annotation
350
- */
351
- filterDefaultsFromSelectionVariant?: boolean;
352
348
  /**
353
349
  * All filter fields will be set as in parameter
354
350
  */
@@ -393,10 +389,6 @@ export interface TableALPCommonSettings extends CommonTableSettings {
393
389
  * This setting allows developer to determine chart / table interaction. 'true' would mean chart act as filter for table, 'false' would mean that matching table rows are highlighted but table is not filtered.
394
390
  */
395
391
  autoHide?: boolean;
396
- /**
397
- * Lets you to add default values for FilterBar using SelectionVariant annotation
398
- */
399
- filterDefaultsFromSelectionVariant?: boolean;
400
392
  /**
401
393
  * All filter fields will be set as in parameter
402
394
  */
@@ -1,10 +1,10 @@
1
- import { FormAction } from './FormAction';
1
+ import { Action as ToolBarAction } from '.';
2
2
  /**
3
3
  * Actions
4
4
  * @isViewNode true
5
5
  */
6
6
  export interface Actions {
7
- [key: string]: FormAction;
7
+ [key: string]: ToolBarAction;
8
8
  }
9
9
  /**
10
10
  * Toolbar
@@ -1,18 +1,17 @@
1
+ export * from './Action';
2
+ export * from './Card';
3
+ export * from './Facets';
4
+ export * from './Field';
1
5
  export * from './FilterBar';
2
6
  export * from './Table';
3
- export * from './Facets';
4
7
  export * from './ToolBar';
5
- export * from './ObjectPageToolBar';
8
+ export * from './AnalyticalListPageChart';
6
9
  export * from './ObjectPageHeader';
7
- export * from './ObjectPageHeaderAction';
8
10
  export * from './ObjectPageFooter';
11
+ export * from './ObjectPageFooterAction';
9
12
  export * from './ObjectPageLayout';
10
13
  export * from './ObjectPageSection';
11
- export * from './Card';
12
- export * from './ObjectPageTable';
13
- export * from './AnalyticalListPageChart';
14
14
  export * from './ObjectPageChart';
15
15
  export * from './ObjectPageForm';
16
- export * from './Field';
17
- export * from './ObjectPageHeaderAction';
18
- export * from './FormAction';
16
+ export * from './ObjectPageTable';
17
+ export * from './ObjectPageToolBar';
@@ -3,10 +3,10 @@ function __export(m) {
3
3
  for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
4
4
  }
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
+ __export(require("./Card"));
6
7
  __export(require("./FilterBar"));
7
8
  __export(require("./Table"));
9
+ __export(require("./AnalyticalListPageChart"));
8
10
  __export(require("./ObjectPageSection"));
9
- __export(require("./Card"));
10
11
  __export(require("./ObjectPageTable"));
11
- __export(require("./AnalyticalListPageChart"));
12
12
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/index.ts"],"names":[],"mappings":";;;;;AAAA,iCAA4B;AAC5B,6BAAwB;AAQxB,yCAAoC;AACpC,4BAAuB;AACvB,uCAAkC;AAClC,+CAA0C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/index.ts"],"names":[],"mappings":";;;;;AACA,4BAAuB;AAGvB,iCAA4B;AAC5B,6BAAwB;AAExB,+CAA0C;AAK1C,yCAAoC;AAGpC,uCAAkC"}
@@ -1,5 +1,5 @@
1
1
  import { AnnotationPathAsObject, TableCreationModeType, TableCustomColumns, TableSettings } from '../controls';
2
- import { TableColumnOP } from '../webapp/manifest/ManifestSettings';
2
+ import { ObjectPageTableColumnAction, TableColumn } from '../webapp/manifest/ManifestSettings';
3
3
  import { ObjectPageToolBar } from './ObjectPageToolBar';
4
4
  /**
5
5
  * Table
@@ -69,7 +69,7 @@ export interface QuickVariantSelectionV4OP {
69
69
  showCounts?: boolean;
70
70
  }
71
71
  interface GenericColumns {
72
- [key: string]: TableColumnOP | TableCustomColumns;
72
+ [key: string]: TableColumn | ObjectPageTableColumnAction | TableCustomColumns;
73
73
  }
74
74
  export interface TableSettingsOP extends TableSettings {
75
75
  /**
@@ -1,4 +1,4 @@
1
- import { TableColumn, TableCustomColumn } from './../webapp/manifest/ManifestSettings';
1
+ import { TableColumn, TableColumnAction, TableCustomColumn } from './../webapp/manifest/ManifestSettings';
2
2
  import { ToolBar } from './ToolBar';
3
3
  export declare enum SelectionMode {
4
4
  Multi = "Multi",
@@ -87,7 +87,7 @@ export interface MultiTableModeV4 {
87
87
  */
88
88
  export declare type TableCustomColumns = Array<TableCustomColumn>;
89
89
  export interface GenericColumns {
90
- [key: string]: TableColumn | TableCustomColumns;
90
+ [key: string]: TableColumn | TableColumnAction | TableCustomColumns;
91
91
  }
92
92
  export interface TableSettings<COLS = GenericColumns> {
93
93
  /**
@@ -61,33 +61,22 @@ export declare type TableColumn = {
61
61
  * Hidden: the column is neither available in the table nor in adaptation.
62
62
  */
63
63
  availability?: Availability;
64
- /**
65
- * Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)
66
- */
67
- afterExecution?: ActionAfterExecutionConfiguration;
68
64
  };
69
65
  /**
70
- * Table Column
66
+ * Inline Action
71
67
  * @isViewNode true
72
68
  */
73
- export declare type TableColumnOP = {
74
- /**
75
- * A string type that represents CSS size values.
76
- * Refer to https://openui5.hana.ondemand.com/api/sap.ui.core.CSSSize.
77
- */
78
- width?: string;
79
- /**
80
- * Defines where the column should be shown.
81
- * Default: it will be shown by default in the table.
82
- * Adaptation: it will initially not shown in the table but be available via end user adaptation.
83
- * Hidden: the column is neither available in the table nor in adaptation.
84
- */
85
- availability?: Availability;
69
+ export declare type TableColumnAction = TableColumn & {
86
70
  /**
87
71
  * Settings that are only relevant for actions (associated with a UI.DataFieldForAction annotation)
88
72
  */
89
- afterExecution?: ActionAfterExecutionConfigurationOP;
73
+ afterExecution?: ActionAfterExecutionConfiguration;
90
74
  };
75
+ /**
76
+ * Inline Action for Object Page
77
+ * @isViewNode true
78
+ */
79
+ export declare type ObjectPageTableColumnAction = TableColumn;
91
80
  /**
92
81
  * Custom Column
93
82
  * @isViewNode true
@@ -48,9 +48,10 @@ export interface SapUi5RoutingTargetContentSections {
48
48
  export declare const SAPUI5_FRAGMENT_TYPE_V4 = "XMLFragment";
49
49
  export interface SapUi5RoutingTargetContentSection {
50
50
  type: typeof SAPUI5_FRAGMENT_TYPE_V4;
51
- name: string;
51
+ name?: string;
52
52
  title: string;
53
53
  position: SapUi5RoutingTargetContentPosition;
54
+ template?: string;
54
55
  }
55
56
  export declare enum SectionPositionV4 {
56
57
  AfterFacet = "AfterFacet",
@@ -1 +1 @@
1
- {"version":3,"file":"sapUiPageV4.js","sourceRoot":"","sources":["../../../../../../src/specification/v4/webapp/manifest/sapUiPageV4.ts"],"names":[],"mappings":";;AAoCa,QAAA,cAAc,GAAG,kBAAkB,CAAC;AACpC,QAAA,0BAA0B,GAAG,iBAAiB,CAAC;AAC/C,QAAA,0BAA0B,GAAG,6BAA6B,CAAC;AAC3D,QAAA,0BAA0B,GAAG,6BAA6B,CAAC;AAC3D,QAAA,kBAAkB,GAAG,qCAAqC,CAAC;AAgB3D,QAAA,uBAAuB,GAAG,aAAa,CAAC;AASrD,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IACzB,8CAAyB,CAAA;IACzB,gDAA2B,CAAA;AAC/B,CAAC,EAHW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAG5B"}
1
+ {"version":3,"file":"sapUiPageV4.js","sourceRoot":"","sources":["../../../../../../src/specification/v4/webapp/manifest/sapUiPageV4.ts"],"names":[],"mappings":";;AAoCa,QAAA,cAAc,GAAG,kBAAkB,CAAC;AACpC,QAAA,0BAA0B,GAAG,iBAAiB,CAAC;AAC/C,QAAA,0BAA0B,GAAG,6BAA6B,CAAC;AAC3D,QAAA,0BAA0B,GAAG,6BAA6B,CAAC;AAC3D,QAAA,kBAAkB,GAAG,qCAAqC,CAAC;AAgB3D,QAAA,uBAAuB,GAAG,aAAa,CAAC;AAUrD,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IACzB,8CAAyB,CAAA;IACzB,gDAA2B,CAAA;AAC/B,CAAC,EAHW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAG5B"}