File tree 5 files changed +2467
-3947
lines changed
dash_bootstrap_components
5 files changed +2467
-3947
lines changed Original file line number Diff line number Diff line change 1
1
BOOTSTRAP = (
2
- "https://cdn.jsdelivr.net/npm/bootstrap@5.3.1 /dist/css/bootstrap.min.css"
2
+ "https://cdn.jsdelivr.net/npm/bootstrap@5.3.3 /dist/css/bootstrap.min.css"
3
3
)
4
4
5
- GRID = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.1 /dist/css/bootstrap-grid.min.css" # noqa
5
+ GRID = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.3 /dist/css/bootstrap-grid.min.css" # noqa
6
6
7
- _BOOTSWATCH_BASE = "https://cdn.jsdelivr.net/npm/bootswatch@5.3.1 /dist/"
7
+ _BOOTSWATCH_BASE = "https://cdn.jsdelivr.net/npm/bootswatch@5.3.3 /dist/"
8
8
9
9
CERULEAN = _BOOTSWATCH_BASE + "cerulean/bootstrap.min.css"
10
10
COSMO = _BOOTSWATCH_BASE + "cosmo/bootstrap.min.css"
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ See the [available themes](#available-themes) for more.
39
39
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.
40
40
41
41
``` python
42
- BS = " https://cdn.jsdelivr.net/npm/bootstrap@5.3.1 /dist/css/bootstrap.min.css"
42
+ BS = " https://cdn.jsdelivr.net/npm/bootstrap@5.3.3 /dist/css/bootstrap.min.css"
43
43
app = dash.Dash(external_stylesheets = [BS ])
44
44
```
45
45
@@ -81,7 +81,7 @@ Here's a callback to change the theme:
81
81
82
82
``` python
83
83
clientside_callback(
84
- " " "
84
+ " " "
85
85
(switchOn) = > {
86
86
switchOn
87
87
? document.documentElement.setAttribute(' data-bs-theme' , ' light' )
Original file line number Diff line number Diff line change 1
1
< meta charset ="utf-8 " />
2
2
< meta name ="viewport " content ="width=device-width, initial-scale=1 " />
3
- < link href ="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1 /dist/css/bootstrap.min.css " rel ="stylesheet " crossorigin ="anonymous " />
3
+ < link href ="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3 /dist/css/bootstrap.min.css " rel ="stylesheet " crossorigin ="anonymous " />
4
4
< link rel ="stylesheet " href ="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.13.1/build/styles/tomorrow-night-eighties.min.css " />
5
5
< link rel ="stylesheet " href ="/static/docs.css " />
6
6
< link rel ="shortcut icon " type ="image/png " href ="/static/images/dbciconwhite16.png " />
Original file line number Diff line number Diff line change 1
- < script src ="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1 /dist/js/bootstrap.bundle.min.js " crossorigin ="anonymous "> </ script >
1
+ < script src ="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3 /dist/js/bootstrap.bundle.min.js " crossorigin ="anonymous "> </ script >
2
2
< script src ="/static/js/highlight.min.js "> </ script >
3
3
< script src ="/static/js/docs-theme-change.js "> </ script >
4
4
< script >
You can’t perform that action at this time.
0 commit comments