@contrail/document-generation 2.2.4 → 2.3.1
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 +10 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.2.4] - 2026-04-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Added `typeMap` parameter to `ShowcaseFrameGenerator.generateFrames()` to support dynamic text type mapping
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Updated `DocumentDynamicTextElementUtil.setTypeMap()` to use `Record<string, Type>` instead of `any` for better type safety
|
|
19
|
+
|
|
10
20
|
## [2.2.0] - 2026-03-31
|
|
11
21
|
|
|
12
22
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contrail/document-generation",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "Utilities for automatic generation of documents.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"author": "",
|
|
15
15
|
"license": "ISC",
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@contrail/aggregates": "^1.
|
|
18
|
-
"@contrail/document-util": "^1.0
|
|
17
|
+
"@contrail/aggregates": "^1.4.0",
|
|
18
|
+
"@contrail/document-util": "^1.2.0",
|
|
19
19
|
"@contrail/sdk": "^1.5.3",
|
|
20
20
|
"@types/jest": "^29.5.2",
|
|
21
21
|
"@types/node": "^18.16.0",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"testEnvironment": "node"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@contrail/data-grouping": "^1.0.
|
|
47
|
-
"@contrail/document-table": "^1.0
|
|
48
|
-
"@contrail/documents": "^1.
|
|
49
|
-
"@contrail/telemetry": "^
|
|
50
|
-
"@contrail/types": "^3.
|
|
51
|
-
"@contrail/util": "^1.
|
|
46
|
+
"@contrail/data-grouping": "^1.0.52",
|
|
47
|
+
"@contrail/document-table": "^1.2.0",
|
|
48
|
+
"@contrail/documents": "^1.5.0",
|
|
49
|
+
"@contrail/telemetry": "^2.0.0",
|
|
50
|
+
"@contrail/types": "^3.4.0",
|
|
51
|
+
"@contrail/util": "^1.3.0"
|
|
52
52
|
}
|
|
53
53
|
}
|