graphviz-webcomponent

Renders a Graphviz graph from the text source to SVG.

MIT License

Downloads
107
Stars
5
Committers
3

Bot releases are visible (Hide)

graphviz-webcomponent - v2.0.0 Latest Release

Published by github-actions[bot] over 1 year ago

2.0.0 (2023-04-02)

Features

  • Make the update event of graphviz-script-editor bubble (0aa7fdf)
  • Rename the custom event of graphviz-script-editor from "input" to "update" (2d6bcd6)

BREAKING CHANGES

  • If you were listening to the input event, change the event name to update. The event detail didn't change - it still contains the updated script. Why did I rename the event? The original input event is triggered as composed and bubbled out of the shadow DOM. The input event handler caught it. The custom input event just followed it, which made its processing more difficult - for example, by checking the class of the event to be CustomEvent. Using a different event type - update - will avoid duplicate event processing without any extra conditions.
graphviz-webcomponent - v1.2.3

Published by github-actions[bot] over 1 year ago

1.2.3 (2023-04-02)

Bug Fixes

  • Allow >1 graph on a webpage. (3e04917)
graphviz-webcomponent - v1.2.2

Published by github-actions[bot] over 1 year ago

1.2.2 (2023-04-02)

Bug Fixes

graphviz-webcomponent - v1.2.1

Published by github-actions[bot] over 1 year ago

1.2.1 (2023-03-24)

Bug Fixes

graphviz-webcomponent - v1.2.0

Published by github-actions[bot] almost 2 years ago

1.2.0 (2022-12-16)

Features

  • Add custom elements manifest (ba475eb)
  • Add IntelliSense support for VS Code (8d081a8)
graphviz-webcomponent - v1.1.0

Published by github-actions[bot] almost 2 years ago

1.1.0 (2022-12-16)

Features

  • Introduce a script with the renderer script bundled (5eced5f)
graphviz-webcomponent - v1.0.0

Published by github-actions[bot] almost 2 years ago

1.0.0 (2022-12-16)

Bug Fixes

Features

  • Add property graphCompleted (8ccca85)
  • Remove wasmFolder from configuration (c91e849)

BREAKING CHANGES

  • The value of wasmFolder will be ignored. Simply stop passing this input parameter in. This shouldn't break anything, but you might want to simplify your code.
graphviz-webcomponent - v0.5.1

Published by github-actions[bot] over 2 years ago

0.5.1 (2022-01-28)

Bug Fixes

  • Fix published version number (ccf42ce)
graphviz-webcomponent - v0.5.0

Published by github-actions[bot] over 2 years ago

0.5.0 (2022-01-28)

Bug Fixes

  • Adapt sources after upgrading dependencies (51a5492)
  • Preload the renderer out of the execution of the main script (9611670)
  • Publish with new dependencies (43f17de)

Features

  • Add ES6 modules exporting the HTML element classes (bb62fc6)
graphviz-webcomponent - v0.4.2

Published by prantlf over 4 years ago

0.4.2 (2020-07-03)

Bug Fixes

  • Drop the dependency on lit-html to shrink the size by 20 KB (43306a8)
graphviz-webcomponent - v0.4.1

Published by prantlf over 4 years ago

0.4.1 (2020-07-02)

Bug Fixes

  • Correct the access to the text selection to enable running in Firefox (c9f3649)
graphviz-webcomponent - v0.4.0

Published by prantlf over 4 years ago

0.4.0 (2020-07-02)

Features

  • Render the graph by a web worker, configure it by a global objects (6833d6c)
graphviz-webcomponent - v0.3.1

Published by prantlf over 4 years ago

0.3.1 (2020-06-22)

Bug Fixes

  • Set the scale transformation origin to the top left corner (a0006a0)
graphviz-webcomponent - v0.3.0

Published by prantlf over 4 years ago

0.3.0 (2020-06-22)

Features

  • Introduce attribute "scale" for zooming the graph image (fc13ea4)
graphviz-webcomponent - v0.2.0

Published by prantlf over 4 years ago

0.2.0 (2020-06-22)

Features

  • Add syntax highglighting for the graph script, add button "Save script" (06a9b41)
  • Introduce web component for editing the script source (d2efcc1)
graphviz-webcomponent - v0.1.0

Published by prantlf over 4 years ago

0.1.0 (2020-06-15)

Features

  • Add method tryGraph to update the graph only if rendering succeeds (cb35099)
  • Render the graph on any change in the graph script text area (ff5616f)
graphviz-webcomponent - v0.0.1

Published by prantlf over 4 years ago

0.0.1 (2020-06-1)

Initial release of the Graphviz WebComponent