@sap/ux-specification 1.102.2 → 1.102.3
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 +22 -4
- 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 +2 -2
- package/dist/schemas/v2/ListReportConfig.json +4 -4
- package/dist/schemas/v2/ObjectPageConfig.json +19 -19
- package/dist/schemas/v4/ListReportConfig.json +184 -1
- 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/v4/controls/ObjectPageToolBar.d.ts +14 -2
- package/dist/src/specification/v4/controls/ToolBar.d.ts +59 -2
- package/dist/src/sync/common/generate/utils.d.ts +23 -2
- package/dist/src/sync/common/types.d.ts +8 -2
- package/dist/src/sync/common/utils.d.ts +6 -0
- package/dist/src/sync/v4/export/controls/ObjectPageToolBarAction.d.ts +16 -1
- 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/utils/utils.d.ts +18 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,19 +4,37 @@ 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.3] - 2022-07-28
|
|
8
8
|
|
|
9
9
|
### Added
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
- OData V4:
|
|
12
|
+
- Added support for custom actions for tables in LR and OP
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
### Changed
|
|
14
15
|
|
|
15
16
|
### Removed
|
|
16
17
|
|
|
18
|
+
### Deprecated
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
17
22
|
- OData V4:
|
|
23
|
+
- Fixed an issue with custom column export where it was not possible to restore a deleted column
|
|
18
24
|
|
|
19
|
-
###
|
|
25
|
+
### Quality
|
|
26
|
+
|
|
27
|
+
- Upgrade of webpack and dependent modules
|
|
28
|
+
- Upgrade of terser
|
|
29
|
+
- Upgrade of glob-parent, mem-fs-editor
|
|
30
|
+
- Upgrade of lerna
|
|
31
|
+
- Upgrade of fe-fpm-writer
|
|
32
|
+
|
|
33
|
+
## [1.102.2] - 2022-07-14
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- 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.
|
|
20
38
|
|
|
21
39
|
### Fixed
|
|
22
40
|
|