├── .gitignore ├── .node-version ├── CHANGES.md ├── Demo.png ├── LICENSE ├── README.md ├── RECIPES.md ├── TESTS.md ├── index.js ├── package.json ├── public ├── editor_controller.js ├── options_template.html ├── request_handler.js ├── transform_vis.js ├── transform_vis.less └── vis_controller.js ├── transform_vis.png └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 8.11.3 2 | -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- 1 | * Aug 17 2018 2 | * Versions 3 | * 6.4.0 changes as per https://www.elastic.co/blog/upcoming-kibana-plugin-api-changes-in-6-4 4 | * Feb 22 2018 5 | * Versions 6 | * 6.2.2, then 6.2.2 re-released again same day with 2 bugs fixed related to after_render 7 | * Changes 8 | * before_render and after_render methods added 9 | * Nov 17 2017 10 | * Versions 11 | * 6.0.0 12 | * Changes 13 | * Total re-org for new visualization framework 14 | * Nov 16 2017 15 | * Versions 16 | * 5.6.4 17 | * Changes 18 | * Support changes in Index Pattern service 19 | 20 | * Jul 10 2017 21 | * Versions 22 | * 5.5.0 23 | * Changes 24 | * Merging pull request to support 5.5.0 25 | 26 | * Wed April 12 2017 27 | * Versions 28 | * 5.3.0-2 29 | * 5.2.2-2 30 | * Changes 31 | * When `allow_unsafe` is enabled, any HTML will be accepted in the template, such as