@relation-graph/react 3.0.0
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/LICENSE +21 -0
- package/package.json +65 -0
- package/relation-graph.js +56 -0
- package/relation-graph.mjs +7433 -0
- package/relation-graph.umd.js +56 -0
- package/types/components.d.ts +5 -0
- package/types/packages/platforms/react/src/constants.d.ts +1 -0
- package/types/packages/platforms/react/src/index.d.ts +182 -0
- package/types/packages/platforms/react/src/relation-graph/RGPovider.d.ts +7 -0
- package/types/packages/platforms/react/src/relation-graph/RelationGraph.d.ts +5 -0
- package/types/packages/platforms/react/src/relation-graph/RelationLinker.d.ts +5 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGCanvas.d.ts +13 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGCanvasContent.d.ts +11 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGEasyView.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGFakeNode.d.ts +6 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGGraphRefs.d.ts +6 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGLineContent.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGLinePath.d.ts +6 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGLinePeel.d.ts +7 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGLineText.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGNodeExpandHolder.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RGNodePeel.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RelationLinkerCanvas.d.ts +8 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RelationLinkerContent.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/RelationView.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGConnectSource.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGConnectTarget.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGEditingConnectController.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGEditingConnectPoints.d.ts +7 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGEditingLineController.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGEditingNearNodeWidget.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGEditingNodeController.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGEditingReferenceLine.d.ts +6 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGEditingResize.d.ts +7 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/editing/RGMiniView.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/NewCanvas.d.ts +20 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/NewCanvasV2.d.ts +1 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/NewCanvasV3.d.ts +1 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/RGSlotOnCanvas.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/RGSlotOnCanvasAbove.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/RGSlotOnLine.d.ts +6 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/RGSlotOnLineText.d.ts +6 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/RGSlotOnNode.d.ts +6 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/RGSlotOnNodeExpandHandle.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/RGSlotOnSVGDefs.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/RGSlotOnToolbar.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/slots/RGSlotOnView.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/store/index.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/store/reducers/StockStore.d.ts +8 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/widgets/GraphBackground.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/widgets/GraphDebugPanel.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/widgets/GraphLoading.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/widgets/GraphMoveOperator.d.ts +3 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/widgets/GraphOperateStuff.d.ts +7 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/widgets/GraphToolBar.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/widgets/GraphWatermark.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/widgets/GraphXsToolBar.d.ts +4 -0
- package/types/packages/platforms/react/src/relation-graph/src/core4react/widgets/RGIcons.d.ts +6 -0
- package/types/packages/platforms/react/src/relation-graph/src/hooks/RGHooks.d.ts +7 -0
- package/types/packages/platforms/react/src/relation-graph/src/hooks/useFakeNodesState.d.ts +8 -0
- package/types/packages/platforms/react/src/relation-graph/src/hooks/useGraphInstance.d.ts +13 -0
- package/types/packages/platforms/react/src/types-react.d.ts +35 -0
- package/types/packages/platforms/react/src/types.d.ts +1 -0
- package/types/packages/platforms/react/vite.config.d.ts +2 -0
- package/types/packages/platforms/vue2/src/core4vue/RGCanvas.vue.d.ts +13 -0
- package/types/packages/platforms/vue2/src/core4vue/RGCanvasContent.vue.d.ts +10 -0
- package/types/packages/platforms/vue2/src/core4vue/RGEasyView.vue.d.ts +6 -0
- package/types/packages/platforms/vue2/src/core4vue/RGFakeNode.vue.d.ts +18 -0
- package/types/packages/platforms/vue2/src/core4vue/RGGraphDefs.vue.d.ts +18 -0
- package/types/packages/platforms/vue2/src/core4vue/RGLineContent.vue.d.ts +22 -0
- package/types/packages/platforms/vue2/src/core4vue/RGLinePath.vue.d.ts +39 -0
- package/types/packages/platforms/vue2/src/core4vue/RGLinePeel.vue.d.ts +20 -0
- package/types/packages/platforms/vue2/src/core4vue/RGLineText.vue.d.ts +33 -0
- package/types/packages/platforms/vue2/src/core4vue/RGNodeExpandHolder.vue.d.ts +36 -0
- package/types/packages/platforms/vue2/src/core4vue/RGNodePeel.vue.d.ts +32 -0
- package/types/packages/platforms/vue2/src/core4vue/RelationGraph.vue.d.ts +820 -0
- package/types/packages/platforms/vue2/src/core4vue/RelationLinker.vue.d.ts +62 -0
- package/types/packages/platforms/vue2/src/core4vue/RelationLinkerCanvas.vue.d.ts +11 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGConnectSource.vue.d.ts +29 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGConnectTarget.vue.d.ts +45 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGEditingConnectController.vue.d.ts +8 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGEditingConnectPoints.vue.d.ts +24 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGEditingLineController.vue.d.ts +26 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGEditingNearNodeWidget.vue.d.ts +20 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGEditingNodeController.vue.d.ts +4 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGEditingReferenceLine.vue.d.ts +29 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGEditingResize.vue.d.ts +31 -0
- package/types/packages/platforms/vue2/src/core4vue/editing/RGMiniView.vue.d.ts +38 -0
- package/types/packages/platforms/vue2/src/core4vue/widgets/GraphBackground.vue.d.ts +32 -0
- package/types/packages/platforms/vue2/src/core4vue/widgets/GraphDebugPanel.vue.d.ts +12 -0
- package/types/packages/platforms/vue2/src/core4vue/widgets/GraphLoading.vue.d.ts +4 -0
- package/types/packages/platforms/vue2/src/core4vue/widgets/GraphMoveOperator.vue.d.ts +8 -0
- package/types/packages/platforms/vue2/src/core4vue/widgets/GraphOperateStuff.vue.d.ts +4 -0
- package/types/packages/platforms/vue2/src/core4vue/widgets/GraphToolBar.vue.d.ts +46 -0
- package/types/packages/platforms/vue2/src/core4vue/widgets/GraphWatermark.vue.d.ts +57 -0
- package/types/packages/platforms/vue2/src/core4vue/widgets/GraphXsToolBar.vue.d.ts +46 -0
- package/types/packages/platforms/vue2/src/index.d.ts +2454 -0
- package/types/packages/platforms/vue2/src/types-vue2.d.ts +0 -0
- package/types/packages/platforms/vue2/vite.config.d.ts +2 -0
- package/types/packages/platforms/vue3/src/constants.d.ts +4 -0
- package/types/packages/platforms/vue3/src/index.d.ts +1495 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGCanvas.vue.d.ts +34 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGCanvasContent.vue.d.ts +37 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGEasyView.vue.d.ts +2 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGFakeNode.vue.d.ts +32 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGGraphDefs.vue.d.ts +29 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGLineContent.vue.d.ts +12 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGLinePath.vue.d.ts +16 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGLinePeel.vue.d.ts +29 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGLineText.vue.d.ts +27 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGNodeExpandHolder.vue.d.ts +18 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGNodePeel.vue.d.ts +40 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RGProvider.vue.d.ts +34 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RelationGraph.vue.d.ts +39 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RelationLinker.vue.d.ts +130 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RelationLinkerCanvas.vue.d.ts +23 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/RelationLinkerView.vue.d.ts +24 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGConnectSource.vue.d.ts +45 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGConnectTarget.vue.d.ts +46 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGEditingConnectController.vue.d.ts +23 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGEditingConnectPoints.vue.d.ts +16 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGEditingLineController.vue.d.ts +56 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGEditingNearNodeWidget.vue.d.ts +30 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGEditingNodeController.vue.d.ts +17 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGEditingReferenceLine.vue.d.ts +15 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGEditingResize.vue.d.ts +19 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/editing/RGMiniView.vue.d.ts +17 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/index.vue.d.ts +143 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/widgets/GraphBackground.vue.d.ts +49 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/widgets/GraphDebugPanel.vue.d.ts +2 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/widgets/GraphLoading.vue.d.ts +2 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/widgets/GraphMoveOperator.vue.d.ts +2 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/widgets/GraphOperateStuff.vue.d.ts +19 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/widgets/GraphToolBar.vue.d.ts +31 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/widgets/GraphWatermark.vue.d.ts +56 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/widgets/GraphXsToolBar.vue.d.ts +31 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/core4vue3/widgets/RGIcons.vue.d.ts +15 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/hooks/RGHooks.d.ts +7 -0
- package/types/packages/platforms/vue3/src/relation-graph/src/hooks/useGraphInstance.d.ts +13 -0
- package/types/packages/platforms/vue3/src/types-vue3.d.ts +22 -0
- package/types/packages/platforms/vue3/src/types.d.ts +1 -0
- package/types/packages/platforms/vue3/vite.config.d.ts +2 -0
- package/types/packages/relation-graph-models/RGObjectsForExport.d.ts +132 -0
- package/types/packages/relation-graph-models/constants.d.ts +1 -0
- package/types/packages/relation-graph-models/layouters/RGBaseLayouter.d.ts +36 -0
- package/types/packages/relation-graph-models/layouters/RGCenterLayouter.d.ts +12 -0
- package/types/packages/relation-graph-models/layouters/RGCircleLayouter.d.ts +8 -0
- package/types/packages/relation-graph-models/layouters/RGFixedLayouter.d.ts +11 -0
- package/types/packages/relation-graph-models/layouters/RGFolderLayouter.d.ts +17 -0
- package/types/packages/relation-graph-models/layouters/RGForceLayouter.d.ts +71 -0
- package/types/packages/relation-graph-models/layouters/RGForceLayouterV2.d.ts +59 -0
- package/types/packages/relation-graph-models/layouters/RGSmartTreeLayouter.d.ts +16 -0
- package/types/packages/relation-graph-models/layouters/RGTreeLayouter.d.ts +18 -0
- package/types/packages/relation-graph-models/models/RGLineDataUtils.d.ts +9 -0
- package/types/packages/relation-graph-models/models/RGNodeDataUtils.d.ts +14 -0
- package/types/packages/relation-graph-models/models/RGOptionsDataUtils.d.ts +11 -0
- package/types/packages/relation-graph-models/models/RelationGraphBase.d.ts +67 -0
- package/types/packages/relation-graph-models/models/RelationGraphFinal.d.ts +11 -0
- package/types/packages/relation-graph-models/models/RelationGraphReact.d.ts +5 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith1Dom.d.ts +76 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith2Data.d.ts +398 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith3Image.d.ts +20 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith4Line.d.ts +48 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith5Zoom.d.ts +31 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith6Effect.d.ts +18 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith6Layout.d.ts +33 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith7Event.d.ts +74 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith8Update.d.ts +23 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith91Editing.d.ts +59 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith92MiniView.d.ts +50 -0
- package/types/packages/relation-graph-models/models/RelationGraphWith9EasyView.d.ts +28 -0
- package/types/packages/relation-graph-models/types.d.ts +903 -0
- package/types/packages/relation-graph-models/utils/RGCanvasImpl2D.d.ts +59 -0
- package/types/packages/relation-graph-models/utils/RGCanvasImplWebGL.d.ts +47 -0
- package/types/packages/relation-graph-models/utils/RGCommon.d.ts +26 -0
- package/types/packages/relation-graph-models/utils/RGDragUtils.d.ts +17 -0
- package/types/packages/relation-graph-models/utils/RGFullscreenUtils.d.ts +3 -0
- package/types/packages/relation-graph-models/utils/RGGraphMath.d.ts +104 -0
- package/types/packages/relation-graph-models/utils/RGIconsData.d.ts +41 -0
- package/types/packages/relation-graph-models/utils/RGIntergration.d.ts +47 -0
- package/types/packages/relation-graph-models/utils/RGNodesAnalytic.d.ts +38 -0
- package/types/packages/relation-graph-models/utils/line/RGLinePath.d.ts +90 -0
- package/types/packages/relation-graph-models/utils/line/RGLinePathUtils.d.ts +54 -0
- package/types/packages/relation-graph-models/utils/line/RGPathGeneratorFor1.d.ts +2 -0
- package/types/packages/relation-graph-models/utils/line/RGPathGeneratorFor4.d.ts +2 -0
- package/types/packages/relation-graph-models/utils/line/RGPathGeneratorFor44.d.ts +2 -0
- package/types/packages/relation-graph-models/utils/line/RGPathGeneratorFor49.d.ts +2 -0
- package/types/packages/relation-graph-models/utils/line/RGPathGeneratorFor6.d.ts +6 -0
- package/types/packages/relation-graph-models/utils/line/RGPathGeneratorForCurve.d.ts +2 -0
- package/types/react.d.ts +201 -0
- package/types/svelte.d.ts +170 -0
- package/types/vue2.d.ts +862 -0
- package/types/vue3.d.ts +1246 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
options: {
|
|
3
|
+
mustUseProp: boolean;
|
|
4
|
+
default: () => {};
|
|
5
|
+
type: ObjectConstructor;
|
|
6
|
+
};
|
|
7
|
+
links: {
|
|
8
|
+
mustUseProp: boolean;
|
|
9
|
+
default: () => never[];
|
|
10
|
+
type: ArrayConstructor;
|
|
11
|
+
};
|
|
12
|
+
relationGraphCore: {
|
|
13
|
+
mustUseProp: boolean;
|
|
14
|
+
default: null;
|
|
15
|
+
type: FunctionConstructor;
|
|
16
|
+
};
|
|
17
|
+
}, {}, {
|
|
18
|
+
graphInstanceOK: boolean;
|
|
19
|
+
graphData: {
|
|
20
|
+
rootNode: null;
|
|
21
|
+
nodes: never[];
|
|
22
|
+
normalLines: never[];
|
|
23
|
+
elementLines: never[];
|
|
24
|
+
fakeLines: never[];
|
|
25
|
+
};
|
|
26
|
+
runtimeData: {
|
|
27
|
+
runtimeDATA4Links: never[];
|
|
28
|
+
runtimeDATA4ElLineTargets: never[];
|
|
29
|
+
runtimeDATA4ConnectTargets: never[];
|
|
30
|
+
runtimeDATA4NodeMap: {};
|
|
31
|
+
runtimeDATA4ShouldRenderGraphData: {
|
|
32
|
+
nodes: never[];
|
|
33
|
+
lines: never[];
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
graph: {
|
|
37
|
+
options: import('../../../../relation-graph-models/types').RGOptionsFull;
|
|
38
|
+
};
|
|
39
|
+
}, {}, {
|
|
40
|
+
getInstance(): any;
|
|
41
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
42
|
+
options: {
|
|
43
|
+
mustUseProp: boolean;
|
|
44
|
+
default: () => {};
|
|
45
|
+
type: ObjectConstructor;
|
|
46
|
+
};
|
|
47
|
+
links: {
|
|
48
|
+
mustUseProp: boolean;
|
|
49
|
+
default: () => never[];
|
|
50
|
+
type: ArrayConstructor;
|
|
51
|
+
};
|
|
52
|
+
relationGraphCore: {
|
|
53
|
+
mustUseProp: boolean;
|
|
54
|
+
default: null;
|
|
55
|
+
type: FunctionConstructor;
|
|
56
|
+
};
|
|
57
|
+
}>>, {
|
|
58
|
+
links: unknown[];
|
|
59
|
+
options: Record<string, any>;
|
|
60
|
+
relationGraphCore: Function;
|
|
61
|
+
}>;
|
|
62
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, unknown, {}, {
|
|
2
|
+
options(): any;
|
|
3
|
+
canvasSizeAndPosition(): {
|
|
4
|
+
'background-color': string;
|
|
5
|
+
'text-wrap': string;
|
|
6
|
+
position: string;
|
|
7
|
+
width: string;
|
|
8
|
+
height: string;
|
|
9
|
+
};
|
|
10
|
+
}, {}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
fromNode: {
|
|
3
|
+
mustUseProp: boolean;
|
|
4
|
+
default: () => null;
|
|
5
|
+
type: ObjectConstructor;
|
|
6
|
+
};
|
|
7
|
+
lineTemplate: {
|
|
8
|
+
mustUseProp: boolean;
|
|
9
|
+
default: () => {};
|
|
10
|
+
type: ObjectConstructor;
|
|
11
|
+
};
|
|
12
|
+
}, {}, {}, {}, {
|
|
13
|
+
onMouseDown($event: MouseEvent | TouchEvent): void;
|
|
14
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
15
|
+
fromNode: {
|
|
16
|
+
mustUseProp: boolean;
|
|
17
|
+
default: () => null;
|
|
18
|
+
type: ObjectConstructor;
|
|
19
|
+
};
|
|
20
|
+
lineTemplate: {
|
|
21
|
+
mustUseProp: boolean;
|
|
22
|
+
default: () => {};
|
|
23
|
+
type: ObjectConstructor;
|
|
24
|
+
};
|
|
25
|
+
}>>, {
|
|
26
|
+
fromNode: Record<string, any>;
|
|
27
|
+
lineTemplate: Record<string, any>;
|
|
28
|
+
}>;
|
|
29
|
+
export default _default;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
junctionPoint: {
|
|
3
|
+
mustUseProp: boolean;
|
|
4
|
+
default: string;
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
};
|
|
7
|
+
targetId: {
|
|
8
|
+
mustUseProp: boolean;
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
};
|
|
11
|
+
targetType: {
|
|
12
|
+
mustUseProp: boolean;
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
};
|
|
15
|
+
targetData: {
|
|
16
|
+
mustUseProp: boolean;
|
|
17
|
+
type: ObjectConstructor;
|
|
18
|
+
};
|
|
19
|
+
}, {}, {}, {
|
|
20
|
+
options(): any;
|
|
21
|
+
}, {
|
|
22
|
+
onMouseDown(event: any): void;
|
|
23
|
+
onMouseUp(type: any, $event: any): void;
|
|
24
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
25
|
+
junctionPoint: {
|
|
26
|
+
mustUseProp: boolean;
|
|
27
|
+
default: string;
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
};
|
|
30
|
+
targetId: {
|
|
31
|
+
mustUseProp: boolean;
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
};
|
|
34
|
+
targetType: {
|
|
35
|
+
mustUseProp: boolean;
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
};
|
|
38
|
+
targetData: {
|
|
39
|
+
mustUseProp: boolean;
|
|
40
|
+
type: ObjectConstructor;
|
|
41
|
+
};
|
|
42
|
+
}>>, {
|
|
43
|
+
junctionPoint: string;
|
|
44
|
+
}>;
|
|
45
|
+
export default _default;
|
package/types/packages/platforms/vue2/src/core4vue/editing/RGEditingConnectController.vue.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { RGJunctionPoint, RGUserEvent } from '../../../../../relation-graph-models/types';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<Readonly<{}>, {}, {}, {
|
|
3
|
+
options(): any;
|
|
4
|
+
}, {
|
|
5
|
+
mouseUpOnJunctionPoint(junctionPoint: RGJunctionPoint, $event: RGUserEvent): void;
|
|
6
|
+
mouseUpOnJunctionPointWithOffset(junctionPoint: RGJunctionPoint, $event: RGUserEvent): void;
|
|
7
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<Readonly<{}>>>, {}>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
mouseUpOnJunctionPoint: {
|
|
3
|
+
type: FunctionConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
mouseUpOnJunctionPointWithOffset: {
|
|
7
|
+
type: FunctionConstructor;
|
|
8
|
+
required: true;
|
|
9
|
+
};
|
|
10
|
+
}, {}, {}, {
|
|
11
|
+
options(): any;
|
|
12
|
+
}, {
|
|
13
|
+
onMouseUp(type: any, $event: any): void;
|
|
14
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
15
|
+
mouseUpOnJunctionPoint: {
|
|
16
|
+
type: FunctionConstructor;
|
|
17
|
+
required: true;
|
|
18
|
+
};
|
|
19
|
+
mouseUpOnJunctionPointWithOffset: {
|
|
20
|
+
type: FunctionConstructor;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
}>>, {}>;
|
|
24
|
+
export default _default;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
textEditable: {
|
|
3
|
+
mustUseProp: boolean;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
}, {}, {
|
|
7
|
+
lineText: string;
|
|
8
|
+
editing: boolean;
|
|
9
|
+
}, {
|
|
10
|
+
options(): any;
|
|
11
|
+
show(): any;
|
|
12
|
+
text(): any;
|
|
13
|
+
}, {
|
|
14
|
+
onMouseDown(type: any, $event: any): void;
|
|
15
|
+
startMoveText($event: any): void;
|
|
16
|
+
startEditingLineText($event: any): void;
|
|
17
|
+
onLineTextChange($event: any): void;
|
|
18
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
19
|
+
textEditable: {
|
|
20
|
+
mustUseProp: boolean;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
}>>, {
|
|
24
|
+
textEditable: boolean;
|
|
25
|
+
}>;
|
|
26
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
position: {
|
|
3
|
+
mustUseProp: boolean;
|
|
4
|
+
default: string;
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
};
|
|
7
|
+
}, {}, {}, {
|
|
8
|
+
options(): any;
|
|
9
|
+
}, {
|
|
10
|
+
onMouseDown(type: any, $event: any): void;
|
|
11
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
12
|
+
position: {
|
|
13
|
+
mustUseProp: boolean;
|
|
14
|
+
default: string;
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
};
|
|
17
|
+
}>>, {
|
|
18
|
+
position: string;
|
|
19
|
+
}>;
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, unknown, {}, {
|
|
2
|
+
options(): any;
|
|
3
|
+
}, {}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
showText: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
adsorption: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
}, {}, {}, {
|
|
13
|
+
options(): any;
|
|
14
|
+
}, {}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
15
|
+
showText: {
|
|
16
|
+
type: BooleanConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
adsorption: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
required: false;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
}>>, {
|
|
26
|
+
showText: boolean;
|
|
27
|
+
adsorption: boolean;
|
|
28
|
+
}>;
|
|
29
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
disableResizeWidth: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
required: false;
|
|
6
|
+
};
|
|
7
|
+
disableResizeHeight: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
required: false;
|
|
11
|
+
};
|
|
12
|
+
}, {}, {}, {
|
|
13
|
+
options(): any;
|
|
14
|
+
}, {
|
|
15
|
+
onMouseDown(type: any, $event: any): void;
|
|
16
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
17
|
+
disableResizeWidth: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
required: false;
|
|
21
|
+
};
|
|
22
|
+
disableResizeHeight: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
required: false;
|
|
26
|
+
};
|
|
27
|
+
}>>, {
|
|
28
|
+
disableResizeWidth: boolean;
|
|
29
|
+
disableResizeHeight: boolean;
|
|
30
|
+
}>;
|
|
31
|
+
export default _default;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { RGUserEvent } from '../../../../../relation-graph-models/types';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<{
|
|
3
|
+
position: {
|
|
4
|
+
mustUseProp: boolean;
|
|
5
|
+
default: string;
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
};
|
|
8
|
+
width: {
|
|
9
|
+
mustUseProp: boolean;
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
height: {
|
|
13
|
+
mustUseProp: boolean;
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
};
|
|
16
|
+
}, {}, {}, {
|
|
17
|
+
options(): any;
|
|
18
|
+
}, {
|
|
19
|
+
onMouseDown(e: RGUserEvent): void;
|
|
20
|
+
onClickCanvas(e: RGUserEvent): void;
|
|
21
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
22
|
+
position: {
|
|
23
|
+
mustUseProp: boolean;
|
|
24
|
+
default: string;
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
};
|
|
27
|
+
width: {
|
|
28
|
+
mustUseProp: boolean;
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
};
|
|
31
|
+
height: {
|
|
32
|
+
mustUseProp: boolean;
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
};
|
|
35
|
+
}>>, {
|
|
36
|
+
position: string;
|
|
37
|
+
}>;
|
|
38
|
+
export default _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
forImage: {
|
|
3
|
+
mustUseProp: boolean;
|
|
4
|
+
default: boolean;
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
};
|
|
7
|
+
forDisplay: {
|
|
8
|
+
mustUseProp: boolean;
|
|
9
|
+
default: boolean;
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
};
|
|
12
|
+
}, {}, {
|
|
13
|
+
originBackgroundColor: string;
|
|
14
|
+
}, {
|
|
15
|
+
options(): any;
|
|
16
|
+
show(): boolean;
|
|
17
|
+
}, {}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
18
|
+
forImage: {
|
|
19
|
+
mustUseProp: boolean;
|
|
20
|
+
default: boolean;
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
};
|
|
23
|
+
forDisplay: {
|
|
24
|
+
mustUseProp: boolean;
|
|
25
|
+
default: boolean;
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
};
|
|
28
|
+
}>>, {
|
|
29
|
+
forImage: boolean;
|
|
30
|
+
forDisplay: boolean;
|
|
31
|
+
}>;
|
|
32
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<Readonly<{}>, {}, {
|
|
2
|
+
search_text: string;
|
|
3
|
+
showSettingPanel: boolean;
|
|
4
|
+
}, {
|
|
5
|
+
options(): any;
|
|
6
|
+
}, {
|
|
7
|
+
toggleSettingPanel(): void;
|
|
8
|
+
printOptions(): void;
|
|
9
|
+
printData(): void;
|
|
10
|
+
enableDevlog(): void;
|
|
11
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<Readonly<{}>>>, {}>;
|
|
12
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, unknown, {}, {
|
|
2
|
+
options(): any;
|
|
3
|
+
}, {}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<Readonly<{}>, {}, {}, {
|
|
2
|
+
options(): any;
|
|
3
|
+
canvasMoveMode(): any;
|
|
4
|
+
}, {
|
|
5
|
+
setCanvasMoveMode(newValue: boolean): Promise<void>;
|
|
6
|
+
onTouchpadMouseDown(e: any): Promise<void>;
|
|
7
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<Readonly<{}>>>, {}>;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, unknown, {}, {
|
|
2
|
+
options(): any;
|
|
3
|
+
}, {}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{}>>, {}>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
direction: {
|
|
3
|
+
mustUseProp: boolean;
|
|
4
|
+
default: string;
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
};
|
|
7
|
+
positionH: {
|
|
8
|
+
mustUseProp: boolean;
|
|
9
|
+
default: string;
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
positionV: {
|
|
13
|
+
mustUseProp: boolean;
|
|
14
|
+
default: string;
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
};
|
|
17
|
+
}, {}, {}, {
|
|
18
|
+
options(): any;
|
|
19
|
+
graphInstance(): any;
|
|
20
|
+
}, {
|
|
21
|
+
refresh(): void;
|
|
22
|
+
toggleAutoLayout(): void;
|
|
23
|
+
downloadAsImage(): void;
|
|
24
|
+
zoomToFit(): Promise<void>;
|
|
25
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
26
|
+
direction: {
|
|
27
|
+
mustUseProp: boolean;
|
|
28
|
+
default: string;
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
};
|
|
31
|
+
positionH: {
|
|
32
|
+
mustUseProp: boolean;
|
|
33
|
+
default: string;
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
};
|
|
36
|
+
positionV: {
|
|
37
|
+
mustUseProp: boolean;
|
|
38
|
+
default: string;
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
};
|
|
41
|
+
}>>, {
|
|
42
|
+
direction: string;
|
|
43
|
+
positionH: string;
|
|
44
|
+
positionV: string;
|
|
45
|
+
}>;
|
|
46
|
+
export default _default;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
forImage: {
|
|
3
|
+
mustUseProp: boolean;
|
|
4
|
+
default: boolean;
|
|
5
|
+
type: BooleanConstructor;
|
|
6
|
+
};
|
|
7
|
+
forDisplay: {
|
|
8
|
+
mustUseProp: boolean;
|
|
9
|
+
default: boolean;
|
|
10
|
+
type: BooleanConstructor;
|
|
11
|
+
};
|
|
12
|
+
position: {
|
|
13
|
+
mustUseProp: boolean;
|
|
14
|
+
default: string;
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
};
|
|
17
|
+
width: {
|
|
18
|
+
mustUseProp: boolean;
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
};
|
|
21
|
+
height: {
|
|
22
|
+
mustUseProp: boolean;
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
};
|
|
25
|
+
}, {}, {}, {
|
|
26
|
+
options(): any;
|
|
27
|
+
show(): boolean;
|
|
28
|
+
}, {}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
29
|
+
forImage: {
|
|
30
|
+
mustUseProp: boolean;
|
|
31
|
+
default: boolean;
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
};
|
|
34
|
+
forDisplay: {
|
|
35
|
+
mustUseProp: boolean;
|
|
36
|
+
default: boolean;
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
};
|
|
39
|
+
position: {
|
|
40
|
+
mustUseProp: boolean;
|
|
41
|
+
default: string;
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
};
|
|
44
|
+
width: {
|
|
45
|
+
mustUseProp: boolean;
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
};
|
|
48
|
+
height: {
|
|
49
|
+
mustUseProp: boolean;
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
};
|
|
52
|
+
}>>, {
|
|
53
|
+
forImage: boolean;
|
|
54
|
+
forDisplay: boolean;
|
|
55
|
+
position: string;
|
|
56
|
+
}>;
|
|
57
|
+
export default _default;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{
|
|
2
|
+
direction: {
|
|
3
|
+
mustUseProp: boolean;
|
|
4
|
+
default: string;
|
|
5
|
+
type: StringConstructor;
|
|
6
|
+
};
|
|
7
|
+
positionH: {
|
|
8
|
+
mustUseProp: boolean;
|
|
9
|
+
default: string;
|
|
10
|
+
type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
positionV: {
|
|
13
|
+
mustUseProp: boolean;
|
|
14
|
+
default: string;
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
};
|
|
17
|
+
}, {}, {}, {
|
|
18
|
+
options(): any;
|
|
19
|
+
graphInstance(): any;
|
|
20
|
+
}, {
|
|
21
|
+
refresh(): void;
|
|
22
|
+
toggleAutoLayout(): void;
|
|
23
|
+
downloadAsImage(): void;
|
|
24
|
+
zoomToFit(): Promise<void>;
|
|
25
|
+
}, import('vue/types/v3-component-options').ComponentOptionsMixin, import('vue/types/v3-component-options').ComponentOptionsMixin, {}, string, Readonly<import('vue').ExtractPropTypes<{
|
|
26
|
+
direction: {
|
|
27
|
+
mustUseProp: boolean;
|
|
28
|
+
default: string;
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
};
|
|
31
|
+
positionH: {
|
|
32
|
+
mustUseProp: boolean;
|
|
33
|
+
default: string;
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
};
|
|
36
|
+
positionV: {
|
|
37
|
+
mustUseProp: boolean;
|
|
38
|
+
default: string;
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
};
|
|
41
|
+
}>>, {
|
|
42
|
+
direction: string;
|
|
43
|
+
positionH: string;
|
|
44
|
+
positionV: string;
|
|
45
|
+
}>;
|
|
46
|
+
export default _default;
|