Skip to content

upgrade js to pre-2.0 #3030

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
213 changes: 126 additions & 87 deletions packages/javascript/plotlywidget/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/javascript/plotlywidget/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"typescript": "~3.1.1"
},
"dependencies": {
"plotly.js": "^1.58.4",
"plotly.js": "https://101968-45646037-gh.circle-artifacts.com/0/plotly.js.tgz",
"@jupyter-widgets/base": "^2.0.0 || ^3.0.0 || ^4.0.0",
"lodash": "^4.17.4"
},
Expand Down
9,672 changes: 545 additions & 9,127 deletions packages/python/plotly/codegen/resources/plot-schema.json

Large diffs are not rendered by default.

4 changes: 0 additions & 4 deletions packages/python/plotly/plotly/graph_objects/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
from ..graph_objs import Box
from ..graph_objs import Barpolar
from ..graph_objs import Bar
from ..graph_objs import Area
from ..graph_objs import Layout
from ..graph_objs import Frame
from ..graph_objs import Figure
Expand Down Expand Up @@ -122,7 +121,6 @@
from ..graph_objs import box
from ..graph_objs import barpolar
from ..graph_objs import bar
from ..graph_objs import area
from ..graph_objs import layout
else:
from _plotly_utils.importers import relative_import
Expand Down Expand Up @@ -176,7 +174,6 @@
"..graph_objs.box",
"..graph_objs.barpolar",
"..graph_objs.bar",
"..graph_objs.area",
"..graph_objs.layout",
],
[
Expand Down Expand Up @@ -226,7 +223,6 @@
"..graph_objs.Box",
"..graph_objs.Barpolar",
"..graph_objs.Bar",
"..graph_objs.Area",
"..graph_objs.Layout",
"..graph_objs.Frame",
"..graph_objs.Figure",
Expand Down
4 changes: 0 additions & 4 deletions packages/python/plotly/plotly/graph_objs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import sys

if sys.version_info < (3, 7):
from ._area import Area
from ._bar import Bar
from ._barpolar import Barpolar
from ._box import Box
Expand Down Expand Up @@ -76,7 +75,6 @@
from ._violin import Violin
from ._volume import Volume
from ._waterfall import Waterfall
from . import area
from . import bar
from . import barpolar
from . import box
Expand Down Expand Up @@ -130,7 +128,6 @@
__all__, __getattr__, __dir__ = relative_import(
__name__,
[
".area",
".bar",
".barpolar",
".box",
Expand Down Expand Up @@ -180,7 +177,6 @@
".waterfall",
],
[
"._area.Area",
"._bar.Bar",
"._barpolar.Barpolar",
"._box.Box",
Expand Down
Loading