Skip to content

Commit 2c2949e

Browse files
committed
Update props and docs
1 parent 1fe6983 commit 2c2949e

File tree

13 files changed

+17
-18
lines changed

13 files changed

+17
-18
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ restrictions:
1919

2020
- Please **do not** use the issue tracker for personal support requests. Stack
2121
Overflow ([`plotly-dash`](https://stackoverflow.com/questions/tagged/plotly-dash) tag),
22-
or the [Plotly Community Forum](https://community.plot.ly) are better places to get help.
22+
or the [Plotly Community Forum](https://community.plotly.com) are better places to get help.
2323

2424
- Please **do not** derail or troll issues. Keep the discussion on topic and
2525
respect the opinions of others.

docs/components_page/components/carousel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This is a carousel with slides only. The default cycle time is 5000ms, but here
1212

1313
## With controls
1414

15-
Here we add the previous and next controls. The default is for the slideshow to autoplay after the user manually cycles the first item. Set `ride="carousel"` to start the slideshow on page load.
15+
Here we add the previous and next controls.
1616

1717
{{example:components/carousel/controls.py:carousel}}
1818

docs/components_page/components/carousel/simple.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@
99
controls=False,
1010
indicators=False,
1111
interval=2000,
12-
ride="carousel",
1312
)

docs/components_page/components/navbar/navbar.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import dash_bootstrap_components as dbc
22
from dash import Input, Output, State, html
33

4-
PLOTLY_LOGO = "https://images.plot.ly/logo/new-branding/plotly-logomark.png"
4+
LOGO = "https://placehold.co/100x100"
55

66
search_bar = dbc.Row(
77
[
@@ -22,13 +22,13 @@
2222
# Use row and col to control vertical alignment of logo / brand
2323
dbc.Row(
2424
[
25-
dbc.Col(html.Img(src=PLOTLY_LOGO, height="30px")),
25+
dbc.Col(html.Img(src=LOGO, height="30px")),
2626
dbc.Col(dbc.NavbarBrand("Navbar", className="ms-2")),
2727
],
2828
align="center",
2929
className="g-0",
3030
),
31-
href="https://plotly.com",
31+
href="https://placehold.co/",
3232
style={"textDecoration": "none"},
3333
),
3434
dbc.NavbarToggler(id="navbar-toggler", n_clicks=0),

docs/components_page/components/table/kwargs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# using the same table as in the above example
33
table_header + table_body,
44
bordered=True,
5-
dark=True,
5+
color="dark",
66
hover=True,
77
responsive=True,
88
striped=True,

docs/demos/theme_explorer/table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@
6161
dbc.Table(
6262
[table_header, table_body],
6363
bordered=True,
64-
dark=True,
6564
hover=True,
6665
responsive=True,
6766
striped=True,
6867
className="mb-2",
68+
color="dark",
6969
),
7070
),
7171
]

examples/advanced-component-usage/navbars.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import dash_bootstrap_components as dbc
1111
from dash import Input, Output, State, html
1212

13-
PLOTLY_LOGO = "https://images.plot.ly/logo/new-branding/plotly-logomark.png"
13+
LOGO = "https://placehold.co/100x100"
1414

1515
app = dash.Dash(external_stylesheets=[dbc.themes.BOOTSTRAP])
1616
# try running the app with one of the Bootswatch themes e.g.
@@ -68,7 +68,7 @@
6868
# Use row and col to control vertical alignment of logo / brand
6969
dbc.Row(
7070
[
71-
dbc.Col(html.Img(src=PLOTLY_LOGO, height="30px")),
71+
dbc.Col(html.Img(src=LOGO, height="30px")),
7272
dbc.Col(dbc.NavbarBrand("Logo", className="ms-2")),
7373
],
7474
align="center",

examples/templates/multi-page-apps/collapsible-sidebar-with-icons/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
feature you must install dash-bootstrap-components >= 0.11.0.
1111
1212
For more details on building multi-page Dash applications, check out the Dash
13-
documentation: https://dash.plot.ly/urls
13+
documentation: https://dash.plotly.com/urls
1414
"""
1515

1616
import dash
1717
import dash_bootstrap_components as dbc
1818
from dash import Input, Output, dcc, html
1919

20-
PLOTLY_LOGO = "https://images.plot.ly/logo/new-branding/plotly-logomark.png"
20+
LOGO = "https://placehold.co/100x100"
2121

2222
app = dash.Dash(external_stylesheets=[dbc.themes.BOOTSTRAP, dbc.icons.FONT_AWESOME])
2323

@@ -27,7 +27,7 @@
2727
[
2828
# width: 3rem ensures the logo is the exact width of the
2929
# collapsed sidebar (accounting for padding)
30-
html.Img(src=PLOTLY_LOGO, style={"width": "3rem"}),
30+
html.Img(src=LOGO, style={"width": "3rem"}),
3131
html.H2("Sidebar"),
3232
],
3333
className="sidebar-header",

examples/templates/multi-page-apps/navbar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
feature you must install dash-bootstrap-components >= 0.11.0.
88
99
For more details on building multi-page Dash applications, check out the Dash
10-
documentation: https://dash.plot.ly/urls
10+
documentation: https://dash.plotly.com/urls
1111
"""
1212

1313
import dash

examples/templates/multi-page-apps/responsive-collapsible-sidebar/sidebar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
feature you must install dash-bootstrap-components >= 0.11.0.
1414
1515
For more details on building multi-page Dash applications, check out the Dash
16-
documentation: https://dash.plot.ly/urls
16+
documentation: https://dash.plotly.com/urls
1717
"""
1818

1919
import dash

0 commit comments

Comments
 (0)