Skip to content

Commit

Permalink
[16.0][FIX] Fix rendering when height/width is zero
Browse files Browse the repository at this point in the history
  • Loading branch information
robyf70 committed Apr 9, 2024
1 parent 70f971c commit 21382db
Show file tree
Hide file tree
Showing 12 changed files with 770 additions and 759 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# generated from manifests external_dependencies
beautifulsoup4
bokeh==3.1.1
bokeh==3.2.2
mpld3==0.5.9
plotly==5.13.1
2 changes: 1 addition & 1 deletion web_widget_bokeh_chart/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Web Widget Bokeh Chart
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:3ec86c20df03bbfbb52f5eaa52fb1be16d4fe3ec0f1756f745ad65eb7cc56b66
!! source digest: sha256:b5671c57c77df2db73d12e4e66bf14e37bcda8fd6e3ec28570fcf9e1aea26358
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
Expand Down
2 changes: 1 addition & 1 deletion web_widget_bokeh_chart/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"website": "https://github.com/OCA/web",
"depends": ["web"],
"data": [],
"external_dependencies": {"python": ["bokeh==3.1.1"]},
"external_dependencies": {"python": ["bokeh==3.2.2"]},
"auto_install": False,
"license": "LGPL-3",
"assets": {
Expand Down
2 changes: 1 addition & 1 deletion web_widget_bokeh_chart/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ <h1 class="title">Web Widget Bokeh Chart</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:3ec86c20df03bbfbb52f5eaa52fb1be16d4fe3ec0f1756f745ad65eb7cc56b66
!! source digest: sha256:b5671c57c77df2db73d12e4e66bf14e37bcda8fd6e3ec28570fcf9e1aea26358
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/web/tree/16.0/web_widget_bokeh_chart"><img alt="OCA/web" src="https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/web-16-0/web-16-0-web_widget_bokeh_chart"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/web&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module add the possibility to insert Bokeh charts into Odoo standard views.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ export default class BokehChartWidget extends CharField {
onWillStart(() =>
loadBundle({
jsLibs: [
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-3.1.1.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-api-3.1.1.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-widgets-3.1.1.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-tables-3.1.1.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-mathjax-3.1.1.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-gl-3.1.1.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-3.2.2.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-api-3.2.2.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-widgets-3.2.2.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-tables-3.2.2.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-mathjax-3.2.2.min.js",
"/web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-gl-3.2.2.min.js",
],
})
);
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

67 changes: 0 additions & 67 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-gl-3.1.1.min.js

This file was deleted.

71 changes: 71 additions & 0 deletions web_widget_bokeh_chart/static/src/lib/bokeh/bokeh-gl-3.2.2.min.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

0 comments on commit 21382db

Please sign in to comment.