@sap/ux-specification 1.96.4 → 1.96.5
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 +26 -0
- package/dist/documentation/runDocu-min.js +1 -1
- package/dist/documentation/styleDocu.css +7 -14
- 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 +48 -24
- package/dist/schemas/v2/ListReportConfig.json +48 -24
- package/dist/schemas/v2/OverviewPageConfig.json +29 -28
- package/dist/src/specification/v2/controls/FilterBar.d.ts +47 -31
- package/dist/src/specification/v2/pages/OverviewPageConfig.d.ts +36 -2
- package/dist/src/sync/common/generate/objectPage.d.ts +1 -0
- package/dist/src/sync/common/generate/utils.d.ts +26 -0
- package/dist/src/sync/common/types.d.ts +1 -1
- package/dist/src/sync/v2/export/controls/FilterBar.d.ts +16 -4
- package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +2 -1
- package/dist/src/sync/v2/generate/utils.d.ts +8 -1
- package/dist/src/sync/v4/export/exportCustomColumn.d.ts +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts +1 -8
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,32 @@ 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.96.5] - 2022-02-23
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- Metadata information `dataType` added to various places in V2 and V4 schemas
|
|
12
|
+
- OData V2:
|
|
13
|
+
- display selection fields, and support date settings properties on LR/ALP
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
### Removed
|
|
18
|
+
|
|
19
|
+
### Deprecated
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- SonarQube code smells
|
|
24
|
+
|
|
25
|
+
- OData V2:
|
|
26
|
+
-
|
|
27
|
+
|
|
28
|
+
### Quality
|
|
29
|
+
|
|
30
|
+
- Unnecessary js files removed from bundle
|
|
31
|
+
- Unit test enhancement to run on all platforms
|
|
32
|
+
|
|
7
33
|
## [1.96.4] - 2022-02-10
|
|
8
34
|
|
|
9
35
|
### Added
|