From 276ca4aa109aa9896cc291b431de7b72b18f79f7 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Sun, 31 May 2020 20:11:37 +0200 Subject: [PATCH] 0.9.0 Fix --- dist/README.md | 12 ++++++------ dist/static/css/flowchart.light.css | 11 +++++++++++ 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/dist/README.md b/dist/README.md index df50d755..d0778528 100644 --- a/dist/README.md +++ b/dist/README.md @@ -56,18 +56,18 @@ Arnaud ### Added - CSV Format support for flowchart source (https://drawio-app.com/import-from-csv-to-drawio/) - New aggregation : Time of last point - - New fill Method : Gradient ([See example](https://github.com/algenty/grafana-flowcharting/blob/master/src/img/gradients_color_ani2.gif?raw=true)) - - Graph hover support ([See example](https://github.com/algenty/grafana-flowcharting/blob/master/src/img/floorplan_graphhover.gif?raw=true)) + - New fill Method : Gradient ([See example](https://algenty.github.io/flowcharting-repository/images/gradients_color_ani2.gif?raw=true)) + - Graph hover support ([See example](https://algenty.github.io/flowcharting-repository/images/floorplan_graphhover.gif?raw=true)) - Better rendering of color animation with chroma-js - New Events/Animations Mapping : * Modify Gradient direction - * Modify Arrow start and end connectors ([See example](https://github.com/algenty/grafana-flowcharting/blob/master/src/img/connectors_color_ani2.gif?raw=true)) + * Modify Arrow start and end connectors ([See example](https://algenty.github.io/flowcharting-repository/images/connectors_color_ani2.gif?raw=true)) * Flip shape horizontally or vertically - * Resize shape in percent ([See example](https://github.com/algenty/grafana-flowcharting/blob/master/src/img/resize_ani.gif?raw=true)) + * Resize shape in percent ([See example](https://algenty.github.io/flowcharting-repository/images/resize_ani.gif?raw=true)) * Flow animation (experimental, not work with a shadow on arrow) - New homepage schema - - Support external fonts like google fonts ([See example](https://github.com/algenty/grafana-flowcharting/blob/master/src/img/google_fonts.png?raw=true)) - - New anonymizer feature in inspect section to share the diagrams without sensible data ([See example](https://github.com/algenty/grafana-flowcharting/blob/master/src/img/anonymize_ani.gif?raw=true)) + - Support external fonts like google fonts ([See example](https://algenty.github.io/flowcharting-repository/images/google_fonts.png?raw=true)) + - New anonymizer feature in inspect section to share the diagrams without sensible data ([See example](https://algenty.github.io/flowcharting-repository/images/anonymize_ani.gif?raw=true)) ### Fixed - Fixed : Flowchart grid display diff --git a/dist/static/css/flowchart.light.css b/dist/static/css/flowchart.light.css index 6181c564..850c63fd 100644 --- a/dist/static/css/flowchart.light.css +++ b/dist/static/css/flowchart.light.css @@ -764,3 +764,14 @@ div.tooltip-date { .ct-chart .ct-series.ct-series-a .ct-line { stroke: rgb(34, 230, 27); } + +.mxEdgeFlow { + animation: mxEdgeFlow 0.5s linear; + animation-iteration-count: infinite; +} + +@keyframes mxEdgeFlow { + to { + stroke-dashoffset: -16; + } +} \ No newline at end of file