diff --git a/ipyvuetify/components.py b/ipyvuetify/components.py index 33701285..87920099 100644 --- a/ipyvuetify/components.py +++ b/ipyvuetify/components.py @@ -8009,6 +8009,8 @@ def _VuetifyTemplate( events: list = [], layout: Union[Dict[str, Any], Element[ipywidgets.widgets.widget_layout.Layout]] = {}, methods: str = None, + scoped: bool = None, + scoped_css_support: bool = False, tabbable: bool = None, template: typing.Union[Element[ipyvue.Template], str] = None, tooltip: str = None, diff --git a/mypy.ini b/mypy.ini index 703a6fcd..9601fc43 100644 --- a/mypy.ini +++ b/mypy.ini @@ -3,3 +3,6 @@ check_untyped_defs = True ignore_missing_imports = True no_implicit_optional = False allow_empty_bodies = True + +[mypy-ipyvuetify.generated.*] +disable_error_code = no-redef diff --git a/pyproject.toml b/pyproject.toml index c72f393c..35083254 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,15 @@ content-type = "text/markdown" [project.optional-dependencies] dev = ["nox", "pre-commit", "mypy"] -test = ["pytest", "pytest-playwright<0.6", "nbformat<5.10", "jupyterlab<4", "solara[pytest]"] +test = [ + "pytest", + "pytest-playwright<0.6", + "pixelmatch>=0.3.0,<0.4", + "nbformat<5.10", + "jupyterlab<4", + "solara[pytest]", + "starlette<1", +] doc = [ "sphinx<7", "jupyter-sphinx",