@jarenjs/mermaid 0.49.2 → 0.56.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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -222,7 +222,7 @@ fallback. Task ids and dates stay ASCII data either way — an RTL name is
222
222
  text, not syntax.
223
223
 
224
224
  At scale, parse (which is also schedule resolution), layout and render
225
- are reported separately in the benchmark: <!--bm:mermaid.ganttScale-->at 10,000 tasks, ~34 ms to parse and resolve, ~3.8 ms to lay out and ~7.7 ms to render<!--/bm-->.
225
+ are reported separately in the benchmark: <!--fact:mermaid.ganttScale-->at 10,000 tasks, ~34 ms to parse and resolve, ~3.8 ms to lay out and ~7.7 ms to render<!--/fact-->.
226
226
 
227
227
 
228
228
  ## Styling, notes and interaction
@@ -321,7 +321,7 @@ detection + Jison + validation — so it is heavy and noisy; these are
321
321
  representative, not a bare-grammar microbenchmark.)
322
322
 
323
323
  The headless **parse → layout → SVG string** rows are jaren-only
324
- (<!--bm:mermaid.svgMs-->~0.68 ms for a 25-node flowchart, ~1 ms at 100 nodes<!--/bm-->): mermaid.js
324
+ (<!--fact:mermaid.svgMs-->~0.68 ms for a 25-node flowchart, ~1 ms at 100 nodes<!--/fact-->): mermaid.js
325
325
  needs a browser DOM (`getBBox`) to render, so there is no fair
326
326
  full-render head-to-head — producing a complete standalone SVG in pure
327
327
  Node is a capability it lacks.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@jarenjs/mermaid",
3
3
  "private": false,
4
- "version": "0.49.2",
4
+ "version": "0.56.0",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
7
7
  "types": "./dist/types/index.d.ts",
@@ -77,8 +77,8 @@
77
77
  "prepack": "npm run build:types"
78
78
  },
79
79
  "dependencies": {
80
- "@jarenjs/charts": "^0.49.2",
81
- "@jarenjs/core": "^0.49.2",
82
- "@jarenjs/view": "^0.49.2"
80
+ "@jarenjs/charts": "^0.56.0",
81
+ "@jarenjs/core": "^0.56.0",
82
+ "@jarenjs/view": "^0.56.0"
83
83
  }
84
84
  }