You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: remove reference to "mx" in classes, types and JSDoc
There is no need to prefix our own elements by "mx" when we extend the mxGraph code.
This makes the code easier to read, and eventually, prepare the switch to maxGraph.
These changes only apply to bpmn-visualization internals, there is no impact for end users.
Copy file name to clipboardExpand all lines: src/component/mxgraph/renderer/style-utils.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ import { BpmnStyleIdentifier } from '../style/identifiers';
23
23
/**
24
24
* Compute the all class names associated to a cell in a hyphen case form.
25
25
*
26
-
* @param cell the `mxCell` related to the BPMN element.
26
+
* @param cell the `Cell` related to the BPMN element.
27
27
* @param isLabel the boolean that indicates if class must be computed for label.
28
28
* @internal
29
29
*/
@@ -34,7 +34,7 @@ export function computeAllBpmnClassNamesOfCell(cell: mxCell, isLabel: boolean):
34
34
/**
35
35
* Compute the all class names associated to a given bpmn element in a hyphen case form.
36
36
*
37
-
* @param style the part of the mxCell style related to a {@link BpmnElementKind}. Message flow icon is a special case, as it is not related to `BpmnElementKind`.
37
+
* @param style the part of the Cell style related to a {@link BpmnElementKind}. Message flow icon is a special case, as it is not related to `BpmnElementKind`.
38
38
* @param isLabel the boolean that indicates if class must be computed for label.
0 commit comments