@bpmnkit/core 0.0.11 → 0.0.13
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/README.md +5 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="https://
|
|
2
|
+
<a href="https://bpmnkit.com"><img src="https://bpmnkit.com/favicon.svg" width="72" height="72" alt="BPMN Kit logo"></a>
|
|
3
3
|
<h1>@bpmnkit/core</h1>
|
|
4
4
|
<p>TypeScript-first BPMN 2.0 SDK — parse, build, layout, and optimize diagrams</p>
|
|
5
5
|
|
|
@@ -187,3 +187,7 @@ const outXml = Bpmn.export(restored)
|
|
|
187
187
|
## License
|
|
188
188
|
|
|
189
189
|
[MIT](https://github.com/bpmnkit/monorepo/blob/main/LICENSE) © BPMN Kit — made by [u11g](https://u11g.com)
|
|
190
|
+
|
|
191
|
+
<div align="center">
|
|
192
|
+
<a href="https://bpmnkit.com"><img src="https://bpmnkit.com/favicon.svg" width="32" height="32" alt="BPMN Kit"></a>
|
|
193
|
+
</div>
|
package/dist/index.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export { layoutProcess, layoutFlowNodes } from "./layout/index.js";
|
|
|
29
29
|
export { benchmarkLayout, compareLayouts, formatBenchmarkResult, generateAutoLayout, parseReferenceLayout, } from "./layout/index.js";
|
|
30
30
|
export type { BenchmarkResult, BoundingBox, ElementComparison, ElementPosition, FlowOrderViolation, } from "./layout/index.js";
|
|
31
31
|
export type { Bounds, LayoutEdge, LayoutNode, LayoutResult, Waypoint } from "./layout/index.js";
|
|
32
|
-
export { ELEMENT_SIZES } from "./layout/index.js";
|
|
32
|
+
export { ELEMENT_SIZES, GRID_CELL_HEIGHT } from "./layout/index.js";
|
|
33
33
|
export { compactify, expand } from "./bpmn/compact.js";
|
|
34
34
|
export { exportSvg } from "./bpmn/svg.js";
|
|
35
35
|
export type { SvgExportOptions } from "./bpmn/svg.js";
|
package/dist/index.js
CHANGED
|
@@ -13,7 +13,7 @@ export { readDiColor, writeDiColor, BIOC_NS, COLOR_NS } from "./bpmn/di-color.js
|
|
|
13
13
|
export { optimize } from "./bpmn/optimize/index.js";
|
|
14
14
|
export { layoutProcess, layoutFlowNodes } from "./layout/index.js";
|
|
15
15
|
export { benchmarkLayout, compareLayouts, formatBenchmarkResult, generateAutoLayout, parseReferenceLayout, } from "./layout/index.js";
|
|
16
|
-
export { ELEMENT_SIZES } from "./layout/index.js";
|
|
16
|
+
export { ELEMENT_SIZES, GRID_CELL_HEIGHT } from "./layout/index.js";
|
|
17
17
|
export { compactify, expand } from "./bpmn/compact.js";
|
|
18
18
|
export { exportSvg } from "./bpmn/svg.js";
|
|
19
19
|
//# sourceMappingURL=index.js.map
|