@contrail/document-generation 2.1.29-alpha.0 → 2.1.29

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.
@@ -138,7 +138,7 @@ class FrameGenerator {
138
138
  documentElement.elementIds = [elementMapping[documentElement.elementIds[0]]];
139
139
  }
140
140
  if (documentElement.type === 'table') {
141
- const oldChildElements = templateElements.filter(e => e.tableId === origElementId && ['cell', 'column', 'row'].indexOf(e.type) !== -1);
141
+ const oldChildElements = templateElements.filter((e) => e.tableId === origElementId && ['cell', 'column', 'row'].indexOf(e.type) !== -1);
142
142
  let newTableElement, newChildElements = [];
143
143
  try {
144
144
  [newTableElement, ...newChildElements] = document_table_1.TableCopyService.copy(documentElement, oldChildElements);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrail/document-generation",
3
- "version": "2.1.29-alpha.0",
3
+ "version": "2.1.29",
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.2.4-alpha.1",
18
- "@contrail/document-util": "^1.0.8-alpha.1",
17
+ "@contrail/aggregates": "^1.2.4",
18
+ "@contrail/document-util": "^1.0.8",
19
19
  "@contrail/sdk": "^1.5.3",
20
20
  "@types/jest": "^29.5.2",
21
21
  "@types/node": "^18.16.0",
@@ -43,10 +43,10 @@
43
43
  "testEnvironment": "node"
44
44
  },
45
45
  "dependencies": {
46
- "@contrail/data-grouping": "^1.0.50-alpha.3",
47
- "@contrail/document-table": "^1.0.5-alpha.1",
48
- "@contrail/documents": "^1.3.2-alpha.0",
49
- "@contrail/types": "^3.1.2-alpha.1",
50
- "@contrail/util": "^1.1.17-alpha.2"
46
+ "@contrail/data-grouping": "^1.0.50",
47
+ "@contrail/document-table": "^1.0.5",
48
+ "@contrail/documents": "^1.3.2",
49
+ "@contrail/types": "^3.1.3",
50
+ "@contrail/util": "^1.1.18"
51
51
  }
52
52
  }