Skip to content

Commit 8ec69cc

Browse files
committed
new build
1 parent 7aa5f17 commit 8ec69cc

21 files changed

+63
-22
lines changed

dash/dash-renderer/build/dash_renderer.dev.js

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

dash/dash-renderer/build/dash_renderer.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dash_table/bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dash_table/bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dash_table/demo.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dash_table/demo.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash/dcc/Graph.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,10 @@ class Graph(Component):
263263
- prop_name (string; optional):
264264
Holds which property is loading.
265265
266+
- mathjax (boolean; default False):
267+
If True, loads mathjax v3 (tex-svg) into the page and use it in
268+
the graph.
269+
266270
- prependData (list | dict; optional):
267271
Data that should be prepended to existing traces. Has the form
268272
`[updateData, traceIndices, maxPoints]`, where `updateData` is an
@@ -326,6 +330,7 @@ def __init__(
326330
figure=Component.UNDEFINED,
327331
style=Component.UNDEFINED,
328332
className=Component.UNDEFINED,
333+
mathjax=Component.UNDEFINED,
329334
animate=Component.UNDEFINED,
330335
animation_options=Component.UNDEFINED,
331336
config=Component.UNDEFINED,
@@ -345,6 +350,7 @@ def __init__(
345350
"figure",
346351
"hoverData",
347352
"loading_state",
353+
"mathjax",
348354
"prependData",
349355
"relayoutData",
350356
"responsive",
@@ -368,6 +374,7 @@ def __init__(
368374
"figure",
369375
"hoverData",
370376
"loading_state",
377+
"mathjax",
371378
"prependData",
372379
"relayoutData",
373380
"responsive",

dash/dcc/Markdown.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ class Markdown(Component):
5858
- prop_name (string; optional):
5959
Holds which property is loading.
6060
61+
- mathjax (boolean; default False):
62+
If True, loads mathjax v3 (tex-svg) into the page and use it in
63+
the markdown.
64+
6165
- style (dict; optional):
6266
User-defined inline styles for the rendered Markdown."""
6367

@@ -67,6 +71,7 @@ def __init__(
6771
children=None,
6872
id=Component.UNDEFINED,
6973
className=Component.UNDEFINED,
74+
mathjax=Component.UNDEFINED,
7075
dangerously_allow_html=Component.UNDEFINED,
7176
dedent=Component.UNDEFINED,
7277
highlight_config=Component.UNDEFINED,
@@ -82,6 +87,7 @@ def __init__(
8287
"dedent",
8388
"highlight_config",
8489
"loading_state",
90+
"mathjax",
8591
"style",
8692
]
8793
self._type = "Markdown"
@@ -95,6 +101,7 @@ def __init__(
95101
"dedent",
96102
"highlight_config",
97103
"loading_state",
104+
"mathjax",
98105
"style",
99106
]
100107
self.available_wildcard_properties = []

dash/dcc/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"graph",
4949
"highlight",
5050
"markdown",
51+
"mathjax",
5152
"slider",
5253
"upload",
5354
]

dash/dcc/async-graph.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)