@hpcc-js/wasm-graphviz 1.10.0 → 1.12.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/wasm-graphviz",
3
- "version": "1.10.0",
3
+ "version": "1.12.0",
4
4
  "description": "hpcc-js - WASM Graphviz",
5
5
  "type": "module",
6
6
  "exports": {
@@ -36,7 +36,7 @@
36
36
  "update-major": "npx -y npm-check-updates -u"
37
37
  },
38
38
  "devDependencies": {
39
- "@hpcc-js/esbuild-plugins": "1.4.8"
39
+ "@hpcc-js/esbuild-plugins": "1.4.9"
40
40
  },
41
41
  "keywords": [
42
42
  "graphviz",
@@ -54,5 +54,5 @@
54
54
  },
55
55
  "homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
56
56
  "license": "Apache-2.0",
57
- "gitHead": "7b10ca865e03a6182de007a343444c337259ee5d"
57
+ "gitHead": "7d932898547f6cd3cdb5960428f675267a5d435f"
58
58
  }
@@ -1,3 +1,3 @@
1
1
  export const PKG_NAME = "@hpcc-js/wasm-graphviz";
2
- export const PKG_VERSION = "1.10.0";
3
- export const BUILD_VERSION = "3.9.0";
2
+ export const PKG_VERSION = "1.12.0";
3
+ export const BUILD_VERSION = "3.11.0";
package/src/graphviz.ts CHANGED
@@ -4,7 +4,7 @@ import load, { reset } from "../../../build/packages/graphviz/src-cpp/graphvizli
4
4
  /**
5
5
  * Various graphic and data formats for end user, web, documents and other applications. See [Output Formats](https://graphviz.gitlab.io/docs/outputs/) for more information.
6
6
  */
7
- export type Format = "svg" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext" | "canon";
7
+ export type Format = "svg" | "svg_inline" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext" | "canon";
8
8
 
9
9
  /**
10
10
  * Various algorithms for projecting abstract graphs into a space for visualization. See [Layout Engines](https://graphviz.gitlab.io/docs/layouts/) for more details.
@@ -1,3 +1,3 @@
1
1
  export declare const PKG_NAME = "@hpcc-js/wasm-graphviz";
2
- export declare const PKG_VERSION = "1.9.2";
3
- export declare const BUILD_VERSION = "3.8.3";
2
+ export declare const PKG_VERSION = "1.11.0";
3
+ export declare const BUILD_VERSION = "3.10.0";
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Various graphic and data formats for end user, web, documents and other applications. See [Output Formats](https://graphviz.gitlab.io/docs/outputs/) for more information.
3
3
  */
4
- export type Format = "svg" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext" | "canon";
4
+ export type Format = "svg" | "svg_inline" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext" | "canon";
5
5
  /**
6
6
  * Various algorithms for projecting abstract graphs into a space for visualization. See [Layout Engines](https://graphviz.gitlab.io/docs/layouts/) for more details.
7
7
  */