@sap/ux-specification 1.102.1 → 1.102.4
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 +75 -13
- package/dist/documentation/runDocu-min.js +1 -1
- 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-FreestylePage.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 +3 -2
- package/dist/schemas/v2/ApplicationV2.json +10 -1
- package/dist/schemas/v2/ListReportConfig.json +5 -4
- package/dist/schemas/v2/ObjectPageConfig.json +20 -19
- package/dist/schemas/v4/ApplicationV4.json +10 -1
- package/dist/schemas/v4/ListReportConfig.json +307 -38
- package/dist/schemas/v4/ObjectPageConfig.json +101 -1
- package/dist/specification/v4/index-min.js +1 -1
- package/dist/src/apiTypes.d.ts +6 -3
- package/dist/src/specification/common/page.d.ts +1 -1
- package/dist/src/specification/v2/controls/Table.d.ts +1 -0
- package/dist/src/specification/v4/controls/ObjectPageToolBar.d.ts +14 -2
- package/dist/src/specification/v4/controls/Table.d.ts +42 -1
- package/dist/src/specification/v4/controls/ToolBar.d.ts +59 -2
- package/dist/src/specification/v4/webapp/manifest/sapUi5.d.ts +1 -3
- package/dist/src/sync/common/generate/utils.d.ts +46 -18
- package/dist/src/sync/common/types.d.ts +11 -3
- package/dist/src/sync/common/utils.d.ts +7 -1
- package/dist/src/sync/v2/export/export.d.ts +2 -1
- package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts +16 -1
- package/dist/src/sync/v4/export/controls/Table.d.ts +12 -2
- package/dist/src/sync/v4/export/controls/ToolBar.d.ts +2 -2
- package/dist/src/sync/v4/export/controls/ToolBarAction.d.ts +31 -1
- package/dist/src/sync/v4/export/utils.d.ts +6 -0
- package/dist/src/sync/v4/generate/generate.d.ts +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts +20 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -4,25 +4,95 @@ All notable changes to this project are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/) and the changelog is formatted based on [Keep a Changelog](http://keepachangelog.com/).
|
|
6
6
|
|
|
7
|
-
## [1.102.
|
|
7
|
+
## [1.102.4] - 2022-08-11
|
|
8
8
|
|
|
9
9
|
### Added
|
|
10
10
|
|
|
11
|
-
- OData
|
|
12
|
-
-
|
|
11
|
+
- OData V2:
|
|
12
|
+
- LR: Added enum with FieldGroup annotations to `annotationPath` property of tableSettings -> MultiEdit
|
|
13
|
+
- OData V4: the schemas and configs of list report views now also show the visibility property and custom views.
|
|
13
14
|
|
|
14
15
|
### Changed
|
|
15
16
|
|
|
16
|
-
OData
|
|
17
|
+
- OData V4: Wit API version 4 of specification - introduced with the given version - the way how routes are represented in the app.json changes: before the pattern was
|
|
18
|
+
`route: key`, now it follows the manifest syntax
|
|
19
|
+
key: {
|
|
20
|
+
route: route
|
|
21
|
+
}
|
|
22
|
+
The switch to an object representation allows to also include other target information like "outbound".
|
|
23
|
+
- OData V4: as long as no views are defined in manifest, the showCounts property is not part of the schema, except if it is already maintained.
|
|
24
|
+
- OData V2:
|
|
25
|
+
- Mark custom column 'columnIndex' property as hidden
|
|
17
26
|
|
|
18
27
|
### Removed
|
|
19
28
|
|
|
20
|
-
|
|
29
|
+
### Deprecated
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- OData V4:
|
|
34
|
+
- LR: The export of property changes at the page editor led to a deletion of (custom) views in manifest; besides, outbound navigation entries could get deleted.
|
|
35
|
+
- Fixed an issue with missing custom action if an empty "press" is defined
|
|
36
|
+
|
|
37
|
+
### Quality
|
|
38
|
+
|
|
39
|
+
## [1.102.3] - 2022-07-28
|
|
40
|
+
|
|
41
|
+
### Added
|
|
42
|
+
|
|
43
|
+
- OData V4:
|
|
44
|
+
- Added support for custom actions for tables in LR and OP
|
|
45
|
+
|
|
46
|
+
### Changed
|
|
47
|
+
|
|
48
|
+
### Removed
|
|
21
49
|
|
|
22
50
|
### Deprecated
|
|
23
51
|
|
|
24
52
|
### Fixed
|
|
25
53
|
|
|
54
|
+
- OData V4:
|
|
55
|
+
- Fixed an issue with custom column export where it was not possible to restore a deleted column
|
|
56
|
+
|
|
57
|
+
### Quality
|
|
58
|
+
|
|
59
|
+
- Upgrade of webpack and dependent modules
|
|
60
|
+
- Upgrade of terser
|
|
61
|
+
- Upgrade of glob-parent, mem-fs-editor
|
|
62
|
+
- Upgrade of lerna
|
|
63
|
+
- Upgrade of fe-fpm-writer
|
|
64
|
+
|
|
65
|
+
## [1.102.2] - 2022-07-14
|
|
66
|
+
|
|
67
|
+
### Changed
|
|
68
|
+
|
|
69
|
+
- OData V4: In case of PresentationVariant definitions for charts or line items an intermediate node had originally been introduced in the Object Page schema that represents the PresentationVariant. This multi-level propagation of references caused issues in the consuming UI, thus the intermediate node got deleted again. The PresentationVariant must be determined by the consuming application if necessary.
|
|
70
|
+
|
|
71
|
+
### Fixed
|
|
72
|
+
|
|
73
|
+
- OData V2:
|
|
74
|
+
- OVP:
|
|
75
|
+
|
|
76
|
+
- OData V4:
|
|
77
|
+
- Properties of custom columns on object page had not been exported correctly if the table is associated to another entity type via navigation path or is using a PresentationVariant.
|
|
78
|
+
The value help of the anchor in LSP (config JSON) also did not show the right values.
|
|
79
|
+
- Object Page: Fixed an issue with the schema that `annotationPath` for Object Page Table Sections did not contain `qualifier`;
|
|
80
|
+
wrong `annotationPath` and `isViewNode` settings are adjusted.
|
|
81
|
+
- Fixed an issue with export that multiple changes to view's `key` property created duplicated entries in manifest.json
|
|
82
|
+
|
|
83
|
+
### Quality
|
|
84
|
+
|
|
85
|
+
- Switch from nexus repository to artifactory
|
|
86
|
+
|
|
87
|
+
## [1.102.1] - 2022-06-29
|
|
88
|
+
|
|
89
|
+
### Added
|
|
90
|
+
|
|
91
|
+
- OData V4:
|
|
92
|
+
- Extend pagemap support for freestyle apps using FPM library
|
|
93
|
+
|
|
94
|
+
### Fixed
|
|
95
|
+
|
|
26
96
|
- OData V2:
|
|
27
97
|
- OVP: LSP for `model` property of a card now lists models from sap.ui5 section of manifest.json
|
|
28
98
|
- Table type property is now set to blank in case not maintained in manifest.json
|
|
@@ -31,10 +101,6 @@ OData V4:
|
|
|
31
101
|
- No sorting by time took place before for flexibility changes, as a result an older change of the same property may have shown up instead of the newer one.
|
|
32
102
|
- If several flexibility changes existed for the same control property, secondary ones had not been imported correctly: you could find them under a wrong property name in the config JSON file.
|
|
33
103
|
|
|
34
|
-
OData V4:
|
|
35
|
-
|
|
36
|
-
### Quality
|
|
37
|
-
|
|
38
104
|
## [1.102.0] - 2022-06-16
|
|
39
105
|
|
|
40
106
|
### Added
|
|
@@ -53,8 +119,6 @@ OData V4:
|
|
|
53
119
|
|
|
54
120
|
- In case of List Report views, non-applicable table properties are removed.
|
|
55
121
|
|
|
56
|
-
### Deprecated
|
|
57
|
-
|
|
58
122
|
### Fixed
|
|
59
123
|
|
|
60
124
|
OData V4:
|
|
@@ -63,5 +127,3 @@ OData V4:
|
|
|
63
127
|
- Avoid creation of empty personalization object
|
|
64
128
|
OData V2:
|
|
65
129
|
- Custom column issue with Grid/Tree/Analytical table types - empty second custom column is added in xml files
|
|
66
|
-
|
|
67
|
-
### Quality
|