Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | 68x 68x 4x 4x | import { LayoutEngine } from './layout-engine';
import type { AutoLayoutOptions, LayoutWarning } from './types';
/**
* Layout BPMN 2.0 XML diagram.
*
* @param xml BPMN 2.0 XML string
* @param options Layout options
* @returns Promise resolving to the layouted BPMN 2.0 XML string
*/
export async function layoutProcess(xml: string, options?: AutoLayoutOptions): Promise<string> {
const engine = new LayoutEngine(options);
return engine.layout(xml);
}
/**
* Layout BPMN 2.0 XML diagram and collect structured layout diagnostics/warnings.
*
* @param xml BPMN 2.0 XML string
* @param options Layout options
* @returns Promise resolving to { xml, warnings }
*/
export async function layoutProcessWithDiagnostics(
xml: string,
options?: AutoLayoutOptions
): Promise<{ xml: string; warnings: LayoutWarning[] }> {
const engine = new LayoutEngine(options);
return engine.layoutWithDiagnostics(xml);
}
export { BpmnModdle } from 'bpmn-moddle';
export { default as BpmnViewer } from 'bpmn-js';
export { LayoutEngine } from './layout-engine';
export { BpmnBuilder } from './bpmn-builder';
export { scoreDiagram, segmentCrossesBox, boxesOverlap } from './layout-metrics';
export type {
AutoLayoutOptions,
Bounds,
Point,
DiagramQualityScore,
HardViolations,
QualityMetrics,
CompactnessMetrics,
ContainerCompactness,
LayoutWarning,
LayoutWarningCode,
} from './types';
export default layoutProcess;
|