@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.
Files changed (42) hide show
  1. package/CHANGELOG.md +19 -10
  2. package/dist/documentation/runDocu-min.js +1 -1
  3. package/dist/documentation/styleDocu.css +7 -14
  4. package/dist/documentation/v2/v2-AnalyticalListPage.html +1 -1
  5. package/dist/documentation/v2/v2-ApplicationV2.html +1 -1
  6. package/dist/documentation/v2/v2-ListReport.html +1 -1
  7. package/dist/documentation/v2/v2-ObjectPage.html +1 -1
  8. package/dist/documentation/v2/v2-OverviewPage.html +1 -1
  9. package/dist/index-min.js +1 -1
  10. package/dist/schemas/v2/AnalyticalListPageConfig.json +14 -0
  11. package/dist/schemas/v2/ListReportConfig.json +14 -0
  12. package/dist/scripts/runDocu.js +30 -7
  13. package/dist/scripts/runDocu.js.map +1 -1
  14. package/dist/src/specification/v2/controls/FilterBar.d.ts +17 -0
  15. package/dist/src/sync/common/generate/objectPage.d.ts +1 -0
  16. package/dist/src/sync/common/generate/objectPage.js +69 -14
  17. package/dist/src/sync/common/generate/objectPage.js.map +1 -1
  18. package/dist/src/sync/common/generate/utils.d.ts +26 -0
  19. package/dist/src/sync/common/generate/utils.js +99 -0
  20. package/dist/src/sync/common/generate/utils.js.map +1 -1
  21. package/dist/src/sync/common/import/utils.js +1 -1
  22. package/dist/src/sync/common/import/utils.js.map +1 -1
  23. package/dist/src/sync/common/types.d.ts +2 -2
  24. package/dist/src/sync/common/types.js.map +1 -1
  25. package/dist/src/sync/common/utils.js +5 -7
  26. package/dist/src/sync/common/utils.js.map +1 -1
  27. package/dist/src/sync/v2/export/controls/FilterBar.js +8 -15
  28. package/dist/src/sync/v2/export/controls/FilterBar.js.map +1 -1
  29. package/dist/src/sync/v2/export/export.js +3 -0
  30. package/dist/src/sync/v2/export/export.js.map +1 -1
  31. package/dist/src/sync/v2/generate/analyticalListReport.js +4 -1
  32. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  33. package/dist/src/sync/v2/generate/listReport.js +4 -0
  34. package/dist/src/sync/v2/generate/listReport.js.map +1 -1
  35. package/dist/src/sync/v2/generate/utils.d.ts +8 -1
  36. package/dist/src/sync/v2/generate/utils.js +38 -0
  37. package/dist/src/sync/v2/generate/utils.js.map +1 -1
  38. package/dist/src/sync/v2/import/pages/analyticalListPage.js +1 -1
  39. package/dist/src/sync/v2/import/pages/analyticalListPage.js.map +1 -1
  40. package/dist/src/sync/v2/import/utils.js +13 -2
  41. package/dist/src/sync/v2/import/utils.js.map +1 -1
  42. 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.50] - 2022-02-10
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
- - Support column and footer action properties on LR
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
- ## [1.71.49] - 2022-01-26
27
+ - SonarQube code smell removed
28
+ ## [1.71.50] - 2022-02-10
29
29
 
30
30
  ### Added
31
31
 
32
32
  - OData V2:
33
- - `exportType` property can now be configured to specify the type of export to be used in the SmartTable control.
33
+ - Support column and footer action properties on LR
34
34
 
35
- ### Changed
35
+ ### Fixed
36
36
 
37
- ### Removed
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
- ### Deprecated
41
+ ### Quality
40
42
 
41
- ### Fixed
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