@sap/ux-specification 1.90.14 → 1.90.15
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 +15 -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-AnalyticalListPage.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 +6 -4
- package/dist/schemas/v2/ListReportConfig.json +9 -7
- package/dist/schemas/v2/ObjectPageConfig.json +12 -10
- package/dist/scripts/to-json-schema.js +11 -2
- package/dist/scripts/to-json-schema.js.map +1 -1
- package/dist/specification/v2/index-min.js +1 -1
- package/dist/src/specification/v2/controls/FormAction.d.ts +4 -20
- package/dist/src/specification/v2/controls/FormAction.js +0 -17
- package/dist/src/specification/v2/controls/FormAction.js.map +1 -1
- package/dist/src/specification/v2/controls/ObjectPageHeader.d.ts +2 -5
- package/dist/src/specification/v2/controls/ObjectPageHeader.js +0 -5
- package/dist/src/specification/v2/controls/ObjectPageHeader.js.map +1 -1
- package/dist/src/specification/v2/controls/ObjectPageHeaderAction.d.ts +4 -4
- package/dist/src/specification/v2/controls/ObjectPageTable.d.ts +3 -2
- package/dist/src/specification/v2/controls/Table.d.ts +3 -15
- package/dist/src/specification/v2/controls/Table.js +0 -15
- package/dist/src/specification/v2/controls/Table.js.map +1 -1
- package/dist/src/specification/v2/controls/index.js +0 -2
- package/dist/src/specification/v2/controls/index.js.map +1 -1
- package/dist/src/sync/common/generate/objectPage.js +10 -9
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/utils.d.ts +1 -0
- package/dist/src/sync/common/utils.js +12 -7
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FormAction.d.ts +8 -7
- package/dist/src/sync/v2/export/controls/FormAction.js +15 -53
- package/dist/src/sync/v2/export/controls/FormAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.d.ts +3 -2
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.d.ts +5 -4
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderAction.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +3 -2
- package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
- package/dist/src/sync/v2/export/controls/Table.d.ts +3 -2
- package/dist/src/sync/v2/export/controls/Table.js.map +1 -1
- package/dist/src/sync/v2/export/controls/TableColumn.d.ts +3 -2
- package/dist/src/sync/v2/export/controls/TableColumn.js.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.js +2 -2
- package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.js +1 -1
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +29 -29
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v4/generate/objectPage.js +6 -5
- package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v4/utils/utils.js +34 -19
- package/dist/src/sync/v4/utils/utils.js.map +1 -1
- package/package.json +14 -14
|
@@ -411,7 +411,7 @@
|
|
|
411
411
|
"controlType": "sap.m.Button"
|
|
412
412
|
},
|
|
413
413
|
"type": {
|
|
414
|
-
"$ref": "#/definitions/ButtonType",
|
|
414
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
415
415
|
"description": "Defines the Button type.",
|
|
416
416
|
"artifactType": "FlexChange",
|
|
417
417
|
"controlType": "sap.m.Button"
|
|
@@ -438,7 +438,8 @@
|
|
|
438
438
|
},
|
|
439
439
|
"additionalProperties": false
|
|
440
440
|
},
|
|
441
|
-
"ButtonType": {
|
|
441
|
+
"sap.m.ButtonType": {
|
|
442
|
+
"description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.",
|
|
442
443
|
"enum": [
|
|
443
444
|
"Accept",
|
|
444
445
|
"Attention",
|
|
@@ -490,7 +491,7 @@
|
|
|
490
491
|
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
491
492
|
"anyOf": [
|
|
492
493
|
{
|
|
493
|
-
"$ref": "#/definitions/
|
|
494
|
+
"$ref": "#/definitions/sap.ui.core.TextAlign"
|
|
494
495
|
},
|
|
495
496
|
{
|
|
496
497
|
"type": "string"
|
|
@@ -503,7 +504,8 @@
|
|
|
503
504
|
},
|
|
504
505
|
"additionalProperties": false
|
|
505
506
|
},
|
|
506
|
-
"
|
|
507
|
+
"sap.ui.core.TextAlign": {
|
|
508
|
+
"description": "Configuration options for text alignments.",
|
|
507
509
|
"enum": [
|
|
508
510
|
"Begin",
|
|
509
511
|
"Center",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
65
65
|
"anyOf": [
|
|
66
66
|
{
|
|
67
|
-
"$ref": "#/definitions/PopinLayout"
|
|
67
|
+
"$ref": "#/definitions/sap.m.PopinLayout"
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
"type": "string"
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
},
|
|
160
160
|
"additionalProperties": false
|
|
161
161
|
},
|
|
162
|
-
"PopinLayout": {
|
|
162
|
+
"sap.m.PopinLayout": {
|
|
163
163
|
"enum": [
|
|
164
164
|
"Block",
|
|
165
165
|
"GridLarge",
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
"controlType": "sap.m.Button"
|
|
411
411
|
},
|
|
412
412
|
"type": {
|
|
413
|
-
"$ref": "#/definitions/ButtonType",
|
|
413
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
414
414
|
"description": "Defines the Button type.",
|
|
415
415
|
"artifactType": "FlexChange",
|
|
416
416
|
"controlType": "sap.m.Button"
|
|
@@ -437,7 +437,8 @@
|
|
|
437
437
|
},
|
|
438
438
|
"additionalProperties": false
|
|
439
439
|
},
|
|
440
|
-
"ButtonType": {
|
|
440
|
+
"sap.m.ButtonType": {
|
|
441
|
+
"description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.",
|
|
441
442
|
"enum": [
|
|
442
443
|
"Accept",
|
|
443
444
|
"Attention",
|
|
@@ -489,7 +490,7 @@
|
|
|
489
490
|
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
490
491
|
"anyOf": [
|
|
491
492
|
{
|
|
492
|
-
"$ref": "#/definitions/
|
|
493
|
+
"$ref": "#/definitions/sap.ui.core.TextAlign"
|
|
493
494
|
},
|
|
494
495
|
{
|
|
495
496
|
"type": "string"
|
|
@@ -502,7 +503,8 @@
|
|
|
502
503
|
},
|
|
503
504
|
"additionalProperties": false
|
|
504
505
|
},
|
|
505
|
-
"
|
|
506
|
+
"sap.ui.core.TextAlign": {
|
|
507
|
+
"description": "Configuration options for text alignments.",
|
|
506
508
|
"enum": [
|
|
507
509
|
"Begin",
|
|
508
510
|
"Center",
|
|
@@ -609,7 +611,7 @@
|
|
|
609
611
|
"pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
610
612
|
"anyOf": [
|
|
611
613
|
{
|
|
612
|
-
"$ref": "#/definitions/PopinLayout"
|
|
614
|
+
"$ref": "#/definitions/sap.m.PopinLayout"
|
|
613
615
|
},
|
|
614
616
|
{
|
|
615
617
|
"type": "string"
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"pattern": "^(Circle|Square)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
95
95
|
"anyOf": [
|
|
96
96
|
{
|
|
97
|
-
"$ref": "#/definitions/AvatarShape"
|
|
97
|
+
"$ref": "#/definitions/sap.m.AvatarShape"
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
"type": "string"
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
},
|
|
112
112
|
"additionalProperties": false
|
|
113
113
|
},
|
|
114
|
-
"AvatarShape": {
|
|
114
|
+
"sap.m.AvatarShape": {
|
|
115
115
|
"enum": [
|
|
116
116
|
"Circle",
|
|
117
117
|
"Square"
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"controlType": "sap.uxap.ObjectPageHeaderActionButton"
|
|
149
149
|
},
|
|
150
150
|
"type": {
|
|
151
|
-
"$ref": "#/definitions/ButtonType",
|
|
151
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
152
152
|
"description": "Defines the Button type.",
|
|
153
153
|
"artifactType": "FlexChange",
|
|
154
154
|
"controlType": "sap.uxap.ObjectPageHeaderActionButton"
|
|
@@ -175,7 +175,8 @@
|
|
|
175
175
|
},
|
|
176
176
|
"additionalProperties": false
|
|
177
177
|
},
|
|
178
|
-
"ButtonType": {
|
|
178
|
+
"sap.m.ButtonType": {
|
|
179
|
+
"description": "Different predefined button types for the {@link sap.m.Button sap.m.Button}.",
|
|
179
180
|
"enum": [
|
|
180
181
|
"Accept",
|
|
181
182
|
"Attention",
|
|
@@ -352,7 +353,7 @@
|
|
|
352
353
|
"controlType": "sap.m.Button"
|
|
353
354
|
},
|
|
354
355
|
"type": {
|
|
355
|
-
"$ref": "#/definitions/ButtonType",
|
|
356
|
+
"$ref": "#/definitions/sap.m.ButtonType",
|
|
356
357
|
"description": "Defines the Button type.",
|
|
357
358
|
"artifactType": "FlexChange",
|
|
358
359
|
"controlType": "sap.m.Button"
|
|
@@ -454,7 +455,7 @@
|
|
|
454
455
|
"pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
455
456
|
"anyOf": [
|
|
456
457
|
{
|
|
457
|
-
"$ref": "#/definitions/PopinLayout"
|
|
458
|
+
"$ref": "#/definitions/sap.m.PopinLayout"
|
|
458
459
|
},
|
|
459
460
|
{
|
|
460
461
|
"type": "string"
|
|
@@ -531,7 +532,7 @@
|
|
|
531
532
|
},
|
|
532
533
|
"additionalProperties": false
|
|
533
534
|
},
|
|
534
|
-
"PopinLayout": {
|
|
535
|
+
"sap.m.PopinLayout": {
|
|
535
536
|
"enum": [
|
|
536
537
|
"Block",
|
|
537
538
|
"GridLarge",
|
|
@@ -671,7 +672,7 @@
|
|
|
671
672
|
"pattern": "^(Begin|Center|End|Initial|Left|Right)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
672
673
|
"anyOf": [
|
|
673
674
|
{
|
|
674
|
-
"$ref": "#/definitions/
|
|
675
|
+
"$ref": "#/definitions/sap.ui.core.TextAlign"
|
|
675
676
|
},
|
|
676
677
|
{
|
|
677
678
|
"type": "string"
|
|
@@ -684,7 +685,8 @@
|
|
|
684
685
|
},
|
|
685
686
|
"additionalProperties": false
|
|
686
687
|
},
|
|
687
|
-
"
|
|
688
|
+
"sap.ui.core.TextAlign": {
|
|
689
|
+
"description": "Configuration options for text alignments.",
|
|
688
690
|
"enum": [
|
|
689
691
|
"Begin",
|
|
690
692
|
"Center",
|
|
@@ -791,7 +793,7 @@
|
|
|
791
793
|
"pattern": "^(Block|GridLarge|GridSmall)$|^{[A-Za-z0-9{}&$!@#? _|,<>'()[\\]\\/:=.]+}$",
|
|
792
794
|
"anyOf": [
|
|
793
795
|
{
|
|
794
|
-
"$ref": "#/definitions/PopinLayout"
|
|
796
|
+
"$ref": "#/definitions/sap.m.PopinLayout"
|
|
795
797
|
},
|
|
796
798
|
{
|
|
797
799
|
"type": "string"
|
|
@@ -15,7 +15,8 @@ const factory_1 = require("../src/sync/v2/export/factory");
|
|
|
15
15
|
const factory_2 = require("../src/sync/v4/export/factory");
|
|
16
16
|
const common_1 = require("../src/specification/common");
|
|
17
17
|
const compilerOptions = {
|
|
18
|
-
skipLibCheck: true
|
|
18
|
+
skipLibCheck: true,
|
|
19
|
+
types: ['node', '@sapui5/ts-types']
|
|
19
20
|
};
|
|
20
21
|
/**
|
|
21
22
|
* Convert interfaces to json schema
|
|
@@ -32,7 +33,15 @@ function convertInterfaces(path, files, version) {
|
|
|
32
33
|
const generator = typescript_json_schema_1.buildGenerator(typescript_json_schema_1.getProgramFromFiles([path_1.join(path, file)], compilerOptions), {
|
|
33
34
|
noExtraProps: true,
|
|
34
35
|
required: true,
|
|
35
|
-
validationKeywords: [
|
|
36
|
+
validationKeywords: [
|
|
37
|
+
'i18nClassification',
|
|
38
|
+
'isViewNode',
|
|
39
|
+
'displayName',
|
|
40
|
+
'dataType',
|
|
41
|
+
'controlProperty',
|
|
42
|
+
'annotationType',
|
|
43
|
+
'annotationPath'
|
|
44
|
+
]
|
|
36
45
|
});
|
|
37
46
|
const filename = file.replace('ts', 'json');
|
|
38
47
|
schemas[filename] = generator.getSchemaForSymbol(file.replace('.ts', ''));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"to-json-schema.js","sourceRoot":"","sources":["../../scripts/to-json-schema.ts"],"names":[],"mappings":";;;;;;;;;AAAA,+BAAsC;AACtC,uCAAyB;AACzB,mEAAkG;AAClG,yDAAgE;AAChE,2DAAuF;AACvF,2DAAuF;AACvF,wDAAyF;AAKzF,MAAM,eAAe,GAAG;IACpB,YAAY,EAAE,IAAI;
|
|
1
|
+
{"version":3,"file":"to-json-schema.js","sourceRoot":"","sources":["../../scripts/to-json-schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{"use strict";var e={6442:(e,t)=>{var a;Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.OData="OData",e.ODataAnnotation="ODataAnnotation"}(t.DataSourceType||(t.DataSourceType={})),function(e){e.ui="sap.ui",e.app="sap.app",e.generic="sap.ui.generic.app",e.ovp="sap.ovp",e.ui5="sap.ui5"}(a=t.ManifestSection||(t.ManifestSection={})),t.GENERICAPPSETTINGS=`${a.generic}/settings`},3404:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(6442)),n(a(5281))},5281:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROOT_VIEW_NAME="sap.fe.templates.RootContainer.view.Fcl",t.FIORI_FCL_ROOT_ID="appRootView",function(e){e.XML="XML",e.HTML="HTML",e.JS="JS",e.JSON="JSON"}(t.ViewTypes||(t.ViewTypes={})),t.SAPUI5_VIEW_CLASS="sap.ui.core.mvc.View",t.SAPUI5_FRAGMENT_CLASS="sap.ui.core.Fragment"},3846:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(t.TableColumnVerticalAlignment||(t.TableColumnVerticalAlignment={}))},2387:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.bar="bar",e.column="column",e.line="line",e.combination="combination",e.pie="pie",e.donut="donut",e.scatter="scatter",e.bubble="bubble",e.heatmap="heatmap",e.bullet="bullet",e.verticalBullet="vertical_bullet",e.stackedBar="stacked_bar",e.stackedColumn="stacked_column",e.stackedCombination="stacked_combination",e.horizontalStackedCombination="horizontal_stacked_combination",e.dualBar="dual_bar",e.dualColumn="dual_column",e.dualLine="dual_line",e.dualStackedBar="dual_stacked_bar",e.dualStackedColumn="dual_stacked_column",e.dualCombination="dual_combination",e.dualStackedCombination="dual_stacked_combination",e.dualHorizontalCombination="dual_horizontal_combination",e.dualHorizontalStackedCombination="dual_horizontal_stacked_combination",e.hundredStackedBar="100_stacked_bar",e.hundredStackedColumn="100_stacked_column",e.hundredDualStackedBar="100_dual_stacked_bar",e.hundredDualStackedColumn="100_dual_stacked_column",e.waterfall="waterfall",e.horizontalWaterfall="horizontal_waterfall"}(t.ChartType||(t.ChartType={}))},6745:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.cardBubble="cardBubble",e.cardchartsline="cardchartsline",e.cardchartsdonut="cardchartsdonut"}(t.ChartCardType||(t.ChartCardType={})),function(e){e.analytical="sap.ovp.cards.charts.analytical",e.analyticalv4="sap.ovp.cards.v4.charts.analytical",e.list="sap.ovp.cards.list",e.listv4="sap.ovp.cards.v4.list",e.linklist="sap.ovp.cards.linklist",e.linklistv4="sap.ovp.cards.v4.linklist",e.table="sap.ovp.cards.table",e.tablev4="sap.ovp.cards.v4.table",e.stack="sap.ovp.cards.stack"}(t.CardTemplateType||(t.CardTemplateType={})),t.cardTemplateTypeMap={"sap.ovp.cards.charts.analytical":"AnalyticalCard","sap.ovp.cards.v4.charts.analytical":"AnalyticalCard","sap.ovp.cards.list":"ListCard","sap.ovp.cards.v4.list":"ListCard","sap.ovp.cards.linklist":"LinklistCard","sap.ovp.cards.v4.linklist":"LinklistCard","sap.ovp.cards.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(t.CardSettingsType||(t.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(t.MeasureAggregateValues||(t.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(t.ListFlavorType||(t.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(t.ListTypeType||(t.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(t.SortOrderType||(t.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(t.LinkListFlavorType||(t.LinkListFlavorType={}))},2922:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(t.DateRangeType||(t.DateRangeType={}))},247:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Accept="Accept",e.Attention="Attention",e.Back="Back",e.Critical="Critical",e.Default="Default",e.Emphasized="Emphasized",e.Ghost="Ghost",e.Negative="Negative",e.Neutral="Neutral",e.Reject="Reject",e.Success="Success",e.Transparent="Transparent",e.Unstyled="Unstyled",e.Up="Up"}(t.ButtonType||(t.ButtonType={}))},3872:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Circle="Circle",e.Square="Square"}(t.AvatarShape||(t.AvatarShape={}))},7876:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.ExtensionFragmentTypes||(t.ExtensionFragmentTypes={}))},9649:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.inline="inline"}(t.CreateMode||(t.CreateMode={}))},2906:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.initial="Initial",e.left="Left",e.center="Center",e.right="Right",e.begin="Begin",e.end="End"}(t.HAlign||(t.HAlign={})),function(e){e.XML="XML"}(t.customColumnViewTypes||(t.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(t.TableTypeV2||(t.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(t.TableColumnExtensionTypeV2||(t.TableColumnExtensionTypeV2={})),function(e){e.Block="Block",e.GridLarge="GridLarge",e.GridSmall="GridSmall"}(t.PopinLayout||(t.PopinLayout={})),function(e){e.extension="extension"}(t.Strategy||(t.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(t.DefaultContentView||(t.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(t.DefaultFilterMode||(t.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(t.LoadDataOnAppLaunchSettings||(t.LoadDataOnAppLaunchSettings={}))},6402:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(2922)),n(a(2906)),n(a(3872)),n(a(7876)),n(a(6745)),n(a(9649)),n(a(2387)),n(a(247))},390:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(3800)),n(a(6402)),n(a(9809)),n(a(3846))},2505:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.fixed="fixed",e.resizable="resizable"}(t.ContainerLayoutType||(t.ContainerLayoutType={}))},3800:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(2505))},9809:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(4149))},4149:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(4867)),n(a(1374))},1374:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0});a(5877);t.SAPUI5_VIEW_EXTENSION="sap.ui.viewExtensions",t.SAPUI5_CONTROLLER_EXTENSION="sap.ui.controllerExtensions",t.SAPUI5_VIEW_EXTENSION_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage.view.Details",t.SAPUI5_VIEW_EXTENSION_LIST_REPORT="sap.suite.ui.generic.template.ListReport.view.ListReport",t.SAPUI5_VIEW_EXTENSION_ANALYTICAL_LIST_PAGE="sap.suite.ui.generic.template.AnalyticalListPage.view.AnalyticalListPage"},4867:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V2="sap.suite.ui.generic.template",t.FE_TEMPLATE_V2_OBJECT_PAGE="sap.suite.ui.generic.template.ObjectPage",t.FE_TEMPLATE_V2_LIST_REPORT="sap.suite.ui.generic.template.ListReport",t.FE_TEMPLATE_V2_ALP="sap.suite.ui.generic.template.AnalyticalListPage"},9734:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e["not-adaptable-visibility"]="not-adaptable-visibility"}(t.DesigntimeValues||(t.DesigntimeValues={}))},8554:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Tabs="Tabs",e.Page="Page"}(t.SectionLayoutType||(t.SectionLayoutType={}))},4685:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before"}(t.SectionPosition||(t.SectionPosition={})),function(e){e.XML="XML"}(t.CustomSectionViewTypesV4||(t.CustomSectionViewTypesV4={}))},7093:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.Multi="Multi",e.None="None",e.Single="Single",e.Auto="Auto"}(t.SelectionMode||(t.SelectionMode={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable"}(t.TableTypeV4||(t.TableTypeV4={})),function(e){e.NewPage="NewPage",e.Inline="Inline",e.CreationRow="CreationRow"}(t.TableCreationModeType||(t.TableCreationModeType={})),function(e){e.Disabled="Disabled",e.Enabled="Enabled",e.Auto="Auto"}(t.InitialLoadType||(t.InitialLoadType={}))},8452:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.single="single",e.multi="multi"}(t.SelectType||(t.SelectType={}))},1709:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(7093)),n(a(8452)),n(a(9734)),n(a(8554)),n(a(4685))},5877:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(7005)),n(a(1709)),n(a(5113))},5759:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control",e.Page="Page"}(t.VariantManagementTypeListReport||(t.VariantManagementTypeListReport={}))},8999:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.None="None",e.Control="Control"}(t.VariantManagementTypeObjectPage||(t.VariantManagementTypeObjectPage={}))},7005:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8999)),n(a(5759))},5113:(e,t,a)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}(a(6568))},5817:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),function(e){e.After="After",e.Before="Before",e.End="End"}(t.Placement||(t.Placement={})),function(e){e.Default="Default",e.Adaptation="Adaptation",e.Hidden="Hidden"}(t.Availability||(t.Availability={}))},6568:(e,t,a)=>{function n(e){for(var a in e)t.hasOwnProperty(a)||(t[a]=e[a])}Object.defineProperty(t,"__esModule",{value:!0}),n(a(8778)),n(a(8741)),n(a(3404)),n(a(5817))},8741:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FIORI_FCL_ROUTER_CLASS="sap.f.routing.Router",function(e){e.BeginColumnPages="beginColumnPages",e.MidColumnPages="midColumnPages",e.EndColumnPages="endColumnPages"}(t.FlexibleColumnLayoutAggregations||(t.FlexibleColumnLayoutAggregations={})),t.SAPUI5_DEPENDENCY_LIB_SAP_F="sap.f"},8778:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.FE_TEMPLATE_V4="sap.fe.templates",t.FE_TEMPLATE_V4_CUSTOM_PAGE="sap.fe.core.fpm",t.FE_TEMPLATE_V4_OBJECT_PAGE="sap.fe.templates.ObjectPage",t.FE_TEMPLATE_V4_LIST_REPORT="sap.fe.templates.ListReport",t.FE_TEMPLATE_V4_ALP="sap.fe.templates.AnalyticalListPage",t.SAPUI5_FRAGMENT_TYPE_V4="XMLFragment",function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet"}(t.SectionPositionV4||(t.SectionPositionV4={}))}},t={};var a=function a(n){var i=t[n];if(void 0!==i)return i.exports;var o=t[n]={exports:{}};return e[n](o,o.exports,a),o.exports}(390);module.exports=a})();
|
|
1
|
+
(()=>{"use strict";var e={6442:(e,a)=>{var t;Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.OData="OData",e.ODataAnnotation="ODataAnnotation"}(a.DataSourceType||(a.DataSourceType={})),function(e){e.ui="sap.ui",e.app="sap.app",e.generic="sap.ui.generic.app",e.ovp="sap.ovp",e.ui5="sap.ui5"}(t=a.ManifestSection||(a.ManifestSection={})),a.GENERICAPPSETTINGS=`${t.generic}/settings`},3404:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(6442)),n(t(5281))},5281:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),a.FIORI_FCL_ROOT_VIEW_NAME="sap.fe.templates.RootContainer.view.Fcl",a.FIORI_FCL_ROOT_ID="appRootView",function(e){e.XML="XML",e.HTML="HTML",e.JS="JS",e.JSON="JSON"}(a.ViewTypes||(a.ViewTypes={})),a.SAPUI5_VIEW_CLASS="sap.ui.core.mvc.View",a.SAPUI5_FRAGMENT_CLASS="sap.ui.core.Fragment"},3846:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.Top="Top",e.Middle="Middle",e.Bottom="Bottom"}(a.TableColumnVerticalAlignment||(a.TableColumnVerticalAlignment={}))},2387:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.bar="bar",e.column="column",e.line="line",e.combination="combination",e.pie="pie",e.donut="donut",e.scatter="scatter",e.bubble="bubble",e.heatmap="heatmap",e.bullet="bullet",e.verticalBullet="vertical_bullet",e.stackedBar="stacked_bar",e.stackedColumn="stacked_column",e.stackedCombination="stacked_combination",e.horizontalStackedCombination="horizontal_stacked_combination",e.dualBar="dual_bar",e.dualColumn="dual_column",e.dualLine="dual_line",e.dualStackedBar="dual_stacked_bar",e.dualStackedColumn="dual_stacked_column",e.dualCombination="dual_combination",e.dualStackedCombination="dual_stacked_combination",e.dualHorizontalCombination="dual_horizontal_combination",e.dualHorizontalStackedCombination="dual_horizontal_stacked_combination",e.hundredStackedBar="100_stacked_bar",e.hundredStackedColumn="100_stacked_column",e.hundredDualStackedBar="100_dual_stacked_bar",e.hundredDualStackedColumn="100_dual_stacked_column",e.waterfall="waterfall",e.horizontalWaterfall="horizontal_waterfall"}(a.ChartType||(a.ChartType={}))},6745:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.cardBubble="cardBubble",e.cardchartsline="cardchartsline",e.cardchartsdonut="cardchartsdonut"}(a.ChartCardType||(a.ChartCardType={})),function(e){e.analytical="sap.ovp.cards.charts.analytical",e.analyticalv4="sap.ovp.cards.v4.charts.analytical",e.list="sap.ovp.cards.list",e.listv4="sap.ovp.cards.v4.list",e.linklist="sap.ovp.cards.linklist",e.linklistv4="sap.ovp.cards.v4.linklist",e.table="sap.ovp.cards.table",e.tablev4="sap.ovp.cards.v4.table",e.stack="sap.ovp.cards.stack"}(a.CardTemplateType||(a.CardTemplateType={})),a.cardTemplateTypeMap={"sap.ovp.cards.charts.analytical":"AnalyticalCard","sap.ovp.cards.v4.charts.analytical":"AnalyticalCard","sap.ovp.cards.list":"ListCard","sap.ovp.cards.v4.list":"ListCard","sap.ovp.cards.linklist":"LinklistCard","sap.ovp.cards.v4.linklist":"LinklistCard","sap.ovp.cards.table":"TableCard","sap.ovp.cards.v4.table":"TableCard","sap.ovp.cards.stack":"StackCard"},function(e){e.analyticalCardSettings="analyticalCardSettings",e.analyticalCardSettingsv4="analyticalCardSettingsv4",e.listCardSettings="listCardSettings",e.listCardSettingsv4="listCardSettingsv4",e.stackCardSettings="stackCardSettings",e.linkListCardSettings="linkListCardSettings",e.tableCardSettings="tableCardSettings",e.tableCardSettingsv4="tableCardSettingsv4"}(a.CardSettingsType||(a.CardSettingsType={})),function(e){e.average="average",e.max="max",e.min="min",e.sum="sum",e.count="$count"}(a.MeasureAggregateValues||(a.MeasureAggregateValues={})),function(e){e.standard="standard",e.bar="bar",e.carousel="carousel"}(a.ListFlavorType||(a.ListFlavorType={})),function(e){e.extended="extended",e.condensed="condensed"}(a.ListTypeType||(a.ListTypeType={})),function(e){e.ascending="ascending",e.descending="descending"}(a.SortOrderType||(a.SortOrderType={})),function(e){e.standard="standard",e.carousel="carousel"}(a.LinkListFlavorType||(a.LinkListFlavorType={}))},2922:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.DATERANGE="DATERANGE",e.DATE="DATE",e.FROM="FROM",e.TO="TO",e.DAYS="DAYS",e.LASTDAYS="LASTDAYS",e.LASTWEEKS="LASTWEEKS",e.WEEK="WEEK",e.LASTMONTHS="LASTMONTHS",e.MONTH="MONTH",e.QUARTER="QUARTER",e.LASTQUARTERS="LASTQUARTERS",e.LASTYEARS="LASTYEARS",e.LASTYEAR="LASTYEAR",e.YEAR="YEAR",e.NEXTDAYS="NEXTDAYS",e.NEXTWEEKS="NEXTWEEKS",e.NEXTMONTHS="NEXTMONTHS",e.NEXTQUARTERS="NEXTQUARTERS",e.NEXTYEARS="NEXTYEARS",e.NEXT="NEXT",e.SPECIFICMONTH="SPECIFICMONTH",e.YESTERDAY="YESTERDAY",e.YEARTODATE="YEARTODATE",e.TODAY="TODAY",e.TOMORROW="TOMORROW",e.THISWEEK="THISWEEK",e.LASTWEEK="LASTWEEK",e.LAST2WEEKS="LAST2WEEKS",e.LAST3WEEKS="LAST3WEEKS",e.LAST4WEEKS="LAST4WEEKS",e.LAST5WEEKS="LAST5WEEKS",e.NEXTWEEK="NEXTWEEK",e.NEXT2WEEKS="NEXT2WEEKS",e.NEXT3WEEKS="NEXT3WEEKS",e.NEXT4WEEKS="NEXT4WEEKS",e.NEXT5WEEKS="NEXT5WEEKS",e.THISMONTH="THISMONTH",e.LASTMONTH="LASTMONTH",e.NEXTMONTH="NEXTMONTH",e.THISQUARTER="THISQUARTER",e.LASTQUARTER="LASTQUARTER",e.NEXTQUARTER="NEXTQUARTER",e.QUARTER1="QUARTER1",e.QUARTER2="QUARTER2",e.QUARTER3="QUARTER3",e.QUARTER4="QUARTER4",e.TODAYFROMTO="TODAYFROMTO"}(a.DateRangeType||(a.DateRangeType={}))},7876:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.AfterFacet="AfterFacet",e.BeforeFacet="BeforeFacet",e.ReplaceFacet="ReplaceFacet"}(a.SectionPosition||(a.SectionPosition={})),function(e){e.XML="XML"}(a.ExtensionFragmentTypes||(a.ExtensionFragmentTypes={}))},9649:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.inline="inline"}(a.CreateMode||(a.CreateMode={}))},2906:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.XML="XML"}(a.customColumnViewTypes||(a.customColumnViewTypes={})),function(e){e.ResponsiveTable="ResponsiveTable",e.GridTable="GridTable",e.AnalyticalTable="AnalyticalTable",e.TreeTable="TreeTable"}(a.TableTypeV2||(a.TableTypeV2={})),function(e){e.ResponsiveTableColumnsExtension="ResponsiveTableColumnsExtension",e.AnalyticalTableColumnsExtension="AnalyticalTableColumnsExtension",e.TreeTableColumnsExtension="TreeTableColumnsExtension",e.GridTableColumnsExtension="GridTableColumnsExtension"}(a.TableColumnExtensionTypeV2||(a.TableColumnExtensionTypeV2={})),function(e){e.extension="extension"}(a.Strategy||(a.Strategy={})),function(e){e.charttable="charttable",e.chart="chart",e.table="table"}(a.DefaultContentView||(a.DefaultContentView={})),function(e){e.visual="visual",e.compact="compact"}(a.DefaultFilterMode||(a.DefaultFilterMode={})),function(e){e.always="always",e.never="never",e.ifAnyFilterExist="ifAnyFilterExist"}(a.LoadDataOnAppLaunchSettings||(a.LoadDataOnAppLaunchSettings={}))},6402:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(2922)),n(t(2906)),n(t(7876)),n(t(6745)),n(t(9649)),n(t(2387))},390:(e,a,t)=>{function n(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}Object.defineProperty(a,"__esModule",{value:!0}),n(t(3800)),n(t(6402)),n(t(9809)),n(t(3846))},2505:(e,a)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){e.fixed="fixed",e.resizable="resizable"}(a.ContainerLayoutType||(a.ContainerLayoutType={}))},3800:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}(t(2505))},9809:(e,a,t)=>{Object.defineProperty(a,"__esModule",{value:!0}),function(e){for(var t in e)a.hasOwnProperty(t)||(a[t]=e[t])}(t(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,20 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export declare enum ButtonType {
|
|
3
|
-
Accept = "Accept",
|
|
4
|
-
Attention = "Attention",
|
|
5
|
-
Back = "Back",
|
|
6
|
-
Critical = "Critical",
|
|
7
|
-
Default = "Default",
|
|
8
|
-
Emphasized = "Emphasized",
|
|
9
|
-
Ghost = "Ghost",
|
|
10
|
-
Negative = "Negative",
|
|
11
|
-
Neutral = "Neutral",
|
|
12
|
-
Reject = "Reject",
|
|
13
|
-
Success = "Success",
|
|
14
|
-
Transparent = "Transparent",
|
|
15
|
-
Unstyled = "Unstyled",
|
|
16
|
-
Up = "Up"
|
|
17
|
-
}
|
|
1
|
+
/// <reference types="@sapui5/ts-types" />
|
|
18
2
|
/**
|
|
19
3
|
* Action
|
|
20
4
|
* @isViewNode true
|
|
@@ -27,15 +11,15 @@ export interface FormAction {
|
|
|
27
11
|
/**
|
|
28
12
|
* Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.
|
|
29
13
|
*/
|
|
30
|
-
icon?:
|
|
14
|
+
icon?: sap.ui.core.URI;
|
|
31
15
|
/**
|
|
32
16
|
* Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.
|
|
33
17
|
*/
|
|
34
|
-
activeIcon?:
|
|
18
|
+
activeIcon?: sap.ui.core.URI;
|
|
35
19
|
/**
|
|
36
20
|
* Defines the Button type.
|
|
37
21
|
*/
|
|
38
|
-
type?: ButtonType;
|
|
22
|
+
type?: sap.m.ButtonType;
|
|
39
23
|
/**
|
|
40
24
|
* Whether the button should be visible on the screen.
|
|
41
25
|
*/
|
|
@@ -1,20 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var ButtonType;
|
|
4
|
-
(function (ButtonType) {
|
|
5
|
-
ButtonType["Accept"] = "Accept";
|
|
6
|
-
ButtonType["Attention"] = "Attention";
|
|
7
|
-
ButtonType["Back"] = "Back";
|
|
8
|
-
ButtonType["Critical"] = "Critical";
|
|
9
|
-
ButtonType["Default"] = "Default";
|
|
10
|
-
ButtonType["Emphasized"] = "Emphasized";
|
|
11
|
-
ButtonType["Ghost"] = "Ghost";
|
|
12
|
-
ButtonType["Negative"] = "Negative";
|
|
13
|
-
ButtonType["Neutral"] = "Neutral";
|
|
14
|
-
ButtonType["Reject"] = "Reject";
|
|
15
|
-
ButtonType["Success"] = "Success";
|
|
16
|
-
ButtonType["Transparent"] = "Transparent";
|
|
17
|
-
ButtonType["Unstyled"] = "Unstyled";
|
|
18
|
-
ButtonType["Up"] = "Up";
|
|
19
|
-
})(ButtonType = exports.ButtonType || (exports.ButtonType = {}));
|
|
20
3
|
//# sourceMappingURL=FormAction.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormAction.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/FormAction.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FormAction.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/FormAction.ts"],"names":[],"mappings":""}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
+
/// <reference types="@sapui5/ts-types" />
|
|
1
2
|
import { HeaderAction } from '../controls/ObjectPageHeaderAction';
|
|
2
|
-
export declare enum AvatarShape {
|
|
3
|
-
Circle = "Circle",
|
|
4
|
-
Square = "Square"
|
|
5
|
-
}
|
|
6
3
|
export interface GenericActions {
|
|
7
4
|
[id: string]: HeaderAction;
|
|
8
5
|
}
|
|
@@ -26,7 +23,7 @@ export interface ObjectPageHeader<ACT = GenericActions> {
|
|
|
26
23
|
/**
|
|
27
24
|
* With displayShape you can define the shape of the avatar.
|
|
28
25
|
*/
|
|
29
|
-
displayShape?: AvatarShape;
|
|
26
|
+
displayShape?: sap.m.AvatarShape;
|
|
30
27
|
/**
|
|
31
28
|
* Set properties of actions on Object Page Header
|
|
32
29
|
*/
|
|
@@ -1,8 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var AvatarShape;
|
|
4
|
-
(function (AvatarShape) {
|
|
5
|
-
AvatarShape["Circle"] = "Circle";
|
|
6
|
-
AvatarShape["Square"] = "Square";
|
|
7
|
-
})(AvatarShape = exports.AvatarShape || (exports.AvatarShape = {}));
|
|
8
3
|
//# sourceMappingURL=ObjectPageHeader.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ObjectPageHeader.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/ObjectPageHeader.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ObjectPageHeader.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/ObjectPageHeader.ts"],"names":[],"mappings":""}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="@sapui5/ts-types" />
|
|
2
2
|
/**
|
|
3
3
|
* Header Action
|
|
4
4
|
* @isViewNode true
|
|
@@ -11,15 +11,15 @@ export interface HeaderAction {
|
|
|
11
11
|
/**
|
|
12
12
|
* Icon to be displayed as graphical element within the Button. Can be an image or icon from the icon font, represented as RFC 3986 conformant URI.
|
|
13
13
|
*/
|
|
14
|
-
icon?:
|
|
14
|
+
icon?: sap.ui.core.URI;
|
|
15
15
|
/**
|
|
16
16
|
* Alternative icon for the active (depressed) state of the button, represented as RFC 3986 conformant URI.
|
|
17
17
|
*/
|
|
18
|
-
activeIcon?:
|
|
18
|
+
activeIcon?: sap.ui.core.URI;
|
|
19
19
|
/**
|
|
20
20
|
* Defines the Button type.
|
|
21
21
|
*/
|
|
22
|
-
type?: ButtonType;
|
|
22
|
+
type?: sap.m.ButtonType;
|
|
23
23
|
/**
|
|
24
24
|
* Whether the button should be visible on the screen.
|
|
25
25
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="@sapui5/ts-types" />
|
|
2
|
+
import { GenericColumns, TableTypeV2, QuickVariant } from './Table';
|
|
2
3
|
import { ObjectPageToolBar } from './ObjectPageToolBar';
|
|
3
4
|
export interface QuickVariantSelectionOP {
|
|
4
5
|
/**
|
|
@@ -85,7 +86,7 @@ export interface ObjectPageResponsiveTableCommonSettings extends ObjectPageCommo
|
|
|
85
86
|
/**
|
|
86
87
|
* popinLayout defines the layout in which the table pop-in rows shall be rendered.
|
|
87
88
|
*/
|
|
88
|
-
popinLayout?: PopinLayout;
|
|
89
|
+
popinLayout?: sap.m.PopinLayout;
|
|
89
90
|
/**
|
|
90
91
|
* growingThreshold defines the number of items to be requested from the model for each grow. This property can only be used if the growing property is set to true.
|
|
91
92
|
*/
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
+
/// <reference types="@sapui5/ts-types" />
|
|
1
2
|
import { SAPUI5_FRAGMENT_CLASS } from '../../common/webapp/manifest/sapUi5';
|
|
2
3
|
import { ToolBar } from './ToolBar';
|
|
3
|
-
export declare enum HAlign {
|
|
4
|
-
initial = "Initial",
|
|
5
|
-
left = "Left",
|
|
6
|
-
center = "Center",
|
|
7
|
-
right = "Right",
|
|
8
|
-
begin = "Begin",
|
|
9
|
-
end = "End"
|
|
10
|
-
}
|
|
11
4
|
/**
|
|
12
5
|
* Column
|
|
13
6
|
* @isViewNode true
|
|
@@ -20,7 +13,7 @@ export interface TableColumn {
|
|
|
20
13
|
/**
|
|
21
14
|
* The hAlign property defines the horizontal alignment of the column content.
|
|
22
15
|
*/
|
|
23
|
-
hAlign?:
|
|
16
|
+
hAlign?: sap.ui.core.TextAlign;
|
|
24
17
|
}
|
|
25
18
|
/**
|
|
26
19
|
* Custom Column
|
|
@@ -92,11 +85,6 @@ export declare type TableCustomColumns = Array<TableCustomColumn>;
|
|
|
92
85
|
export interface GenericColumns {
|
|
93
86
|
[key: string]: TableColumn | TableCustomColumns;
|
|
94
87
|
}
|
|
95
|
-
export declare enum PopinLayout {
|
|
96
|
-
Block = "Block",
|
|
97
|
-
GridLarge = "GridLarge",
|
|
98
|
-
GridSmall = "GridSmall"
|
|
99
|
-
}
|
|
100
88
|
export interface QuickVariant {
|
|
101
89
|
/**
|
|
102
90
|
* A key entry that is used for initializing the corresponding SegmentedButton item. This entry is mandatory.
|
|
@@ -268,7 +256,7 @@ export interface ResponsiveTableCommonSettings extends CommonTableSettings {
|
|
|
268
256
|
/**
|
|
269
257
|
* popinLayout defines the layout in which the table pop-in rows are rendered.
|
|
270
258
|
*/
|
|
271
|
-
popinLayout?: PopinLayout;
|
|
259
|
+
popinLayout?: sap.m.PopinLayout;
|
|
272
260
|
/**
|
|
273
261
|
* createWithFilters adds a new create action that uses the filter settings as input.
|
|
274
262
|
*/
|
|
@@ -1,14 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
var HAlign;
|
|
4
|
-
(function (HAlign) {
|
|
5
|
-
HAlign["initial"] = "Initial";
|
|
6
|
-
HAlign["left"] = "Left";
|
|
7
|
-
HAlign["center"] = "Center";
|
|
8
|
-
HAlign["right"] = "Right";
|
|
9
|
-
HAlign["begin"] = "Begin";
|
|
10
|
-
HAlign["end"] = "End";
|
|
11
|
-
})(HAlign = exports.HAlign || (exports.HAlign = {}));
|
|
12
3
|
var customColumnViewTypes;
|
|
13
4
|
(function (customColumnViewTypes) {
|
|
14
5
|
customColumnViewTypes["XML"] = "XML";
|
|
@@ -27,12 +18,6 @@ var TableColumnExtensionTypeV2;
|
|
|
27
18
|
TableColumnExtensionTypeV2["TreeTableColumnsExtension"] = "TreeTableColumnsExtension";
|
|
28
19
|
TableColumnExtensionTypeV2["GridTableColumnsExtension"] = "GridTableColumnsExtension";
|
|
29
20
|
})(TableColumnExtensionTypeV2 = exports.TableColumnExtensionTypeV2 || (exports.TableColumnExtensionTypeV2 = {}));
|
|
30
|
-
var PopinLayout;
|
|
31
|
-
(function (PopinLayout) {
|
|
32
|
-
PopinLayout["Block"] = "Block";
|
|
33
|
-
PopinLayout["GridLarge"] = "GridLarge";
|
|
34
|
-
PopinLayout["GridSmall"] = "GridSmall";
|
|
35
|
-
})(PopinLayout = exports.PopinLayout || (exports.PopinLayout = {}));
|
|
36
21
|
var Strategy;
|
|
37
22
|
(function (Strategy) {
|
|
38
23
|
Strategy["extension"] = "extension";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Table.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Table.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"Table.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/Table.ts"],"names":[],"mappings":";;AAkEA,IAAY,qBAEX;AAFD,WAAY,qBAAqB;IAC7B,oCAAW,CAAA;AACf,CAAC,EAFW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAEhC;AAED,IAAY,WAKX;AALD,WAAY,WAAW;IACnB,kDAAmC,CAAA;IACnC,sCAAuB,CAAA;IACvB,kDAAmC,CAAA;IACnC,sCAAuB,CAAA;AAC3B,CAAC,EALW,WAAW,GAAX,mBAAW,KAAX,mBAAW,QAKtB;AAED,IAAY,0BAKX;AALD,WAAY,0BAA0B;IAClC,iGAAmE,CAAA;IACnE,iGAAmE,CAAA;IACnE,qFAAuD,CAAA;IACvD,qFAAuD,CAAA;AAC3D,CAAC,EALW,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QAKrC;AAuFD,IAAY,QAEX;AAFD,WAAY,QAAQ;IAChB,mCAAuB,CAAA;AAC3B,CAAC,EAFW,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAEnB;AAED,IAAY,kBAIX;AAJD,WAAY,kBAAkB;IAC1B,+CAAyB,CAAA;IACzB,qCAAe,CAAA;IACf,qCAAe,CAAA;AACnB,CAAC,EAJW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAI7B;AAED,IAAY,iBAGX;AAHD,WAAY,iBAAiB;IACzB,sCAAiB,CAAA;IACjB,wCAAmB,CAAA;AACvB,CAAC,EAHW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAG5B;AAED,IAAY,2BAIX;AAJD,WAAY,2BAA2B;IACnC,gDAAiB,CAAA;IACjB,8CAAe,CAAA;IACf,oEAAqC,CAAA;AACzC,CAAC,EAJW,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAItC"}
|
|
@@ -5,10 +5,8 @@ function __export(m) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
__export(require("./FilterBar"));
|
|
7
7
|
__export(require("./Table"));
|
|
8
|
-
__export(require("./ObjectPageHeader"));
|
|
9
8
|
__export(require("./ObjectPageSection"));
|
|
10
9
|
__export(require("./Card"));
|
|
11
10
|
__export(require("./ObjectPageTable"));
|
|
12
11
|
__export(require("./AnalyticalListPageChart"));
|
|
13
|
-
__export(require("./FormAction"));
|
|
14
12
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/index.ts"],"names":[],"mappings":";;;;;AAAA,iCAA4B;AAC5B,6BAAwB;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/specification/v2/controls/index.ts"],"names":[],"mappings":";;;;;AAAA,iCAA4B;AAC5B,6BAAwB;AAQxB,yCAAoC;AACpC,4BAAuB;AACvB,uCAAkC;AAClC,+CAA0C"}
|
|
@@ -27,8 +27,8 @@ function addField(sectionType, appSchema, field, targetID, key, section, version
|
|
|
27
27
|
const fieldDefinition = version === common_1.FioriElementsVersion.v2
|
|
28
28
|
? `${fieldReferenceType}<${targetID}::${fieldReference}>`
|
|
29
29
|
: `${targetID}::${fieldReference}`;
|
|
30
|
-
const fieldsDefinition = `${sectionType}Fields<${targetID}
|
|
31
|
-
const actionsDefinition = `${sectionType}Actions<${targetID}
|
|
30
|
+
const fieldsDefinition = __1.prepareRef(`${sectionType}Fields<${targetID}>`);
|
|
31
|
+
const actionsDefinition = __1.prepareRef(`${sectionType}Actions<${targetID}>`);
|
|
32
32
|
if (!field || !field.$Type) {
|
|
33
33
|
return;
|
|
34
34
|
}
|
|
@@ -52,7 +52,8 @@ function addField(sectionType, appSchema, field, targetID, key, section, version
|
|
|
52
52
|
isViewNode: true,
|
|
53
53
|
properties: {},
|
|
54
54
|
description: __1.getDatafieldDescription(field, section.entityType),
|
|
55
|
-
additionalProperties: false
|
|
55
|
+
additionalProperties: false,
|
|
56
|
+
annotationType: field.$Type
|
|
56
57
|
};
|
|
57
58
|
if (version === common_1.FioriElementsVersion.v4 && appSchema['definitions']['Field']) {
|
|
58
59
|
switch (field.$Type) {
|
|
@@ -81,7 +82,7 @@ function addField(sectionType, appSchema, field, targetID, key, section, version
|
|
|
81
82
|
appSchema['definitions'][fieldDefinition]['properties'] = appSchema['definitions']['FormAction']['properties'];
|
|
82
83
|
}
|
|
83
84
|
if ((_c = (_b = field['Value']) === null || _b === void 0 ? void 0 : _b.$target) === null || _c === void 0 ? void 0 : _c.type) {
|
|
84
|
-
appSchema['definitions'][fieldDefinition].dataType = (_e = (_d = field['Value']) === null || _d === void 0 ? void 0 : _d.$target) === null || _e === void 0 ? void 0 : _e.type;
|
|
85
|
+
appSchema['definitions'][fieldDefinition].dataType = (_e = (_d = field['Value']) === null || _d === void 0 ? void 0 : _d.$target) === null || _e === void 0 ? void 0 : _e.type.replace('Edm.', '');
|
|
85
86
|
}
|
|
86
87
|
appSchema['definitions'][fieldDefinition].annotationPath = `/${section.entityType.fullyQualifiedName}/${field.fullyQualifiedName.split(section.entityType.fullyQualifiedName)[1]}`;
|
|
87
88
|
}
|
|
@@ -111,9 +112,9 @@ function handleForm(sectionType, section, appSchemaSection, appSchema, version,
|
|
|
111
112
|
return;
|
|
112
113
|
}
|
|
113
114
|
const targetID = determineTargetIdOfForm(section);
|
|
114
|
-
const formDefinition = `${sectionType}Form<${targetID}
|
|
115
|
-
const fieldsDefinition = `${sectionType}Fields<${targetID}
|
|
116
|
-
const actionsDefinition = `${sectionType}Actions<${targetID}
|
|
115
|
+
const formDefinition = __1.prepareRef(`${sectionType}Form<${targetID}>`);
|
|
116
|
+
const fieldsDefinition = __1.prepareRef(`${sectionType}Fields<${targetID}>`);
|
|
117
|
+
const actionsDefinition = __1.prepareRef(`${sectionType}Actions<${targetID}>`);
|
|
117
118
|
// Form definition
|
|
118
119
|
appSchemaSection['properties']['form'] = { $ref: __1.DEFINITION_LINK_PREFIX + formDefinition };
|
|
119
120
|
if (sectionType === __1.SectionType.Section && withActions) {
|
|
@@ -231,7 +232,7 @@ function addFooterActions(appSchema, entityType, oDataServiceAVT) {
|
|
|
231
232
|
appSchema['definitions']['ObjectPageFooter'] = JSON.parse(JSON.stringify(appSchema['definitions']['ObjectPageFooter<GenericFooterActions>']));
|
|
232
233
|
// Change reference of footer
|
|
233
234
|
appSchema['properties']['footer'] = {
|
|
234
|
-
$ref: __1.DEFINITION_LINK_PREFIX
|
|
235
|
+
$ref: `${__1.DEFINITION_LINK_PREFIX}ObjectPageFooter`
|
|
235
236
|
};
|
|
236
237
|
// Add action to configuration
|
|
237
238
|
appSchema['definitions']['ObjectPageFooter'].properties['actions'] = {
|
|
@@ -256,7 +257,7 @@ function addFooterActions(appSchema, entityType, oDataServiceAVT) {
|
|
|
256
257
|
if (item['Determining'] && item.$Type === "com.sap.vocabularies.UI.v1.DataFieldForAction" /* DataFieldForAction */) {
|
|
257
258
|
const { actionName, actionId } = getActionNameAndId(item.Action, entityType);
|
|
258
259
|
const description = item.Label || actionName;
|
|
259
|
-
const actionDefinitionKey = `FooterAction<${actionId}
|
|
260
|
+
const actionDefinitionKey = __1.prepareRef(`FooterAction<${actionId}>`);
|
|
260
261
|
appSchema['definitions'][actionDefinitionKey] = {
|
|
261
262
|
isViewNode: true,
|
|
262
263
|
type: 'object',
|