Skip to content

Commit

Permalink
Merge branch 'main' into tidy/test-stylelint-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
huong-li-nguyen committed Nov 27, 2024
2 parents 2f62d11 + 2b90dcf commit c1dd4b7
Show file tree
Hide file tree
Showing 18 changed files with 31 additions and 246 deletions.
2 changes: 1 addition & 1 deletion vizro-ai/examples/dashboard_ui/requirements.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
gunicorn
vizro-ai>=0.3.2
vizro==0.1.27
vizro==0.1.28
black
openpyxl
langchain_anthropic
Expand Down
2 changes: 1 addition & 1 deletion vizro-ai/examples/dashboard_ui/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ tzdata==2024.1
# via pandas
urllib3==2.2.3
# via requests
vizro==0.1.27
vizro==0.1.28
# via
# -r requirements.in
# vizro-ai
Expand Down
17 changes: 17 additions & 0 deletions vizro-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,23 @@ See the fragment files in the [changelog.d directory](https://github.com/mckinse

<!-- scriv-insert-here -->

<a id='changelog-0.1.28'></a>

# 0.1.28 — 2024-11-27

## Removed

- Removed all CSS variables from `variables.css` and `token_names.css`, replacing them with CSS variables from `vizro-bootstrap.min.css`.
Refer to [`vizro-bootstrap.min.css](https://github.com/mckinsey/vizro/blob/main/vizro-core/src/vizro/static/css/vizro-bootstrap.min.css) for the updated CSS variables. ([#886](https://github.com/mckinsey/vizro/pull/886))

## Added

- Enable `href` inside `vm.Button`. ([#881](https://github.com/mckinsey/vizro/pull/881))

## Changed

- Replace `dmc.Tabs` with `dbc.Tabs` and change CSS selectors accordingly. ([#895](https://github.com/mckinsey/vizro/pull/895))

<a id='changelog-0.1.27'></a>

# 0.1.27 — 2024-11-14
Expand Down
48 changes: 0 additions & 48 deletions vizro-core/changelog.d/20241114_170413_runner.md

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion vizro-core/examples/dev/requirements.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is only used if you don't have hatch installed.
gunicorn
openpyxl
vizro==0.1.27
vizro==0.1.28
2 changes: 1 addition & 1 deletion vizro-core/examples/dev/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ tzdata==2024.2
# via pandas
urllib3==2.2.3
# via requests
vizro==0.1.27
vizro==0.1.28
# via -r requirements.in
werkzeug==3.0.6
# via
Expand Down
2 changes: 1 addition & 1 deletion vizro-core/examples/visual-vocabulary/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ autoflake==2.3.1
black==24.4.2
isort==5.13.2
plotly==5.24.1
vizro==0.1.27
vizro==0.1.28
gunicorn
2 changes: 1 addition & 1 deletion vizro-core/examples/visual-vocabulary/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ tzdata==2024.2
# via pandas
urllib3==2.2.3
# via requests
vizro==0.1.27
vizro==0.1.28
# via -r requirements.in
werkzeug==3.0.6
# via
Expand Down
2 changes: 1 addition & 1 deletion vizro-core/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ markdown_extensions:
kwds:
type: vizro
requirements: |
vizro==0.1.27
vizro==0.1.28
- pymdownx.tabbed:
alternate_style: true
- pymdownx.mark
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@
"default": "Click me!",
"type": "string"
},
"href": {
"title": "Href",
"description": "URL (relative or absolute) to navigate to.",
"default": "",
"type": "string"
},
"actions": {
"title": "Actions",
"default": [],
Expand Down
2 changes: 1 addition & 1 deletion vizro-core/src/vizro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

__all__ = ["Vizro"]

__version__ = "0.1.28.dev0"
__version__ = "0.1.29.dev0"


# For the below _css_dist and _js_dist to be used by Dash, they must be retrieved by dash.resources.Css.get_all_css().
Expand Down

0 comments on commit c1dd4b7

Please sign in to comment.