mind-elixir 3.2.0 → 3.2.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/dist/MindElixir.iife.js +5 -5
- package/dist/MindElixir.js +64 -60
- package/dist/MindElixirLite.iife.js +4 -4
- package/dist/MindElixirLite.js +150 -185
- package/dist/types/customLink.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/methods.d.ts +1 -0
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ export declare const drawCustomLink: (this: MindElixirInstance, from: Topic, to:
|
|
|
26
26
|
export declare const createLink: (this: MindElixirInstance, from: Topic, to: Topic) => void;
|
|
27
27
|
export declare const removeLink: (this: MindElixirInstance, linkSvg?: CustomSvg) => void;
|
|
28
28
|
export declare const selectLink: (this: MindElixirInstance, link: CustomSvg) => void;
|
|
29
|
+
export declare const unselectLink: (this: MindElixirInstance) => void;
|
|
29
30
|
export declare const hideLinkController: (this: MindElixirInstance) => void;
|
|
30
31
|
export declare const showLinkController: (this: MindElixirInstance, linkItem: LinkItem, fromData: DivData, toData: DivData) => void;
|
|
31
32
|
export declare function renderCustomLink(this: MindElixirInstance): void;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ declare namespace MindElixir {
|
|
|
23
23
|
createLink: (this: MindElixirInstance, from: import("./types/dom").Topic, to: import("./types/dom").Topic) => void;
|
|
24
24
|
removeLink: (this: MindElixirInstance, linkSvg?: import("./types/dom").CustomSvg | undefined) => void;
|
|
25
25
|
selectLink: (this: MindElixirInstance, link: import("./types/dom").CustomSvg) => void;
|
|
26
|
+
unselectLink: (this: MindElixirInstance) => void;
|
|
26
27
|
hideLinkController: (this: MindElixirInstance) => void;
|
|
27
28
|
showLinkController: (this: MindElixirInstance, linkItem: import("./customLink").LinkItem, fromData: import("./customLink").DivData, toData: import("./customLink").DivData) => void;
|
|
28
29
|
reshapeNode: (this: MindElixirInstance, ...args: unknown[]) => Promise<void>;
|
package/dist/types/methods.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ declare const methods: {
|
|
|
23
23
|
createLink: (this: MindElixirInstance, from: import("./index").Topic, to: import("./index").Topic) => void;
|
|
24
24
|
removeLink: (this: MindElixirInstance, linkSvg?: import("./index").CustomSvg | undefined) => void;
|
|
25
25
|
selectLink: (this: MindElixirInstance, link: import("./index").CustomSvg) => void;
|
|
26
|
+
unselectLink: (this: MindElixirInstance) => void;
|
|
26
27
|
hideLinkController: (this: MindElixirInstance) => void;
|
|
27
28
|
showLinkController: (this: MindElixirInstance, linkItem: customLink.LinkItem, fromData: customLink.DivData, toData: customLink.DivData) => void;
|
|
28
29
|
reshapeNode: (this: MindElixirInstance, ...args: unknown[]) => Promise<void>;
|