Skip to content

Commit

Permalink
Update to Bootstrap 5.3.0 (#963)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcbegley committed Jul 9, 2023
1 parent c1adf32 commit ae7d0e3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dash_bootstrap_components/themes.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
BOOTSTRAP = (
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
"https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
)

GRID = "https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap-grid.min.css" # noqa
GRID = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap-grid.min.css" # noqa

_BOOTSWATCH_BASE = "https://cdn.jsdelivr.net/npm/bootswatch@5.2.3/dist/"
_BOOTSWATCH_BASE = "https://cdn.jsdelivr.net/npm/bootswatch@5.3.0/dist/"

CERULEAN = _BOOTSWATCH_BASE + "cerulean/bootstrap.min.css"
COSMO = _BOOTSWATCH_BASE + "cosmo/bootstrap.min.css"
Expand Down
2 changes: 1 addition & 1 deletion docs/content/docs/themes.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ See the [available themes](#available-themes) for more.
Each theme such as is simply a BootstrapCDN URL stored as a string, so using the themes module is really equivalent to doing something like the following.

```python
BS = "https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
BS = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
app = dash.Dash(external_stylesheets=[BS])
```

Expand Down
2 changes: 1 addition & 1 deletion docs/templates/partials/head.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
crossorigin="anonymous"
/>
Expand Down
2 changes: 1 addition & 1 deletion docs/templates/partials/scripts.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"
crossorigin="anonymous"
></script>
<script src="/static/js/highlight.min.js"></script>
Expand Down

0 comments on commit ae7d0e3

Please sign in to comment.