Skip to content

Commit 7b117dc

Browse files
committed
add generated files
1 parent d3cb22b commit 7b117dc

File tree

4 files changed

+55
-0
lines changed

4 files changed

+55
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import _plotly_utils.basevalidators
2+
3+
4+
class ZsmoothValidator(_plotly_utils.basevalidators.EnumeratedValidator):
5+
def __init__(self, plotly_name="zsmooth", parent_name="heatmapgl", **kwargs):
6+
super(ZsmoothValidator, self).__init__(
7+
plotly_name=plotly_name,
8+
parent_name=parent_name,
9+
edit_type=kwargs.pop("edit_type", "calc"),
10+
role=kwargs.pop("role", "style"),
11+
values=kwargs.pop("values", ["fast", False]),
12+
**kwargs
13+
)
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import _plotly_utils.basevalidators
2+
3+
4+
class SourceValidator(_plotly_utils.basevalidators.StringValidator):
5+
def __init__(self, plotly_name="source", parent_name="image", **kwargs):
6+
super(SourceValidator, self).__init__(
7+
plotly_name=plotly_name,
8+
parent_name=parent_name,
9+
edit_type=kwargs.pop("edit_type", "calc"),
10+
role=kwargs.pop("role", "info"),
11+
**kwargs
12+
)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import _plotly_utils.basevalidators
2+
3+
4+
class TicklabelmodeValidator(_plotly_utils.basevalidators.EnumeratedValidator):
5+
def __init__(
6+
self, plotly_name="ticklabelmode", parent_name="layout.xaxis", **kwargs
7+
):
8+
super(TicklabelmodeValidator, self).__init__(
9+
plotly_name=plotly_name,
10+
parent_name=parent_name,
11+
edit_type=kwargs.pop("edit_type", "ticks"),
12+
role=kwargs.pop("role", "info"),
13+
values=kwargs.pop("values", ["instant", "period"]),
14+
**kwargs
15+
)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import _plotly_utils.basevalidators
2+
3+
4+
class TicklabelmodeValidator(_plotly_utils.basevalidators.EnumeratedValidator):
5+
def __init__(
6+
self, plotly_name="ticklabelmode", parent_name="layout.yaxis", **kwargs
7+
):
8+
super(TicklabelmodeValidator, self).__init__(
9+
plotly_name=plotly_name,
10+
parent_name=parent_name,
11+
edit_type=kwargs.pop("edit_type", "ticks"),
12+
role=kwargs.pop("role", "info"),
13+
values=kwargs.pop("values", ["instant", "period"]),
14+
**kwargs
15+
)

0 commit comments

Comments
 (0)