@sap/ux-specification 1.84.36 → 1.84.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +65 -3
- package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
- package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
- package/dist/documentation/v2/v2-ListReport.html +1 -1
- package/dist/documentation/v2/v2-ObjectPage.html +1 -1
- package/dist/documentation/v2/v2-OverviewPage.html +1 -1
- package/dist/documentation/v4/v4-ApplicationV4.html +1 -1
- package/dist/documentation/v4/v4-ListReport.html +1 -1
- package/dist/documentation/v4/v4-ObjectPage.html +1 -1
- package/dist/index-min.js +1 -1
- package/dist/schemas/v2/AnalyticalListPageConfig.json +9 -5
- package/dist/schemas/v2/ListReportConfig.json +11 -7
- package/dist/schemas/v2/ObjectPageConfig.json +195 -7
- package/dist/schemas/v4/ListReportConfig.json +22 -2
- package/dist/schemas/v4/ObjectPageConfig.json +36 -0
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/src/apiTypes.d.ts +5 -4
- package/dist/src/project.d.ts +1 -0
- package/dist/src/project.js +2 -2
- package/dist/src/project.js.map +1 -1
- package/dist/src/specification/schemaAccess.js +2 -2
- package/dist/src/specification/schemaAccess.js.map +1 -1
- package/dist/src/specification/v2/controls/Facets.d.ts +2 -1
- package/dist/src/specification/v2/controls/ObjectPageSection.d.ts +44 -9
- package/dist/src/specification/v2/controls/ObjectPageSection.js.map +1 -1
- package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +2 -3
- package/dist/src/specification/v2/controls/Table.d.ts +5 -2
- package/dist/src/specification/v2/controls/Table.js +5 -0
- package/dist/src/specification/v2/controls/Table.js.map +1 -1
- package/dist/src/specification/v4/controls/ObjectPageSection.d.ts +22 -1
- package/dist/src/specification/v4/controls/ObjectPageSection.js.map +1 -1
- package/dist/src/specification/v4/controls/Table.d.ts +4 -0
- package/dist/src/sync/common/appProvider.d.ts +1 -1
- package/dist/src/sync/common/appProvider.js +1 -1
- package/dist/src/sync/common/decoration/control.d.ts +1 -1
- package/dist/src/sync/common/decoration/control.js +28 -23
- package/dist/src/sync/common/decoration/control.js.map +1 -1
- package/dist/src/sync/common/decoration/decorators.d.ts +2 -2
- package/dist/src/sync/common/decoration/decorators.js +8 -6
- package/dist/src/sync/common/decoration/decorators.js.map +1 -1
- package/dist/src/sync/common/flexUtils.js +1 -2
- package/dist/src/sync/common/flexUtils.js.map +1 -1
- package/dist/src/sync/common/generate/objectPage.d.ts +8 -9
- package/dist/src/sync/common/generate/objectPage.js +13 -13
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/generate/utils.d.ts +62 -13
- package/dist/src/sync/common/generate/utils.js +124 -22
- package/dist/src/sync/common/generate/utils.js.map +1 -1
- package/dist/src/sync/common/import/utils.d.ts +9 -2
- package/dist/src/sync/common/import/utils.js +25 -6
- package/dist/src/sync/common/import/utils.js.map +1 -1
- package/dist/src/sync/common/importProject.d.ts +2 -3
- package/dist/src/sync/common/importProject.js +20 -19
- package/dist/src/sync/common/importProject.js.map +1 -1
- package/dist/src/sync/common/types.d.ts +65 -9
- package/dist/src/sync/common/types.js +57 -4
- package/dist/src/sync/common/types.js.map +1 -1
- package/dist/src/sync/common/utils.d.ts +30 -23
- package/dist/src/sync/common/utils.js +124 -86
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/application.d.ts +3 -3
- package/dist/src/sync/v2/application.js +4 -4
- package/dist/src/sync/v2/application.js.map +1 -1
- package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.js +1 -1
- package/dist/src/sync/v2/export/controls/AnalyticalListPageChart.js.map +1 -1
- package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.js +6 -6
- package/dist/src/sync/v2/export/controls/AnalyticalListPageKPI.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js +3 -3
- package/dist/src/sync/v2/export/controls/ObjectPageCustomSection.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +26 -14
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +57 -5
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +2 -3
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Table.d.ts +3 -3
- package/dist/src/sync/v2/export/controls/Table.js +90 -49
- package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
- package/dist/src/sync/v2/export/export.d.ts +0 -1
- package/dist/src/sync/v2/export/export.js +219 -157
- package/dist/src/sync/v2/export/export.js.map +1 -1
- package/dist/src/sync/v2/export/exportPage.js +34 -33
- package/dist/src/sync/v2/export/exportPage.js.map +1 -1
- package/dist/src/sync/v2/export/manifest.d.ts +6 -0
- package/dist/src/sync/v2/export/manifest.js +50 -35
- package/dist/src/sync/v2/export/manifest.js.map +1 -1
- package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +1 -1
- package/dist/src/sync/v2/export/pages/OverviewPage.js +18 -16
- package/dist/src/sync/v2/export/pages/OverviewPage.js.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js +3 -3
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/src/sync/v2/generate/listReport.d.ts +3 -4
- package/dist/src/sync/v2/generate/listReport.js +1 -1
- package/dist/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.js +50 -36
- package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.d.ts +11 -9
- package/dist/src/sync/v2/generate/utils.js +98 -95
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/app/appProvider.d.ts +9 -0
- package/dist/src/sync/v2/import/app/appProvider.js +36 -13
- package/dist/src/sync/v2/import/app/appProvider.js.map +1 -1
- package/dist/src/sync/v2/import/app/ovpProvider.js +1 -1
- package/dist/src/sync/v2/import/app/ovpProvider.js.map +1 -1
- package/dist/src/sync/v2/import/common/index.js +5 -5
- package/dist/src/sync/v2/import/common/index.js.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +89 -95
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v2/types.d.ts +8 -3
- package/dist/src/sync/v2/types.js +6 -2
- package/dist/src/sync/v2/types.js.map +1 -1
- package/dist/src/sync/v4/application.d.ts +22 -10
- package/dist/src/sync/v4/application.js +67 -18
- package/dist/src/sync/v4/application.js.map +1 -1
- package/dist/src/sync/v4/export/controls/Table.d.ts +5 -1
- package/dist/src/sync/v4/export/controls/Table.js +83 -50
- package/dist/src/sync/v4/export/controls/Table.js.map +1 -1
- package/dist/src/sync/v4/export/controls/TableColumn.js +4 -4
- package/dist/src/sync/v4/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v4/export/export.js +305 -172
- package/dist/src/sync/v4/export/export.js.map +1 -1
- package/dist/src/sync/v4/export/manifest.js +25 -6
- package/dist/src/sync/v4/export/manifest.js.map +1 -1
- package/dist/src/sync/v4/export/pages/ObjectPage.js +3 -2
- package/dist/src/sync/v4/export/pages/ObjectPage.js.map +1 -1
- package/dist/src/sync/v4/export/types.d.ts +5 -5
- package/dist/src/sync/v4/generate/listReport.d.ts +2 -2
- package/dist/src/sync/v4/generate/listReport.js +264 -165
- package/dist/src/sync/v4/generate/listReport.js.map +1 -1
- package/dist/src/sync/v4/generate/objectPage.d.ts +1 -1
- package/dist/src/sync/v4/generate/objectPage.js +292 -150
- package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v4/import/app/appProvider.js +32 -22
- package/dist/src/sync/v4/import/app/appProvider.js.map +1 -1
- package/dist/src/sync/v4/import/pages/listReport.js +100 -60
- package/dist/src/sync/v4/import/pages/listReport.js.map +1 -1
- package/dist/src/sync/v4/import/pages/objectPage.d.ts +13 -0
- package/dist/src/sync/v4/import/pages/objectPage.js +64 -35
- package/dist/src/sync/v4/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v4/import/utils.d.ts +2 -1
- package/dist/src/sync/v4/import/utils.js +1 -1
- package/dist/src/sync/v4/import/utils.js.map +1 -1
- package/dist/src/sync/v4/types.d.ts +2 -0
- package/dist/src/sync/v4/utils/StableIdHelper.js +13 -10
- package/dist/src/sync/v4/utils/StableIdHelper.js.map +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts +9 -8
- package/dist/src/sync/v4/utils/utils.js +26 -26
- package/dist/src/sync/v4/utils/utils.js.map +1 -1
- package/package.json +6 -7
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
128
128
|
},
|
|
129
129
|
"exportType": {
|
|
130
|
-
"$ref": "#/definitions/
|
|
130
|
+
"$ref": "#/definitions/ExportType",
|
|
131
131
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
132
132
|
"artifactType": "FlexChange",
|
|
133
133
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -221,8 +221,12 @@
|
|
|
221
221
|
"path"
|
|
222
222
|
]
|
|
223
223
|
},
|
|
224
|
-
"
|
|
225
|
-
"
|
|
224
|
+
"ExportType": {
|
|
225
|
+
"enum": [
|
|
226
|
+
"GW",
|
|
227
|
+
"UI5Client"
|
|
228
|
+
],
|
|
229
|
+
"type": "string"
|
|
226
230
|
},
|
|
227
231
|
"QuickVariantSelection": {
|
|
228
232
|
"type": "object",
|
|
@@ -704,7 +708,7 @@
|
|
|
704
708
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
705
709
|
},
|
|
706
710
|
"exportType": {
|
|
707
|
-
"$ref": "#/definitions/
|
|
711
|
+
"$ref": "#/definitions/ExportType",
|
|
708
712
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
709
713
|
"artifactType": "FlexChange",
|
|
710
714
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -829,7 +833,7 @@
|
|
|
829
833
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
830
834
|
},
|
|
831
835
|
"exportType": {
|
|
832
|
-
"$ref": "#/definitions/
|
|
836
|
+
"$ref": "#/definitions/ExportType",
|
|
833
837
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
834
838
|
"artifactType": "FlexChange",
|
|
835
839
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
122
122
|
},
|
|
123
123
|
"exportType": {
|
|
124
|
-
"$ref": "#/definitions/
|
|
124
|
+
"$ref": "#/definitions/ExportType",
|
|
125
125
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
126
126
|
"artifactType": "FlexChange",
|
|
127
127
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -225,8 +225,12 @@
|
|
|
225
225
|
"path"
|
|
226
226
|
]
|
|
227
227
|
},
|
|
228
|
-
"
|
|
229
|
-
"
|
|
228
|
+
"ExportType": {
|
|
229
|
+
"enum": [
|
|
230
|
+
"GW",
|
|
231
|
+
"UI5Client"
|
|
232
|
+
],
|
|
233
|
+
"type": "string"
|
|
230
234
|
},
|
|
231
235
|
"QuickVariantSelection": {
|
|
232
236
|
"type": "object",
|
|
@@ -713,7 +717,7 @@
|
|
|
713
717
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
714
718
|
},
|
|
715
719
|
"exportType": {
|
|
716
|
-
"$ref": "#/definitions/
|
|
720
|
+
"$ref": "#/definitions/ExportType",
|
|
717
721
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
718
722
|
"artifactType": "FlexChange",
|
|
719
723
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -812,7 +816,7 @@
|
|
|
812
816
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
813
817
|
},
|
|
814
818
|
"exportType": {
|
|
815
|
-
"$ref": "#/definitions/
|
|
819
|
+
"$ref": "#/definitions/ExportType",
|
|
816
820
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
817
821
|
"artifactType": "FlexChange",
|
|
818
822
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -942,7 +946,7 @@
|
|
|
942
946
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
943
947
|
},
|
|
944
948
|
"exportType": {
|
|
945
|
-
"$ref": "#/definitions/
|
|
949
|
+
"$ref": "#/definitions/ExportType",
|
|
946
950
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
947
951
|
"artifactType": "FlexChange",
|
|
948
952
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -1061,7 +1065,7 @@
|
|
|
1061
1065
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1062
1066
|
},
|
|
1063
1067
|
"exportType": {
|
|
1064
|
-
"$ref": "#/definitions/
|
|
1068
|
+
"$ref": "#/definitions/ExportType",
|
|
1065
1069
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1066
1070
|
"artifactType": "FlexChange",
|
|
1067
1071
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -231,6 +231,9 @@
|
|
|
231
231
|
"type": "object",
|
|
232
232
|
"additionalProperties": {
|
|
233
233
|
"anyOf": [
|
|
234
|
+
{
|
|
235
|
+
"$ref": "#/definitions/ObjectPageSectionV2"
|
|
236
|
+
},
|
|
234
237
|
{
|
|
235
238
|
"$ref": "#/definitions/ObjectPageSectionFormV2"
|
|
236
239
|
},
|
|
@@ -240,12 +243,45 @@
|
|
|
240
243
|
{
|
|
241
244
|
"$ref": "#/definitions/ObjectPageSectionChartV2"
|
|
242
245
|
},
|
|
246
|
+
{
|
|
247
|
+
"$ref": "#/definitions/ObjectPageSectionContactV2"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"$ref": "#/definitions/ObjectPageSectionAddressV2"
|
|
251
|
+
},
|
|
243
252
|
{
|
|
244
253
|
"$ref": "#/definitions/ObjectPageSubSectionV2"
|
|
245
254
|
}
|
|
246
255
|
]
|
|
247
256
|
}
|
|
248
257
|
},
|
|
258
|
+
"ObjectPageSectionV2": {
|
|
259
|
+
"description": "Section",
|
|
260
|
+
"isViewNode": true,
|
|
261
|
+
"type": "object",
|
|
262
|
+
"properties": {
|
|
263
|
+
"visible": {
|
|
264
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
265
|
+
"anyOf": [
|
|
266
|
+
{
|
|
267
|
+
"enum": [
|
|
268
|
+
false,
|
|
269
|
+
true,
|
|
270
|
+
"{ui>/editable}",
|
|
271
|
+
"{= !${ui>/editable}}"
|
|
272
|
+
]
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"type": "string"
|
|
276
|
+
}
|
|
277
|
+
],
|
|
278
|
+
"description": "Whether the section should be visible on the screen.",
|
|
279
|
+
"artifactType": "FlexChange",
|
|
280
|
+
"controlType": "sap.uxap.ObjectPageSection"
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
"additionalProperties": false
|
|
284
|
+
},
|
|
249
285
|
"ObjectPageSectionFormV2": {
|
|
250
286
|
"description": "Form",
|
|
251
287
|
"isViewNode": true,
|
|
@@ -505,7 +541,7 @@
|
|
|
505
541
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
506
542
|
},
|
|
507
543
|
"exportType": {
|
|
508
|
-
"$ref": "#/definitions/
|
|
544
|
+
"$ref": "#/definitions/ExportType",
|
|
509
545
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
510
546
|
"artifactType": "FlexChange",
|
|
511
547
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -622,8 +658,12 @@
|
|
|
622
658
|
"key"
|
|
623
659
|
]
|
|
624
660
|
},
|
|
625
|
-
"
|
|
626
|
-
"
|
|
661
|
+
"ExportType": {
|
|
662
|
+
"enum": [
|
|
663
|
+
"GW",
|
|
664
|
+
"UI5Client"
|
|
665
|
+
],
|
|
666
|
+
"type": "string"
|
|
627
667
|
},
|
|
628
668
|
"ObjectPageToolBar": {
|
|
629
669
|
"description": "Toolbar",
|
|
@@ -957,7 +997,7 @@
|
|
|
957
997
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
958
998
|
},
|
|
959
999
|
"exportType": {
|
|
960
|
-
"$ref": "#/definitions/
|
|
1000
|
+
"$ref": "#/definitions/ExportType",
|
|
961
1001
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
962
1002
|
"artifactType": "FlexChange",
|
|
963
1003
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -1048,7 +1088,7 @@
|
|
|
1048
1088
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1049
1089
|
},
|
|
1050
1090
|
"exportType": {
|
|
1051
|
-
"$ref": "#/definitions/
|
|
1091
|
+
"$ref": "#/definitions/ExportType",
|
|
1052
1092
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1053
1093
|
"artifactType": "FlexChange",
|
|
1054
1094
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -1139,7 +1179,7 @@
|
|
|
1139
1179
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1140
1180
|
},
|
|
1141
1181
|
"exportType": {
|
|
1142
|
-
"$ref": "#/definitions/
|
|
1182
|
+
"$ref": "#/definitions/ExportType",
|
|
1143
1183
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1144
1184
|
"artifactType": "FlexChange",
|
|
1145
1185
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -1230,7 +1270,7 @@
|
|
|
1230
1270
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
1231
1271
|
},
|
|
1232
1272
|
"exportType": {
|
|
1233
|
-
"$ref": "#/definitions/
|
|
1273
|
+
"$ref": "#/definitions/ExportType",
|
|
1234
1274
|
"description": "Specifies the type of export to be used in the SmartTable control. UI5Client is the default option.",
|
|
1235
1275
|
"artifactType": "FlexChange",
|
|
1236
1276
|
"controlType": "sap.ui.comp.smarttable.SmartTable"
|
|
@@ -1307,12 +1347,160 @@
|
|
|
1307
1347
|
},
|
|
1308
1348
|
"additionalProperties": false
|
|
1309
1349
|
},
|
|
1350
|
+
"ObjectPageSectionContactV2": {
|
|
1351
|
+
"type": "object",
|
|
1352
|
+
"properties": {
|
|
1353
|
+
"contact": {
|
|
1354
|
+
"description": "Contact",
|
|
1355
|
+
"isViewNode": true,
|
|
1356
|
+
"type": "object",
|
|
1357
|
+
"properties": {},
|
|
1358
|
+
"additionalProperties": true
|
|
1359
|
+
},
|
|
1360
|
+
"visible": {
|
|
1361
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
1362
|
+
"anyOf": [
|
|
1363
|
+
{
|
|
1364
|
+
"enum": [
|
|
1365
|
+
false,
|
|
1366
|
+
true,
|
|
1367
|
+
"{ui>/editable}",
|
|
1368
|
+
"{= !${ui>/editable}}"
|
|
1369
|
+
]
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
"type": "string"
|
|
1373
|
+
}
|
|
1374
|
+
],
|
|
1375
|
+
"description": "Whether the section should be visible on the screen.",
|
|
1376
|
+
"artifactType": "FlexChange",
|
|
1377
|
+
"controlType": "sap.uxap.ObjectPageSection"
|
|
1378
|
+
}
|
|
1379
|
+
},
|
|
1380
|
+
"additionalProperties": false
|
|
1381
|
+
},
|
|
1382
|
+
"ObjectPageSectionAddressV2": {
|
|
1383
|
+
"type": "object",
|
|
1384
|
+
"properties": {
|
|
1385
|
+
"address": {
|
|
1386
|
+
"description": "Address",
|
|
1387
|
+
"isViewNode": true,
|
|
1388
|
+
"type": "object",
|
|
1389
|
+
"properties": {},
|
|
1390
|
+
"additionalProperties": true
|
|
1391
|
+
},
|
|
1392
|
+
"visible": {
|
|
1393
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
1394
|
+
"anyOf": [
|
|
1395
|
+
{
|
|
1396
|
+
"enum": [
|
|
1397
|
+
false,
|
|
1398
|
+
true,
|
|
1399
|
+
"{ui>/editable}",
|
|
1400
|
+
"{= !${ui>/editable}}"
|
|
1401
|
+
]
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
"type": "string"
|
|
1405
|
+
}
|
|
1406
|
+
],
|
|
1407
|
+
"description": "Whether the section should be visible on the screen.",
|
|
1408
|
+
"artifactType": "FlexChange",
|
|
1409
|
+
"controlType": "sap.uxap.ObjectPageSection"
|
|
1410
|
+
}
|
|
1411
|
+
},
|
|
1412
|
+
"additionalProperties": false
|
|
1413
|
+
},
|
|
1310
1414
|
"ObjectPageSubSectionV2": {
|
|
1311
1415
|
"description": "Subsection",
|
|
1312
1416
|
"isViewNode": true,
|
|
1313
1417
|
"type": "object",
|
|
1314
1418
|
"properties": {
|
|
1315
1419
|
"subsections": {
|
|
1420
|
+
"$ref": "#/definitions/GenericSubSections"
|
|
1421
|
+
},
|
|
1422
|
+
"visible": {
|
|
1423
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
1424
|
+
"anyOf": [
|
|
1425
|
+
{
|
|
1426
|
+
"enum": [
|
|
1427
|
+
false,
|
|
1428
|
+
true,
|
|
1429
|
+
"{ui>/editable}",
|
|
1430
|
+
"{= !${ui>/editable}}"
|
|
1431
|
+
]
|
|
1432
|
+
},
|
|
1433
|
+
{
|
|
1434
|
+
"type": "string"
|
|
1435
|
+
}
|
|
1436
|
+
],
|
|
1437
|
+
"description": "Whether the section should be visible on the screen.",
|
|
1438
|
+
"artifactType": "FlexChange",
|
|
1439
|
+
"controlType": "sap.uxap.ObjectPageSubSection"
|
|
1440
|
+
}
|
|
1441
|
+
},
|
|
1442
|
+
"additionalProperties": false
|
|
1443
|
+
},
|
|
1444
|
+
"GenericSubSections": {
|
|
1445
|
+
"type": "object",
|
|
1446
|
+
"additionalProperties": {
|
|
1447
|
+
"anyOf": [
|
|
1448
|
+
{
|
|
1449
|
+
"$ref": "#/definitions/ObjectPageSectionFormV2"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"$ref": "#/definitions/ObjectPageSectionTableV2"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
"$ref": "#/definitions/ObjectPageSectionChartV2"
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
"$ref": "#/definitions/ObjectPageSubSectionContactV2"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"$ref": "#/definitions/ObjectPageSubSectionAddressV2"
|
|
1462
|
+
}
|
|
1463
|
+
]
|
|
1464
|
+
}
|
|
1465
|
+
},
|
|
1466
|
+
"ObjectPageSubSectionContactV2": {
|
|
1467
|
+
"type": "object",
|
|
1468
|
+
"properties": {
|
|
1469
|
+
"contact": {
|
|
1470
|
+
"description": "Contact",
|
|
1471
|
+
"isViewNode": true,
|
|
1472
|
+
"type": "object",
|
|
1473
|
+
"properties": {},
|
|
1474
|
+
"additionalProperties": true
|
|
1475
|
+
},
|
|
1476
|
+
"visible": {
|
|
1477
|
+
"pattern": "^(false|true)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
1478
|
+
"anyOf": [
|
|
1479
|
+
{
|
|
1480
|
+
"enum": [
|
|
1481
|
+
false,
|
|
1482
|
+
true,
|
|
1483
|
+
"{ui>/editable}",
|
|
1484
|
+
"{= !${ui>/editable}}"
|
|
1485
|
+
]
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
"type": "string"
|
|
1489
|
+
}
|
|
1490
|
+
],
|
|
1491
|
+
"description": "Whether the section should be visible on the screen.",
|
|
1492
|
+
"artifactType": "FlexChange",
|
|
1493
|
+
"controlType": "sap.uxap.ObjectPageSubSection"
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
"additionalProperties": false
|
|
1497
|
+
},
|
|
1498
|
+
"ObjectPageSubSectionAddressV2": {
|
|
1499
|
+
"type": "object",
|
|
1500
|
+
"properties": {
|
|
1501
|
+
"address": {
|
|
1502
|
+
"description": "Address",
|
|
1503
|
+
"isViewNode": true,
|
|
1316
1504
|
"type": "object",
|
|
1317
1505
|
"properties": {},
|
|
1318
1506
|
"additionalProperties": true
|
|
@@ -602,6 +602,14 @@
|
|
|
602
602
|
"isViewNode": true,
|
|
603
603
|
"type": "object",
|
|
604
604
|
"properties": {
|
|
605
|
+
"key": {
|
|
606
|
+
"type": "string",
|
|
607
|
+
"artifactType": "Manifest"
|
|
608
|
+
},
|
|
609
|
+
"index": {
|
|
610
|
+
"type": "number",
|
|
611
|
+
"artifactType": "Manifest"
|
|
612
|
+
},
|
|
605
613
|
"annotationPath": {
|
|
606
614
|
"description": "To use charts in multiple table mode, define a UI.Chart annotation, including a qualifier.\nReference the UI.Chart annotation in your SelectionPresentationVariant or PresentationVariant for your view.",
|
|
607
615
|
"type": "string",
|
|
@@ -619,7 +627,9 @@
|
|
|
619
627
|
},
|
|
620
628
|
"additionalProperties": false,
|
|
621
629
|
"required": [
|
|
622
|
-
"annotationPath"
|
|
630
|
+
"annotationPath",
|
|
631
|
+
"index",
|
|
632
|
+
"key"
|
|
623
633
|
]
|
|
624
634
|
},
|
|
625
635
|
"LRTableView": {
|
|
@@ -627,6 +637,14 @@
|
|
|
627
637
|
"isViewNode": true,
|
|
628
638
|
"type": "object",
|
|
629
639
|
"properties": {
|
|
640
|
+
"key": {
|
|
641
|
+
"type": "string",
|
|
642
|
+
"artifactType": "Manifest"
|
|
643
|
+
},
|
|
644
|
+
"index": {
|
|
645
|
+
"type": "number",
|
|
646
|
+
"artifactType": "Manifest"
|
|
647
|
+
},
|
|
630
648
|
"annotationPath": {
|
|
631
649
|
"description": "The annotation path can be either UI.LineItem, UI.PresentationVariant, or UI.SelectionPresentationVariant.",
|
|
632
650
|
"type": "string",
|
|
@@ -697,7 +715,9 @@
|
|
|
697
715
|
},
|
|
698
716
|
"additionalProperties": false,
|
|
699
717
|
"required": [
|
|
700
|
-
"annotationPath"
|
|
718
|
+
"annotationPath",
|
|
719
|
+
"index",
|
|
720
|
+
"key"
|
|
701
721
|
]
|
|
702
722
|
},
|
|
703
723
|
"GenericColumns": {
|
|
@@ -234,6 +234,9 @@
|
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
"$ref": "#/definitions/ObjectPageSectionAddress"
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"$ref": "#/definitions/ObjectPageSectionPresentationVariant"
|
|
237
240
|
}
|
|
238
241
|
]
|
|
239
242
|
}
|
|
@@ -565,6 +568,39 @@
|
|
|
565
568
|
},
|
|
566
569
|
"additionalProperties": false
|
|
567
570
|
},
|
|
571
|
+
"ObjectPageSectionPresentationVariant": {
|
|
572
|
+
"type": "object",
|
|
573
|
+
"additionalProperties": {
|
|
574
|
+
"anyOf": [
|
|
575
|
+
{
|
|
576
|
+
"$ref": "#/definitions/ObjectPageSectionTableV4"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"$ref": "#/definitions/ObjectPageSectionChart"
|
|
580
|
+
}
|
|
581
|
+
]
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
"ObjectPageSectionChart": {
|
|
585
|
+
"type": "object",
|
|
586
|
+
"properties": {
|
|
587
|
+
"chart": {
|
|
588
|
+
"$ref": "#/definitions/ObjectPageChart",
|
|
589
|
+
"description": "Chart"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"additionalProperties": false
|
|
593
|
+
},
|
|
594
|
+
"ObjectPageChart": {
|
|
595
|
+
"type": "object",
|
|
596
|
+
"properties": {
|
|
597
|
+
"toolBar": {
|
|
598
|
+
"$ref": "#/definitions/ObjectPageToolBar",
|
|
599
|
+
"description": "Chart Toolbar"
|
|
600
|
+
}
|
|
601
|
+
},
|
|
602
|
+
"additionalProperties": false
|
|
603
|
+
},
|
|
568
604
|
"CustomSections": {
|
|
569
605
|
"description": "Custom Sections",
|
|
570
606
|
"isViewNode": true,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e={3846:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(a.TableColumnVerticalAlignment||(a.TableColumnVerticalAlignment={}))},5775:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Accept="Accept",e.Attention="Attention",e.Back="Back",e.Critical="Critical",e.Default="Default",e.Emphasized="Emphasized",e.Ghost="Ghost",e.Negative="Negative",e.Neutral="Neutral",e.Reject="Reject",e.Success="Success",e.Transparent="Transparent",e.Unstyled="Unstyled",e.Up="Up"}(a.ButtonType||(a.ButtonType={}))},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.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.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(a.CardSettingsType||(a.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(a.MeasureAggregateValues||(a.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(a.ListFlavorType||(a.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(a.ListTypeType||(a.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(a.SortOrderType||(a.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(a.LinkListFlavorType||(a.LinkListFlavorType={}))},2922:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(a.DateRangeType||(a.DateRangeType={}))},3872:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Circle="Circle",e.Square="Square"}(a.AvatarShape||(a.AvatarShape={}))},7876:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(a.SectionPosition||(a.SectionPosition={})),function(e){e.XML="XML"}(a.ExtensionFragmentTypes||(a.ExtensionFragmentTypes={}))},9649:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.inline="inline"}(a.CreateMode||(a.CreateMode={}))},2906:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.initial="Initial",e.left="Left",e.center="Center",e.right="Right",e.begin="Begin",e.end="End"}(a.HAlign||(a.HAlign={})),function(e){e.XML="XML"}(a.customColumnViewTypes||(a.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(a.TableTypeV2||(a.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(a.TableColumnExtensionTypeV2||(a.TableColumnExtensionTypeV2={})),function(e){e.Block="Block",e.GridLarge="GridLarge",e.GridSmall="GridSmall"}(a.PopinLayout||(a.PopinLayout={})),function(e){e.extension="extension"}(a.Strategy||(a.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(a.DefaultContentView||(a.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(a.DefaultFilterMode||(a.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(a.LoadDataOnAppLaunchSettings||(a.LoadDataOnAppLaunchSettings={}))},6402:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(5775)),n(t(6745)),n(t(2922)),n(t(2906)),n(t(2387)),n(t(3872)),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(
|
|
1
|
+
(()=>{"use strict";var e={3846:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(a.TableColumnVerticalAlignment||(a.TableColumnVerticalAlignment={}))},5775:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Accept="Accept",e.Attention="Attention",e.Back="Back",e.Critical="Critical",e.Default="Default",e.Emphasized="Emphasized",e.Ghost="Ghost",e.Negative="Negative",e.Neutral="Neutral",e.Reject="Reject",e.Success="Success",e.Transparent="Transparent",e.Unstyled="Unstyled",e.Up="Up"}(a.ButtonType||(a.ButtonType={}))},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.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.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(a.CardSettingsType||(a.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(a.MeasureAggregateValues||(a.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(a.ListFlavorType||(a.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(a.ListTypeType||(a.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(a.SortOrderType||(a.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(a.LinkListFlavorType||(a.LinkListFlavorType={}))},2922:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(a.DateRangeType||(a.DateRangeType={}))},3872:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Circle="Circle",e.Square="Square"}(a.AvatarShape||(a.AvatarShape={}))},7876:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(a.SectionPosition||(a.SectionPosition={})),function(e){e.XML="XML"}(a.ExtensionFragmentTypes||(a.ExtensionFragmentTypes={}))},9649:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.inline="inline"}(a.CreateMode||(a.CreateMode={}))},2906:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.initial="Initial",e.left="Left",e.center="Center",e.right="Right",e.begin="Begin",e.end="End"}(a.HAlign||(a.HAlign={})),function(e){e.GW="GW",e.UI5Client="UI5Client"}(a.ExportType||(a.ExportType={})),function(e){e.XML="XML"}(a.customColumnViewTypes||(a.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(a.TableTypeV2||(a.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(a.TableColumnExtensionTypeV2||(a.TableColumnExtensionTypeV2={})),function(e){e.Block="Block",e.GridLarge="GridLarge",e.GridSmall="GridSmall"}(a.PopinLayout||(a.PopinLayout={})),function(e){e.extension="extension"}(a.Strategy||(a.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(a.DefaultContentView||(a.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(a.DefaultFilterMode||(a.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(a.LoadDataOnAppLaunchSettings||(a.LoadDataOnAppLaunchSettings={}))},6402:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(5775)),n(t(6745)),n(t(2922)),n(t(2906)),n(t(2387)),n(t(3872)),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(4350)),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={}))},4350:(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)=>{Object.defineProperty(a,"__esModule",{value:!0}),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"}},a={};var t=function t(n){var i=a[n];if(void 0!==i)return i.exports;var l=a[n]={exports:{}};return e[n](l,l.exports,t),l.exports}(390);module.exports=t})();
|
package/dist/src/apiTypes.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { Definition } from 'typescript-json-schema';
|
|
1
2
|
import type { SchemaType } from './specification/schemaAccess';
|
|
2
3
|
import type { FioriElementsVersion } from './specification/common/page';
|
|
3
4
|
import type { Page as PageV2 } from './specification/v2/page';
|
|
@@ -5,7 +6,7 @@ import type { Page as PageV4 } from './specification/v4/page';
|
|
|
5
6
|
import type { FileData, File, ExportResults } from './sync/common/types';
|
|
6
7
|
import type { ApplicationV2, ObjectPageConfig as ObjectPageConfigV2, ListReportConfig as ListReportConfigV2, OverviewPageConfig as OverviewPageConfigV2, AnalyticalListPageConfig as AnalyticalListPageConfigV2, Manifest as ManifestV2, FlexChangeLayer } from './v2';
|
|
7
8
|
import type { ApplicationV4, ObjectPageConfig as ObjectPageConfigV4, ListReportConfig as ListReportConfigV4, Manifest as ManifestV4 } from './v4';
|
|
8
|
-
import type {
|
|
9
|
+
import type { ConvertedMetadata } from '@sap-ux/vocabularies-types';
|
|
9
10
|
import type { TemplateType } from './sync/common';
|
|
10
11
|
export declare type MessageMetadataType = (object | string | number)[];
|
|
11
12
|
/**
|
|
@@ -237,7 +238,7 @@ export declare type ImportAnalyticalListPageV2 = {
|
|
|
237
238
|
*/
|
|
238
239
|
export declare type ImportListReportV4Parameters = {
|
|
239
240
|
manifest: object;
|
|
240
|
-
jsonSchema:
|
|
241
|
+
jsonSchema: Definition;
|
|
241
242
|
logger?: ExtensionLogger;
|
|
242
243
|
};
|
|
243
244
|
export declare type ImportListReportV4 = {
|
|
@@ -245,7 +246,7 @@ export declare type ImportListReportV4 = {
|
|
|
245
246
|
};
|
|
246
247
|
export declare type ImportObjectPageV4Parameters = {
|
|
247
248
|
manifest: object;
|
|
248
|
-
jsonSchema:
|
|
249
|
+
jsonSchema: Definition;
|
|
249
250
|
routingId: string;
|
|
250
251
|
logger?: ExtensionLogger;
|
|
251
252
|
};
|
|
@@ -281,7 +282,7 @@ export interface ImportProjectParameters {
|
|
|
281
282
|
export interface GenerateAppSchemaParameters {
|
|
282
283
|
templateType: TemplateType;
|
|
283
284
|
manifest: ManifestV2 | ManifestV4;
|
|
284
|
-
serviceAVT:
|
|
285
|
+
serviceAVT: ConvertedMetadata;
|
|
285
286
|
fioriElementsVersion: FioriElementsVersion;
|
|
286
287
|
fragments?: FileData[];
|
|
287
288
|
logger?: ExtensionLogger;
|
package/dist/src/project.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export interface Project {
|
|
|
9
9
|
}
|
|
10
10
|
export declare const readDirectory: (path: string) => Promise<string[]>;
|
|
11
11
|
export declare const isDirectory: (path: string) => Promise<boolean>;
|
|
12
|
+
export declare const getChanges: (webapp: string) => Promise<string[]>;
|
|
12
13
|
/**
|
|
13
14
|
* Get the project artefacts, like manifest, service metadata, annotations
|
|
14
15
|
* @param root - project root where package.json is
|
package/dist/src/project.js
CHANGED
|
@@ -51,7 +51,7 @@ const resourceExists = async (path) => {
|
|
|
51
51
|
const getManifest = async (path) => {
|
|
52
52
|
return readJSON(path_1.join(path, 'manifest.json'));
|
|
53
53
|
};
|
|
54
|
-
|
|
54
|
+
exports.getChanges = async (webapp) => {
|
|
55
55
|
const changes = [];
|
|
56
56
|
const changesDirectory = path_1.join(webapp, 'changes');
|
|
57
57
|
if (!(await resourceExists(changesDirectory))) {
|
|
@@ -137,7 +137,7 @@ exports.getProject = async (root) => {
|
|
|
137
137
|
const webappPath = path_1.join(root, 'webapp');
|
|
138
138
|
const manifest = await getManifest(webappPath);
|
|
139
139
|
const annotations = await getAnnotations(manifest, webappPath);
|
|
140
|
-
const changes = await getChanges(webappPath);
|
|
140
|
+
const changes = await exports.getChanges(webappPath);
|
|
141
141
|
const fragments = await getFragments(webappPath);
|
|
142
142
|
return {
|
|
143
143
|
root,
|
package/dist/src/project.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project.js","sourceRoot":"","sources":["../../src/project.ts"],"names":[],"mappings":";;AAAA,+BAAsC;AACtC,2BAAmE;AAYnE,MAAM,QAAQ,GAAG,KAAK,EAAE,IAAY,EAAmB,EAAE;IACrD,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAQ,EAAE;QACzC,aAAU,CAAC,IAAI,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,CAAC,GAAG,EAAE,IAAI,EAAQ,EAAE;YACvD,IAAI,GAAG,EAAE;gBACL,MAAM,CAAC,GAAG,CAAC,CAAC;aACf;iBAAM;gBACH,OAAO,CAAC,IAAI,CAAC,CAAC;aACjB;QACL,CAAC,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;AACP,CAAC,CAAC;AAEF,MAAM,QAAQ,GAAG,KAAK,EAAK,IAAY,EAAc,EAAE;IACnD,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,QAAQ,CAAC,IAAI,CAAC,CAAM,CAAC;AACjD,CAAC,CAAC;AAEW,QAAA,aAAa,GAAG,KAAK,EAAE,IAAY,EAAqB,EAAE;IACnE,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAQ,EAAE;QACzC,YAAO,CAAC,IAAI,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,CAAC,GAAG,EAAE,IAAI,EAAQ,EAAE;YACpD,IAAI,GAAG,EAAE;gBACL,MAAM,CAAC,GAAG,CAAC,CAAC;aACf;iBAAM;gBACH,OAAO,CAAC,IAAI,CAAC,CAAC;aACjB;QACL,CAAC,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;AACP,CAAC,CAAC;AAEW,QAAA,WAAW,GAAG,KAAK,EAAE,IAAY,EAAoB,EAAE;IAChE,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAQ,EAAE;QACjC,SAAI,CAAC,IAAI,EAAE,CAAC,GAAG,EAAE,KAAK,EAAQ,EAAE;YAC5B,IAAI,GAAG,EAAE;gBACL,OAAO,CAAC,KAAK,CAAC,CAAC;aAClB;iBAAM;gBACH,OAAO,CAAC,KAAK,CAAC,WAAW,EAAE,CAAC,CAAC;aAChC;QACL,CAAC,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;AACP,CAAC,CAAC;AAEF,MAAM,cAAc,GAAG,KAAK,EAAE,IAAY,EAAoB,EAAE;IAC5D,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE;QAC3B,WAAM,CAAC,IAAI,EAAE,CAAC,SAAS,EAAE,EAAE;YACvB,OAAO,CAAC,SAAS,CAAC,CAAC;QACvB,CAAC,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;AACP,CAAC,CAAC;AAEF,MAAM,WAAW,GAAG,KAAK,EAAE,IAAY,EAAqB,EAAE;IAC1D,OAAO,QAAQ,CAAW,WAAI,CAAC,IAAI,EAAE,eAAe,CAAC,CAAC,CAAC;AAC3D,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"project.js","sourceRoot":"","sources":["../../src/project.ts"],"names":[],"mappings":"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"}
|
|
@@ -20,8 +20,8 @@ var SchemaType;
|
|
|
20
20
|
*/
|
|
21
21
|
const getPathToGenericSchema = (version, schemaType) => {
|
|
22
22
|
const fileName = schemaType === SchemaType.Application
|
|
23
|
-
? SchemaType.Application
|
|
24
|
-
: schemaType
|
|
23
|
+
? `${SchemaType.Application}${version.toUpperCase()}.json`
|
|
24
|
+
: `${schemaType}Config.json`;
|
|
25
25
|
// Path is shorter when using webpack
|
|
26
26
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
27
27
|
// @ts-ignore
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemaAccess.js","sourceRoot":"","sources":["../../../src/specification/schemaAccess.ts"],"names":[],"mappings":";;AAAA,2BAA8B;AAC9B,+BAA4B;AAG5B;;GAEG;AACH,IAAY,UAMX;AAND,WAAY,UAAU;IAClB,yCAA2B,CAAA;IAC3B,uCAAyB,CAAA;IACzB,uCAAyB,CAAA;IACzB,2CAA6B,CAAA;IAC7B,uDAAyC,CAAA;AAC7C,CAAC,EANW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAMrB;AAED;;;;GAIG;AACH,MAAM,sBAAsB,GAAG,CAAC,OAA6B,EAAE,UAAsB,EAAU,EAAE;IAC7F,MAAM,QAAQ,GACV,UAAU,KAAK,UAAU,CAAC,WAAW;QACjC,CAAC,CAAC,UAAU,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"schemaAccess.js","sourceRoot":"","sources":["../../../src/specification/schemaAccess.ts"],"names":[],"mappings":";;AAAA,2BAA8B;AAC9B,+BAA4B;AAG5B;;GAEG;AACH,IAAY,UAMX;AAND,WAAY,UAAU;IAClB,yCAA2B,CAAA;IAC3B,uCAAyB,CAAA;IACzB,uCAAyB,CAAA;IACzB,2CAA6B,CAAA;IAC7B,uDAAyC,CAAA;AAC7C,CAAC,EANW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAMrB;AAED;;;;GAIG;AACH,MAAM,sBAAsB,GAAG,CAAC,OAA6B,EAAE,UAAsB,EAAU,EAAE;IAC7F,MAAM,QAAQ,GACV,UAAU,KAAK,UAAU,CAAC,WAAW;QACjC,CAAC,CAAC,GAAG,UAAU,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,EAAE,OAAO;QAC1D,CAAC,CAAC,GAAG,UAAU,aAAa,CAAC;IACrC,qCAAqC;IACrC,6DAA6D;IAC7D,aAAa;IACb,OAAO,OAAO,mBAAmB,KAAK,UAAU;QAC5C,CAAC,CAAC,WAAI,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC;QAC/C,CAAC,CAAC,WAAI,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;AACpE,CAAC,CAAC;AAEF;;;GAGG;AACH,MAAM,cAAc,GAAG,KAAK,EAAE,IAAY,EAAiB,EAAE;IACzD,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAQ,EAAE;QACzC,aAAQ,CAAC,IAAI,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,CAAC,GAAG,EAAE,IAAI,EAAQ,EAAE;YACrD,IAAI,GAAG,EAAE;gBACL,MAAM,CAAC,GAAG,CAAC,CAAC;aACf;iBAAM;gBACH,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC;aAC7B;QACL,CAAC,CAAC,CAAC;IACP,CAAC,CAAC,CAAC;AACP,CAAC,CAAC;AAEF;;;;GAIG;AACU,QAAA,gBAAgB,GAAG,KAAK,EAAE,OAA6B,EAAE,UAAsB,EAAiB,EAAE;IAC3G,IAAI;QACA,MAAM,IAAI,GAAG,sBAAsB,CAAC,OAAO,EAAE,UAAU,CAAC,CAAC;QACzD,OAAO,MAAM,cAAc,CAAC,IAAI,CAAC,CAAC;KACrC;IAAC,OAAO,KAAK,EAAE;QACZ,MAAM,IAAI,KAAK,CAAC,iCAAiC,UAAU,cAAc,OAAO,eAAe,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC;KACnH;AACL,CAAC,CAAC"}
|
|
@@ -7,10 +7,11 @@ export declare type ObjectPageTableTypeV2 = ObjectPageResponsiveTable | ObjectPa
|
|
|
7
7
|
export interface LineItemFacet {
|
|
8
8
|
table: ObjectPageTableTypeV2;
|
|
9
9
|
}
|
|
10
|
+
export declare type FormFacetType = boolean | number | string | object;
|
|
10
11
|
/**
|
|
11
12
|
* Form Facet
|
|
12
13
|
* @isViewNode true
|
|
13
14
|
*/
|
|
14
15
|
export interface FormFacet {
|
|
15
|
-
[id: string]:
|
|
16
|
+
[id: string]: FormFacetType;
|
|
16
17
|
}
|