tycho-components 0.2.0-SNAPSHOT-22 → 0.2.0-SNAPSHOT-24
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Struct, Token } from '../../configs/types/Struct';
|
|
2
2
|
import { CytoscapeTreeCalculation } from './NodeCalculation';
|
|
3
|
-
|
|
3
|
+
export default class CytoscapeTreeConverter {
|
|
4
4
|
private ID_SPLITTER;
|
|
5
5
|
private extraInfo;
|
|
6
6
|
execute(struct: Struct, extraInfo: boolean): CytoscapeTreeCalculation | undefined;
|
|
@@ -26,4 +26,3 @@ declare class CytoscapeTreeConverter {
|
|
|
26
26
|
private sortTokens;
|
|
27
27
|
private uuid;
|
|
28
28
|
}
|
|
29
|
-
export default CytoscapeTreeConverter;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import CytoscapePositionCalculator from './CytoscapePositionCalculator';
|
|
2
2
|
import TreeLayout from './TreeLayout';
|
|
3
|
-
class CytoscapeTreeConverter {
|
|
3
|
+
export default class CytoscapeTreeConverter {
|
|
4
4
|
constructor() {
|
|
5
5
|
this.ID_SPLITTER = '|';
|
|
6
6
|
this.extraInfo = false;
|
|
@@ -338,4 +338,3 @@ class CytoscapeTreeConverter {
|
|
|
338
338
|
});
|
|
339
339
|
}
|
|
340
340
|
}
|
|
341
|
-
export default CytoscapeTreeConverter;
|
package/dist/index.d.ts
CHANGED
|
@@ -56,3 +56,4 @@ export { default as SyntreesCytoscape } from './TreeView/cytoscape/SyntreesCytos
|
|
|
56
56
|
export { default as VirtualKeyboard } from './VirtualKeyboard';
|
|
57
57
|
export { KeyboardCustomLayouts } from './VirtualKeyboard/KeyboardCustomLayout';
|
|
58
58
|
export type { KeyboardLayout } from './VirtualKeyboard/KeyboardCustomLayout';
|
|
59
|
+
export { default as CytoscapeTreeConverter } from './TreeView/cytoscape/CytoscapeTreeConverter';
|
package/dist/index.js
CHANGED
|
@@ -42,3 +42,4 @@ export { default as TreeView } from './TreeView';
|
|
|
42
42
|
export { default as SyntreesCytoscape } from './TreeView/cytoscape/SyntreesCytoscape';
|
|
43
43
|
export { default as VirtualKeyboard } from './VirtualKeyboard';
|
|
44
44
|
export { KeyboardCustomLayouts } from './VirtualKeyboard/KeyboardCustomLayout';
|
|
45
|
+
export { default as CytoscapeTreeConverter } from './TreeView/cytoscape/CytoscapeTreeConverter';
|