Skip to content

Commit 3a7271d

Browse files
committed
chore: update version number
1 parent 4dddb32 commit 3a7271d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

api/mind-elixir.api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303
},
304304
{
305305
"kind": "Content",
306-
"text": ") => "
306+
"text": ", noForiegnObject?: boolean) => "
307307
},
308308
{
309309
"kind": "Reference",
@@ -321,7 +321,7 @@
321321
},
322322
{
323323
"kind": "Content",
324-
"text": ") => "
324+
"text": ", noForiegnObject?: boolean) => "
325325
},
326326
{
327327
"kind": "Reference",

api/mind-elixir.api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export type LinkObj = Record<string, LinkItem>;
2626
// @public
2727
export const methods: {
2828
init(this: MindElixirInstance, data: MindElixirData): Error | undefined;
29-
exportSvg: (this: MindElixirInstance) => Blob;
30-
exportPng: (this: MindElixirInstance) => Promise<Blob | null>;
29+
exportSvg: (this: MindElixirInstance, noForiegnObject?: boolean) => Blob;
30+
exportPng: (this: MindElixirInstance, noForiegnObject?: boolean) => Promise<Blob | null>;
3131
createSummary: (this: MindElixirInstance) => void;
3232
removeSummary: (this: MindElixirInstance, id: string) => void;
3333
selectSummary: (this: MindElixirInstance, el: summaryOperation.SummarySvgGroup) => void;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mind-elixir",
3-
"version": "3.2.3",
3+
"version": "3.2.4",
44
"type": "module",
55
"description": "Mind elixir is a free open source mind map core.",
66
"keywords": [

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ MindElixir.DARK_THEME = DARK_THEME
126126
* @memberof MindElixir
127127
* @static
128128
*/
129-
MindElixir.version = '3.2.3'
129+
MindElixir.version = '3.2.4'
130130
/**
131131
* @function
132132
* @memberof MindElixir

0 commit comments

Comments
 (0)