Skip to content

Commit 205c737

Browse files
fix: add new traits added in ipyvue to reacton
1 parent 6747446 commit 205c737

3 files changed

Lines changed: 14 additions & 1 deletion

File tree

ipyvuetify/components.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8009,6 +8009,8 @@ def _VuetifyTemplate(
80098009
events: list = [],
80108010
layout: Union[Dict[str, Any], Element[ipywidgets.widgets.widget_layout.Layout]] = {},
80118011
methods: str = None,
8012+
scoped: bool = None,
8013+
scoped_css_support: bool = False,
80128014
tabbable: bool = None,
80138015
template: typing.Union[Element[ipyvue.Template], str] = None,
80148016
tooltip: str = None,

mypy.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ check_untyped_defs = True
33
ignore_missing_imports = True
44
no_implicit_optional = False
55
allow_empty_bodies = True
6+
7+
[mypy-ipyvuetify.generated.*]
8+
disable_error_code = no-redef

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,15 @@ content-type = "text/markdown"
4040

4141
[project.optional-dependencies]
4242
dev = ["nox", "pre-commit", "mypy"]
43-
test = ["pytest", "pytest-playwright<0.6", "nbformat<5.10", "jupyterlab<4", "solara[pytest]"]
43+
test = [
44+
"pytest",
45+
"pytest-playwright<0.6",
46+
"pixelmatch>=0.3.0,<0.4",
47+
"nbformat<5.10",
48+
"jupyterlab<4",
49+
"solara[pytest]",
50+
"starlette<1",
51+
]
4452
doc = [
4553
"sphinx<7",
4654
"jupyter-sphinx",

0 commit comments

Comments
 (0)