Skip to content

Commit

Permalink
chore: update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
SSShooter committed Oct 12, 2023
1 parent 4dddb32 commit 3a7271d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions api/mind-elixir.api.json
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
},
{
"kind": "Content",
"text": ") => "
"text": ", noForiegnObject?: boolean) => "
},
{
"kind": "Reference",
Expand All @@ -321,7 +321,7 @@
},
{
"kind": "Content",
"text": ") => "
"text": ", noForiegnObject?: boolean) => "
},
{
"kind": "Reference",
Expand Down
4 changes: 2 additions & 2 deletions api/mind-elixir.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export type LinkObj = Record<string, LinkItem>;
// @public
export const methods: {
init(this: MindElixirInstance, data: MindElixirData): Error | undefined;
exportSvg: (this: MindElixirInstance) => Blob;
exportPng: (this: MindElixirInstance) => Promise<Blob | null>;
exportSvg: (this: MindElixirInstance, noForiegnObject?: boolean) => Blob;
exportPng: (this: MindElixirInstance, noForiegnObject?: boolean) => Promise<Blob | null>;
createSummary: (this: MindElixirInstance) => void;
removeSummary: (this: MindElixirInstance, id: string) => void;
selectSummary: (this: MindElixirInstance, el: summaryOperation.SummarySvgGroup) => void;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mind-elixir",
"version": "3.2.3",
"version": "3.2.4",
"type": "module",
"description": "Mind elixir is a free open source mind map core.",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ MindElixir.DARK_THEME = DARK_THEME
* @memberof MindElixir
* @static
*/
MindElixir.version = '3.2.3'
MindElixir.version = '3.2.4'
/**
* @function
* @memberof MindElixir
Expand Down

0 comments on commit 3a7271d

Please sign in to comment.