reflex-components-plotly 0.9.3a1__tar.gz → 0.9.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {reflex_components_plotly-0.9.3a1 → reflex_components_plotly-0.9.4}/.gitignore +3 -0
- {reflex_components_plotly-0.9.3a1 → reflex_components_plotly-0.9.4}/CHANGELOG.md +7 -0
- {reflex_components_plotly-0.9.3a1 → reflex_components_plotly-0.9.4}/PKG-INFO +1 -1
- {reflex_components_plotly-0.9.3a1 → reflex_components_plotly-0.9.4}/src/reflex_components_plotly/plotly.py +19 -19
- {reflex_components_plotly-0.9.3a1 → reflex_components_plotly-0.9.4}/README.md +0 -0
- {reflex_components_plotly-0.9.3a1 → reflex_components_plotly-0.9.4}/news/.gitkeep +0 -0
- {reflex_components_plotly-0.9.3a1 → reflex_components_plotly-0.9.4}/pyproject.toml +0 -0
- {reflex_components_plotly-0.9.3a1 → reflex_components_plotly-0.9.4}/src/reflex_components_plotly/__init__.py +0 -0
- {reflex_components_plotly-0.9.3a1 → reflex_components_plotly-0.9.4}/src/reflex_components_plotly/plotly.pyi +0 -0
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## v0.9.4 (2026-08-04)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous
|
|
4
|
+
|
|
5
|
+
- Bumped `react-plotly.js` 2.6.0 → 4.0.0, with `plotly.js` (and its dist-min / locale variants) 3.5.x → 3.7.0. ([#6678](https://github.com/reflex-dev/reflex/issues/6678))
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
## v0.9.3 (2026-06-25)
|
|
2
9
|
|
|
3
10
|
### Features
|
|
@@ -70,9 +70,9 @@ class Point(TypedDict):
|
|
|
70
70
|
class Plotly(NoSSRComponent):
|
|
71
71
|
"""Display a plotly graph."""
|
|
72
72
|
|
|
73
|
-
library = "react-plotly.js@
|
|
73
|
+
library = "react-plotly.js@4.0.0"
|
|
74
74
|
|
|
75
|
-
lib_dependencies: list[str] = ["plotly.js@3.
|
|
75
|
+
lib_dependencies: list[str] = ["plotly.js@3.7.0"]
|
|
76
76
|
|
|
77
77
|
tag = "Plot"
|
|
78
78
|
|
|
@@ -191,7 +191,7 @@ class Plotly(NoSSRComponent):
|
|
|
191
191
|
}
|
|
192
192
|
if self.locale is not None:
|
|
193
193
|
# For locale dictionaries injected into plot config.locales.
|
|
194
|
-
imports["plotly.js-locales@3.
|
|
194
|
+
imports["plotly.js-locales@3.7.0"] = ImportVar(
|
|
195
195
|
tag="plotlyLocales",
|
|
196
196
|
is_default=True,
|
|
197
197
|
)
|
|
@@ -383,9 +383,9 @@ class PlotlyBasic(Plotly):
|
|
|
383
383
|
|
|
384
384
|
tag: str = "BasicPlotlyPlot"
|
|
385
385
|
|
|
386
|
-
library = "react-plotly.js@
|
|
386
|
+
library = "react-plotly.js@4.0.0"
|
|
387
387
|
|
|
388
|
-
lib_dependencies: list[str] = ["plotly.js-basic-dist-min@3.
|
|
388
|
+
lib_dependencies: list[str] = ["plotly.js-basic-dist-min@3.7.0"]
|
|
389
389
|
|
|
390
390
|
def add_imports(self) -> ImportDict:
|
|
391
391
|
"""Add imports for the plotly basic component.
|
|
@@ -409,9 +409,9 @@ class PlotlyCartesian(Plotly):
|
|
|
409
409
|
|
|
410
410
|
tag: str = "CartesianPlotlyPlot"
|
|
411
411
|
|
|
412
|
-
library = "react-plotly.js@
|
|
412
|
+
library = "react-plotly.js@4.0.0"
|
|
413
413
|
|
|
414
|
-
lib_dependencies: list[str] = ["plotly.js-cartesian-dist-min@3.
|
|
414
|
+
lib_dependencies: list[str] = ["plotly.js-cartesian-dist-min@3.7.0"]
|
|
415
415
|
|
|
416
416
|
def add_imports(self) -> ImportDict:
|
|
417
417
|
"""Add imports for the plotly cartesian component.
|
|
@@ -435,9 +435,9 @@ class PlotlyGeo(Plotly):
|
|
|
435
435
|
|
|
436
436
|
tag: str = "GeoPlotlyPlot"
|
|
437
437
|
|
|
438
|
-
library = "react-plotly.js@
|
|
438
|
+
library = "react-plotly.js@4.0.0"
|
|
439
439
|
|
|
440
|
-
lib_dependencies: list[str] = ["plotly.js-geo-dist-min@3.
|
|
440
|
+
lib_dependencies: list[str] = ["plotly.js-geo-dist-min@3.7.0"]
|
|
441
441
|
|
|
442
442
|
def add_imports(self) -> ImportDict:
|
|
443
443
|
"""Add imports for the plotly geo component.
|
|
@@ -461,9 +461,9 @@ class PlotlyGl3d(Plotly):
|
|
|
461
461
|
|
|
462
462
|
tag: str = "Gl3dPlotlyPlot"
|
|
463
463
|
|
|
464
|
-
library = "react-plotly.js@
|
|
464
|
+
library = "react-plotly.js@4.0.0"
|
|
465
465
|
|
|
466
|
-
lib_dependencies: list[str] = ["plotly.js-gl3d-dist-min@3.
|
|
466
|
+
lib_dependencies: list[str] = ["plotly.js-gl3d-dist-min@3.7.0"]
|
|
467
467
|
|
|
468
468
|
def add_imports(self) -> ImportDict:
|
|
469
469
|
"""Add imports for the plotly 3d component.
|
|
@@ -487,9 +487,9 @@ class PlotlyGl2d(Plotly):
|
|
|
487
487
|
|
|
488
488
|
tag: str = "Gl2dPlotlyPlot"
|
|
489
489
|
|
|
490
|
-
library = "react-plotly.js@
|
|
490
|
+
library = "react-plotly.js@4.0.0"
|
|
491
491
|
|
|
492
|
-
lib_dependencies: list[str] = ["plotly.js-gl2d-dist-min@3.
|
|
492
|
+
lib_dependencies: list[str] = ["plotly.js-gl2d-dist-min@3.7.0"]
|
|
493
493
|
|
|
494
494
|
def add_imports(self) -> ImportDict:
|
|
495
495
|
"""Add imports for the plotly 2d component.
|
|
@@ -513,9 +513,9 @@ class PlotlyMapbox(Plotly):
|
|
|
513
513
|
|
|
514
514
|
tag: str = "MapboxPlotlyPlot"
|
|
515
515
|
|
|
516
|
-
library = "react-plotly.js@
|
|
516
|
+
library = "react-plotly.js@4.0.0"
|
|
517
517
|
|
|
518
|
-
lib_dependencies: list[str] = ["plotly.js-mapbox-dist-min@3.
|
|
518
|
+
lib_dependencies: list[str] = ["plotly.js-mapbox-dist-min@3.7.0"]
|
|
519
519
|
|
|
520
520
|
def add_imports(self) -> ImportDict:
|
|
521
521
|
"""Add imports for the plotly mapbox component.
|
|
@@ -539,9 +539,9 @@ class PlotlyFinance(Plotly):
|
|
|
539
539
|
|
|
540
540
|
tag: str = "FinancePlotlyPlot"
|
|
541
541
|
|
|
542
|
-
library = "react-plotly.js@
|
|
542
|
+
library = "react-plotly.js@4.0.0"
|
|
543
543
|
|
|
544
|
-
lib_dependencies: list[str] = ["plotly.js-finance-dist-min@3.
|
|
544
|
+
lib_dependencies: list[str] = ["plotly.js-finance-dist-min@3.7.0"]
|
|
545
545
|
|
|
546
546
|
def add_imports(self) -> ImportDict:
|
|
547
547
|
"""Add imports for the plotly finance component.
|
|
@@ -565,9 +565,9 @@ class PlotlyStrict(Plotly):
|
|
|
565
565
|
|
|
566
566
|
tag: str = "StrictPlotlyPlot"
|
|
567
567
|
|
|
568
|
-
library = "react-plotly.js@
|
|
568
|
+
library = "react-plotly.js@4.0.0"
|
|
569
569
|
|
|
570
|
-
lib_dependencies: list[str] = ["plotly.js-strict-dist-min@3.
|
|
570
|
+
lib_dependencies: list[str] = ["plotly.js-strict-dist-min@3.7.0"]
|
|
571
571
|
|
|
572
572
|
def add_imports(self) -> ImportDict:
|
|
573
573
|
"""Add imports for the plotly strict component.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|