Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions docs/components_page/components/card.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,24 +91,8 @@ Use the `CardGroup` component to render cards as a single attached element with

{{example:components/card/layout/group.py:cards}}

### Card deck

The `CardDeck` component will lay cards out with equal width and height, without attaching them to one another like the `CardGroup` component.

{{example:components/card/layout/deck.py:cards}}

### Card columns

Cards can be organised into [Masonry](https://masonry.desandro.com/)-like columns using the `CardColumns` component. Cards are ordered top to bottom and left to right.

{{example:components/card/layout/columns.py:cards}}

{{apidoc:src/components/card/CardDeck.js}}

{{apidoc:src/components/card/CardGroup.js}}

{{apidoc:src/components/card/CardColumns.js}}

{{apidoc:src/components/card/Card.js}}

{{apidoc:src/components/card/CardHeader.js}}
Expand Down
61 changes: 0 additions & 61 deletions docs/components_page/components/card/layout/columns.R

This file was deleted.

47 changes: 0 additions & 47 deletions docs/components_page/components/card/layout/columns.jl

This file was deleted.

61 changes: 0 additions & 61 deletions docs/components_page/components/card/layout/columns.py

This file was deleted.

57 changes: 0 additions & 57 deletions docs/components_page/components/card/layout/deck.R

This file was deleted.

35 changes: 0 additions & 35 deletions docs/components_page/components/card/layout/deck.jl

This file was deleted.

53 changes: 0 additions & 53 deletions docs/components_page/components/card/layout/deck.py

This file was deleted.

1 change: 1 addition & 0 deletions docs/components_page/components/navbar.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ Here is an example of a custom navbar, see the `examples/` folder in the [GitHub
{{apidoc:src/components/nav/NavbarBrand.js}}

{{apidoc:src/components/nav/NavbarToggler.js}}

2 changes: 1 addition & 1 deletion docs/components_page/components/navbar/navbar.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ navbar <- dbcNavbar(
dbcCol(dbcNavbarBrand("Navbar", class_name = "ms-2"))
),
align = "center",
no_gutters = TRUE
class_name="g-0"
),
href = "https://plotly.com"
),
Expand Down
2 changes: 1 addition & 1 deletion docs/components_page/components/navbar/navbar.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ navbar = dbc_navbar(
href="https://plotly.com",
),
dbc_navbartoggler(id="navbar-toggler", n_clicks=0),
dbc_collapse(search_bar, id="navbar-collapse", navbar=true, is_open=false),
dbc_collapse(search_bar, id="navbar-collapse", is_open=false, navbar=true),
],
color="dark",
dark=true,
Expand Down
2 changes: 1 addition & 1 deletion docs/components_page/components/navbar/navbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
),
dbc.NavbarToggler(id="navbar-toggler", n_clicks=0),
dbc.Collapse(
search_bar, id="navbar-collapse", navbar=True, is_open=False
search_bar, id="navbar-collapse", is_open=False, navbar=True
),
],
color="dark",
Expand Down
2 changes: 1 addition & 1 deletion docs/demos/theme_explorer/card.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
cards = html.Div(
[
make_subheading("Card", "card"),
dbc.CardDeck(
dbc.CardGroup(
[
dbc.Card(
[
Expand Down
4 changes: 1 addition & 3 deletions examples/python/gallery/wordcloud/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ def load_word_frequencies(book):
[
html.Div([dbc.Label("Choose a book:"), dropdown]),
html.Div([dbc.Label("Minimum frequency:"), min_freq_slider]),
html.Div(
[dbc.Label("Maximum number of words:"), max_vocab_slider]
),
html.Div([dbc.Label("Maximum number of words:"), max_vocab_slider]),
],
class_name="mb-3",
body=True,
Expand Down
Loading