@sap/ux-specification 1.71.50 → 1.71.51
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 +19 -10
- 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/index-min.js +1 -1
- package/dist/schemas/v2/AnalyticalListPageConfig.json +14 -0
- package/dist/schemas/v2/ListReportConfig.json +14 -0
- package/dist/scripts/runDocu.js +30 -7
- package/dist/scripts/runDocu.js.map +1 -1
- package/dist/src/specification/v2/controls/FilterBar.d.ts +17 -0
- package/dist/src/sync/common/generate/objectPage.d.ts +1 -0
- package/dist/src/sync/common/generate/objectPage.js +69 -14
- package/dist/src/sync/common/generate/objectPage.js.map +1 -1
- package/dist/src/sync/common/generate/utils.d.ts +26 -0
- package/dist/src/sync/common/generate/utils.js +99 -0
- package/dist/src/sync/common/generate/utils.js.map +1 -1
- package/dist/src/sync/common/import/utils.js +1 -1
- package/dist/src/sync/common/import/utils.js.map +1 -1
- package/dist/src/sync/common/types.d.ts +2 -2
- package/dist/src/sync/common/types.js.map +1 -1
- package/dist/src/sync/common/utils.js +5 -7
- package/dist/src/sync/common/utils.js.map +1 -1
- package/dist/src/sync/v2/export/controls/FilterBar.js +8 -15
- package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
- package/dist/src/sync/v2/export/export.js +3 -0
- package/dist/src/sync/v2/export/export.js.map +1 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js +4 -1
- package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
- package/dist/src/sync/v2/generate/listReport.js +4 -0
- package/dist/src/sync/v2/generate/listReport.js.map +1 -1
- package/dist/src/sync/v2/generate/utils.d.ts +8 -1
- package/dist/src/sync/v2/generate/utils.js +38 -0
- package/dist/src/sync/v2/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/import/pages/analyticalListPage.js +1 -1
- package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
- package/dist/src/sync/v2/import/utils.js +13 -2
- package/dist/src/sync/v2/import/utils.js.map +1 -1
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,13 @@ 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.71.
|
|
7
|
+
## [1.71.51] - 2022-02-24
|
|
8
8
|
|
|
9
9
|
### Added
|
|
10
10
|
|
|
11
|
+
- Metadata information `dataType` added to various places in V2 and V4 schemas
|
|
11
12
|
- OData V2:
|
|
12
|
-
-
|
|
13
|
+
- display selection fields on LR/ALP
|
|
13
14
|
|
|
14
15
|
### Changed
|
|
15
16
|
|
|
@@ -20,25 +21,33 @@ This project adheres to [Semantic Versioning](http://semver.org/) and the change
|
|
|
20
21
|
### Fixed
|
|
21
22
|
|
|
22
23
|
- OData V2:
|
|
23
|
-
- OP: Fix generation of flexChanges for sections with or without ID in annotations
|
|
24
|
-
- Fix issues with sync logic in case of sub object page
|
|
25
24
|
|
|
26
25
|
### Quality
|
|
27
26
|
|
|
28
|
-
|
|
27
|
+
- SonarQube code smell removed
|
|
28
|
+
## [1.71.50] - 2022-02-10
|
|
29
29
|
|
|
30
30
|
### Added
|
|
31
31
|
|
|
32
32
|
- OData V2:
|
|
33
|
-
-
|
|
33
|
+
- Support column and footer action properties on LR
|
|
34
34
|
|
|
35
|
-
###
|
|
35
|
+
### Fixed
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
- OData V2:
|
|
38
|
+
- OP: Fix generation of flexChanges for sections with or without ID in annotations
|
|
39
|
+
- Fix issues with sync logic in case of sub object page
|
|
38
40
|
|
|
39
|
-
###
|
|
41
|
+
### Quality
|
|
40
42
|
|
|
41
|
-
|
|
43
|
+
- Unit test enhancement to run on all platforms
|
|
44
|
+
|
|
45
|
+
## [1.71.49] - 2022-01-26
|
|
46
|
+
|
|
47
|
+
### Added
|
|
48
|
+
|
|
49
|
+
- OData V2:
|
|
50
|
+
- `exportType` property can now be configured to specify the type of export to be used in the SmartTable control.
|
|
42
51
|
|
|
43
52
|
### Quality
|
|
44
53
|
|