@sap/ux-specification 1.90.17 → 1.96.3

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 (42) hide show
  1. package/CHANGELOG.md +28 -351
  2. package/README.md +1 -0
  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/index-min.js.LICENSE.txt +71 -0
  14. package/dist/schemas/v2/AnalyticalListPageConfig.json +26 -0
  15. package/dist/schemas/v2/ApplicationV2.json +31 -0
  16. package/dist/schemas/v2/ListReportConfig.json +38 -0
  17. package/dist/schemas/v2/ObjectPageConfig.json +38 -0
  18. package/dist/specification/v2/index-min.js +1 -1
  19. package/dist/specification/v4/index-min.js +1 -1
  20. package/dist/src/api.d.ts +9 -1
  21. package/dist/src/api.js +18 -1
  22. package/dist/src/api.js.map +1 -1
  23. package/dist/src/apiTypes.d.ts +16 -0
  24. package/dist/src/apiTypes.js +12 -0
  25. package/dist/src/apiTypes.js.map +1 -1
  26. package/dist/src/index.js +1 -0
  27. package/dist/src/index.js.map +1 -1
  28. package/dist/src/specification/v2/ApplicationV2.d.ts +21 -0
  29. package/dist/src/specification/v2/ApplicationV2.js +9 -0
  30. package/dist/src/specification/v2/ApplicationV2.js.map +1 -1
  31. package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +4 -0
  32. package/dist/src/specification/v2/controls/Table.d.ts +4 -0
  33. package/dist/src/sync/v2/application.d.ts +3 -1
  34. package/dist/src/sync/v2/application.js +20 -0
  35. package/dist/src/sync/v2/application.js.map +1 -1
  36. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +1 -0
  37. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +12 -0
  38. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  39. package/dist/src/sync/v2/export/controls/Table.d.ts +1 -0
  40. package/dist/src/sync/v2/export/controls/Table.js +12 -0
  41. package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
  42. package/package.json +9 -5
@@ -1,3 +1,72 @@
1
+ /*!
2
+ * @description Recursive object extending
3
+ * @author Viacheslav Lotsmanov <lotsmanov89@gmail.com>
4
+ * @license MIT
5
+ *
6
+ * The MIT License (MIT)
7
+ *
8
+ * Copyright (c) 2013-2018 Viacheslav Lotsmanov
9
+ *
10
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of
11
+ * this software and associated documentation files (the "Software"), to deal in
12
+ * the Software without restriction, including without limitation the rights to
13
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
14
+ * the Software, and to permit persons to whom the Software is furnished to do so,
15
+ * subject to the following conditions:
16
+ *
17
+ * The above copyright notice and this permission notice shall be included in all
18
+ * copies or substantial portions of the Software.
19
+ *
20
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
22
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
23
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
24
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
+ */
27
+
28
+ /*!
29
+ * fill-range <https://github.com/jonschlinkert/fill-range>
30
+ *
31
+ * Copyright (c) 2014-present, Jon Schlinkert.
32
+ * Licensed under the MIT License.
33
+ */
34
+
35
+ /*!
36
+ * is-extglob <https://github.com/jonschlinkert/is-extglob>
37
+ *
38
+ * Copyright (c) 2014-2016, Jon Schlinkert.
39
+ * Licensed under the MIT License.
40
+ */
41
+
42
+ /*!
43
+ * is-glob <https://github.com/jonschlinkert/is-glob>
44
+ *
45
+ * Copyright (c) 2014-2017, Jon Schlinkert.
46
+ * Released under the MIT License.
47
+ */
48
+
49
+ /*!
50
+ * is-number <https://github.com/jonschlinkert/is-number>
51
+ *
52
+ * Copyright (c) 2014-present, Jon Schlinkert.
53
+ * Released under the MIT License.
54
+ */
55
+
56
+ /*!
57
+ * normalize-path <https://github.com/jonschlinkert/normalize-path>
58
+ *
59
+ * Copyright (c) 2014-2018, Jon Schlinkert.
60
+ * Released under the MIT License.
61
+ */
62
+
63
+ /*!
64
+ * to-regex-range <https://github.com/micromatch/to-regex-range>
65
+ *
66
+ * Copyright (c) 2015-present, Jon Schlinkert.
67
+ * Released under the MIT License.
68
+ */
69
+
1
70
  /*! *****************************************************************************
2
71
  Copyright (C) Microsoft. All rights reserved.
3
72
  Licensed under the Apache License, Version 2.0 (the "License"); you may not use
@@ -15,6 +84,8 @@ and limitations under the License.
15
84
 
16
85
  /*! http://mths.be/fromcodepoint v0.1.0 by @mathias */
17
86
 
87
+ /*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
88
+
18
89
  /**
19
90
  * @file Embedded JavaScript templating engine. {@link http://ejs.co}
20
91
  * @author Matthew Eernisse <mde@fleegix.org>
@@ -123,6 +123,12 @@
123
123
  "artifactType": "FlexChange",
124
124
  "controlType": "sap.ui.comp.smarttable.SmartTable"
125
125
  },
126
+ "exportType": {
127
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
128
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
129
+ "artifactType": "FlexChange",
130
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
131
+ },
126
132
  "fitContainer": {
127
133
  "description": "Set to false if the table does not occupy the entire space available in the container.",
128
134
  "type": "boolean",
@@ -212,6 +218,14 @@
212
218
  "path"
213
219
  ]
214
220
  },
221
+ "sap.ui.comp.smarttable.ExportType": {
222
+ "description": "Provides the type of services available for export in the `SmartTable` control.",
223
+ "enum": [
224
+ "GW",
225
+ "UI5Client"
226
+ ],
227
+ "type": "string"
228
+ },
215
229
  "QuickVariantSelection": {
216
230
  "type": "object",
217
231
  "properties": {
@@ -637,6 +651,12 @@
637
651
  "artifactType": "FlexChange",
638
652
  "controlType": "sap.ui.comp.smarttable.SmartTable"
639
653
  },
654
+ "exportType": {
655
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
656
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
657
+ "artifactType": "FlexChange",
658
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
659
+ },
640
660
  "fitContainer": {
641
661
  "description": "Set to false if the table does not occupy the entire space available in the container.",
642
662
  "type": "boolean",
@@ -756,6 +776,12 @@
756
776
  "artifactType": "FlexChange",
757
777
  "controlType": "sap.ui.comp.smarttable.SmartTable"
758
778
  },
779
+ "exportType": {
780
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
781
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
782
+ "artifactType": "FlexChange",
783
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
784
+ },
759
785
  "fitContainer": {
760
786
  "description": "Set to false if the table does not occupy the entire space available in the container.",
761
787
  "type": "boolean",
@@ -50,6 +50,14 @@
50
50
  "flexEnabled": {
51
51
  "description": "The flexEnabled indicates if the application supports UI adaptation.",
52
52
  "type": "boolean"
53
+ },
54
+ "draftDiscardConfirmationSettings": {
55
+ "$ref": "#/definitions/DraftDiscardConfirmationSettings",
56
+ "description": "Allows applications to configure confirmation popups in various scenarios"
57
+ },
58
+ "statePreservationMode": {
59
+ "$ref": "#/definitions/StatePreservationMode",
60
+ "description": "Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases."
53
61
  }
54
62
  },
55
63
  "additionalProperties": false
@@ -88,6 +96,29 @@
88
96
  ],
89
97
  "type": "string"
90
98
  },
99
+ "DraftDiscardConfirmationSettings": {
100
+ "type": "object",
101
+ "properties": {
102
+ "enabled": {
103
+ "description": "Allows applications to turn off the discard draft confirmation popup in various scenarios",
104
+ "type": "string",
105
+ "enum": [
106
+ "restricted"
107
+ ]
108
+ }
109
+ },
110
+ "additionalProperties": false,
111
+ "required": [
112
+ "enabled"
113
+ ]
114
+ },
115
+ "StatePreservationMode": {
116
+ "enum": [
117
+ "discovery",
118
+ "persistence"
119
+ ],
120
+ "type": "string"
121
+ },
91
122
  "Pages": {
92
123
  "type": "object",
93
124
  "additionalProperties": {
@@ -117,6 +117,12 @@
117
117
  "artifactType": "FlexChange",
118
118
  "controlType": "sap.ui.comp.smarttable.SmartTable"
119
119
  },
120
+ "exportType": {
121
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
122
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
123
+ "artifactType": "FlexChange",
124
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
125
+ },
120
126
  "fitContainer": {
121
127
  "description": "Set to false if the table does not occupy the entire space available in the container.",
122
128
  "type": "boolean",
@@ -216,6 +222,14 @@
216
222
  "path"
217
223
  ]
218
224
  },
225
+ "sap.ui.comp.smarttable.ExportType": {
226
+ "description": "Provides the type of services available for export in the `SmartTable` control.",
227
+ "enum": [
228
+ "GW",
229
+ "UI5Client"
230
+ ],
231
+ "type": "string"
232
+ },
219
233
  "QuickVariantSelection": {
220
234
  "type": "object",
221
235
  "properties": {
@@ -646,6 +660,12 @@
646
660
  "artifactType": "FlexChange",
647
661
  "controlType": "sap.ui.comp.smarttable.SmartTable"
648
662
  },
663
+ "exportType": {
664
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
665
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
666
+ "artifactType": "FlexChange",
667
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
668
+ },
649
669
  "fitContainer": {
650
670
  "description": "Set to false if the table does not occupy the entire space available in the container.",
651
671
  "type": "boolean",
@@ -739,6 +759,12 @@
739
759
  "artifactType": "FlexChange",
740
760
  "controlType": "sap.ui.comp.smarttable.SmartTable"
741
761
  },
762
+ "exportType": {
763
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
764
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
765
+ "artifactType": "FlexChange",
766
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
767
+ },
742
768
  "fitContainer": {
743
769
  "description": "Set to false if the table does not occupy the entire space available in the container.",
744
770
  "type": "boolean",
@@ -863,6 +889,12 @@
863
889
  "artifactType": "FlexChange",
864
890
  "controlType": "sap.ui.comp.smarttable.SmartTable"
865
891
  },
892
+ "exportType": {
893
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
894
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
895
+ "artifactType": "FlexChange",
896
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
897
+ },
866
898
  "fitContainer": {
867
899
  "description": "Set to false if the table does not occupy the entire space available in the container.",
868
900
  "type": "boolean",
@@ -976,6 +1008,12 @@
976
1008
  "artifactType": "FlexChange",
977
1009
  "controlType": "sap.ui.comp.smarttable.SmartTable"
978
1010
  },
1011
+ "exportType": {
1012
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
1013
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
1014
+ "artifactType": "FlexChange",
1015
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
1016
+ },
979
1017
  "fitContainer": {
980
1018
  "description": "Set to false if the table does not occupy the entire space available in the container.",
981
1019
  "type": "boolean",
@@ -505,6 +505,12 @@
505
505
  "artifactType": "FlexChange",
506
506
  "controlType": "sap.ui.comp.smarttable.SmartTable"
507
507
  },
508
+ "exportType": {
509
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
510
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
511
+ "artifactType": "FlexChange",
512
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
513
+ },
508
514
  "createMode": {
509
515
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
510
516
  "type": "string",
@@ -617,6 +623,14 @@
617
623
  "key"
618
624
  ]
619
625
  },
626
+ "sap.ui.comp.smarttable.ExportType": {
627
+ "description": "Provides the type of services available for export in the `SmartTable` control.",
628
+ "enum": [
629
+ "GW",
630
+ "UI5Client"
631
+ ],
632
+ "type": "string"
633
+ },
620
634
  "ObjectPageToolBar": {
621
635
  "description": "Toolbar",
622
636
  "isViewNode": true,
@@ -893,6 +907,12 @@
893
907
  "artifactType": "FlexChange",
894
908
  "controlType": "sap.ui.comp.smarttable.SmartTable"
895
909
  },
910
+ "exportType": {
911
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
912
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
913
+ "artifactType": "FlexChange",
914
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
915
+ },
896
916
  "createMode": {
897
917
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
898
918
  "type": "string",
@@ -978,6 +998,12 @@
978
998
  "artifactType": "FlexChange",
979
999
  "controlType": "sap.ui.comp.smarttable.SmartTable"
980
1000
  },
1001
+ "exportType": {
1002
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
1003
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
1004
+ "artifactType": "FlexChange",
1005
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
1006
+ },
981
1007
  "createMode": {
982
1008
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
983
1009
  "type": "string",
@@ -1063,6 +1089,12 @@
1063
1089
  "artifactType": "FlexChange",
1064
1090
  "controlType": "sap.ui.comp.smarttable.SmartTable"
1065
1091
  },
1092
+ "exportType": {
1093
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
1094
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
1095
+ "artifactType": "FlexChange",
1096
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
1097
+ },
1066
1098
  "createMode": {
1067
1099
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
1068
1100
  "type": "string",
@@ -1148,6 +1180,12 @@
1148
1180
  "artifactType": "FlexChange",
1149
1181
  "controlType": "sap.ui.comp.smarttable.SmartTable"
1150
1182
  },
1183
+ "exportType": {
1184
+ "$ref": "#/definitions/sap.ui.comp.smarttable.ExportType",
1185
+ "description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
1186
+ "artifactType": "FlexChange",
1187
+ "controlType": "sap.ui.comp.smarttable.SmartTable"
1188
+ },
1151
1189
  "createMode": {
1152
1190
  "description": "Use createMode 'inline' to enable inline creation of table entries for draft enabled applications.",
1153
1191
  "type": "string",
@@ -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(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(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={})),function(e){e.persistence="persistence",e.discovery="discovery"}(t.StatePreservationMode||(t.StatePreservationMode={})),function(e){e.restricted="restricted"}(t.DraftDiscardEnabledSettings||(t.DraftDiscardEnabledSettings={}))},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={}))},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.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.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(6745)),n(a(2922)),n(a(2906)),n(a(2387)),n(a(7876)),n(a(9649))},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(7900))},7900:(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(2616)),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={}))},2616:(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})();
@@ -1 +1 @@
1
- (()=>{"use strict";var e={6442:(e,t)=>{var n;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"}(n=t.ManifestSection||(t.ManifestSection={})),t.GENERICAPPSETTINGS=`${n.generic}/settings`},3404:(e,t,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(6442)),o(n(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"},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,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(7093)),o(n(8452)),o(n(9734)),o(n(8554)),o(n(4685))},5877:(e,t,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(7005)),o(n(1709)),o(n(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,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(8999)),o(n(5759))},5113:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}(n(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,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(8778)),o(n(8741)),o(n(3404)),o(n(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 n=function n(o){var a=t[o];if(void 0!==a)return a.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,n),i.exports}(5877);module.exports=n})();
1
+ (()=>{"use strict";var e={6442:(e,t)=>{var n;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"}(n=t.ManifestSection||(t.ManifestSection={})),t.GENERICAPPSETTINGS=`${n.generic}/settings`},3404:(e,t,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(6442)),o(n(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"},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,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(7093)),o(n(8452)),o(n(9734)),o(n(8554)),o(n(4685))},5877:(e,t,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(2616)),o(n(1709)),o(n(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={}))},2616:(e,t,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(8999)),o(n(5759))},5113:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}(n(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,n)=>{function o(e){for(var n in e)t.hasOwnProperty(n)||(t[n]=e[n])}Object.defineProperty(t,"__esModule",{value:!0}),o(n(8778)),o(n(8741)),o(n(3404)),o(n(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 n=function n(o){var a=t[o];if(void 0!==a)return a.exports;var i=t[o]={exports:{}};return e[o](i,i.exports,n),i.exports}(5877);module.exports=n})();
package/dist/src/api.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { File, ExportResults } from './sync/common/types';
2
- import { GenerateSchemaParameters, ExportConfigParameters, ImportConfigParameters, ImportProjectParameters, ApiVersion } from './apiTypes';
2
+ import { GenerateSchemaParameters, ExportConfigParameters, ImportConfigParameters, ImportProjectParameters, ApiVersion, GenerateCustomExtensionParams } from './apiTypes';
3
+ import { Editor } from 'mem-fs-editor';
3
4
  /**
4
5
  * Return the generic (project independent) JSON schema
5
6
  * @param specification - reference to spec
@@ -39,3 +40,10 @@ export declare function importProjectSchema(importParameters: ImportProjectParam
39
40
  * @return {ApiVersion} Object of API version.
40
41
  */
41
42
  export declare function getApiVersion(): ApiVersion;
43
+ /**
44
+ * Calls the FPM Writer for generating a custom extension
45
+ *
46
+ * @param customExtensionParams parameters for generating the custom extension
47
+ * @returns {Editor} Instance of mem-fs-editor
48
+ */
49
+ export declare function generateCustomExtension(customExtensionParams: GenerateCustomExtensionParams): Editor | undefined;
package/dist/src/api.js CHANGED
@@ -5,6 +5,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
5
5
  */
6
6
  const page_1 = require("./specification/common/page");
7
7
  const schemaAccess_1 = require("./specification/schemaAccess");
8
+ const apiTypes_1 = require("./apiTypes");
8
9
  const generate_1 = require("./sync/v2/generate");
9
10
  const generate_2 = require("./sync/v4/generate");
10
11
  const exportPage_1 = require("./sync/v2/export/exportPage");
@@ -160,8 +161,24 @@ exports.importProjectSchema = importProjectSchema;
160
161
  */
161
162
  function getApiVersion() {
162
163
  return {
163
- version: '1'
164
+ version: '2'
164
165
  };
165
166
  }
166
167
  exports.getApiVersion = getApiVersion;
168
+ /**
169
+ * Calls the FPM Writer for generating a custom extension
170
+ *
171
+ * @param customExtensionParams parameters for generating the custom extension
172
+ * @returns {Editor} Instance of mem-fs-editor
173
+ */
174
+ function generateCustomExtension(customExtensionParams) {
175
+ const fpmWriterFunction = apiTypes_1.FPMWriterMap.get(customExtensionParams.customExtension);
176
+ if (fpmWriterFunction && typeof fpmWriterFunction === 'function') {
177
+ return fpmWriterFunction(customExtensionParams.basePath, customExtensionParams.data, customExtensionParams.fsEditor);
178
+ }
179
+ else {
180
+ return;
181
+ }
182
+ }
183
+ exports.generateCustomExtension = generateCustomExtension;
167
184
  //# sourceMappingURL=api.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/api.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"api.js","sourceRoot":"","sources":["../../src/api.ts"],"names":[],"mappings":"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"}
@@ -6,6 +6,8 @@ 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, CustomSection } from '@sap-ux/fe-fpm-writer';
10
+ import { Editor } from 'mem-fs-editor';
9
11
  export declare type MessageMetadataType = (object | string | number)[];
10
12
  /**
11
13
  * Interface used to define a logger for the specificaton API
@@ -287,6 +289,19 @@ export interface GenerateAppSchemaParameters {
287
289
  fragments?: FileData[];
288
290
  logger?: ExtensionLogger;
289
291
  }
292
+ export declare enum CustomExtensionType {
293
+ CustomPage = "CustomPage",
294
+ CustomColumn = "CustomColumn",
295
+ CustomSection = "CustomSection"
296
+ }
297
+ export interface GenerateCustomExtensionParams {
298
+ customExtension: CustomExtensionType;
299
+ basePath: string;
300
+ data: CustomExtensionData;
301
+ fsEditor?: Editor;
302
+ }
303
+ export declare type CustomExtensionData = CustomPage | CustomTableColumn | CustomSection;
304
+ export declare const FPMWriterMap: Map<CustomExtensionType, (basePath: string, data: CustomExtensionData, fs?: Editor) => Editor>;
290
305
  /**
291
306
  * API Version
292
307
  */
@@ -304,4 +319,5 @@ export interface Specification {
304
319
  importProject: (ImportProjectParameters: any) => Promise<File[]>;
305
320
  getApiVersion: () => ApiVersion;
306
321
  importProjectSchema: (ImportProjectParameters: any) => Promise<File[]>;
322
+ generateCustomExtension: (GenerateCustomExtensionParams: any) => Editor;
307
323
  }
@@ -2,4 +2,16 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const schemaAccess_1 = require("./specification/schemaAccess");
4
4
  const page_1 = require("./specification/common/page");
5
+ const fe_fpm_writer_1 = require("@sap-ux/fe-fpm-writer");
6
+ var CustomExtensionType;
7
+ (function (CustomExtensionType) {
8
+ CustomExtensionType["CustomPage"] = "CustomPage";
9
+ CustomExtensionType["CustomColumn"] = "CustomColumn";
10
+ CustomExtensionType["CustomSection"] = "CustomSection";
11
+ })(CustomExtensionType = exports.CustomExtensionType || (exports.CustomExtensionType = {}));
12
+ exports.FPMWriterMap = new Map([
13
+ [CustomExtensionType.CustomPage, fe_fpm_writer_1.generateCustomPage],
14
+ [CustomExtensionType.CustomColumn, fe_fpm_writer_1.generateCustomColumn],
15
+ [CustomExtensionType.CustomSection, fe_fpm_writer_1.generateCustomSection]
16
+ ]);
5
17
  //# sourceMappingURL=apiTypes.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"apiTypes.js","sourceRoot":"","sources":["../../src/apiTypes.ts"],"names":[],"mappings":";;AAAA,+DAA0D;AAC1D,sDAAmE"}
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"}
package/dist/src/index.js CHANGED
@@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  __export(require("./specification/common"));
7
7
  __export(require("./sync/common/types"));
8
8
  __export(require("./api"));
9
+ __export(require("./apiTypes"));
9
10
  __export(require("./specification/schemaAccess"));
10
11
  __export(require("./extensionLogger"));
11
12
  __export(require("./project"));
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;AAAA,4CAAuC;AACvC,yCAAoC;AACpC,2BAAsB;AAEtB,kDAA6C;AAC7C,uCAAkC;AAClC,+BAA0B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;AAAA,4CAAuC;AACvC,yCAAoC;AACpC,2BAAsB;AACtB,gCAA2B;AAC3B,kDAA6C;AAC7C,uCAAkC;AAClC,+BAA0B"}
@@ -5,6 +5,19 @@ export declare enum TableColumnVerticalAlignment {
5
5
  Middle = "Middle",
6
6
  Bottom = "Bottom"
7
7
  }
8
+ export declare enum StatePreservationMode {
9
+ persistence = "persistence",
10
+ discovery = "discovery"
11
+ }
12
+ export interface DraftDiscardConfirmationSettings {
13
+ /**
14
+ * Allows applications to turn off the discard draft confirmation popup in various scenarios
15
+ */
16
+ enabled: DraftDiscardEnabledSettings;
17
+ }
18
+ export declare enum DraftDiscardEnabledSettings {
19
+ restricted = "restricted"
20
+ }
8
21
  export interface AppSettings {
9
22
  /**
10
23
  * 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.
@@ -32,6 +45,14 @@ export interface AppSettings {
32
45
  * The flexEnabled indicates if the application supports UI adaptation.
33
46
  */
34
47
  flexEnabled?: boolean;
48
+ /**
49
+ * Allows applications to configure confirmation popups in various scenarios
50
+ */
51
+ draftDiscardConfirmationSettings?: DraftDiscardConfirmationSettings;
52
+ /**
53
+ * Allows applications to configure persistence mode in an object page. Persistence mode retains the tab selection made on an object page in certain cases.
54
+ */
55
+ statePreservationMode?: StatePreservationMode;
35
56
  }
36
57
  export interface ApplicationV2 extends Application {
37
58
  settings?: AppSettings;
@@ -6,4 +6,13 @@ var TableColumnVerticalAlignment;
6
6
  TableColumnVerticalAlignment["Middle"] = "Middle";
7
7
  TableColumnVerticalAlignment["Bottom"] = "Bottom";
8
8
  })(TableColumnVerticalAlignment = exports.TableColumnVerticalAlignment || (exports.TableColumnVerticalAlignment = {}));
9
+ var StatePreservationMode;
10
+ (function (StatePreservationMode) {
11
+ StatePreservationMode["persistence"] = "persistence";
12
+ StatePreservationMode["discovery"] = "discovery";
13
+ })(StatePreservationMode = exports.StatePreservationMode || (exports.StatePreservationMode = {}));
14
+ var DraftDiscardEnabledSettings;
15
+ (function (DraftDiscardEnabledSettings) {
16
+ DraftDiscardEnabledSettings["restricted"] = "restricted";
17
+ })(DraftDiscardEnabledSettings = exports.DraftDiscardEnabledSettings || (exports.DraftDiscardEnabledSettings = {}));
9
18
  //# sourceMappingURL=ApplicationV2.js.map