@sap/ux-specification 1.108.17 → 1.108.18
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 +44 -0
- package/dist/documentation/runDocu-min.js +5 -5
- package/dist/documentation/runDocu-min.js.map +4 -4
- package/dist/documentation/styleDocu.css +3 -0
- package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
- package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
- package/dist/documentation/v2/v2-ListReport.html +2 -2
- package/dist/documentation/v2/v2-ObjectPage.html +2 -2
- package/dist/documentation/v2/v2-OverviewPage.html +2 -2
- package/dist/documentation/v4/v4-ApplicationV4.html +2 -2
- package/dist/documentation/v4/v4-BuildingBlocks.html +2 -2
- package/dist/documentation/v4/v4-FreestylePage.html +2 -2
- package/dist/documentation/v4/v4-ListReport.html +2 -2
- package/dist/documentation/v4/v4-ObjectPage.html +2 -2
- package/dist/index-min.js +75 -75
- package/dist/index-min.js.map +3 -3
- package/dist/package.json +10 -10
- package/dist/schemas/v2/ObjectPageConfig.json +0 -19
- package/dist/src/api.js +1 -1
- package/dist/src/sync/common/generate/utils.d.ts +1 -0
- package/dist/src/sync/common/generate/utils.d.ts.map +1 -1
- package/dist/src/sync/common/generate/utils.js +29 -14
- package/dist/src/sync/common/generate/utils.js.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts +1 -3
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.d.ts.map +1 -1
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js +8 -15
- package/dist/src/sync/v2/export/controls/ObjectPageSectionsV2.js.map +1 -1
- package/dist/src/sync/v4/generate/listReport.d.ts.map +1 -1
- package/dist/src/sync/v4/generate/listReport.js +18 -0
- package/dist/src/sync/v4/generate/listReport.js.map +1 -1
- package/dist/src/sync/v4/generate/objectPage.d.ts.map +1 -1
- package/dist/src/sync/v4/generate/objectPage.js +8 -9
- package/dist/src/sync/v4/generate/objectPage.js.map +1 -1
- package/dist/src/sync/v4/utils/utils.d.ts.map +1 -1
- package/dist/src/sync/v4/utils/utils.js +2 -0
- package/dist/src/sync/v4/utils/utils.js.map +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,50 @@ This project adheres to [Semantic Versioning](http://semver.org/) and the change
|
|
|
8
8
|
|
|
9
9
|
[NodeJS](https://nodejs.org/en/download/) Version `18.18.0` or higher
|
|
10
10
|
|
|
11
|
+
## [1.108.18] - 2023-11-02
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- OData V4:
|
|
16
|
+
- Added additional log entries while executing API call for schema generation, and error log entries in case of missing UI.LineItem annotation
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- UX adjustments of inplace documentation:
|
|
21
|
+
- Harmonized the zoom behavior and removed the ability to scroll via mouse wheel
|
|
22
|
+
|
|
23
|
+
### Removed
|
|
24
|
+
|
|
25
|
+
- OData V2:
|
|
26
|
+
- Removed the `visibility` property for *addresses* on subsections of the object page, as flexibility changes are not supported on this level
|
|
27
|
+
|
|
28
|
+
### Deprecated
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- OData V2:
|
|
33
|
+
- Fixed an issue with the selector ID of flexibility changes generated for *contacts* on subsection level of object pages
|
|
34
|
+
- OData V4:
|
|
35
|
+
- Schema generation: mark custom anchors in "oneOf" enums and additional anchor enum enhancements (missing descriptions for some actions and sections)
|
|
36
|
+
|
|
37
|
+
### Quality
|
|
38
|
+
|
|
39
|
+
- Update transitive dependencies
|
|
40
|
+
|
|
41
|
+
Upgrades:
|
|
42
|
+
|
|
43
|
+
- @sap-ux/fe-fpm-writer to 0.24.0
|
|
44
|
+
- @types/semver to 7.5.4
|
|
45
|
+
- @types/d3 to 7.4.2
|
|
46
|
+
- @types/mem-fs-editor to 7.0.5
|
|
47
|
+
- @types/jquery to 3.5.25
|
|
48
|
+
- @sap-ux/annotation-converter to 0.8.0
|
|
49
|
+
- @sap-ux/vocabularies-types to 0.10.0
|
|
50
|
+
- @sap-ux/edmx-parser to 0.7.0
|
|
51
|
+
- esbuild to 0.19.5
|
|
52
|
+
- @ui5/manifest to 1.61.0
|
|
53
|
+
- eslint to 8.52.0
|
|
54
|
+
|
|
11
55
|
## [1.108.17] - 2023-10-19
|
|
12
56
|
|
|
13
57
|
### Added
|