@ones-editor/editor 2.2.13 → 2.2.14-beta.2
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/@ones-editor/core/src/utils/dom.d.ts +1 -0
- package/@ones-editor/graph-embed/src/command.d.ts +6 -0
- package/@ones-editor/graph-embed/src/config/index.d.ts +9 -1
- package/@ones-editor/graph-embed/src/flowchart/flowchart-embed.d.ts +1 -1
- package/@ones-editor/graph-embed/src/flowchart/flowchart-helper.d.ts +2 -1
- package/@ones-editor/graph-embed/src/flowchart/flowchart.d.ts +11 -3
- package/@ones-editor/graph-embed/src/helper/graph-base.d.ts +25 -23
- package/@ones-editor/graph-embed/src/helper/graph-block-commands.d.ts +3 -4
- package/@ones-editor/graph-embed/src/helper/graph-dom/code-editor.d.ts +2 -0
- package/@ones-editor/graph-embed/src/helper/graph-dom/draw-dom.d.ts +16 -0
- package/@ones-editor/graph-embed/src/helper/graph-dom/layout-dom.d.ts +25 -0
- package/@ones-editor/graph-embed/src/helper/graph-dom/view-select.d.ts +22 -0
- package/@ones-editor/graph-embed/src/helper/graph-quick-commands.d.ts +3 -0
- package/@ones-editor/graph-embed/src/index.d.ts +3 -2
- package/@ones-editor/graph-embed/src/lang/en-us.d.ts +11 -6
- package/@ones-editor/graph-embed/src/lang/ja-jp.d.ts +11 -6
- package/@ones-editor/graph-embed/src/lang/zh-cn.d.ts +11 -6
- package/@ones-editor/graph-embed/src/mermaid/mermaid-embed.d.ts +1 -1
- package/@ones-editor/graph-embed/src/mermaid/mermaid-helper.d.ts +1 -0
- package/@ones-editor/graph-embed/src/mermaid/mermaid.d.ts +11 -4
- package/@ones-editor/graph-embed/src/plantuml/plantuml-embed.d.ts +1 -1
- package/@ones-editor/graph-embed/src/plantuml/plantuml-helper.d.ts +2 -1
- package/@ones-editor/graph-embed/src/plantuml/plantuml.d.ts +11 -3
- package/@ones-editor/graph-embed/src/types.d.ts +38 -0
- package/@ones-editor/tsconfig.tsbuildinfo +1 -1
- package/@ones-editor/ui/src/quick-menu/index.d.ts +2 -1
- package/@ones-editor/ui-base/src/auto-suggest/auto-suggest-menu.d.ts +2 -0
- package/@ones-editor/ui-base/src/auto-suggest/auto-suggest.d.ts +2 -0
- package/dist/index.js +6080 -5708
- package/package.json +1 -2
- package/@ones-editor/graph-embed/assets/index.d.ts +0 -2
- package/@ones-editor/graph-embed/types/index.d.ts +0 -16
|
@@ -40,4 +40,5 @@ export declare function getElementFromPoint(x: number, y: number, options?: {
|
|
|
40
40
|
export declare function createMouseEventFromTouchEvent(event: TouchEvent, type: 'mousedown' | 'mousemove' | 'mouseup' | 'click'): MouseEvent;
|
|
41
41
|
export declare function ensureIsMobileEvent(events: MouseEvent | TouchEvent): events is TouchEvent;
|
|
42
42
|
export declare function bindDbClick(editor: OnesEditor, elem: HTMLElement, handler: (event: MouseEvent) => void): () => void;
|
|
43
|
+
export declare function bindPreventSelect(elem: HTMLElement, callback?: (event: Event) => void): () => void;
|
|
43
44
|
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AddMenuCommand, QuickMenuCommandBetween, QuickMenuCommandInline, QuickMenuCommandProvider } from '../../../@ones-editor/ui';
|
|
2
|
+
import { CommandItem, OnesEditor } from '../../../@ones-editor/core';
|
|
3
|
+
export declare class GraphCommandProvider implements QuickMenuCommandProvider {
|
|
4
|
+
getCommands: (editor: OnesEditor) => CommandItem[];
|
|
5
|
+
executeCommand: (editor: OnesEditor, item: CommandItem, params: QuickMenuCommandInline | QuickMenuCommandBetween | AddMenuCommand) => Promise<null>;
|
|
6
|
+
}
|
|
@@ -1,4 +1,12 @@
|
|
|
1
|
+
import { GraphType } from '../types';
|
|
1
2
|
export declare const MERMAID_SCRIPTS = "https://cdn.jsdelivr.net/npm/mermaid@9.0.1/dist/mermaid.min.js";
|
|
2
3
|
export declare const FLOWCHART_SCRIPTS: string[];
|
|
3
4
|
export declare const PLANTUML_PRE = "https://www.plantuml.com/plantuml/svg";
|
|
4
|
-
export declare const GRAPH_MIN_HEIGHT =
|
|
5
|
+
export declare const GRAPH_MIN_HEIGHT = 150;
|
|
6
|
+
export declare const GRAPH_MAX_HEIGHT = 1000;
|
|
7
|
+
export declare const GRAPH_DEFAULT_HEIGHT = 300;
|
|
8
|
+
export declare const DEFAULT_FLEX = 0.5;
|
|
9
|
+
export declare const MIN_FLEX = 0.3;
|
|
10
|
+
export declare const IMAGE_CLASS_NAME = "graph-embed-image";
|
|
11
|
+
export declare const DRAG_RANGE = 10;
|
|
12
|
+
export declare const GraphDocumentUrl: Record<GraphType, string>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OnesEditor } from '../../../../@ones-editor/core';
|
|
2
2
|
import '../../types/window.d';
|
|
3
|
+
export declare const FLOWCHART_TYPE = "flowchart";
|
|
3
4
|
export declare function flowchartCodeToSvgStr(editor: OnesEditor, flowDataCode: string): Promise<string>;
|
|
4
5
|
export declare function flowchartCodeToObjectUrl(editor: OnesEditor, flowChartCode: string): Promise<string>;
|
|
5
6
|
export declare function flowchartCodeToResourceId(editor: OnesEditor, flowChartCode: string): Promise<string>;
|
|
@@ -1,9 +1,17 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OnesEditor, DocEmbedBlock, BlockElement } from '../../../../@ones-editor/core';
|
|
2
2
|
import GraphBase from '../helper/graph-base';
|
|
3
|
+
import { StandardGraphData, GraphType } from '../types';
|
|
3
4
|
export declare class FlowChartInstance extends GraphBase {
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
static graphType: GraphType;
|
|
6
|
+
protected graphType: GraphType;
|
|
7
|
+
static get(editor: OnesEditor, id: string): FlowChartInstance;
|
|
6
8
|
protected code2ObjectUrl(code: string): Promise<string>;
|
|
7
9
|
protected code2ResourceId(code: string): Promise<string>;
|
|
10
|
+
static createEmptyEmbedData: () => {
|
|
11
|
+
flowchartText: string;
|
|
12
|
+
src: string;
|
|
13
|
+
};
|
|
14
|
+
protected createGraphEmbedData: (block: BlockElement, data: Partial<StandardGraphData>) => import("@ones-editor/core").DocEmbedData;
|
|
15
|
+
protected getGraphData: (blockData: DocEmbedBlock) => StandardGraphData;
|
|
8
16
|
destroy(): void;
|
|
9
17
|
}
|
|
@@ -1,29 +1,31 @@
|
|
|
1
|
-
import { BlockProperties } from '../../../../@ones-editor/core';
|
|
2
|
-
import
|
|
3
|
-
import type { GraphType, GraphEmbedBlockProperties } from './graph-block-commands';
|
|
1
|
+
import { OnesEditor, BlockContentElement, DocEmbedBlock, BlockElement, DocEmbedData, BlockProperties } from '../../../../@ones-editor/core';
|
|
2
|
+
import { StandardGraphData, GraphType } from '../types';
|
|
4
3
|
export default abstract class GraphBase {
|
|
5
|
-
private graphType;
|
|
6
|
-
private codeEmbedDataKey;
|
|
7
4
|
protected editor: OnesEditor;
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
private _status;
|
|
12
|
-
constructor(editor: OnesEditor, graphType: GraphType, codeEmbedDataKey: string);
|
|
5
|
+
protected abstract graphType: GraphType;
|
|
6
|
+
static graphType: GraphType;
|
|
7
|
+
static createEmptyEmbedData: () => Record<string, string>;
|
|
13
8
|
protected abstract code2ObjectUrl(code: string): Promise<string>;
|
|
14
9
|
protected abstract code2ResourceId(code: string): Promise<string>;
|
|
15
|
-
protected
|
|
16
|
-
protected
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
10
|
+
protected abstract createGraphEmbedData(block: BlockElement, data: Partial<StandardGraphData>): DocEmbedData;
|
|
11
|
+
protected abstract getGraphData(blockData: DocEmbedBlock): StandardGraphData;
|
|
12
|
+
private layout?;
|
|
13
|
+
private viewSelect?;
|
|
14
|
+
private drawHandler?;
|
|
15
|
+
private get block();
|
|
16
|
+
constructor(editor: OnesEditor);
|
|
17
|
+
private handleReadonlyChanged;
|
|
18
|
+
destroy(): void;
|
|
19
|
+
private updateLayoutData;
|
|
20
|
+
private handleEditChange;
|
|
21
|
+
private handleFlexChange;
|
|
22
|
+
private getRealView;
|
|
27
23
|
private hasChanged;
|
|
28
|
-
private
|
|
24
|
+
private handleBlockFocus;
|
|
25
|
+
createEmbedContent(content: BlockContentElement, blockData: DocEmbedBlock): void;
|
|
26
|
+
private updateHeight;
|
|
27
|
+
private updateLayout;
|
|
28
|
+
private updateDraw;
|
|
29
|
+
updateEmbedContent(content: BlockContentElement, block: DocEmbedBlock): Promise<void>;
|
|
30
|
+
getBlockProperties(block: BlockElement): BlockProperties;
|
|
29
31
|
}
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { BlockElement } from '../../../../@ones-editor/core';
|
|
2
2
|
import type { OnesEditor } from '../../../../@ones-editor/core';
|
|
3
|
-
import { CommandId
|
|
4
|
-
|
|
5
|
-
export type GraphEmbedBlockProperties
|
|
6
|
-
export declare function getGraphEmbedBlockProperties(editor: OnesEditor, block: BlockElement, type: 'mermaid' | 'flowchart' | 'plantuml', properties?: GraphEmbedBlockProperties): {
|
|
3
|
+
import { CommandId } from '../../../../@ones-editor/embed-block-helper';
|
|
4
|
+
import { GraphType, GraphEmbedBlockProperties } from '../types';
|
|
5
|
+
export declare function getGraphEmbedBlockProperties(editor: OnesEditor, block: BlockElement, type: GraphType, properties?: GraphEmbedBlockProperties): {
|
|
7
6
|
abstract: string;
|
|
8
7
|
blockCommands: {
|
|
9
8
|
'hovering-toolbar': import("@ones-editor/embed-block-helper").StandardEmbedBlockCommands<CommandId>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnesEditor } from '../../../../../@ones-editor/core';
|
|
2
|
+
export declare class DrawHandler {
|
|
3
|
+
private editor;
|
|
4
|
+
private parent;
|
|
5
|
+
private image?;
|
|
6
|
+
constructor(editor: OnesEditor, parent: HTMLElement);
|
|
7
|
+
private bindImage;
|
|
8
|
+
private handleImageError;
|
|
9
|
+
private handleImageLoad;
|
|
10
|
+
private setStatus;
|
|
11
|
+
private get status();
|
|
12
|
+
createEmptyContent(): void;
|
|
13
|
+
createErrorContent: () => void;
|
|
14
|
+
updateDraw(src?: string): void;
|
|
15
|
+
destroy(): void;
|
|
16
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { DragDrop } from '../../../../../@ones-editor/core';
|
|
2
|
+
import { TypedEmitter } from 'tiny-typed-emitter';
|
|
3
|
+
interface GraphLayoutCallback {
|
|
4
|
+
'flexChange': (flex: number) => void;
|
|
5
|
+
}
|
|
6
|
+
export declare class GraphLayout extends TypedEmitter<GraphLayoutCallback> {
|
|
7
|
+
private parent;
|
|
8
|
+
graphContent: HTMLElement;
|
|
9
|
+
constructor(parent: HTMLElement, leftEl: HTMLElement, rightEl: HTMLElement, flex: number);
|
|
10
|
+
bindMouseMove(): void;
|
|
11
|
+
unbindMouseMove(): void;
|
|
12
|
+
handleMouseMove: (event: MouseEvent) => void;
|
|
13
|
+
destroy(): void;
|
|
14
|
+
getLeftElement(): HTMLElement;
|
|
15
|
+
getRightElement(): HTMLElement;
|
|
16
|
+
handleDrag: (drag: DragDrop<unknown>, event: MouseEvent | TouchEvent) => void;
|
|
17
|
+
handleDragEnd: (drag: DragDrop<unknown>, event: MouseEvent | TouchEvent) => void;
|
|
18
|
+
private hideLeft;
|
|
19
|
+
private hideRight;
|
|
20
|
+
showRight(): void;
|
|
21
|
+
showLeft(): void;
|
|
22
|
+
showBoth(flex: number): void;
|
|
23
|
+
changeLayout(flex: number): void;
|
|
24
|
+
}
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { TypedEmitter } from 'tiny-typed-emitter';
|
|
2
|
+
export declare enum ViewId {
|
|
3
|
+
Both = "both",
|
|
4
|
+
Draw = "draw",
|
|
5
|
+
Code = "code",
|
|
6
|
+
Select = "select"
|
|
7
|
+
}
|
|
8
|
+
interface ViewSelectCallback {
|
|
9
|
+
'viewChange': (viewSelect: ViewSelect) => void;
|
|
10
|
+
}
|
|
11
|
+
export declare class ViewSelect extends TypedEmitter<ViewSelectCallback> {
|
|
12
|
+
private fixedToolbar;
|
|
13
|
+
selectedView: ViewId;
|
|
14
|
+
constructor(parent: HTMLElement);
|
|
15
|
+
private handleSelected;
|
|
16
|
+
setSelectedView(view: ViewId): void;
|
|
17
|
+
disable(): void;
|
|
18
|
+
enable(): void;
|
|
19
|
+
private createItems;
|
|
20
|
+
destroy(): void;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import MermaidEmbed from './mermaid/mermaid-embed';
|
|
2
2
|
import FlowChartEmbed from './flowchart/flowchart-embed';
|
|
3
3
|
import PlantumlEmbed from './plantuml/plantuml-embed';
|
|
4
|
+
import { GraphCommandProvider } from './command';
|
|
4
5
|
import './common.scss';
|
|
5
|
-
export { MermaidEmbed, PlantumlEmbed, FlowChartEmbed, };
|
|
6
|
-
export * from '
|
|
6
|
+
export { MermaidEmbed, PlantumlEmbed, FlowChartEmbed, GraphCommandProvider, };
|
|
7
|
+
export * from './types';
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
graph: {
|
|
3
|
-
invalid: string;
|
|
4
3
|
empty: string;
|
|
5
|
-
|
|
6
|
-
comment: string;
|
|
7
|
-
help: string;
|
|
4
|
+
readonlyEmpty: string;
|
|
8
5
|
errorTips: string;
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
help: string;
|
|
7
|
+
plantuml: string;
|
|
8
|
+
mermaid: string;
|
|
9
|
+
flowchart: string;
|
|
10
|
+
command: {
|
|
11
|
+
name: string;
|
|
12
|
+
bothShow: string;
|
|
13
|
+
codeShow: string;
|
|
14
|
+
drawShow: string;
|
|
15
|
+
};
|
|
11
16
|
};
|
|
12
17
|
};
|
|
13
18
|
export default _default;
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
graph: {
|
|
3
|
-
invalid: string;
|
|
4
3
|
empty: string;
|
|
5
|
-
|
|
6
|
-
comment: string;
|
|
7
|
-
help: string;
|
|
4
|
+
readonlyEmpty: string;
|
|
8
5
|
errorTips: string;
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
help: string;
|
|
7
|
+
plantuml: string;
|
|
8
|
+
mermaid: string;
|
|
9
|
+
flowchart: string;
|
|
10
|
+
command: {
|
|
11
|
+
name: string;
|
|
12
|
+
bothShow: string;
|
|
13
|
+
codeShow: string;
|
|
14
|
+
drawShow: string;
|
|
15
|
+
};
|
|
11
16
|
};
|
|
12
17
|
};
|
|
13
18
|
export default _default;
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
graph: {
|
|
3
|
-
invalid: string;
|
|
4
3
|
empty: string;
|
|
5
|
-
|
|
6
|
-
comment: string;
|
|
7
|
-
help: string;
|
|
4
|
+
readonlyEmpty: string;
|
|
8
5
|
errorTips: string;
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
help: string;
|
|
7
|
+
plantuml: string;
|
|
8
|
+
mermaid: string;
|
|
9
|
+
flowchart: string;
|
|
10
|
+
command: {
|
|
11
|
+
name: string;
|
|
12
|
+
bothShow: string;
|
|
13
|
+
codeShow: string;
|
|
14
|
+
drawShow: string;
|
|
15
|
+
};
|
|
11
16
|
};
|
|
12
17
|
};
|
|
13
18
|
export default _default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { OnesEditor } from '../../../../@ones-editor/core';
|
|
2
|
+
export declare const MERMAID_TYPE = "mermaid";
|
|
2
3
|
export declare function mermaidCodeToSvg(editor: OnesEditor, code: string): Promise<string>;
|
|
3
4
|
export declare function mermaidCodeToObjectUrl(editor: OnesEditor, code: string): Promise<string>;
|
|
4
5
|
export declare function mermaidCodeToResourceId(editor: OnesEditor, code: string): Promise<string>;
|
|
@@ -1,9 +1,16 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OnesEditor, DocEmbedBlock, BlockElement } from '../../../../@ones-editor/core';
|
|
2
2
|
import GraphBase from '../helper/graph-base';
|
|
3
|
+
import { GraphType, StandardGraphData } from '../types';
|
|
3
4
|
export declare class MermaidInstance extends GraphBase {
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
static graphType: GraphType;
|
|
6
|
+
protected graphType: GraphType;
|
|
7
|
+
static get(editor: OnesEditor, id: string): MermaidInstance;
|
|
6
8
|
code2ObjectUrl(code: string): Promise<string>;
|
|
7
9
|
code2ResourceId(code: string): Promise<string>;
|
|
8
|
-
|
|
10
|
+
static createEmptyEmbedData: () => {
|
|
11
|
+
mermaidText: string;
|
|
12
|
+
src: string;
|
|
13
|
+
};
|
|
14
|
+
protected createGraphEmbedData: (block: BlockElement, data: Partial<StandardGraphData>) => import("@ones-editor/core").DocEmbedData;
|
|
15
|
+
protected getGraphData: (blockData: DocEmbedBlock) => StandardGraphData;
|
|
9
16
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OnesEditor } from '../../../../@ones-editor/core';
|
|
2
|
+
export declare const PLANTUML_TYPE = "plantuml";
|
|
2
3
|
export declare function plantumlCodeToUrl(editor: OnesEditor, plantumlText: string): string;
|
|
3
4
|
export declare function plantumlUrlToResourceId(editor: OnesEditor, url: string): Promise<string>;
|
|
@@ -1,9 +1,17 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OnesEditor, DocEmbedBlock, BlockElement } from '../../../../@ones-editor/core';
|
|
2
2
|
import GraphBase from '../helper/graph-base';
|
|
3
|
+
import { GraphType, StandardGraphData } from '../types';
|
|
3
4
|
export declare class PlantumlInstance extends GraphBase {
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
static graphType: GraphType;
|
|
6
|
+
protected graphType: GraphType;
|
|
7
|
+
static get(editor: OnesEditor, id: string): PlantumlInstance;
|
|
6
8
|
protected code2ObjectUrl(code: string): Promise<string>;
|
|
7
9
|
protected code2ResourceId(code: string): Promise<string>;
|
|
10
|
+
static createEmptyEmbedData: () => {
|
|
11
|
+
plantumlText: string;
|
|
12
|
+
src: string;
|
|
13
|
+
};
|
|
14
|
+
protected createGraphEmbedData: (block: BlockElement, data: Partial<StandardGraphData>) => import("@ones-editor/core").DocEmbedData;
|
|
15
|
+
protected getGraphData: (blockData: DocEmbedBlock) => StandardGraphData;
|
|
8
16
|
destroy(): void;
|
|
9
17
|
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { CommandItem, OnesEditor } from '../../../@ones-editor/core';
|
|
2
|
+
import { StandardEmbedBlockProperties } from '../../../@ones-editor/embed-block-helper';
|
|
3
|
+
export type MermaidEmbedOptions = {
|
|
4
|
+
cdn?: {
|
|
5
|
+
mermaid?: string;
|
|
6
|
+
};
|
|
7
|
+
};
|
|
8
|
+
export type FlowCharEmbedOptions = {
|
|
9
|
+
cdn?: {
|
|
10
|
+
flowchart?: string[];
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export type PlantumlEmbedOptions = {
|
|
14
|
+
cdn?: {
|
|
15
|
+
plantuml?: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export interface GraphCommandItem extends CommandItem {
|
|
19
|
+
execute: (editor: OnesEditor, containerId: string, blockIndex: number) => void;
|
|
20
|
+
}
|
|
21
|
+
export interface StandardGraphData {
|
|
22
|
+
src: string;
|
|
23
|
+
code: string;
|
|
24
|
+
flex?: number;
|
|
25
|
+
height?: number;
|
|
26
|
+
view?: string;
|
|
27
|
+
}
|
|
28
|
+
export type GraphType = 'mermaid' | 'flowchart' | 'plantuml';
|
|
29
|
+
export type GraphEmbedBlockProperties = StandardEmbedBlockProperties;
|
|
30
|
+
export interface MermaidData extends Omit<StandardGraphData, 'code'> {
|
|
31
|
+
mermaidText: string;
|
|
32
|
+
}
|
|
33
|
+
export interface PlantumlData extends Omit<StandardGraphData, 'code'> {
|
|
34
|
+
plantumlText: string;
|
|
35
|
+
}
|
|
36
|
+
export interface FlowchartData extends Omit<StandardGraphData, 'code'> {
|
|
37
|
+
flowchartText: string;
|
|
38
|
+
}
|