@sap/ux-specification 1.84.81 → 1.84.83
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 +44 -5
- package/dist/documentation/runDocu-min.js +5 -5
- package/dist/documentation/runDocu-min.js.map +4 -4
- package/dist/documentation/styleDocu.css +2 -1
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
- package/dist/documentation/v4/v4-ListReport.html +2 -2
- package/dist/documentation/v4/v4-ObjectPage.html +2 -2
- package/dist/index-min.js +34 -34
- package/dist/index-min.js.map +4 -4
- package/dist/package.json +6 -6
- package/dist/schemas/v2/ObjectPageConfig.json +113 -8
- package/dist/src/sync/common/generate/utils.d.ts.map +1 -1
- package/dist/src/sync/common/generate/utils.js +10 -7
- package/dist/src/sync/common/generate/utils.js.map +1 -1
- package/dist/src/sync/common/i18n.json +1 -1
- package/dist/src/sync/common/utils.d.ts.map +1 -1
- package/dist/src/sync/common/utils.js +18 -15
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.d.ts +1 -0
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.d.ts.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.js +10 -0
- package/dist/src/sync/v2/export/controls/ObjectPageHeader.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderSection.d.ts +20 -0
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderSection.d.ts.map +1 -0
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderSection.js +127 -0
- package/dist/src/sync/v2/export/controls/ObjectPageHeaderSection.js.map +1 -0
- package/dist/src/sync/v2/export/controls/index.d.ts +1 -0
- package/dist/src/sync/v2/export/controls/index.d.ts.map +1 -1
- package/dist/src/sync/v2/export/controls/index.js +1 -0
- package/dist/src/sync/v2/export/controls/index.js.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.d.ts.map +1 -1
- package/dist/src/sync/v2/generate/objectPage.js +107 -14
- package/dist/src/sync/v2/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.d.ts +9 -1
- package/dist/src/sync/v2/generate/utils.d.ts.map +1 -1
- package/dist/src/sync/v2/generate/utils.js +45 -26
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.d.ts.map +1 -1
- package/dist/src/sync/v2/import/pages/objectPage.js +61 -8
- package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
- package/dist/src/sync/v2/types.d.ts +8 -1
- package/dist/src/sync/v2/types.d.ts.map +1 -1
- package/dist/src/sync/v2/types.js +7 -0
- package/dist/src/sync/v2/types.js.map +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts +17 -2
- package/dist/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/src/sync/v4/utils/utils.js +121 -61
- package/dist/src/sync/v4/utils/utils.js.map +1 -1
- package/package.json +6 -6
|
@@ -1,10 +1,49 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.alignSchemaWithTemplateType = exports.findPageV4 = exports.addLineItemsTypeToSchema = void 0;
|
|
3
|
+
exports.alignSchemaWithTemplateType = exports.findPageV4 = exports.addLineItemsTypeToSchema = exports.appendLineItemsToSchema = void 0;
|
|
4
4
|
const utils_1 = require("../../common/utils");
|
|
5
5
|
const StableIdHelper_1 = require("./StableIdHelper");
|
|
6
6
|
const common_1 = require("../../common");
|
|
7
7
|
const ux_specification_types_1 = require("@sap/ux-specification-types");
|
|
8
|
+
/**
|
|
9
|
+
* Determines the name of the action in schema
|
|
10
|
+
* @param {LineItemDataForSchema} data - data of the the LineItem
|
|
11
|
+
*
|
|
12
|
+
* @returns the name of the action
|
|
13
|
+
*/
|
|
14
|
+
function determineActionDefinitionName(data) {
|
|
15
|
+
let actionDefinitionName;
|
|
16
|
+
if (data.lineItemId.startsWith(ux_specification_types_1.DefinitionName.LineItemsOfView)) {
|
|
17
|
+
actionDefinitionName = ux_specification_types_1.DefinitionName.ViewToolBarAction;
|
|
18
|
+
}
|
|
19
|
+
else if (data.lineItemId.startsWith(ux_specification_types_1.DefinitionName.LineItems)) {
|
|
20
|
+
actionDefinitionName = ux_specification_types_1.DefinitionName.ToolBarAction;
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
actionDefinitionName = ux_specification_types_1.DefinitionName.ObjectPageToolBarAction;
|
|
24
|
+
}
|
|
25
|
+
return actionDefinitionName;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Adds the schema tags 'keys' and 'target' to the schema definition of an action
|
|
29
|
+
* @param {SchemaDefinition} actionDefinition - current action definition in the app schema
|
|
30
|
+
* @param {DataFieldForActionAbstractTypes} lineItemRecord - actual record of the line item collection
|
|
31
|
+
* @param {string} actionId - ID of the action, according to the lineItem definition
|
|
32
|
+
*/
|
|
33
|
+
function addTargetAndKeysOfAction(actionDefinition, lineItemRecord, actionId) {
|
|
34
|
+
actionDefinition[ux_specification_types_1.SchemaTag.keys] = [];
|
|
35
|
+
if (lineItemRecord[ux_specification_types_1.SchemaKeyName.semanticObject]) {
|
|
36
|
+
actionDefinition[ux_specification_types_1.SchemaTag.keys].push({
|
|
37
|
+
name: ux_specification_types_1.SchemaKeyName.semanticObject,
|
|
38
|
+
value: lineItemRecord[ux_specification_types_1.SchemaKeyName.semanticObject]
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
const { key, ns } = (0, common_1.getActionKey)(actionId, true);
|
|
42
|
+
actionDefinition[ux_specification_types_1.SchemaTag.keys].push({ name: ux_specification_types_1.SchemaKeyName.action, value: key });
|
|
43
|
+
if (ns) {
|
|
44
|
+
actionDefinition[ux_specification_types_1.SchemaTag.target] = ns;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
8
47
|
/**
|
|
9
48
|
* Processes a LineItem record of type DataFieldForAction during app schema generation
|
|
10
49
|
* @param {LineItemDataForSchema} data: structure of input data
|
|
@@ -12,83 +51,87 @@ const ux_specification_types_1 = require("@sap/ux-specification-types");
|
|
|
12
51
|
* @param lineItemPath - annotation path to the line item
|
|
13
52
|
* @param lineItemRecord - actual record of the line item collection
|
|
14
53
|
* @param recordIndex - record index in the collection
|
|
54
|
+
* @param {boolean} createRef - defines whether the $ref attribute should be created for the action
|
|
15
55
|
*/
|
|
16
|
-
function addActionRecordToSchema(data, actionsDefinition, lineItemPath, lineItemRecord, recordIndex) {
|
|
56
|
+
function addActionRecordToSchema(data, actionsDefinition, lineItemPath, lineItemRecord, recordIndex, createRef = true) {
|
|
17
57
|
// Action but not inline action
|
|
18
|
-
if (lineItemRecord.Determining
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
actionDefinition[ux_specification_types_1.SchemaTag.keys] = [];
|
|
46
|
-
if (lineItemRecord[ux_specification_types_1.SchemaKeyName.semanticObject]) {
|
|
47
|
-
actionDefinition[ux_specification_types_1.SchemaTag.keys].push({
|
|
48
|
-
name: ux_specification_types_1.SchemaKeyName.semanticObject,
|
|
49
|
-
value: lineItemRecord[ux_specification_types_1.SchemaKeyName.semanticObject]
|
|
50
|
-
});
|
|
51
|
-
}
|
|
52
|
-
actionDefinition[ux_specification_types_1.SchemaTag.keys].push({ name: ux_specification_types_1.SchemaKeyName.action, value: key });
|
|
53
|
-
if (ns) {
|
|
54
|
-
actionDefinition[ux_specification_types_1.SchemaTag.target] = ns;
|
|
55
|
-
}
|
|
56
|
-
actionDefinition[ux_specification_types_1.SchemaTag.annotationType] = lineItemRecord.$Type;
|
|
57
|
-
const action = (0, common_1.parseSchemaDefinition)(actionDefinitionName, (0, common_1.prepareRef)(actionId), data.appSchema);
|
|
58
|
+
if (lineItemRecord.Determining === true) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
//no footer bar -> toolbar action
|
|
62
|
+
const actionDefinitionName = determineActionDefinitionName(data);
|
|
63
|
+
const description = (0, utils_1.getDataFieldDescription)(lineItemRecord, data.entityType);
|
|
64
|
+
const prefix = lineItemRecord.$Type.split(`${ux_specification_types_1.UIVOCABULARY}.`)[1];
|
|
65
|
+
const actionId = typeof lineItemRecord.Action === 'string' ? lineItemRecord.Action : lineItemRecord.Action['path'];
|
|
66
|
+
const propertyKey = (0, StableIdHelper_1.replaceSpecialChars)(actionId);
|
|
67
|
+
const actionDefinition = (actionsDefinition.properties[`${prefix}::${propertyKey}`] = {
|
|
68
|
+
description
|
|
69
|
+
});
|
|
70
|
+
if (createRef) {
|
|
71
|
+
actionDefinition.$ref = (0, common_1.getFacetDefinitionLink)(actionDefinitionName, (0, common_1.prepareRef)(propertyKey));
|
|
72
|
+
}
|
|
73
|
+
else {
|
|
74
|
+
actionDefinition.properties = {};
|
|
75
|
+
actionDefinition.type = 'object';
|
|
76
|
+
actionDefinition.isViewNode = true;
|
|
77
|
+
}
|
|
78
|
+
actionDefinition[ux_specification_types_1.SchemaTag.propertyIndex] = recordIndex;
|
|
79
|
+
actionDefinition[ux_specification_types_1.SchemaTag.dataType] = (0, common_1.determineDataType)(lineItemRecord);
|
|
80
|
+
//keys
|
|
81
|
+
addTargetAndKeysOfAction(actionDefinition, lineItemRecord, actionId);
|
|
82
|
+
actionDefinition[ux_specification_types_1.SchemaTag.annotationType] = lineItemRecord.$Type;
|
|
83
|
+
if (createRef) {
|
|
84
|
+
const action = (0, common_1.parseSchemaDefinition)(actionDefinitionName, (0, common_1.prepareRef)(propertyKey), data.appSchema);
|
|
58
85
|
action[ux_specification_types_1.SchemaTag.annotationPath] = `${lineItemPath}/${recordIndex}`;
|
|
59
86
|
}
|
|
87
|
+
else {
|
|
88
|
+
actionDefinition[ux_specification_types_1.SchemaTag.annotationPath] = `${lineItemPath}/${recordIndex}`;
|
|
89
|
+
}
|
|
60
90
|
}
|
|
61
91
|
/**
|
|
62
92
|
* Processes a LineItem record of type DataField during app schema generation
|
|
63
93
|
* @param {LineItemDataForSchema} data: structure of input data
|
|
64
|
-
* @param lineItem - object comprising the line item information:
|
|
94
|
+
* @param {object} lineItem - object comprising the line item information:
|
|
65
95
|
* { lineItemRecord, lineItemId, lineItemPath }
|
|
66
|
-
* @param columnDefinitionName - Schema definition name for the column
|
|
67
|
-
* @param recordIndex - record index in the collection
|
|
96
|
+
* @param {string} columnDefinitionName - Schema definition name for the column
|
|
97
|
+
* @param {number} recordIndex - record index in the collection
|
|
98
|
+
* @param {Definition | undefined} lineItemDefinition - line item definition
|
|
68
99
|
*/
|
|
69
|
-
function addLineItemRecordToSchema(data, lineItem, columnDefinitionName, recordIndex) {
|
|
100
|
+
function addLineItemRecordToSchema(data, lineItem, columnDefinitionName, recordIndex, lineItemDefinition) {
|
|
70
101
|
const lineItemId = lineItem['lineItemId'];
|
|
71
102
|
const lineItemRecord = lineItem['lineItemRecord'];
|
|
72
103
|
if (lineItemRecord['Target']?.['value']) {
|
|
73
104
|
const regex = `@${(0, utils_1.findAlias)(ux_specification_types_1.UIVOCABULARY, data.oDataServiceAVT)}.`;
|
|
74
105
|
lineItemRecord['Target']['value'] = lineItemRecord['Target']['value'].replace(regex, '@');
|
|
75
106
|
}
|
|
76
|
-
const schemaKey = (0, StableIdHelper_1.getStableIdPartFromDataField)(lineItemRecord);
|
|
107
|
+
const schemaKey = (0, StableIdHelper_1.getStableIdPartFromDataField)(lineItemRecord).replace(/\//g, '::');
|
|
77
108
|
if (schemaKey) {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
109
|
+
let columnsDefinition = lineItemDefinition;
|
|
110
|
+
if (!columnsDefinition) {
|
|
111
|
+
columnsDefinition = data.appSchema.definitions[lineItemId];
|
|
112
|
+
}
|
|
113
|
+
const properties = columnsDefinition.properties;
|
|
114
|
+
const property = {
|
|
81
115
|
description: (0, utils_1.getDataFieldDescription)(lineItemRecord, data.entityType)
|
|
82
116
|
};
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
117
|
+
if (lineItemDefinition) {
|
|
118
|
+
property.properties = {};
|
|
119
|
+
property.type = 'object';
|
|
120
|
+
property.isViewNode = true;
|
|
121
|
+
}
|
|
122
|
+
else {
|
|
123
|
+
property.$ref = utils_1.DEFINITION_LINK_PREFIX + columnDefinitionName;
|
|
124
|
+
}
|
|
125
|
+
property[ux_specification_types_1.SchemaTag.annotationType] = lineItemRecord?.$Type;
|
|
126
|
+
property[ux_specification_types_1.SchemaTag.annotationPath] = `${lineItem['lineItemPath']}/${recordIndex}`;
|
|
127
|
+
property[ux_specification_types_1.SchemaTag.propertyIndex] = recordIndex;
|
|
128
|
+
property[ux_specification_types_1.SchemaTag.dataType] = (0, common_1.determineDataType)(lineItemRecord);
|
|
129
|
+
properties[schemaKey] = property;
|
|
87
130
|
(0, common_1.addKeyToDefinition)(lineItemRecord, properties, schemaKey);
|
|
88
131
|
}
|
|
89
132
|
}
|
|
90
133
|
/**
|
|
91
|
-
*
|
|
134
|
+
* Appends line item columns and actions to the app schema (for the list report, custom page or an object page section comprising a table)
|
|
92
135
|
* @param {LineItemDataForSchema} data: structure comprising
|
|
93
136
|
* - appSchema - the app specific schema that shall get enhanced
|
|
94
137
|
* - lineItemAnnotation - the UI.LineItem annotation, comprising all records
|
|
@@ -96,11 +139,12 @@ function addLineItemRecordToSchema(data, lineItem, columnDefinitionName, recordI
|
|
|
96
139
|
* - oDataServiceAVT - complete service information, as returned by Annotation Vocabularies Tool
|
|
97
140
|
* - lineItemId - in case of OP the parameter must be passed to distinguish the OP tables;
|
|
98
141
|
* in case of LR or ALP 'LineItems' is passed.
|
|
99
|
-
* @param
|
|
142
|
+
* @param {Definition} actions - actions definition in schema, parent object
|
|
143
|
+
* @param {string} lineItemPath - annotation path to the line item
|
|
144
|
+
* @param {Definition | undefined} lineItemDefinition - line item definition
|
|
145
|
+
* @param {string} columnDefinitionName - line item definition name
|
|
100
146
|
*/
|
|
101
|
-
function
|
|
102
|
-
// Add the correct lineItem definition
|
|
103
|
-
const { actions, lineItemPath } = (0, common_1.addCommonLineItemDefinitions)(data.appSchema, data.lineItemAnnotation, data.entityType, data.lineItemId);
|
|
147
|
+
function appendLineItemsToSchema(data, actions, lineItemPath, lineItemDefinition, columnDefinitionName = ux_specification_types_1.DefinitionName.TableColumn) {
|
|
104
148
|
if (!data.lineItemAnnotation) {
|
|
105
149
|
return;
|
|
106
150
|
}
|
|
@@ -109,18 +153,34 @@ function addLineItemsTypeToSchema(data, columnDefinitionName = ux_specification_
|
|
|
109
153
|
if ((lineItemRecord.$Type === "com.sap.vocabularies.UI.v1.DataFieldForAction" /* UIAnnotationTypes.DataFieldForAction */ ||
|
|
110
154
|
lineItemRecord.$Type === "com.sap.vocabularies.UI.v1.DataFieldForIntentBasedNavigation" /* UIAnnotationTypes.DataFieldForIntentBasedNavigation */) &&
|
|
111
155
|
(lineItemRecord.Inline !== true || lineItemRecord.Determining === true)) {
|
|
112
|
-
addActionRecordToSchema(data, actions, lineItemPath, lineItemRecord, i);
|
|
156
|
+
addActionRecordToSchema(data, actions, lineItemPath, lineItemRecord, i, !lineItemDefinition);
|
|
113
157
|
}
|
|
114
158
|
else {
|
|
115
159
|
const lineItem = { lineItemRecord, lineItemId: data.lineItemId, lineItemPath };
|
|
116
160
|
const columnDefinition = lineItemRecord.$Type === "com.sap.vocabularies.UI.v1.DataFieldForAction" /* UIAnnotationTypes.DataFieldForAction */
|
|
117
161
|
? `${columnDefinitionName}Action`
|
|
118
162
|
: columnDefinitionName;
|
|
119
|
-
addLineItemRecordToSchema(data, lineItem, columnDefinition, i);
|
|
163
|
+
addLineItemRecordToSchema(data, lineItem, columnDefinition, i, lineItemDefinition);
|
|
120
164
|
}
|
|
121
165
|
i++;
|
|
122
166
|
});
|
|
123
167
|
}
|
|
168
|
+
exports.appendLineItemsToSchema = appendLineItemsToSchema;
|
|
169
|
+
/**
|
|
170
|
+
* Adds the line item definition, columns and actions to the app schema (for the list report, custom page or an object page section comprising a table
|
|
171
|
+
* @param {LineItemDataForSchema} data: structure comprising
|
|
172
|
+
* - appSchema - the app specific schema that shall get enhanced
|
|
173
|
+
* - lineItemAnnotation - the UI.LineItem annotation, comprising all records
|
|
174
|
+
* - entityType - the entity type as part of the AVT ConvertedMetadata
|
|
175
|
+
* - oDataServiceAVT - complete service information, as returned by Annotation Vocabularies Tool
|
|
176
|
+
* - lineItemId - in case of OP the parameter must be passed to distinguish the OP tables;
|
|
177
|
+
* in case of LR or ALP 'LineItems' is passed.
|
|
178
|
+
* @param {string} columnDefinitionName - name of the column definition, i.e. TableColumn or ObjectPageTableColumn
|
|
179
|
+
*/
|
|
180
|
+
function addLineItemsTypeToSchema(data, columnDefinitionName = ux_specification_types_1.DefinitionName.TableColumn) {
|
|
181
|
+
const { actions, lineItemPath } = (0, common_1.addCommonLineItemDefinitions)(data.appSchema, data.lineItemAnnotation, data.entityType, data.lineItemId);
|
|
182
|
+
appendLineItemsToSchema(data, actions, lineItemPath, undefined, columnDefinitionName);
|
|
183
|
+
}
|
|
124
184
|
exports.addLineItemsTypeToSchema = addLineItemsTypeToSchema;
|
|
125
185
|
/**
|
|
126
186
|
* Find the relevant V4 page under the routing targets of manifest,json
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../../src/sync/v4/utils/utils.ts"],"names":[],"mappings":";;;AAOA,8CAAgG;AAChG,qDAAqF;AACrF,yCAQsB;AAGtB,wEAQqC;AAErC
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../../src/sync/v4/utils/utils.ts"],"names":[],"mappings":";;;AAOA,8CAAgG;AAChG,qDAAqF;AACrF,yCAQsB;AAGtB,wEAQqC;AAErC;;;;;GAKG;AACH,SAAS,6BAA6B,CAAC,IAA2B;IAC9D,IAAI,oBAAoC,CAAC;IACzC,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,uCAAc,CAAC,eAAe,CAAC,EAAE;QAC5D,oBAAoB,GAAG,uCAAc,CAAC,iBAAiB,CAAC;KAC3D;SAAM,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,uCAAc,CAAC,SAAS,CAAC,EAAE;QAC7D,oBAAoB,GAAG,uCAAc,CAAC,aAAa,CAAC;KACvD;SAAM;QACH,oBAAoB,GAAG,uCAAc,CAAC,uBAAuB,CAAC;KACjE;IACD,OAAO,oBAAoB,CAAC;AAChC,CAAC;AAED;;;;;GAKG;AACH,SAAS,wBAAwB,CAC7B,gBAAkC,EAClC,cAA+C,EAC/C,QAAgB;IAEhB,gBAAgB,CAAC,kCAAS,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;IACtC,IAAI,cAAc,CAAC,sCAAa,CAAC,cAAc,CAAC,EAAE;QAC9C,gBAAgB,CAAC,kCAAS,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC;YAClC,IAAI,EAAE,sCAAa,CAAC,cAAc;YAClC,KAAK,EAAE,cAAc,CAAC,sCAAa,CAAC,cAAc,CAAC;SACtD,CAAC,CAAC;KACN;IACD,MAAM,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,IAAA,qBAAY,EAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;IACjD,gBAAgB,CAAC,kCAAS,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,sCAAa,CAAC,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,CAAC;IAElF,IAAI,EAAE,EAAE;QACJ,gBAAgB,CAAC,kCAAS,CAAC,MAAM,CAAC,GAAG,EAAE,CAAC;KAC3C;AACL,CAAC;AAED;;;;;;;;GAQG;AACH,SAAS,uBAAuB,CAC5B,IAA2B,EAC3B,iBAA6B,EAC7B,YAAoB,EACpB,cAA+C,EAC/C,WAAmB,EACnB,SAAS,GAAG,IAAI;IAEhB,+BAA+B;IAC/B,IAAI,cAAc,CAAC,WAAW,KAAK,IAAI,EAAE;QACrC,OAAO;KACV;IACD,iCAAiC;IACjC,MAAM,oBAAoB,GAAG,6BAA6B,CAAC,IAAI,CAAC,CAAC;IACjE,MAAM,WAAW,GAAG,IAAA,+BAAuB,EAAC,cAAwC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;IACvG,MAAM,MAAM,GAAG,cAAc,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,qCAAY,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;IACjE,MAAM,QAAQ,GAAG,OAAO,cAAc,CAAC,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,cAAc,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACnH,MAAM,WAAW,GAAG,IAAA,oCAAmB,EAAC,QAAkB,CAAC,CAAC;IAC5D,MAAM,gBAAgB,GAAqB,CAAC,iBAAiB,CAAC,UAAU,CAAC,GAAG,MAAM,KAAK,WAAW,EAAE,CAAC,GAAG;QACpG,WAAW;KACd,CAAC,CAAC;IACH,IAAI,SAAS,EAAE;QACX,gBAAgB,CAAC,IAAI,GAAG,IAAA,+BAAsB,EAAC,oBAAoB,EAAE,IAAA,mBAAU,EAAC,WAAW,CAAC,CAAC,CAAC;KACjG;SAAM;QACH,gBAAgB,CAAC,UAAU,GAAG,EAAE,CAAC;QACjC,gBAAgB,CAAC,IAAI,GAAG,QAAQ,CAAC;QACjC,gBAAgB,CAAC,UAAU,GAAG,IAAI,CAAC;KACtC;IACD,gBAAgB,CAAC,kCAAS,CAAC,aAAa,CAAC,GAAG,WAAW,CAAC;IACxD,gBAAgB,CAAC,kCAAS,CAAC,QAAQ,CAAC,GAAG,IAAA,0BAAiB,EAAC,cAAc,CAAC,CAAC;IAEzE,MAAM;IACN,wBAAwB,CAAC,gBAAgB,EAAE,cAAc,EAAE,QAAQ,CAAC,CAAC;IAErE,gBAAgB,CAAC,kCAAS,CAAC,cAAc,CAAC,GAAG,cAAc,CAAC,KAAK,CAAC;IAClE,IAAI,SAAS,EAAE;QACX,MAAM,MAAM,GAAG,IAAA,8BAAqB,EAAC,oBAAoB,EAAE,IAAA,mBAAU,EAAC,WAAW,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;QACpG,MAAM,CAAC,kCAAS,CAAC,cAAc,CAAC,GAAG,GAAG,YAAY,IAAI,WAAW,EAAE,CAAC;KACvE;SAAM;QACH,gBAAgB,CAAC,kCAAS,CAAC,cAAc,CAAC,GAAG,GAAG,YAAY,IAAI,WAAW,EAAE,CAAC;KACjF;AACL,CAAC;AAED;;;;;;;;GAQG;AACH,SAAS,yBAAyB,CAC9B,IAA2B,EAC3B,QAAgB,EAChB,oBAA4B,EAC5B,WAAmB,EACnB,kBAA+B;IAE/B,MAAM,UAAU,GAAG,QAAQ,CAAC,YAAY,CAAC,CAAC;IAC1C,MAAM,cAAc,GAAG,QAAQ,CAAC,gBAAgB,CAAC,CAAC;IAClD,IAAI,cAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE;QACrC,MAAM,KAAK,GAAG,IAAI,IAAA,iBAAS,EAAC,qCAAY,EAAE,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC;QACnE,cAAc,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,GAAG,cAAc,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,GAAG,CAAC,CAAC;KAC7F;IACD,MAAM,SAAS,GAAG,IAAA,6CAA4B,EAAC,cAAc,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;IACpF,IAAI,SAAS,EAAE;QACX,IAAI,iBAAiB,GAAG,kBAAkB,CAAC;QAC3C,IAAI,CAAC,iBAAiB,EAAE;YACpB,iBAAiB,GAAG,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,UAAU,CAAe,CAAC;SAC5E;QACD,MAAM,UAAU,GAAG,iBAAiB,CAAC,UAAU,CAAC;QAChD,MAAM,QAAQ,GAAqB;YAC/B,WAAW,EAAE,IAAA,+BAAuB,EAAC,cAAc,EAAE,IAAI,CAAC,UAAU,CAAC;SACxE,CAAC;QACF,IAAI,kBAAkB,EAAE;YACpB,QAAQ,CAAC,UAAU,GAAG,EAAE,CAAC;YACzB,QAAQ,CAAC,IAAI,GAAG,QAAQ,CAAC;YACzB,QAAQ,CAAC,UAAU,GAAG,IAAI,CAAC;SAC9B;aAAM;YACH,QAAQ,CAAC,IAAI,GAAG,8BAAsB,GAAG,oBAAoB,CAAC;SACjE;QACD,QAAQ,CAAC,kCAAS,CAAC,cAAc,CAAC,GAAG,cAAc,EAAE,KAAK,CAAC;QAC3D,QAAQ,CAAC,kCAAS,CAAC,cAAc,CAAC,GAAG,GAAG,QAAQ,CAAC,cAAc,CAAC,IAAI,WAAW,EAAE,CAAC;QAClF,QAAQ,CAAC,kCAAS,CAAC,aAAa,CAAC,GAAG,WAAW,CAAC;QAChD,QAAQ,CAAC,kCAAS,CAAC,QAAQ,CAAC,GAAG,IAAA,0BAAiB,EAAC,cAAc,CAAC,CAAC;QACjE,UAAU,CAAC,SAAS,CAAC,GAAG,QAAQ,CAAC;QACjC,IAAA,2BAAkB,EAAC,cAAc,EAAE,UAAU,EAAE,SAAS,CAAC,CAAC;KAC7D;AACL,CAAC;AAWD;;;;;;;;;;;;;GAaG;AACH,SAAgB,uBAAuB,CACnC,IAA2B,EAC3B,OAAmB,EACnB,YAAoB,EACpB,kBAA+B,EAC/B,uBAA+B,uCAAc,CAAC,WAAW;IAEzD,IAAI,CAAC,IAAI,CAAC,kBAAkB,EAAE;QAC1B,OAAO;KACV;IACD,IAAI,CAAC,GAAG,CAAC,CAAC;IACV,IAAI,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC,cAAc,EAAE,EAAE;QAC/C,IACI,CAAC,cAAc,CAAC,KAAK,+FAAyC;YAC1D,cAAc,CAAC,KAAK,6HAAwD,CAAC;YACjF,CAAC,cAAc,CAAC,MAAM,KAAK,IAAI,IAAI,cAAc,CAAC,WAAW,KAAK,IAAI,CAAC,EACzE;YACE,uBAAuB,CAAC,IAAI,EAAE,OAAO,EAAE,YAAY,EAAE,cAAc,EAAE,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC;SAChG;aAAM;YACH,MAAM,QAAQ,GAAG,EAAE,cAAc,EAAE,UAAU,EAAE,IAAI,CAAC,UAAU,EAAE,YAAY,EAAE,CAAC;YAC/E,MAAM,gBAAgB,GAClB,cAAc,CAAC,KAAK,+FAAyC;gBACzD,CAAC,CAAC,GAAG,oBAAoB,QAAQ;gBACjC,CAAC,CAAC,oBAAoB,CAAC;YAC/B,yBAAyB,CAAC,IAAI,EAAE,QAAQ,EAAE,gBAAgB,EAAE,CAAC,EAAE,kBAAkB,CAAC,CAAC;SACtF;QACD,CAAC,EAAE,CAAC;IACR,CAAC,CAAC,CAAC;AACP,CAAC;AA5BD,0DA4BC;AAED;;;;;;;;;;GAUG;AACH,SAAgB,wBAAwB,CACpC,IAA2B,EAC3B,uBAA+B,uCAAc,CAAC,WAAW;IAEzD,MAAM,EAAE,OAAO,EAAE,YAAY,EAAE,GAAG,IAAA,qCAA4B,EAC1D,IAAI,CAAC,SAAS,EACd,IAAI,CAAC,kBAAkB,EACvB,IAAI,CAAC,UAAU,EACf,IAAI,CAAC,UAAU,CAClB,CAAC;IAEF,uBAAuB,CAAC,IAAI,EAAE,OAAO,EAAE,YAAY,EAAE,SAAS,EAAE,oBAAoB,CAAC,CAAC;AAC1F,CAAC;AAZD,4DAYC;AAED;;;;;;;GAOG;AACH,SAAgB,UAAU,CACtB,KAA0B,EAC1B,QAAgB,EAChB,SAAoB,EACpB,MAAuB;IAEvB,IAAI,MAAyB,CAAC;IAC9B,IAAI,SAAS,EAAE;QACX,KAAK,MAAM,CAAC,IAAI,KAAK,EAAE;YACnB,IACI,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,QAAQ,EAAE,SAAS,KAAK,SAAS,CAAC,IAAI;gBACxD,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,QAAQ;oBACvB,CAAC,QAAQ,KAAK,2BAAE,CAAC,kBAAkB,IAAI,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,2BAAE,CAAC,0BAA0B,CAAC,CAAC,EAC9F;gBACE,MAAM,GAAG,KAAK,CAAC,CAAC,CAAC,CAAC;gBAClB,MAAM;aACT;SACJ;KACJ;IACD,OAAO,MAAM,CAAC;AAClB,CAAC;AApBD,gCAoBC;AAED;;;;;GAKG;AACH,SAAgB,2BAA2B,CACvC,SAAqB,EACrB,kBAA+C;IAE/C,IAAI,mBAAmB,CAAC;IACxB,MAAM,eAAe,GAAG,SAAS,CAAC,UAAU,CAAC,qCAAY,CAAC,KAAK,CAAe,CAAC;IAC/E,IAAI,kBAAkB,CAAC,YAAY,KAAK,qCAAY,CAAC,oBAAoB,EAAE;QACvE,mBAAmB,GAAG,uCAAc,CAAC,YAAY,CAAC;QAElD,OAAO,eAAe,CAAC,KAAK,CAAC;QAC7B,eAAe,CAAC,IAAI,GAAG,GAAG,8BAAsB,GAAG,uCAAc,CAAC,YAAY,EAAE,CAAC;QACjF,OAAO,SAAS,CAAC,WAAW,CAAC,uCAAc,CAAC,KAAK,CAAC,CAAC;QACnD,OAAO,SAAS,CAAC,WAAW,CAAC,uCAAc,CAAC,WAAW,CAAC,CAAC;QACzD,OAAO,SAAS,CAAC,WAAW,CAAC,uCAAc,CAAC,WAAW,CAAC,CAAC;QACzD,OAAO,SAAS,CAAC,WAAW,CAAC,uCAAc,CAAC,gBAAgB,CAAC,CAAC;KACjE;SAAM,IAAI,kBAAkB,CAAC,YAAY,KAAK,qCAAY,CAAC,sBAAsB,EAAE;QAChF,mBAAmB,GAAG,uCAAc,CAAC,KAAK,CAAC;QAE3C,OAAO,eAAe,CAAC,KAAK,CAAC;QAC7B,eAAe,CAAC,IAAI,GAAG,GAAG,8BAAsB,GAAG,uCAAc,CAAC,KAAK,EAAE,CAAC;QACzE,SAAS,CAAC,WAAW,CAAC,mBAAmB,CAAgB,CAAC,UAAU,CAAC,qCAAY,CAAC,cAAc,CAAC,CAC9F,kCAAS,CAAC,MAAM,CACnB,GAAG,IAAI,CAAC;QACT,OAAO,SAAS,CAAC,WAAW,CAAC,uCAAc,CAAC,YAAY,CAAC,CAAC;QAC1D,SAAS,CAAC,UAAU,CAAC,qCAAY,CAAC,WAAW,CAAC,CAAC,kCAAS,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;KAC3E;IACD,OAAO,mBAAmB,CAAC;AAC/B,CAAC;AA3BD,kEA2BC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/ux-specification",
|
|
3
|
-
"version": "1.84.
|
|
3
|
+
"version": "1.84.83",
|
|
4
4
|
"displayName": "SAP Fiori tools - Specification",
|
|
5
5
|
"description": "SAP Fiori tools - Specification",
|
|
6
6
|
"files": [
|
|
@@ -50,17 +50,17 @@
|
|
|
50
50
|
"publisher": "SAPSE",
|
|
51
51
|
"license": "SEE LICENSE IN LICENSE",
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@sap-ux/vocabularies-types": "0.10.
|
|
53
|
+
"@sap-ux/vocabularies-types": "0.10.5"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@sap-ux/annotation-converter": "0.8.
|
|
56
|
+
"@sap-ux/annotation-converter": "0.8.6",
|
|
57
57
|
"@sap-ux/edmx-parser": "0.7.0",
|
|
58
|
-
"@sap/ux-specification-types": "1.84.
|
|
59
|
-
"@sapui5/ts-types": "1.84.
|
|
58
|
+
"@sap/ux-specification-types": "1.84.83",
|
|
59
|
+
"@sapui5/ts-types": "1.84.42",
|
|
60
60
|
"@types/d3": "7.4.3",
|
|
61
61
|
"@types/jquery": "3.5.29",
|
|
62
62
|
"@ui5/flexibility-utils": "0.1.3",
|
|
63
|
-
"axios": "1.6.
|
|
63
|
+
"axios": "1.6.7",
|
|
64
64
|
"cpy-cli": "3.1.1",
|
|
65
65
|
"d3": "7.8.5",
|
|
66
66
|
"deepmerge": "4.3.1",
|