@sap/ux-specification 1.96.13 → 1.96.14
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 +21 -6
- 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/v4/ListReportConfig.json +3 -3
- package/dist/src/specification/v4/controls/Table.d.ts +2 -2
- package/dist/src/specification/v4/pages/ListReportConfig.d.ts +1 -1
- package/dist/src/sync/common/utils.d.ts +2 -2
- package/dist/src/sync/v4/export/pages/ListReport.d.ts +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts +4 -3
- package/dist/test/test-utils/utils.d.ts +1 -2
- package/package.json +3 -3
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"filterBar": {
|
|
10
10
|
"$ref": "#/definitions/FilterBar",
|
|
11
|
-
"description": "Filter
|
|
11
|
+
"description": "Filter Bar"
|
|
12
12
|
},
|
|
13
13
|
"chart": {
|
|
14
14
|
"$ref": "#/definitions/ALPChartView",
|
|
@@ -240,7 +240,7 @@
|
|
|
240
240
|
"artifactType": "Manifest"
|
|
241
241
|
},
|
|
242
242
|
"createAtEnd": {
|
|
243
|
-
"description": "In case of inline creation mode you can decide if the new row will be created at the end of the table, or
|
|
243
|
+
"description": "In case of inline creation mode you can decide if the new row will be created at the end of the table, or directly after the currently selected table. The default value is \"true\"",
|
|
244
244
|
"type": "boolean",
|
|
245
245
|
"artifactType": "Manifest"
|
|
246
246
|
}
|
|
@@ -595,7 +595,7 @@
|
|
|
595
595
|
"artifactType": "Manifest"
|
|
596
596
|
},
|
|
597
597
|
"createAtEnd": {
|
|
598
|
-
"description": "In case of inline creation mode you can decide if the new row will be created at the end of the table, or
|
|
598
|
+
"description": "In case of inline creation mode you can decide if the new row will be created at the end of the table, or directly after the currently selected table. The default value is \"true\"",
|
|
599
599
|
"type": "boolean",
|
|
600
600
|
"artifactType": "Manifest"
|
|
601
601
|
}
|
|
@@ -36,7 +36,7 @@ export interface TableCreationMode {
|
|
|
36
36
|
*/
|
|
37
37
|
name?: TableCreationModeType;
|
|
38
38
|
/**
|
|
39
|
-
* In case of inline creation mode you can decide if the new row will be created at the end of the table, or
|
|
39
|
+
* In case of inline creation mode you can decide if the new row will be created at the end of the table, or directly after the currently selected table. The default value is "true"
|
|
40
40
|
*/
|
|
41
41
|
createAtEnd?: boolean;
|
|
42
42
|
}
|
|
@@ -50,7 +50,7 @@ export interface ViewTableCreationMode {
|
|
|
50
50
|
*/
|
|
51
51
|
name?: TableCreationModeType;
|
|
52
52
|
/**
|
|
53
|
-
* In case of inline creation mode you can decide if the new row will be created at the end of the table, or
|
|
53
|
+
* In case of inline creation mode you can decide if the new row will be created at the end of the table, or directly after the currently selected table. The default value is "true"
|
|
54
54
|
*/
|
|
55
55
|
createAtEnd?: boolean;
|
|
56
56
|
}
|
|
@@ -94,7 +94,7 @@ export declare function getSectionFacet(facetDefinition: anyFacetType, sourceEnt
|
|
|
94
94
|
/**
|
|
95
95
|
* Finds the alias for a given namespace in the references' section of the converted service metadata.
|
|
96
96
|
* An empty object is created if the path element does not exist yet.
|
|
97
|
-
* Exception: if an empty array is the next element of the 'path' definition, an empty array is created
|
|
97
|
+
* Exception: if an empty array is the next element of the 'path' definition, an empty array is created instead of an empty object.
|
|
98
98
|
* @param {object} manifest - manifest that is being modified during export
|
|
99
99
|
* @param {string} path - path of the property in the manifest
|
|
100
100
|
* @param {string} targetAnnotation - target annotation (optional)
|
|
@@ -208,7 +208,7 @@ export declare type NextDefinition = {
|
|
|
208
208
|
};
|
|
209
209
|
/**
|
|
210
210
|
* Recursive function to determine the next config part, next definition in the app schema and the title
|
|
211
|
-
* @param appSchema - app-
|
|
211
|
+
* @param appSchema - app-specific JSON schema
|
|
212
212
|
* @param title - default title
|
|
213
213
|
* @param currentConfigObject - current part of the configuration that gets traversed
|
|
214
214
|
* @param propertyDefinition - definition of a given property in the app schema
|
|
@@ -11,7 +11,7 @@ import type { Definition } from 'typescript-json-schema';
|
|
|
11
11
|
* @param logger - logger for error messages
|
|
12
12
|
* @param customColumnDefinitionName - custom column definition name
|
|
13
13
|
* @param sectionId - identifier of the current object page section in schema
|
|
14
|
-
* @param
|
|
14
|
+
* @param sectionIdInManifest - identifier of the current object page section in manifest
|
|
15
15
|
*/
|
|
16
16
|
export declare function addCustomColumnDefinition(appSchema: object, v4Page: SapUiAppPageV4, logger: ExtensionLogger, customColumnDefinitionName?: string, sectionId?: string, sectionIdInManifest?: string): void;
|
|
17
17
|
/**
|
|
@@ -30,7 +30,7 @@ export declare function handleActionRecord(appSchema: Definition, entityType: En
|
|
|
30
30
|
* @param lineItemAnnotation - the UI.LineItem annotation, comprising all records
|
|
31
31
|
* @param entityType - the entity type as part of the AVT ConvertedMetadata
|
|
32
32
|
* @param {ConvertedMetadata} oDataServiceAVT - complete service information, as returned by Annotation Vocabularies Tool
|
|
33
|
-
* @param lineItemId - in case of OP the
|
|
33
|
+
* @param lineItemId - in case of OP the parameter must be passed to distinguish the OP tables;
|
|
34
34
|
* in case of LR or ALP 'LineItems' is passed.
|
|
35
35
|
* @param columnDefinitionName - name of the column definition, i.e. TableColumn or ObjectPageTableColumn
|
|
36
36
|
* @param customColumnDefinitionName - name of the custom column definition
|
|
@@ -42,6 +42,7 @@ export declare function addLineItemsType(appSchema: Definition, lineItemAnnotati
|
|
|
42
42
|
* @param lineItemId - ID of the current line item in schema
|
|
43
43
|
* @param v4Page - current page in manifest
|
|
44
44
|
* @param positionName - ID of the definition of custom column position in schema
|
|
45
|
+
* @param sectionIdInManifest - identifier of the current object page section in manifest
|
|
45
46
|
*/
|
|
46
47
|
export declare function addFragmentEnumForAnchor(appSchema: Definition, lineItemId: string, v4Page: SapUiAppPageV4, positionName?: DefinitionName, sectionIdInManifest?: string): void;
|
|
47
48
|
/**
|
|
@@ -59,4 +60,4 @@ export declare function findPageV4(pages: SapUiAppPageV4[], pageName: string, en
|
|
|
59
60
|
* @param {GenerateAppSchemaParameters} generateParameters - object comprising all input parameters
|
|
60
61
|
* @returns the right definition name for the table in the schema
|
|
61
62
|
*/
|
|
62
|
-
export declare function alignSchemaWithTemplateType(appSchema: Definition, generateParameters: GenerateAppSchemaParameters):
|
|
63
|
+
export declare function alignSchemaWithTemplateType(appSchema: Definition, generateParameters: GenerateAppSchemaParameters): DefinitionName.Table | DefinitionName.ALPTableView;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import type { FileData } from '../../src';
|
|
2
|
-
import type { ExtensionLogger } from '../../src';
|
|
1
|
+
import type { FileData, ExtensionLogger } from '../../src';
|
|
3
2
|
import type { Location } from '../../src/extensionLogger';
|
|
4
3
|
import type { ExportResults } from '../../src/sync/common';
|
|
5
4
|
export declare class Logger implements ExtensionLogger {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap/ux-specification",
|
|
3
|
-
"version": "1.96.
|
|
3
|
+
"version": "1.96.14",
|
|
4
4
|
"displayName": "SAP Fiori tools - Specification",
|
|
5
5
|
"description": "SAP Fiori tools - Specification",
|
|
6
6
|
"files": [
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"v4": "dist/specification/v4/index-min.js"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
16
|
-
"node": ">=
|
|
17
|
-
"yarn": ">=1.22.
|
|
16
|
+
"node": ">=14.16.0",
|
|
17
|
+
"yarn": ">=1.22.18"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"clean": "rimraf ./dist ./schemas",
|