Files
web/web_widget_mermaid/__manifest__.py
Jan Verbeek 101c3d3487 [ADD] Add a widget for rendering text fields as mermaid flowcharts
[ADD] Add error handling, improve README, fix + customize theming

[FIX] Use Mermaid 8.3.0, compiled for older ECMAscript

[FIX] Small web_widget_mermaid improvements

[UPD] Upgrade Mermaid, target older browsers, add build instructions

[FIX] Remove trailing comma in function call to make PhantomJS happy

[IMP] Add web_widget_mermaid demo example
2019-10-22 15:18:12 +02:00

28 lines
744 B
Python

# -*- coding: utf-8 -*-
# Copyright 2019 Therp BV <https://therp.nl>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
{
"name": "Mermaid flowchart widget",
"category": "Web",
"author": "Therp BV,Odoo Community Association (OCA)",
"version": "10.0.8.4.0",
"license": "AGPL-3",
"summary": "Render mermaid markdown flowcharts",
"website": "https://github.com/OCA/web",
"depends": ['web'],
"data": [
"view/web_widget_mermaid_view.xml",
],
"js": [
"static/lib/mermaid/mermaid.js",
"static/src/js/web_widget_mermaid.js",
],
"qweb": [
"static/src/xml/web_widget_mermaid.xml",
],
"demo": [
"demo/res_users_flowchart.xml",
],
}